User registration & user profile – Profile Builder - Version 1.1.32

Version Description

Error fixed.

Download this release

Release Info

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

Code changes from version 1.1.31 to 1.1.32

front-end/menu.file.php CHANGED
@@ -58,6 +58,8 @@
58
 
59
  <?php
60
  function wppb_general_settings(){
 
 
61
  ?>
62
  <form method="post" action="options.php#general-settings">
63
  <?php $wppb_generalSettings = get_option('wppb_general_settings'); ?>
@@ -69,7 +71,6 @@
69
  <select name="wppb_general_settings[extraFieldsLayout]" class="wppb_general_settings">
70
  <option value="yes" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'yes') echo 'selected';?>><?php _e('Default', 'profilebuilder');?></option>
71
  <?php
72
- $wppb_premiumStyle = WPPB_PLUGIN_DIR . '/premium/';
73
  if (file_exists ( $wppb_premiumStyle.'premium.php' )){
74
  ?>
75
  <option value="white" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'white') echo 'selected';?>><?php _e('White', 'profilebuilder');?></option>
@@ -90,6 +91,7 @@
90
  </select>
91
  <?php
92
  }
 
93
  ?>
94
  <br/><br/>
95
  <font id="generalSettingFont"><?php _e('"Admin Approval" Feature Activated:', 'profilebuilder');?></font>
@@ -97,16 +99,16 @@
97
  <option value="yes" <?php if ($wppb_generalSettings['adminApproval'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
98
  <option value="no" <?php if ($wppb_generalSettings['adminApproval'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
99
  </select>
100
- <?php
101
- if (file_exists ( $wppb_premiumStyle.'premium.php' ))
102
- echo '<div id="layoutNoticeDiv">
103
- <font size="1" id="layoutNotice">
104
- <b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
105
- &rarr; '. __('The black stylesheet is intended for sites/blogs with a dark background.', 'profilebuilder') .'<br/>
106
- &rarr; '. __('The white stylesheet is intended for a sites/blogs with a light background color.', 'profilebuilder') .'<br/>
107
- &rarr; '. __('On single-site installations the "Email Confirmation" feature only works in the front-end, so make sure you also use the "Custom Redirects" feature.', 'profilebuilder') .'
108
- </font>
109
- </div>';
110
  ?>
111
  <div align="right">
112
  <input type="hidden" name="action" value="update" />
58
 
59
  <?php
60
  function wppb_general_settings(){
61
+
62
+ $wppb_premiumStyle = WPPB_PLUGIN_DIR . '/premium/';
63
  ?>
64
  <form method="post" action="options.php#general-settings">
65
  <?php $wppb_generalSettings = get_option('wppb_general_settings'); ?>
71
  <select name="wppb_general_settings[extraFieldsLayout]" class="wppb_general_settings">
72
  <option value="yes" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'yes') echo 'selected';?>><?php _e('Default', 'profilebuilder');?></option>
73
  <?php
 
74
  if (file_exists ( $wppb_premiumStyle.'premium.php' )){
75
  ?>
76
  <option value="white" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'white') echo 'selected';?>><?php _e('White', 'profilebuilder');?></option>
91
  </select>
92
  <?php
93
  }
94
+ if (file_exists ( $wppb_premiumStyle.'premium.php' )){
95
  ?>
96
  <br/><br/>
97
  <font id="generalSettingFont"><?php _e('"Admin Approval" Feature Activated:', 'profilebuilder');?></font>
99
  <option value="yes" <?php if ($wppb_generalSettings['adminApproval'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
100
  <option value="no" <?php if ($wppb_generalSettings['adminApproval'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
101
  </select>
102
+ <?php
103
+ echo '<div id="layoutNoticeDiv">
104
+ <font size="1" id="layoutNotice">
105
+ <b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
106
+ &rarr; '. __('The black stylesheet is intended for sites/blogs with a dark background.', 'profilebuilder') .'<br/>
107
+ &rarr; '. __('The white stylesheet is intended for a sites/blogs with a light background color.', 'profilebuilder') .'<br/>
108
+ &rarr; '. __('On single-site installations the "Email Confirmation" feature only works in the front-end, so make sure you also use the "Custom Redirects" feature.', 'profilebuilder') .'
109
+ </font>
110
+ </div>';
111
+ }
112
  ?>
113
  <div align="right">
114
  <input type="hidden" name="action" value="update" />
front-end/wppb.login.php CHANGED
@@ -64,7 +64,7 @@ function wppb_front_end_login(){
64
  echo $loginFilterArray['loginMessage1'];
65
  ?>
66
 
67
- <?php elseif ( $wppb_login->ID ) : // Successful login ?>
68
  <?php
69
  if($wppb_login->display_name == ''){
70
  $wppb_login->display_name = $wppb_login->user_login;
@@ -78,7 +78,7 @@ function wppb_front_end_login(){
78
  __('You have successfully logged in as', 'profilebuilder').' <a href="'.$authorPostsUrl = get_author_posts_url( $wppb_login->ID ).'" title="'.$wppb_login->display_name.'">'.$wppb_login->display_name.'</a>.
79
  </p><!-- .success-->';
80
 
81
- $loginFilterArray['loginMessage2'] = apply_filters('wppb_login_login_message2', $loginFilterArray['loginMessage2'], $wppb_login->ID, $wppb_user->display_name);
82
  echo $loginFilterArray['loginMessage2'];
83
  ?>
84
 
64
  echo $loginFilterArray['loginMessage1'];
65
  ?>
66
 
67
+ <?php elseif ( isset($wppb_login->ID) ) : // Successful login ?>
68
  <?php
69
  if($wppb_login->display_name == ''){
70
  $wppb_login->display_name = $wppb_login->user_login;
78
  __('You have successfully logged in as', 'profilebuilder').' <a href="'.$authorPostsUrl = get_author_posts_url( $wppb_login->ID ).'" title="'.$wppb_login->display_name.'">'.$wppb_login->display_name.'</a>.
79
  </p><!-- .success-->';
80
 
81
+ $loginFilterArray['loginMessage2'] = apply_filters('wppb_login_login_message2', $loginFilterArray['loginMessage2'], $wppb_login->ID, $wppb_login->display_name);
82
  echo $loginFilterArray['loginMessage2'];
83
  ?>
84
 
front-end/wppb.recover.password.php CHANGED
@@ -90,6 +90,34 @@ if(!function_exists('wppb_curpageurl_password_recovery3')){
90
  }
91
  }
92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
 
95
  function wppb_front_end_password_recovery(){
@@ -100,8 +128,6 @@ function wppb_front_end_password_recovery(){
100
  $messageNo2 = '';
101
 
102
  global $wpdb;
103
- //global $current_user;
104
- //get_currentuserinfo();
105
 
106
  $linkLoginName = '';
107
  $linkKey = '';
@@ -116,42 +142,48 @@ function wppb_front_end_password_recovery(){
116
  //check to see if it's an e-mail (and if this is valid/present in the database) or is a username
117
  if (is_email($postedData)){
118
  if (email_exists($postedData)){
119
- $recoverPasswordFilterArray['sentMessage1'] = __('A password reset email has been sent to ', 'profilebuilder').$postedData.'. <br/>'.__('Following the link sent in the email address will reset the password.', 'profilebuilder');
120
- $recoverPasswordFilterArray['sentMessage1'] = apply_filters('wppb_recover_password_sent_message1', $recoverPasswordFilterArray['sentMessage1'], $postedData);
121
- $messageNo = '1';
122
- $message = $recoverPasswordFilterArray['sentMessage1'];
123
-
124
- //verify e-mail validity
125
- $query = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE user_email='".$postedData."'");
126
- $requestedUserID = $query[0]->ID;
127
- $requestedUserLogin = $query[0]->user_login;
128
- $requestedUserEmail = $query[0]->user_email;
129
-
130
- //send primary email message
131
- $recoverPasswordFilterArray['userMailMessage1'] = __('Someone requested that the password be reset for the following account: ', 'profilebuilder');
132
- $recoverPasswordFilterArray['userMailMessage1'] .= '<b>'.$requestedUserLogin.'</b><br/>';
133
- $recoverPasswordFilterArray['userMailMessage1'] .= __('If this was a mistake, just ignore this email and nothing will happen.', 'profilebuilder').'<br/>';
134
- $recoverPasswordFilterArray['userMailMessage1'] .= __('To reset your password, visit the following link:', 'profilebuilder');
135
- $recoverPasswordFilterArray['userMailMessage1'] .= '<a href="'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'">'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'</a>';
136
- $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
137
-
138
- $recoverPasswordFilterArray['userMailMessageTitle1'] = __('Password Reset Feature from', 'profilebuilder').' "'.$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES).'"';
139
- $recoverPasswordFilterArray['userMailMessageTitle1'] = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoverPasswordFilterArray['userMailMessageTitle1']);
140
-
141
- //we add this filter to enable html encoding
142
- add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
143
- //send mail to the user notifying him of the reset request
144
- if (trim($recoverPasswordFilterArray['userMailMessageTitle1']) != ''){
145
- $sent = wp_mail($requestedUserEmail, $recoverPasswordFilterArray['userMailMessageTitle1'], $recoverPasswordFilterArray['userMailMessage1']);
146
- if ($sent === false){
147
- $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = '<b>'. __('ERROR', 'profilebuilder') .': </b>'.__('There was an error while trying to send the activation link to ', 'profilebuilder').$postedData.'!';
148
- $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = apply_filters('wppb_recover_password_sent_message_error_sending', $recoverPasswordFilterArray['sentMessageCouldntSendMessage']);
149
- $messageNo = '5';
150
- $message = $recoverPasswordFilterArray['sentMessageCouldntSendMessage'];
 
 
 
 
 
 
 
151
  }
152
- }
153
-
154
 
 
155
 
156
  }elseif (!email_exists($postedData)){
157
  $recoverPasswordFilterArray['sentMessage2'] = __('The email address entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct email address.', 'profilebuilder');
@@ -160,40 +192,47 @@ function wppb_front_end_password_recovery(){
160
  $message = $recoverPasswordFilterArray['sentMessage2'];
161
  }
162
  }elseif (!is_email($postedData)){
163
- if (username_exists($postedData)){
164
- $recoverPasswordFilterArray['sentMessage3'] = __('A password reset email has been sent to ', 'profilebuilder').$postedData.'. <br/>'.__('Following the link sent in the email address will reset the password.', 'profilebuilder');
165
- $recoverPasswordFilterArray['sentMessage3'] = apply_filters('wppb_recover_password_sent_message3', $recoverPasswordFilterArray['sentMessage3']);
166
- $messageNo = '3';
167
- $message = $recoverPasswordFilterArray['sentMessage3'];
168
-
169
- //verify username validity
170
- $query = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE user_login='".$postedData."'");
171
- $requestedUserID = $query[0]->ID;
172
- $requestedUserLogin = $query[0]->user_login;
173
- $requestedUserEmail = $query[0]->user_email;
 
 
 
 
 
 
174
 
175
- //send primary email message
176
- $recoverPasswordFilterArray['userMailMessage1'] = __('Someone requested that the password be reset for the following account: ', 'profilebuilder');
177
- $recoverPasswordFilterArray['userMailMessage1'] .= '<b>'.$requestedUserLogin.'</b><br/>';
178
- $recoverPasswordFilterArray['userMailMessage1'] .= __('If this was a mistake, just ignore this email and nothing will happen.', 'profilebuilder').'<br/>';
179
- $recoverPasswordFilterArray['userMailMessage1'] .= __('To reset your password, visit the following link:', 'profilebuilder');
180
- $recoverPasswordFilterArray['userMailMessage1'] .= '<a href="'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'">'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'</a>';
181
- $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
182
-
183
- $recoverPasswordFilterArray['userMailMessageTitle1'] = __('Password Reset Feature from', 'profilebuilder').' "'.$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES).'"';
184
- $recoverPasswordFilterArray['userMailMessageTitle1'] = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoverPasswordFilterArray['userMailMessageTitle1']);
185
-
186
- //we add this filter to enable html encoding
187
- add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
188
- //send mail to the user notifying him of the reset request
189
- if (trim($recoverPasswordFilterArray['userMailMessageTitle1']) != ''){
190
- $sent = wp_mail($requestedUserEmail, $recoverPasswordFilterArray['userMailMessageTitle1'], $recoverPasswordFilterArray['userMailMessage1']);
191
- if ($sent === false){
192
- $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = '<b>'. __('ERROR', 'profilebuilder') .': </b>'.__('There was an error while trying to send the activation link to ', 'profilebuilder').$postedData.'!';
193
- $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = apply_filters('wppb_recover_password_sent_message_error_sending', $recoverPasswordFilterArray['sentMessageCouldntSendMessage']);
194
- $messageNo = '5';
195
- $message = $recoverPasswordFilterArray['sentMessageCouldntSendMessage'];
196
- }
 
197
  }
198
  }elseif (!username_exists($postedData)){
199
  $recoverPasswordFilterArray['sentMessage4'] = __('The username entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct username.', 'profilebuilder');
@@ -387,7 +426,7 @@ function wppb_front_end_password_recovery(){
387
  <?php wp_nonce_field('verify_true_password_recovery', 'password_recovery_nonce_field'); ?>
388
  </form><!-- #recover_password -->
389
  <?php
390
- }elseif ($messageNo == '5'){
391
  $recoverPasswordFilterArray['messageDisplay1'] = '
392
  <p class="warning">'.$message.'</p><!-- .warning -->';
393
  $recoverPasswordFilterArray['messageDisplay1'] = apply_filters('wppb_recover_password_displayed_message1', $recoverPasswordFilterArray['messageDisplay1']);
90
  }
91
  }
92
 
93
+ function wppb_check_for_unapproved_user($data, $what){
94
+ $retArray = array( 0 => '', 1 => '');
95
+ $retMessage = '';
96
+ $messageNo = '';
97
+
98
+ $wppb_generalSettings = get_option('wppb_general_settings');
99
+
100
+ if($wppb_generalSettings['adminApproval'] == 'yes'){
101
+ if ($what == 'user_email'){
102
+ require_once(ABSPATH . WPINC . '/ms-functions.php');
103
+ $userID = get_user_id_from_string( $data );
104
+ }else{
105
+ $user = get_userdatabylogin($data);
106
+ $userID = $user->ID;
107
+ }
108
+
109
+
110
+ if (wp_get_object_terms( $userID, 'user_status' )){
111
+ $retMessage = '<strong>'. __('ERROR', 'profilebuilder') . '</strong>: ' . __('Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.', 'profilebuilder');
112
+ $retMessage = apply_filters('wppb_recover_password_unapporved_user', $retMessage);
113
+
114
+ $messageNo = '6';
115
+
116
+ }
117
+ }
118
+
119
+ return $retArray = array(0 => $retMessage, 1 => $messageNo);
120
+ }
121
 
122
 
123
  function wppb_front_end_password_recovery(){
128
  $messageNo2 = '';
129
 
130
  global $wpdb;
 
 
131
 
132
  $linkLoginName = '';
133
  $linkKey = '';
142
  //check to see if it's an e-mail (and if this is valid/present in the database) or is a username
143
  if (is_email($postedData)){
144
  if (email_exists($postedData)){
145
+ $retVal = wppb_check_for_unapproved_user($postedData, 'user_email');
146
+ if ($retVal[0] != ''){
147
+ $message = $retVal[0];
148
+ $messageNo = $retVal [1];
149
+
150
+ }else{
151
+ $recoverPasswordFilterArray['sentMessage1'] = __('A password reset email has been sent to ', 'profilebuilder').$postedData.'. <br/>'.__('Following the link sent in the email address will reset the password.', 'profilebuilder');
152
+ $recoverPasswordFilterArray['sentMessage1'] = apply_filters('wppb_recover_password_sent_message1', $recoverPasswordFilterArray['sentMessage1'], $postedData);
153
+ $message = $recoverPasswordFilterArray['sentMessage1'];
154
+ $messageNo = '1';
155
+
156
+ //verify e-mail validity
157
+ $query = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE user_email='".$postedData."'");
158
+ $requestedUserID = $query[0]->ID;
159
+ $requestedUserLogin = $query[0]->user_login;
160
+ $requestedUserEmail = $query[0]->user_email;
161
+
162
+ //send primary email message
163
+ $recoverPasswordFilterArray['userMailMessage1'] = __('Someone requested that the password be reset for the following account: ', 'profilebuilder');
164
+ $recoverPasswordFilterArray['userMailMessage1'] .= '<b>'.$requestedUserLogin.'</b><br/>';
165
+ $recoverPasswordFilterArray['userMailMessage1'] .= __('If this was a mistake, just ignore this email and nothing will happen.', 'profilebuilder').'<br/>';
166
+ $recoverPasswordFilterArray['userMailMessage1'] .= __('To reset your password, visit the following link:', 'profilebuilder');
167
+ $recoverPasswordFilterArray['userMailMessage1'] .= '<a href="'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'">'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'</a>';
168
+ $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
169
+
170
+ $recoverPasswordFilterArray['userMailMessageTitle1'] = __('Password Reset Feature from', 'profilebuilder').' "'.$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES).'"';
171
+ $recoverPasswordFilterArray['userMailMessageTitle1'] = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoverPasswordFilterArray['userMailMessageTitle1']);
172
+
173
+ //we add this filter to enable html encoding
174
+ add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
175
+ //send mail to the user notifying him of the reset request
176
+ if (trim($recoverPasswordFilterArray['userMailMessageTitle1']) != ''){
177
+ $sent = wp_mail($requestedUserEmail, $recoverPasswordFilterArray['userMailMessageTitle1'], $recoverPasswordFilterArray['userMailMessage1']);
178
+ if ($sent === false){
179
+ $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = '<b>'. __('ERROR', 'profilebuilder') .': </b>'.__('There was an error while trying to send the activation link to ', 'profilebuilder').$postedData.'!';
180
+ $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = apply_filters('wppb_recover_password_sent_message_error_sending', $recoverPasswordFilterArray['sentMessageCouldntSendMessage']);
181
+ $messageNo = '5';
182
+ $message = $recoverPasswordFilterArray['sentMessageCouldntSendMessage'];
183
+ }
184
  }
 
 
185
 
186
+ }
187
 
188
  }elseif (!email_exists($postedData)){
189
  $recoverPasswordFilterArray['sentMessage2'] = __('The email address entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct email address.', 'profilebuilder');
192
  $message = $recoverPasswordFilterArray['sentMessage2'];
193
  }
194
  }elseif (!is_email($postedData)){
195
+ if (username_exists($postedData)){
196
+ $retVal = wppb_check_for_unapproved_user($postedData, 'user_login');
197
+ if ($retVal[0] != ''){
198
+ $message = $retVal[0];
199
+ $messageNo = $retVal [1];
200
+
201
+ }else{
202
+ $recoverPasswordFilterArray['sentMessage3'] = __('A password reset email has been sent to ', 'profilebuilder').$postedData.'. <br/>'.__('Following the link sent in the email address will reset the password.', 'profilebuilder');
203
+ $recoverPasswordFilterArray['sentMessage3'] = apply_filters('wppb_recover_password_sent_message3', $recoverPasswordFilterArray['sentMessage3']);
204
+ $messageNo = '3';
205
+ $message = $recoverPasswordFilterArray['sentMessage3'];
206
+
207
+ //verify username validity
208
+ $query = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE user_login='".$postedData."'");
209
+ $requestedUserID = $query[0]->ID;
210
+ $requestedUserLogin = $query[0]->user_login;
211
+ $requestedUserEmail = $query[0]->user_email;
212
 
213
+ //send primary email message
214
+ $recoverPasswordFilterArray['userMailMessage1'] = __('Someone requested that the password be reset for the following account: ', 'profilebuilder');
215
+ $recoverPasswordFilterArray['userMailMessage1'] .= '<b>'.$requestedUserLogin.'</b><br/>';
216
+ $recoverPasswordFilterArray['userMailMessage1'] .= __('If this was a mistake, just ignore this email and nothing will happen.', 'profilebuilder').'<br/>';
217
+ $recoverPasswordFilterArray['userMailMessage1'] .= __('To reset your password, visit the following link:', 'profilebuilder');
218
+ $recoverPasswordFilterArray['userMailMessage1'] .= '<a href="'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'">'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'</a>';
219
+ $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
220
+
221
+ $recoverPasswordFilterArray['userMailMessageTitle1'] = __('Password Reset Feature from', 'profilebuilder').' "'.$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES).'"';
222
+ $recoverPasswordFilterArray['userMailMessageTitle1'] = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoverPasswordFilterArray['userMailMessageTitle1']);
223
+
224
+ //we add this filter to enable html encoding
225
+ add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
226
+ //send mail to the user notifying him of the reset request
227
+ if (trim($recoverPasswordFilterArray['userMailMessageTitle1']) != ''){
228
+ $sent = wp_mail($requestedUserEmail, $recoverPasswordFilterArray['userMailMessageTitle1'], $recoverPasswordFilterArray['userMailMessage1']);
229
+ if ($sent === false){
230
+ $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = '<b>'. __('ERROR', 'profilebuilder') .': </b>'.__('There was an error while trying to send the activation link to ', 'profilebuilder').$postedData.'!';
231
+ $recoverPasswordFilterArray['sentMessageCouldntSendMessage'] = apply_filters('wppb_recover_password_sent_message_error_sending', $recoverPasswordFilterArray['sentMessageCouldntSendMessage']);
232
+ $messageNo = '5';
233
+ $message = $recoverPasswordFilterArray['sentMessageCouldntSendMessage'];
234
+ }
235
+ }
236
  }
237
  }elseif (!username_exists($postedData)){
238
  $recoverPasswordFilterArray['sentMessage4'] = __('The username entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct username.', 'profilebuilder');
426
  <?php wp_nonce_field('verify_true_password_recovery', 'password_recovery_nonce_field'); ?>
427
  </form><!-- #recover_password -->
428
  <?php
429
+ }elseif (($messageNo == '5') || ($messageNo == '6')){
430
  $recoverPasswordFilterArray['messageDisplay1'] = '
431
  <p class="warning">'.$message.'</p><!-- .warning -->';
432
  $recoverPasswordFilterArray['messageDisplay1'] = apply_filters('wppb_recover_password_displayed_message1', $recoverPasswordFilterArray['messageDisplay1']);
front-end/wppb.register.php CHANGED
@@ -322,6 +322,19 @@ function wppb_add_custom_field_values($POST, $meta){
322
 
323
  }
324
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  // function to add the new user to the signup table if email confirmation is selected as active or it is a wpmu installation
326
  function wppb_signup_user($user, $user_email, $meta = '') {
327
  global $wpdb;
@@ -1566,14 +1579,15 @@ function wppb_front_end_register($atts){
1566
  $registerFilterArray2[$key] = $value;
1567
  }
1568
 
1569
- $wppb_addon_settings = get_option('wppb_addon_settings');
1570
- if ($wppb_addon_settings['wppb_reCaptcha'] == 'show'){
1571
- $reCAPTCHAForm = wppb_add_recaptcha_to_registration_form();
1572
- $labelName = apply_filters('wppb_register_anti_spam_title', __('Anti-Spam', 'profilebuilder'));
1573
- $registerFilterArray2['reCAPTCHAForm'] = '<div class="form-reCAPTCHA"><label class="form-reCAPTCHA-label" for="'.$labelName.'">'.$labelName.'</label>'.$reCAPTCHAForm.'</div><!-- .form-reCAPTCHA -->';
 
 
1574
  }
1575
 
1576
-
1577
  // additional filter, just in case it is needed
1578
  $registerFilterArray2['extraRegistrationFilter'] = '';
1579
  $registerFilterArray2['extraRegistrationFilter'] = apply_filters('extraRegistrationField', $registerFilterArray2['extraRegistrationFilter']);
322
 
323
  }
324
 
325
+ //function to add new variables in the address. Checks whether the new variable has to start with a ? or an &
326
+ function wppb_passed_arguments_check(){
327
+
328
+ $verifyLink = get_permalink();
329
+ $questionMarkPosition = strpos ( (string)$verifyLink , '?' );
330
+ if ($questionMarkPosition !== FALSE ) //we already have 1 "?"
331
+ $passedArgument = '&';
332
+ else $passedArgument = '?';
333
+
334
+ return $passedArgument;
335
+ }
336
+
337
+
338
  // function to add the new user to the signup table if email confirmation is selected as active or it is a wpmu installation
339
  function wppb_signup_user($user, $user_email, $meta = '') {
340
  global $wpdb;
1579
  $registerFilterArray2[$key] = $value;
1580
  }
1581
 
1582
+ if(function_exists('wppb_add_recaptcha_to_registration_form')){
1583
+ $wppb_addon_settings = get_option('wppb_addon_settings');
1584
+ if ($wppb_addon_settings['wppb_reCaptcha'] == 'show'){
1585
+ $reCAPTCHAForm = wppb_add_recaptcha_to_registration_form();
1586
+ $labelName = apply_filters('wppb_register_anti_spam_title', __('Anti-Spam', 'profilebuilder'));
1587
+ $registerFilterArray2['reCAPTCHAForm'] = '<div class="form-reCAPTCHA"><label class="form-reCAPTCHA-label" for="'.$labelName.'">'.$labelName.'</label>'.$reCAPTCHAForm.'</div><!-- .form-reCAPTCHA -->';
1588
+ }
1589
  }
1590
 
 
1591
  // additional filter, just in case it is needed
1592
  $registerFilterArray2['extraRegistrationFilter'] = '';
1593
  $registerFilterArray2['extraRegistrationFilter'] = apply_filters('extraRegistrationField', $registerFilterArray2['extraRegistrationFilter']);
functions/functions.load.php CHANGED
@@ -135,8 +135,7 @@ if ( is_admin() ){
135
  add_action( 'edit_user_profile_update', 'save_profile_extra_fields_in_admin', 10 );
136
  }
137
 
138
- }
139
- else if ( !is_admin() ){
140
  /* include the stylesheet */
141
  add_action('wp_print_styles', 'wppb_add_plugin_stylesheet');
142
 
135
  add_action( 'edit_user_profile_update', 'save_profile_extra_fields_in_admin', 10 );
136
  }
137
 
138
+ }else if ( !is_admin() ){
 
139
  /* include the stylesheet */
140
  add_action('wp_print_styles', 'wppb_add_plugin_stylesheet');
141
 
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.31
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.31' );
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.32
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.32' );
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.4.1
10
- Stable tag: 1.1.31
11
 
12
  Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
13
 
@@ -89,6 +89,9 @@ This plugin only adds/removes fields in the front-end. The default information-f
89
  7. Logged in Page: screenshot7.jpg
90
 
91
  == Changelog ==
 
 
 
92
  = 1.1.31 =
93
  Minor updates to the plugin files.
94
 
7
  front-end register, front-end registration, frontend edit profile, edit profile
8
  Requires at least: 3.1
9
  Tested up to: 3.4.1
10
+ Stable tag: 1.1.32
11
 
12
  Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
13
 
89
  7. Logged in Page: screenshot7.jpg
90
 
91
  == Changelog ==
92
+ = 1.1.32 =
93
+ Error fixed.
94
+
95
  = 1.1.31 =
96
  Minor updates to the plugin files.
97
 
translation/profilebuilder-cs_CZ.mo CHANGED
Binary file
translation/profilebuilder-cs_CZ.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder Pro v1.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2011-08-18 13:04+0100\n"
7
- "Last-Translator: Martin Jurica <martin@jurica.info>\n"
8
  "Language-Team: Martin Jurica <martin@jurica.info>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -18,824 +18,1952 @@ msgstr ""
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #@ profilebuilder
22
- #: front-end/menu.file.php:5
23
- #: front-end/menu.file.php:8
24
  msgid "Profile Builder"
25
  msgstr "Profile Builder"
26
 
27
- #@ profilebuilder
28
- #: front-end/menu.file.php:6
29
  msgid "Welcome to Profile Builder!"
30
  msgstr "Vítá vás Profile Builder!"
31
 
32
- #@ profilebuilder
33
- #: front-end/menu.file.php:8
34
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
35
  msgstr " umožňuje přidat front-end menu pro všechny uživatele vašeho webu. To usnadňuje úpravu profilu a zjednodušuje registraci nových uživatelů."
36
 
37
- #@ profilebuilder
38
- #: front-end/menu.file.php:9
39
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
40
  msgstr "Uživatelé s administrátorskými právy mohou upravovat stávající pole v profilu a vytvářet nová."
41
 
42
- #@ profilebuilder
43
- #: front-end/menu.file.php:10
44
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
45
  msgstr "Pro úpravu profilu přímo na webu (ne v administraci) stačí vytvořit novu Stránku (a pojmenovat ji například Upravit profil)."
46
 
47
- #@ profilebuilder
48
- #: front-end/menu.file.php:11
49
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
50
  msgstr "Do vytvořené stránky (nebo widgetu) pak stačí umístit následující kód: "
51
 
52
- #@ profilebuilder
53
- #: front-end/menu.file.php:12
54
  msgid "Publish your page and you are ready to go!"
55
  msgstr "Nyní vytvořenou stránku publikujte a jste hotovi."
56
 
57
- #@ profilebuilder
58
- #: front-end/menu.file.php:13
59
  msgid "You can use the following shortcodes:"
60
  msgstr "K dispozici jsou následující kódy:"
61
 
62
- #@ profilebuilder
63
- #: front-end/menu.file.php:14
64
  msgid "for a log-in form."
65
  msgstr " pro přihlašovací formulář."
66
 
67
- #@ profilebuilder
68
- #: front-end/menu.file.php:15
69
  msgid "to add a registration form."
70
  msgstr " pro registrační formulář."
71
 
72
- #@ profilebuilder
73
- #: front-end/menu.file.php:16
74
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
75
  msgstr "pro poskytnutí přístupu k vlastnímu profilu (pouze pro přihlášené uživatele)."
76
 
77
- #@ profilebuilder
78
- #: front-end/menu.file.php:18
 
 
 
 
 
 
79
  msgid "Users with administrator rights have access to the following features:"
80
  msgstr "Uživatelé s administrátorskými právy mohou také:"
81
 
82
- #@ profilebuilder
83
- #: front-end/menu.file.php:19
84
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
85
  msgstr "přidat/zahrnout vlastní CSS styl z aktuální šablony nebo použít některý ze stylů Profile Builder (výchozí, bílý, černý)."
86
 
87
- #@ profilebuilder
88
- #: front-end/menu.file.php:20
89
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
90
  msgstr "zvolit, zda zobrazovat administrační menu ve front-endu - v závislosti na uživatelské skupině."
91
 
92
- #@ profilebuilder
93
- #: front-end/menu.file.php:21
94
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
95
  msgstr "určit, která pole mohou uživatelé vidět/upravovat. Obsah skrytých polí zůstane beze změny."
96
 
97
- #@ profilebuilder
98
- #: front-end/menu.file.php:22
99
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
100
  msgstr "přidat další uživatelská pole k již existujícím polím profilu. K dispozici jsou typy polí: nadpis, text, textarea, select, check-box, radio a upload."
101
 
102
- #@ profilebuilder
103
- #: front-end/menu.file.php:23
104
  msgid "add an avatar field."
105
  msgstr "přidat pole pro avatar."
106
 
107
- #@ profilebuilder
108
- #: front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  msgid "NOTE:"
110
  msgstr "POZNÁMKA:"
111
 
112
- #@ profilebuilder
113
- #: front-end/menu.file.php:27
114
  msgid "this plugin only adds/removes fields in the front-end."
115
  msgstr "tento plugin pouze přidává/odstraňuje pole ve front-endu."
116
 
117
- #@ profilebuilder
118
- #: front-end/menu.file.php:28
119
  msgid "The default information-fields will still be visible(and thus modifiable)"
120
  msgstr "Výchozí pole budou i nadále dostupná (včetně možnosti úprav)"
121
 
122
- #@ profilebuilder
123
- #: front-end/menu.file.php:29
124
  msgid "from the back-end, while custom fields will only be visible in the front-end."
125
  msgstr "v administraci. Vlastní pole budou přístupná ve front-endu (na webu)."
126
 
127
- #@ profilebuilder
128
- #: front-end/menu.file.php:43
129
- #: front-end/menu.file.php:44
130
- #: front-end/options.php:58
131
- msgid "Plugin Layout"
132
- msgstr "Nastavení vzhledu"
133
 
134
- #@ profilebuilder
135
- #: front-end/menu.file.php:50
136
- msgid "Stylesheet used:"
 
137
  msgstr "CSS styl:"
138
 
139
- #@ profilebuilder
140
- #: front-end/menu.file.php:53
141
  msgid "Default"
142
  msgstr "Výchozí"
143
 
144
- #@ profilebuilder
145
- #: front-end/menu.file.php:58
146
  msgid "White"
147
  msgstr "Bílý"
148
 
149
- #@ profilebuilder
150
- #: front-end/menu.file.php:59
151
  msgid "Black"
152
  msgstr "Černý"
153
 
154
- #@ profilebuilder
155
- #: front-end/menu.file.php:63
156
  msgid "None"
157
  msgstr "Žádný"
158
 
159
- #@ default
160
- #: front-end/menu.file.php:72
161
- #: front-end/menu.file.php:119
162
- #: front-end/menu.file.php:287
163
- #: premium/premium.php:177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid "Save Changes"
165
  msgstr "Uložit změny"
166
 
167
- #@ profilebuilder
168
- #: front-end/menu.file.php:90
169
- #: front-end/menu.file.php:91
170
  msgid "Show/Hide the Admin Bar on Front End"
171
  msgstr "Administrační lišta ve front-endu"
172
 
173
- #@ profilebuilder
174
- #: front-end/menu.file.php:95
175
  msgid "User-group"
176
  msgstr "Skupina"
177
 
178
- #@ profilebuilder
179
- #: front-end/menu.file.php:96
180
- #: front-end/menu.file.php:143
181
  msgid "Visibility"
182
  msgstr "Viditelnost"
183
 
184
- #@ profilebuilder
185
- #: front-end/menu.file.php:108
186
- #: front-end/menu.file.php:159
187
- #: front-end/menu.file.php:168
188
- #: front-end/menu.file.php:177
189
- #: front-end/menu.file.php:186
190
- #: front-end/menu.file.php:195
191
- #: front-end/menu.file.php:212
192
- #: front-end/menu.file.php:221
193
- #: front-end/menu.file.php:233
194
- #: front-end/menu.file.php:242
195
- #: front-end/menu.file.php:251
196
- #: front-end/menu.file.php:268
197
- #: front-end/menu.file.php:278
198
  msgid "Show"
199
  msgstr "Zobrazit"
200
 
201
- #@ profilebuilder
202
- #: front-end/menu.file.php:109
203
- #: front-end/menu.file.php:160
204
- #: front-end/menu.file.php:169
205
- #: front-end/menu.file.php:178
206
- #: front-end/menu.file.php:187
207
- #: front-end/menu.file.php:196
208
- #: front-end/menu.file.php:213
209
- #: front-end/menu.file.php:222
210
- #: front-end/menu.file.php:234
211
- #: front-end/menu.file.php:243
212
- #: front-end/menu.file.php:252
213
- #: front-end/menu.file.php:269
214
- #: front-end/menu.file.php:279
215
  msgid "Hide"
216
  msgstr "Skrýt"
217
 
218
- #@ profilebuilder
219
- #: front-end/menu.file.php:137
220
- #: front-end/menu.file.php:138
221
- #: front-end/options.php:60
 
 
 
 
222
  msgid "Default Profile Fields"
223
  msgstr "Výchozí pole profilu"
224
 
225
- #@ profilebuilder
226
- #: front-end/menu.file.php:142
227
  msgid "Input Field Name"
228
  msgstr "Název pole"
229
 
230
- #@ profilebuilder
231
- #: front-end/menu.file.php:149
 
 
 
 
 
 
232
  msgid "Name:"
233
  msgstr "Jméno:"
234
 
235
- #@ profilebuilder
236
- #: front-end/menu.file.php:156
237
- #: front-end/wppb.edit.profile.php:385
238
- #: front-end/wppb.login.php:76
239
- #: front-end/wppb.register.php:244
 
 
240
  msgid "Username"
241
  msgstr "Uživatelské jméno"
242
 
243
- #@ profilebuilder
244
- #: front-end/menu.file.php:165
245
- #: front-end/wppb.edit.profile.php:394
246
- #: front-end/wppb.register.php:259
247
  msgid "First Name"
248
  msgstr "Křestní jméno"
249
 
250
- #@ profilebuilder
251
- #: front-end/menu.file.php:174
252
- #: front-end/wppb.edit.profile.php:403
253
- #: front-end/wppb.register.php:273
254
  msgid "Last Name"
255
  msgstr "Příjmení"
256
 
257
- #@ profilebuilder
258
- #: front-end/menu.file.php:183
259
- #: front-end/wppb.edit.profile.php:412
260
- #: front-end/wppb.register.php:287
261
  msgid "Nickname"
262
  msgstr "Přezdívka"
263
 
264
- #@ profilebuilder
265
- #: front-end/menu.file.php:192
266
  msgid "Display name publicly as..."
267
  msgstr "Veřejně zobrazovat jako..."
268
 
269
- #@ profilebuilder
270
- #: front-end/menu.file.php:202
271
  msgid "Contact Info:"
272
  msgstr "Kontaktní informace:"
273
 
274
- #@ profilebuilder
275
- #: front-end/menu.file.php:209
276
- #: front-end/wppb.edit.profile.php:457
277
- #: front-end/wppb.register.php:305
 
278
  msgid "E-mail"
279
  msgstr "E-mail"
280
 
281
- #@ profilebuilder
282
- #: front-end/menu.file.php:218
283
- #: front-end/wppb.edit.profile.php:467
284
- #: front-end/wppb.register.php:320
 
285
  msgid "Website"
286
  msgstr "Web"
287
 
288
- #@ profilebuilder
289
- #: front-end/menu.file.php:230
290
- #: front-end/wppb.edit.profile.php:476
291
- #: front-end/wppb.register.php:334
292
  msgid "AIM"
293
  msgstr "AIM (AOL Instant Messenger)"
294
 
295
- #@ profilebuilder
296
- #: front-end/menu.file.php:239
297
- #: front-end/wppb.edit.profile.php:485
298
- #: front-end/wppb.register.php:348
299
  msgid "Yahoo IM"
300
  msgstr "Yahoo IM"
301
 
302
- #@ profilebuilder
303
- #: front-end/menu.file.php:248
304
- #: front-end/wppb.edit.profile.php:494
305
- #: front-end/wppb.register.php:362
306
  msgid "Jabber / Google Talk"
307
  msgstr "Jabber / Google Talk"
308
 
309
- #@ profilebuilder
310
- #: front-end/menu.file.php:258
311
  msgid "About Yourself:"
312
  msgstr "O vás:"
313
 
314
- #@ profilebuilder
315
- #: front-end/menu.file.php:265
316
- #: front-end/wppb.edit.profile.php:507
317
- #: front-end/wppb.register.php:380
 
318
  msgid "Biographical Info"
319
  msgstr "Osobní informace"
320
 
321
- #@ profilebuilder
322
- #: front-end/menu.file.php:275
323
- #: front-end/wppb.edit.profile.php:516
324
  msgid "New Password"
325
  msgstr "Nové heslo"
326
 
327
- #@ profilebuilder
328
- #: front-end/options.php:57
329
  msgid "Basic Information"
330
  msgstr "Základní informace"
331
 
332
- #@ profilebuilder
333
- #: front-end/options.php:59
334
  msgid "Show/Hide the Admin Bar on Front-end"
335
  msgstr "Zobrazit/skrýt administrační lištu ve front-endu"
336
 
337
- #@ profilebuilder
338
- #: front-end/options.php:63
339
- #: premium/premium.php:5
340
  #: premium/premium.php:6
 
341
  msgid "Extra Profile Fields"
342
  msgstr "Vlastní pole profilu"
343
 
344
- #@ profilebuilder
345
- #: front-end/options.php:64
 
 
 
 
 
 
346
  msgid "Register Your Version"
347
  msgstr "Registrace"
348
 
349
- #@ profilebuilder
350
- #: front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
  msgid "You must be logged in to edit your profile."
352
  msgstr "Pro úpravu profilu je nutné se přihlásit."
353
 
354
- #@ profilebuilder
355
- #: front-end/wppb.edit.profile.php:278
356
  msgid "The avatar was successfully deleted."
357
  msgstr "Avatar byl úspěšně odstraněn."
358
 
359
- #@ profilebuilder
360
- #: front-end/wppb.edit.profile.php:283
361
- msgid "The attachment \""
 
362
  msgstr "Příloha \""
363
 
364
- #@ profilebuilder
365
- #: front-end/wppb.edit.profile.php:285
366
- msgid "\" was successfully deleted."
 
367
  msgstr "\" byla úspěšně odstraněna."
368
 
369
- #@ profilebuilder
370
- #: front-end/wppb.edit.profile.php:298
371
  msgid "The changes have been successfully saved."
372
  msgstr "Změny byly úspěšně uloženy."
373
 
374
- #@ profilebuilder
375
- #: front-end/wppb.edit.profile.php:303
376
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
377
  msgstr "Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
378
 
379
- #@ profilebuilder
380
- #: front-end/wppb.edit.profile.php:304
381
- #: front-end/wppb.edit.profile.php:314
382
- #: front-end/wppb.edit.profile.php:324
383
- #: front-end/wppb.edit.profile.php:333
384
- #: front-end/wppb.edit.profile.php:355
385
- #: front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
386
  msgid "NOT"
387
  msgstr "NEBYLA"
388
 
389
- #@ profilebuilder
390
- #: front-end/wppb.edit.profile.php:305
391
- #: front-end/wppb.edit.profile.php:315
392
- #: front-end/wppb.edit.profile.php:325
393
- #: front-end/wppb.edit.profile.php:334
394
- #: front-end/wppb.edit.profile.php:356
395
- #: front-end/wppb.edit.profile.php:364
396
- msgid " updated along with the rest of the information."
 
 
397
  msgstr " aktualizována spolu s ostatními informacemi."
398
 
399
- #@ profilebuilder
400
- #: front-end/wppb.edit.profile.php:313
401
- msgid "The email address you entered is invalid. <br/> The email address was "
 
402
  msgstr "Zadaný e-mail není platný. <br/> Adresa "
403
 
404
- #@ profilebuilder
405
- #: front-end/wppb.edit.profile.php:323
406
- msgid "The passwords you entered do not match. <br/> The password was "
 
407
  msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
408
 
409
- #@ profilebuilder
410
- #: front-end/wppb.edit.profile.php:332
411
- msgid "You didn't complete both password fields. <br/> The password was "
412
- msgstr "Nevyplnili jste obě pole pro heslo. <br/> Zadané heslo "
 
 
 
 
 
 
 
 
 
 
 
 
413
 
414
- #@ profilebuilder
415
- #: front-end/wppb.edit.profile.php:344
416
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
417
  msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
418
 
419
- #@ profilebuilder
420
- #: front-end/wppb.edit.profile.php:352
421
- msgid "<br/>Possible cause: the size was bigger than "
 
422
  msgstr "<br/> Možná příčina: velikost byla větší než "
423
 
424
- #@ profilebuilder
425
- #: front-end/wppb.edit.profile.php:354
426
- msgid "b.<br/>The listed attachements were "
 
427
  msgstr "B. <br/> Příloha (přílohy) "
428
 
429
- #@ profilebuilder
430
- #: front-end/wppb.edit.profile.php:362
431
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
432
- msgstr "Došlo k chybě při pokusu nahrát avatar. <br/> Možná příčina: Velikost/nesprávný typu souboru. <br/> Ikona avataru "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
 
434
- #@ profilebuilder
435
- #: front-end/wppb.edit.profile.php:380
436
- #: front-end/wppb.register.php:233
437
  msgid "Name"
438
  msgstr "Jméno"
439
 
440
- #@ default
441
- #: front-end/wppb.edit.profile.php:386
442
- msgid " Usernames cannot be changed."
 
443
  msgstr "Uživatelská jména nelze měnit."
444
 
445
- #@ profilebuilder
446
- #: front-end/wppb.edit.profile.php:414
447
- #: front-end/wppb.edit.profile.php:459
448
- #: front-end/wppb.register.php:246
449
- #: front-end/wppb.register.php:307
450
- msgid "(required)"
451
- msgstr "(vyžadováno)"
 
 
 
 
 
452
 
453
- #@ profilebuilder
454
- #: front-end/wppb.edit.profile.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
455
  msgid "Display name publicly as"
456
  msgstr "Veřejně zobrazovat jako"
457
 
458
- #@ profilebuilder
459
- #: front-end/wppb.edit.profile.php:451
460
- #: front-end/wppb.register.php:294
461
  msgid "Contact Info"
462
  msgstr "Kontaktní informace"
463
 
464
- #@ profilebuilder
465
- #: front-end/wppb.edit.profile.php:501
466
- #: front-end/wppb.register.php:369
 
 
 
 
 
467
  msgid "About Yourself"
468
  msgstr "O vás"
469
 
470
- #@ profilebuilder
471
- #: front-end/wppb.edit.profile.php:521
472
- #: front-end/wppb.register.php:403
 
 
473
  msgid "Repeat Password"
474
  msgstr "Heslo ještě jednou"
475
 
476
- #@ profilebuilder
477
- #: front-end/wppb.edit.profile.php:537
478
  msgid "Update"
479
  msgstr "Aktualizovat"
480
 
481
- #@ profilebuilder
482
- #: front-end/wppb.login.php:47
483
- #, php-format
484
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
485
  msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
486
 
487
- #@ profilebuilder
488
- #: front-end/wppb.login.php:47
489
- #: front-end/wppb.register.php:171
490
  msgid "Log out of this account"
491
  msgstr "Odhlásit se"
492
 
493
- #@ profilebuilder
494
- #: front-end/wppb.login.php:47
495
- msgid "Log out &raquo;"
 
496
  msgstr "Odhlásit se &raquo;"
497
 
498
- #@ profilebuilder
499
- #: front-end/wppb.login.php:60
500
- #, php-format
501
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
502
  msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
503
 
504
- #@ profilebuilder
505
- #: front-end/wppb.login.php:86
506
- #: front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
  msgid "Password"
508
  msgstr "Heslo"
509
 
510
- #@ profilebuilder
511
- #: front-end/wppb.login.php:90
512
  msgid "Log in"
513
  msgstr "Přihlásit se"
514
 
515
- #@ profilebuilder
516
- #: front-end/wppb.login.php:92
517
  msgid "Remember me"
518
  msgstr "Pamatovat si mě"
519
 
520
- #@ profilebuilder
521
- #: front-end/wppb.login.php:96
522
  msgid "Lost password?"
523
  msgstr "Zapomněli jste heslo?"
524
 
525
- #@ profilebuilder
526
- #: front-end/wppb.register.php:39
527
- msgid "A username is required for registration."
528
- msgstr "Uživatelské jméno je nutné pro registraci."
529
-
530
- #@ profilebuilder
531
- #: front-end/wppb.register.php:41
532
- msgid "Sorry, that username already exists!"
533
- msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
534
 
535
- #@ profilebuilder
536
- #: front-end/wppb.register.php:44
537
- msgid "You must enter a valid email address."
538
- msgstr "Musíte zadat platnou e-mailovou adresu."
539
 
540
- #@ profilebuilder
541
- #: front-end/wppb.register.php:46
542
- msgid "Sorry, that email address is already used!"
543
- msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
544
 
545
- #@ profilebuilder
546
- #: front-end/wppb.register.php:49
547
- msgid "You didn't complete one of the password-fields!"
548
- msgstr "Nebyla vyplněna obě pole hesla."
549
 
550
- #@ profilebuilder
551
- #: front-end/wppb.register.php:51
552
- msgid "The entered passwords don't match!"
553
- msgstr "Zadaná hesla se neshodují."
554
 
555
- #@ profilebuilder
556
- #: front-end/wppb.register.php:171
557
- #, php-format
558
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
559
- msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Není třeba zakládat další účet..."
560
 
561
- #@ profilebuilder
562
- #: front-end/wppb.register.php:171
563
- msgid "Logout &raquo;"
564
- msgstr "Odhlásit se &raquo;"
565
 
566
- #@ profilebuilder
567
- #: front-end/wppb.register.php:181
568
- #, php-format
569
- msgid "A user account for %1$s has been created."
570
- msgstr "Uživatelský účet pro %1$s byl vytvořen."
571
 
572
- #@ profilebuilder
573
- #: front-end/wppb.register.php:183
574
- #, php-format
575
- msgid "Thank you for registering, %1$s."
576
- msgstr "Děkujeme za registraci, %1$s."
 
577
 
578
- #@ profilebuilder
579
- #: front-end/wppb.register.php:211
580
- msgid "Users can register themselves or you can manually create users here."
581
- msgstr "Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet uživatele zde."
 
582
 
583
- #@ profilebuilder
584
- #: front-end/wppb.register.php:215
585
- msgid "Users cannot currently register themselves, but you can manually create users here."
586
- msgstr "Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
587
 
588
- #@ profilebuilder
589
- #: front-end/wppb.register.php:219
590
- msgid "Only an administrator can add new users."
591
- msgstr "Pouze administrátor může přidávat nové uživatele."
592
 
593
- #@ profilebuilder
594
- #: front-end/wppb.register.php:422
595
- msgid " Send these credentials via email."
596
- msgstr "Odeslat tyto přihlašovací údaje e-mailem."
597
 
598
- #@ profilebuilder
599
- #: front-end/wppb.register.php:428
600
- msgid "Add User"
601
- msgstr "Přidat uživatele"
 
602
 
603
- #@ profilebuilder
604
- #: front-end/wppb.register.php:428
605
- msgid "Register"
606
- msgstr "Registrovat"
607
 
608
- #@ profilebuilder
609
- #: premium/functions/extra.fields.php:25
610
- #: premium/functions/extra.fields.php:31
611
- #: premium/functions/extra.fields.php:46
612
- #: premium/functions/extra.fields.php:62
613
- #: premium/functions/extra.fields.php:78
614
- #: premium/functions/extra.fields.php:93
615
- #: premium/functions/extra.fields.php:109
616
- #: premium/functions/extra.fields.php:133
617
- #: premium/functions/extra.fields.php:167
618
- #: premium/functions/extra.fields.php:177
619
- #: premium/functions/extra.fields.php:188
620
- #: premium/functions/extra.fields.php:203
621
- #: premium/functions/extra.fields.php:217
622
- #: premium/functions/extra.fields.php:237
623
- #: premium/functions/extra.fields.php:248
624
- #: premium/functions/extra.fields.php:258
625
- #: premium/functions/extra.fields.php:302
626
- #: premium/functions/extra.fields.php:310
627
- #: premium/functions/extra.fields.php:326
628
- #: premium/functions/extra.fields.php:347
629
- #: premium/functions/extra.fields.php:368
630
- #: premium/functions/extra.fields.php:387
631
- #: premium/functions/extra.fields.php:407
632
- #: premium/functions/extra.fields.php:432
633
- msgid "item_title"
634
- msgstr "item_title"
635
-
636
- #@ profilebuilder
637
- #: premium/functions/extra.fields.php:36
638
- #: premium/functions/extra.fields.php:53
639
- #: premium/functions/extra.fields.php:69
640
- #: premium/functions/extra.fields.php:86
641
- #: premium/functions/extra.fields.php:97
642
- #: premium/functions/extra.fields.php:112
643
- #: premium/functions/extra.fields.php:136
644
- #: premium/functions/extra.fields.php:180
645
- #: premium/functions/extra.fields.php:195
646
- #: premium/functions/extra.fields.php:210
647
- #: premium/functions/extra.fields.php:226
648
- #: premium/functions/extra.fields.php:241
649
- #: premium/functions/extra.fields.php:251
650
- #: premium/functions/extra.fields.php:261
651
- #: premium/functions/extra.fields.php:313
652
- #: premium/functions/extra.fields.php:335
653
- #: premium/functions/extra.fields.php:356
654
- #: premium/functions/extra.fields.php:377
655
- #: premium/functions/extra.fields.php:391
656
- #: premium/functions/extra.fields.php:410
657
- #: premium/functions/extra.fields.php:435
658
- msgid "item_desc"
659
- msgstr "item_desc"
660
-
661
- #@ profilebuilder
662
- #: premium/functions/extra.fields.php:114
663
- #: premium/functions/extra.fields.php:117
664
- #: premium/functions/extra.fields.php:412
665
- #: premium/functions/extra.fields.php:415
666
- msgid "Current file"
667
- msgstr "Aktuální soubor"
668
 
669
- #@ profilebuilder
670
- #: premium/functions/extra.fields.php:138
671
- #: premium/functions/extra.fields.php:437
672
- msgid "Current avatar"
673
- msgstr "Aktuální avatar"
674
 
675
- #@ profilebuilder
676
- #: premium/premium.php:7
677
- msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
678
- msgstr "Můžete vytvořit libovolné množství vlastních polí. K jejich rozdělení do tématických celků (ve front-endu) použijte pole \""
679
 
680
- #@ profilebuilder
681
- #: premium/premium.php:7
682
- msgid "heading"
683
- msgstr "záhlaví"
684
 
685
- #@ profilebuilder
686
- #: premium/premium.php:7
687
- msgid "\" custom field."
688
- msgstr "\"."
 
689
 
690
- #@ profilebuilder
691
- #: premium/premium.php:8
692
- msgid "All of the fields can be sorted and rearranged to your liking with "
693
- msgstr "Všechna pole lze třídit pomocí "
 
 
694
 
695
- #@ profilebuilder
696
- #: premium/premium.php:8
697
- msgid "Drag"
698
- msgstr "Drag"
699
 
700
- #@ profilebuilder
701
- #: premium/premium.php:8
702
- msgid "Drop"
703
- msgstr "Drop"
 
704
 
705
- #@ profilebuilder
706
- #: premium/premium.php:8
707
- msgid ". Don't worry about the order in which you create your custom fields, you can always reorder them."
708
- msgstr ". Není proto třeba se starat o pořadí, ve kterém vytvoříte vlastní pole, můžete jej kdykoli změnit."
709
 
710
- #@ profilebuilder
711
- #: premium/premium.php:12
712
- #: premium/premium.php:20
713
- msgid "Title"
714
- msgstr "Název"
715
 
716
- #@ profilebuilder
717
- #: premium/premium.php:13
718
- #: premium/premium.php:21
719
- msgid "Key"
720
- msgstr "Klíč"
721
 
722
- #@ profilebuilder
723
- #: premium/premium.php:14
724
- #: premium/premium.php:22
725
- msgid "Type"
726
- msgstr "Typ"
 
 
 
 
 
727
 
728
- #@ profilebuilder
729
- #: premium/premium.php:15
730
- #: premium/premium.php:23
731
- msgid "Add Option"
732
- msgstr "Přidat volbu"
733
 
734
- #@ profilebuilder
735
- #: premium/premium.php:37
736
- #: premium/premium.php:137
737
- msgid "Edit"
738
- msgstr "Upravit"
739
 
740
- #@ profilebuilder
741
- #: premium/premium.php:38
742
- #: premium/premium.php:138
743
- msgid "Delete"
744
- msgstr "Odstranit"
745
 
746
- #@ profilebuilder
747
- #: premium/premium.php:61
748
- msgid "Title:"
749
- msgstr "Název:"
750
 
751
- #@ profilebuilder
752
- #: premium/premium.php:61
753
- msgid "The title of the item."
754
- msgstr "Název vlastního pole."
 
755
 
756
- #@ profilebuilder
757
- #: premium/premium.php:71
758
- msgid "Option Key:"
759
- msgstr "Klíč vlastního pole:"
 
760
 
761
- #@ profilebuilder
762
- #: premium/premium.php:71
763
- msgid "Unique alphanumeric key, underscores are acceptable."
764
- msgstr "Unikátní alfanumerický klíč, můžete použít i podtržítka."
 
765
 
766
- #@ profilebuilder
767
- #: premium/premium.php:99
768
- msgid "Option Type:"
769
- msgstr "Typ vlastního pole:"
770
 
771
- #@ profilebuilder
772
- #: premium/premium.php:99
773
- msgid "Choose one of the supported option types."
774
- msgstr "Vyberte jednu z nabízených možností."
775
 
776
- #@ profilebuilder
777
- #: premium/premium.php:109
778
- msgid "Description:"
779
- msgstr "Popis:"
780
 
781
- #@ profilebuilder
782
- #: premium/premium.php:109
783
- msgid "Enter a detailed description of the option for end users to read(optional)."
784
- msgstr "Zadejte podrobný popis vlastního pole pro uživatele (volitelné)."
 
785
 
786
- #@ profilebuilder
787
- #: premium/premium.php:119
788
- msgid "Options:"
789
- msgstr "Možnosti:"
790
 
791
- #@ profilebuilder
792
- #: premium/premium.php:119
793
- msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
794
- msgstr "Zadejte čárkami oddělený seznam možností. Například \"Jedna, dva, tři\" nebo jen jednu hodnotu (např. \"Ano\" u check-boxu)."
795
 
796
- #@ profilebuilder
797
- #: premium/premium.php:127
798
- msgid "Cancel"
799
- msgstr "Zrušit"
 
800
 
801
- #@ profilebuilder
802
- #: premium/premium.php:128
803
- msgid "Save"
804
- msgstr "Uložit"
805
 
806
- #@ profilebuilder
807
- #: premium/premium.php:158
808
- #: premium/premium.php:159
809
- msgid "Register your version of Profile Builder Pro"
810
- msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
811
 
812
- #@ profilebuilder
813
- #: premium/premium.php:160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
  msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
815
  msgstr "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
816
 
817
- #@ profilebuilder
818
- #: premium/premium.php:161
819
  msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
820
  msgstr "Pokud si zaregistrujete tuto verzi Profile Builder, budete dostávat informace o aktualizacích, nových verzích a získáte přístup k technické podpoře."
821
 
822
- #@ profilebuilder
823
- #: premium/premium.php:162
824
  msgid "Serial Number:"
825
  msgstr "Sériové číslo:"
826
 
827
- #@ profilebuilder
828
- #: premium/premium.php:167
 
 
 
 
 
829
  msgid "The serial number couldn't be validated or isn't valid!"
830
  msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
831
 
832
- #@ profilebuilder
833
- #: premium/premium.php:169
834
- msgid "The serial number was successfully validated!"
835
- msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
836
 
837
- #@ profilebuilder
838
- #: premium/premium.php:172
839
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
840
  msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder Pro v1.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:30+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: Martin Jurica <martin@jurica.info>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ # @ profilebuilder
22
+ #: front-end/menu.file.php:25
23
+ #: front-end/menu.file.php:28
24
  msgid "Profile Builder"
25
  msgstr "Profile Builder"
26
 
27
+ # @ profilebuilder
28
+ #: front-end/menu.file.php:26
29
  msgid "Welcome to Profile Builder!"
30
  msgstr "Vítá vás Profile Builder!"
31
 
32
+ # @ profilebuilder
33
+ #: front-end/menu.file.php:28
34
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
35
  msgstr " umožňuje přidat front-end menu pro všechny uživatele vašeho webu. To usnadňuje úpravu profilu a zjednodušuje registraci nových uživatelů."
36
 
37
+ # @ profilebuilder
38
+ #: front-end/menu.file.php:29
39
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
40
  msgstr "Uživatelé s administrátorskými právy mohou upravovat stávající pole v profilu a vytvářet nová."
41
 
42
+ # @ profilebuilder
43
+ #: front-end/menu.file.php:30
44
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
45
  msgstr "Pro úpravu profilu přímo na webu (ne v administraci) stačí vytvořit novu Stránku (a pojmenovat ji například Upravit profil)."
46
 
47
+ # @ profilebuilder
48
+ #: front-end/menu.file.php:31
49
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
50
  msgstr "Do vytvořené stránky (nebo widgetu) pak stačí umístit následující kód: "
51
 
52
+ # @ profilebuilder
53
+ #: front-end/menu.file.php:32
54
  msgid "Publish your page and you are ready to go!"
55
  msgstr "Nyní vytvořenou stránku publikujte a jste hotovi."
56
 
57
+ # @ profilebuilder
58
+ #: front-end/menu.file.php:33
59
  msgid "You can use the following shortcodes:"
60
  msgstr "K dispozici jsou následující kódy:"
61
 
62
+ # @ profilebuilder
63
+ #: front-end/menu.file.php:34
64
  msgid "for a log-in form."
65
  msgstr " pro přihlašovací formulář."
66
 
67
+ # @ profilebuilder
68
+ #: front-end/menu.file.php:35
69
  msgid "to add a registration form."
70
  msgstr " pro registrační formulář."
71
 
72
+ # @ profilebuilder
73
+ #: front-end/menu.file.php:36
74
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
75
  msgstr "pro poskytnutí přístupu k vlastnímu profilu (pouze pro přihlášené uživatele)."
76
 
77
+ # @ profilebuilder
78
+ #: front-end/menu.file.php:37
79
+ #, fuzzy
80
+ msgid "to add a password recovery form."
81
+ msgstr " pro registrační formulář."
82
+
83
+ # @ profilebuilder
84
+ #: front-end/menu.file.php:39
85
  msgid "Users with administrator rights have access to the following features:"
86
  msgstr "Uživatelé s administrátorskými právy mohou také:"
87
 
88
+ # @ profilebuilder
89
+ #: front-end/menu.file.php:40
90
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
91
  msgstr "přidat/zahrnout vlastní CSS styl z aktuální šablony nebo použít některý ze stylů Profile Builder (výchozí, bílý, černý)."
92
 
93
+ # @ profilebuilder
94
+ #: front-end/menu.file.php:41
95
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
96
  msgstr "zvolit, zda zobrazovat administrační menu ve front-endu - v závislosti na uživatelské skupině."
97
 
98
+ # @ profilebuilder
99
+ #: front-end/menu.file.php:42
100
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
101
  msgstr "určit, která pole mohou uživatelé vidět/upravovat. Obsah skrytých polí zůstane beze změny."
102
 
103
+ # @ profilebuilder
104
+ #: front-end/menu.file.php:43
105
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
106
  msgstr "přidat další uživatelská pole k již existujícím polím profilu. K dispozici jsou typy polí: nadpis, text, textarea, select, check-box, radio a upload."
107
 
108
+ # @ profilebuilder
109
+ #: front-end/menu.file.php:44
110
  msgid "add an avatar field."
111
  msgstr "přidat pole pro avatar."
112
 
113
+ #: front-end/menu.file.php:45
114
+ msgid "create custom redirects."
115
+ msgstr ""
116
+
117
+ #: front-end/menu.file.php:46
118
+ msgid "front-end userlisting using the"
119
+ msgstr ""
120
+
121
+ #: front-end/menu.file.php:46
122
+ msgid "shortcode."
123
+ msgstr ""
124
+
125
+ # @ profilebuilder
126
+ #: front-end/menu.file.php:49
127
+ #: front-end/menu.file.php:104
128
+ #: front-end/menu.file.php:159
129
  msgid "NOTE:"
130
  msgstr "POZNÁMKA:"
131
 
132
+ # @ profilebuilder
133
+ #: front-end/menu.file.php:50
134
  msgid "this plugin only adds/removes fields in the front-end."
135
  msgstr "tento plugin pouze přidává/odstraňuje pole ve front-endu."
136
 
137
+ # @ profilebuilder
138
+ #: front-end/menu.file.php:51
139
  msgid "The default information-fields will still be visible(and thus modifiable)"
140
  msgstr "Výchozí pole budou i nadále dostupná (včetně možnosti úprav)"
141
 
142
+ # @ profilebuilder
143
+ #: front-end/menu.file.php:52
144
  msgid "from the back-end, while custom fields will only be visible in the front-end."
145
  msgstr "v administraci. Vlastní pole budou přístupná ve front-endu (na webu)."
146
 
147
+ #: front-end/menu.file.php:66
148
+ #: front-end/menu.file.php:67
149
+ #: front-end/options.php:51
150
+ #: premium/addon/addon.php:89
151
+ msgid "General Settings"
152
+ msgstr ""
153
 
154
+ # @ profilebuilder
155
+ #: front-end/menu.file.php:68
156
+ #, fuzzy
157
+ msgid "Stylesheet Used on the Front-End:"
158
  msgstr "CSS styl:"
159
 
160
+ # @ profilebuilder
161
+ #: front-end/menu.file.php:70
162
  msgid "Default"
163
  msgstr "Výchozí"
164
 
165
+ # @ profilebuilder
166
+ #: front-end/menu.file.php:75
167
  msgid "White"
168
  msgstr "Bílý"
169
 
170
+ # @ profilebuilder
171
+ #: front-end/menu.file.php:76
172
  msgid "Black"
173
  msgstr "Černý"
174
 
175
+ # @ profilebuilder
176
+ #: front-end/menu.file.php:80
177
  msgid "None"
178
  msgstr "Žádný"
179
 
180
+ #: front-end/menu.file.php:86
181
+ msgid "\"Email Confirmation\" Feature Activated:"
182
+ msgstr ""
183
+
184
+ #: front-end/menu.file.php:88
185
+ #: front-end/menu.file.php:97
186
+ #: front-end/menu.file.php:210
187
+ #: front-end/menu.file.php:223
188
+ #: front-end/menu.file.php:236
189
+ #: front-end/menu.file.php:249
190
+ #: front-end/menu.file.php:262
191
+ #: front-end/menu.file.php:281
192
+ #: front-end/menu.file.php:294
193
+ #: front-end/menu.file.php:310
194
+ #: front-end/menu.file.php:323
195
+ #: front-end/menu.file.php:336
196
+ #: front-end/menu.file.php:355
197
+ #: front-end/menu.file.php:369
198
+ #: premium/addon/addon.php:477
199
+ #: premium/addon/addon.php:485
200
+ #: premium/addon/addon.php:495
201
+ #: premium/addon/addon.php:524
202
+ #: premium/addon/addon.php:536
203
+ #: premium/addon/addon.php:548
204
+ #: premium/addon/addon.php:560
205
+ msgid "Yes"
206
+ msgstr ""
207
+
208
+ # @ profilebuilder
209
+ #: front-end/menu.file.php:89
210
+ #: front-end/menu.file.php:98
211
+ #: front-end/menu.file.php:211
212
+ #: front-end/menu.file.php:224
213
+ #: front-end/menu.file.php:237
214
+ #: front-end/menu.file.php:250
215
+ #: front-end/menu.file.php:263
216
+ #: front-end/menu.file.php:282
217
+ #: front-end/menu.file.php:295
218
+ #: front-end/menu.file.php:311
219
+ #: front-end/menu.file.php:324
220
+ #: front-end/menu.file.php:337
221
+ #: front-end/menu.file.php:356
222
+ #: front-end/menu.file.php:370
223
+ #: premium/addon/addon.php:478
224
+ #: premium/addon/addon.php:486
225
+ #: premium/addon/addon.php:496
226
+ #: premium/addon/addon.php:525
227
+ #: premium/addon/addon.php:537
228
+ #: premium/addon/addon.php:549
229
+ #: premium/addon/addon.php:561
230
+ #, fuzzy
231
+ msgid "No"
232
+ msgstr "Žádný"
233
+
234
+ #: front-end/menu.file.php:95
235
+ msgid "\"Admin Approval\" Feature Activated:"
236
+ msgstr ""
237
+
238
+ #: front-end/menu.file.php:105
239
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
240
+ msgstr ""
241
+
242
+ #: front-end/menu.file.php:106
243
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
244
+ msgstr ""
245
+
246
+ #: front-end/menu.file.php:107
247
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
248
+ msgstr ""
249
+
250
+ # @ default
251
+ #: front-end/menu.file.php:114
252
+ #: front-end/menu.file.php:167
253
+ #: front-end/menu.file.php:378
254
+ #: premium/premium.php:252
255
+ #: premium/addon/addon.php:45
256
+ #: premium/addon/addon.php:421
257
+ #: premium/addon/addon.php:575
258
+ #: premium/addon/addon.php:629
259
  msgid "Save Changes"
260
  msgstr "Uložit změny"
261
 
262
+ # @ profilebuilder
263
+ #: front-end/menu.file.php:132
264
+ #: front-end/menu.file.php:133
265
  msgid "Show/Hide the Admin Bar on Front End"
266
  msgstr "Administrační lišta ve front-endu"
267
 
268
+ # @ profilebuilder
269
+ #: front-end/menu.file.php:137
270
  msgid "User-group"
271
  msgstr "Skupina"
272
 
273
+ # @ profilebuilder
274
+ #: front-end/menu.file.php:138
275
+ #: front-end/menu.file.php:191
276
  msgid "Visibility"
277
  msgstr "Viditelnost"
278
 
279
+ # @ profilebuilder
280
+ #: front-end/menu.file.php:147
281
+ #: front-end/menu.file.php:206
282
+ #: front-end/menu.file.php:219
283
+ #: front-end/menu.file.php:232
284
+ #: front-end/menu.file.php:245
285
+ #: front-end/menu.file.php:258
286
+ #: front-end/menu.file.php:277
287
+ #: front-end/menu.file.php:290
288
+ #: front-end/menu.file.php:306
289
+ #: front-end/menu.file.php:319
290
+ #: front-end/menu.file.php:332
291
+ #: front-end/menu.file.php:351
292
+ #: front-end/menu.file.php:365
293
  msgid "Show"
294
  msgstr "Zobrazit"
295
 
296
+ # @ profilebuilder
297
+ #: front-end/menu.file.php:148
298
+ #: front-end/menu.file.php:207
299
+ #: front-end/menu.file.php:220
300
+ #: front-end/menu.file.php:233
301
+ #: front-end/menu.file.php:246
302
+ #: front-end/menu.file.php:259
303
+ #: front-end/menu.file.php:278
304
+ #: front-end/menu.file.php:291
305
+ #: front-end/menu.file.php:307
306
+ #: front-end/menu.file.php:320
307
+ #: front-end/menu.file.php:333
308
+ #: front-end/menu.file.php:352
309
+ #: front-end/menu.file.php:366
310
  msgid "Hide"
311
  msgstr "Skrýt"
312
 
313
+ #: front-end/menu.file.php:160
314
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
315
+ msgstr ""
316
+
317
+ # @ profilebuilder
318
+ #: front-end/menu.file.php:185
319
+ #: front-end/menu.file.php:186
320
+ #: front-end/options.php:53
321
  msgid "Default Profile Fields"
322
  msgstr "Výchozí pole profilu"
323
 
324
+ # @ profilebuilder
325
+ #: front-end/menu.file.php:190
326
  msgid "Input Field Name"
327
  msgstr "Název pole"
328
 
329
+ # @ profilebuilder
330
+ #: front-end/menu.file.php:192
331
+ #, fuzzy
332
+ msgid "Required"
333
+ msgstr "(vyžadováno)"
334
+
335
+ # @ profilebuilder
336
+ #: front-end/menu.file.php:197
337
  msgid "Name:"
338
  msgstr "Jméno:"
339
 
340
+ # @ profilebuilder
341
+ #: front-end/menu.file.php:203
342
+ #: front-end/wppb.edit.profile.php:698
343
+ #: front-end/wppb.login.php:138
344
+ #: front-end/wppb.register.php:488
345
+ #: front-end/wppb.register.php:1290
346
+ #: premium/addon/addon.functions.php:135
347
  msgid "Username"
348
  msgstr "Uživatelské jméno"
349
 
350
+ # @ profilebuilder
351
+ #: front-end/menu.file.php:216
352
+ #: front-end/wppb.edit.profile.php:718
353
+ #: front-end/wppb.register.php:1314
354
  msgid "First Name"
355
  msgstr "Křestní jméno"
356
 
357
+ # @ profilebuilder
358
+ #: front-end/menu.file.php:229
359
+ #: front-end/wppb.edit.profile.php:738
360
+ #: front-end/wppb.register.php:1338
361
  msgid "Last Name"
362
  msgstr "Příjmení"
363
 
364
+ # @ profilebuilder
365
+ #: front-end/menu.file.php:242
366
+ #: front-end/wppb.edit.profile.php:758
367
+ #: front-end/wppb.register.php:1362
368
  msgid "Nickname"
369
  msgstr "Přezdívka"
370
 
371
+ # @ profilebuilder
372
+ #: front-end/menu.file.php:255
373
  msgid "Display name publicly as..."
374
  msgstr "Veřejně zobrazovat jako..."
375
 
376
+ # @ profilebuilder
377
+ #: front-end/menu.file.php:268
378
  msgid "Contact Info:"
379
  msgstr "Kontaktní informace:"
380
 
381
+ # @ profilebuilder
382
+ #: front-end/menu.file.php:274
383
+ #: front-end/wppb.edit.profile.php:828
384
+ #: front-end/wppb.register.php:489
385
+ #: front-end/wppb.register.php:1389
386
  msgid "E-mail"
387
  msgstr "E-mail"
388
 
389
+ # @ profilebuilder
390
+ #: front-end/menu.file.php:287
391
+ #: front-end/wppb.edit.profile.php:847
392
+ #: front-end/wppb.register.php:1413
393
+ #: premium/addon/addon.functions.php:177
394
  msgid "Website"
395
  msgstr "Web"
396
 
397
+ # @ profilebuilder
398
+ #: front-end/menu.file.php:303
399
+ #: front-end/wppb.edit.profile.php:865
400
+ #: front-end/wppb.register.php:1437
401
  msgid "AIM"
402
  msgstr "AIM (AOL Instant Messenger)"
403
 
404
+ # @ profilebuilder
405
+ #: front-end/menu.file.php:316
406
+ #: front-end/wppb.edit.profile.php:883
407
+ #: front-end/wppb.register.php:1461
408
  msgid "Yahoo IM"
409
  msgstr "Yahoo IM"
410
 
411
+ # @ profilebuilder
412
+ #: front-end/menu.file.php:329
413
+ #: front-end/wppb.edit.profile.php:901
414
+ #: front-end/wppb.register.php:1485
415
  msgid "Jabber / Google Talk"
416
  msgstr "Jabber / Google Talk"
417
 
418
+ # @ profilebuilder
419
+ #: front-end/menu.file.php:342
420
  msgid "About Yourself:"
421
  msgstr "O vás:"
422
 
423
+ # @ profilebuilder
424
+ #: front-end/menu.file.php:348
425
+ #: front-end/wppb.edit.profile.php:922
426
+ #: front-end/wppb.register.php:1512
427
+ #: premium/addon/addon.functions.php:183
428
  msgid "Biographical Info"
429
  msgstr "Osobní informace"
430
 
431
+ # @ profilebuilder
432
+ #: front-end/menu.file.php:362
433
+ #: front-end/wppb.edit.profile.php:932
434
  msgid "New Password"
435
  msgstr "Nové heslo"
436
 
437
+ # @ profilebuilder
438
+ #: front-end/options.php:50
439
  msgid "Basic Information"
440
  msgstr "Základní informace"
441
 
442
+ # @ profilebuilder
443
+ #: front-end/options.php:52
444
  msgid "Show/Hide the Admin Bar on Front-end"
445
  msgstr "Zobrazit/skrýt administrační lištu ve front-endu"
446
 
447
+ # @ profilebuilder
448
+ #: front-end/options.php:59
 
449
  #: premium/premium.php:6
450
+ #: premium/premium.php:7
451
  msgid "Extra Profile Fields"
452
  msgstr "Vlastní pole profilu"
453
 
454
+ # @ profilebuilder
455
+ #: front-end/options.php:62
456
+ #, fuzzy
457
+ msgid "Addons"
458
+ msgstr "Přidat volbu"
459
+
460
+ # @ profilebuilder
461
+ #: front-end/options.php:65
462
  msgid "Register Your Version"
463
  msgstr "Registrace"
464
 
465
+ #: front-end/wppb.edit.profile.php:85
466
+ #: front-end/wppb.register.php:577
467
+ msgid "The information size you were trying to submit was larger than"
468
+ msgstr ""
469
+
470
+ #: front-end/wppb.edit.profile.php:86
471
+ #: front-end/wppb.register.php:578
472
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
473
+ msgstr ""
474
+
475
+ #: front-end/wppb.edit.profile.php:87
476
+ #: front-end/wppb.register.php:579
477
+ msgid "Since it was also larger than"
478
+ msgstr ""
479
+
480
+ #: front-end/wppb.edit.profile.php:87
481
+ #: front-end/wppb.register.php:579
482
+ msgid "no additional information is available."
483
+ msgstr ""
484
+
485
+ # @ profilebuilder
486
+ #: front-end/wppb.edit.profile.php:559
487
  msgid "You must be logged in to edit your profile."
488
  msgstr "Pro úpravu profilu je nutné se přihlásit."
489
 
490
+ # @ profilebuilder
491
+ #: front-end/wppb.edit.profile.php:569
492
  msgid "The avatar was successfully deleted."
493
  msgstr "Avatar byl úspěšně odstraněn."
494
 
495
+ # @ profilebuilder
496
+ #: front-end/wppb.edit.profile.php:576
497
+ #, fuzzy
498
+ msgid "The attachment"
499
  msgstr "Příloha \""
500
 
501
+ # @ profilebuilder
502
+ #: front-end/wppb.edit.profile.php:576
503
+ #, fuzzy
504
+ msgid "was successfully deleted."
505
  msgstr "\" byla úspěšně odstraněna."
506
 
507
+ # @ profilebuilder
508
+ #: front-end/wppb.edit.profile.php:591
509
  msgid "The changes have been successfully saved."
510
  msgstr "Změny byly úspěšně uloženy."
511
 
512
+ # @ profilebuilder
513
+ #: front-end/wppb.edit.profile.php:598
514
+ #, fuzzy
515
+ msgid "The email address you entered is already registered to a different user."
516
  msgstr "Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
517
 
518
+ #: front-end/wppb.edit.profile.php:598
519
+ #: front-end/wppb.edit.profile.php:608
520
+ msgid "The email address was"
521
+ msgstr ""
522
+
523
+ # @ profilebuilder
524
+ #: front-end/wppb.edit.profile.php:598
525
+ #: front-end/wppb.edit.profile.php:608
526
+ #: front-end/wppb.edit.profile.php:617
527
+ #: front-end/wppb.edit.profile.php:626
528
+ #: front-end/wppb.edit.profile.php:652
529
+ #: front-end/wppb.edit.profile.php:660
530
+ #: front-end/wppb.edit.profile.php:675
531
  msgid "NOT"
532
  msgstr "NEBYLA"
533
 
534
+ # @ profilebuilder
535
+ #: front-end/wppb.edit.profile.php:598
536
+ #: front-end/wppb.edit.profile.php:608
537
+ #: front-end/wppb.edit.profile.php:617
538
+ #: front-end/wppb.edit.profile.php:626
539
+ #: front-end/wppb.edit.profile.php:652
540
+ #: front-end/wppb.edit.profile.php:660
541
+ #: front-end/wppb.edit.profile.php:675
542
+ #, fuzzy
543
+ msgid "updated along with the rest of the information."
544
  msgstr " aktualizována spolu s ostatními informacemi."
545
 
546
+ # @ profilebuilder
547
+ #: front-end/wppb.edit.profile.php:608
548
+ #, fuzzy
549
+ msgid "The email address you entered is invalid."
550
  msgstr "Zadaný e-mail není platný. <br/> Adresa "
551
 
552
+ # @ profilebuilder
553
+ #: front-end/wppb.edit.profile.php:617
554
+ #, fuzzy
555
+ msgid "The passwords you entered do not match."
556
  msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
557
 
558
+ # @ profilebuilder
559
+ #: front-end/wppb.edit.profile.php:617
560
+ #: front-end/wppb.edit.profile.php:626
561
+ #, fuzzy
562
+ msgid "The password was"
563
+ msgstr "Nové heslo"
564
+
565
+ # @ profilebuilder
566
+ #: front-end/wppb.edit.profile.php:626
567
+ #, fuzzy
568
+ msgid "You didn't complete both password fields."
569
+ msgstr "Nebyla vyplněna obě pole hesla."
570
+
571
+ #: front-end/wppb.edit.profile.php:633
572
+ msgid "Your profile was NOT updated!"
573
+ msgstr ""
574
 
575
+ # @ profilebuilder
576
+ #: front-end/wppb.edit.profile.php:642
577
+ #, fuzzy
578
+ msgid "There was an error while trying to upload the following attachments:"
579
  msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
580
 
581
+ # @ profilebuilder
582
+ #: front-end/wppb.edit.profile.php:652
583
+ #, fuzzy
584
+ msgid "Possible cause: the size was bigger than"
585
  msgstr "<br/> Možná příčina: velikost byla větší než "
586
 
587
+ # @ profilebuilder
588
+ #: front-end/wppb.edit.profile.php:652
589
+ #, fuzzy
590
+ msgid "The listed attachements were"
591
  msgstr "B. <br/> Příloha (přílohy) "
592
 
593
+ # @ profilebuilder
594
+ #: front-end/wppb.edit.profile.php:660
595
+ #, fuzzy
596
+ msgid "There was an error while trying to upload your avatar picture."
597
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
598
+
599
+ #: front-end/wppb.edit.profile.php:660
600
+ msgid "Possible cause: size/incorrect file-type."
601
+ msgstr ""
602
+
603
+ #: front-end/wppb.edit.profile.php:660
604
+ msgid "The avatar was"
605
+ msgstr ""
606
+
607
+ # @ profilebuilder
608
+ #: front-end/wppb.edit.profile.php:668
609
+ #: front-end/wppb.register.php:885
610
+ #, fuzzy
611
+ msgid "There was an error while trying to upload the following attachment(s)"
612
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
613
+
614
+ #: front-end/wppb.edit.profile.php:675
615
+ #: front-end/wppb.register.php:892
616
+ msgid "Only files with the following extension(s) can be uploaded:"
617
+ msgstr ""
618
+
619
+ #: front-end/wppb.edit.profile.php:675
620
+ msgid "This file was"
621
+ msgstr ""
622
 
623
+ # @ profilebuilder
624
+ #: front-end/wppb.edit.profile.php:692
625
+ #: front-end/wppb.register.php:1269
626
  msgid "Name"
627
  msgstr "Jméno"
628
 
629
+ # @ default
630
+ #: front-end/wppb.edit.profile.php:699
631
+ #, fuzzy
632
+ msgid "Usernames cannot be changed."
633
  msgstr "Uživatelská jména nelze měnit."
634
 
635
+ #: front-end/wppb.edit.profile.php:708
636
+ #: front-end/wppb.edit.profile.php:728
637
+ #: front-end/wppb.edit.profile.php:748
638
+ #: front-end/wppb.edit.profile.php:768
639
+ #: front-end/wppb.edit.profile.php:818
640
+ #: front-end/wppb.edit.profile.php:839
641
+ #: front-end/wppb.edit.profile.php:857
642
+ #: front-end/wppb.edit.profile.php:875
643
+ #: front-end/wppb.edit.profile.php:893
644
+ #: front-end/wppb.edit.profile.php:914
645
+ msgid "This field is marked as required by the administrator."
646
+ msgstr ""
647
 
648
+ #: front-end/wppb.edit.profile.php:711
649
+ #: front-end/wppb.edit.profile.php:731
650
+ #: front-end/wppb.edit.profile.php:751
651
+ #: front-end/wppb.edit.profile.php:771
652
+ #: front-end/wppb.edit.profile.php:821
653
+ #: front-end/wppb.edit.profile.php:841
654
+ #: front-end/wppb.edit.profile.php:859
655
+ #: front-end/wppb.edit.profile.php:877
656
+ #: front-end/wppb.edit.profile.php:895
657
+ #: front-end/wppb.edit.profile.php:916
658
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
659
+ msgstr ""
660
+
661
+ # @ profilebuilder
662
+ #: front-end/wppb.edit.profile.php:779
663
  msgid "Display name publicly as"
664
  msgstr "Veřejně zobrazovat jako"
665
 
666
+ # @ profilebuilder
667
+ #: front-end/wppb.edit.profile.php:811
668
+ #: front-end/wppb.register.php:1368
669
  msgid "Contact Info"
670
  msgstr "Kontaktní informace"
671
 
672
+ # @ profilebuilder
673
+ #: front-end/wppb.edit.profile.php:830
674
+ msgid "(required)"
675
+ msgstr "(vyžadováno)"
676
+
677
+ # @ profilebuilder
678
+ #: front-end/wppb.edit.profile.php:907
679
+ #: front-end/wppb.register.php:1491
680
  msgid "About Yourself"
681
  msgstr "O vás"
682
 
683
+ # @ profilebuilder
684
+ #: front-end/wppb.edit.profile.php:937
685
+ #: front-end/wppb.recover.password.php:332
686
+ #: front-end/wppb.recover.password.php:362
687
+ #: front-end/wppb.register.php:1550
688
  msgid "Repeat Password"
689
  msgstr "Heslo ještě jednou"
690
 
691
+ # @ profilebuilder
692
+ #: front-end/wppb.edit.profile.php:968
693
  msgid "Update"
694
  msgstr "Aktualizovat"
695
 
696
+ # @ profilebuilder
697
+ #: front-end/wppb.login.php:59
698
+ #, fuzzy
699
+ msgid "You are currently logged in as"
700
  msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
701
 
702
+ # @ profilebuilder
703
+ #: front-end/wppb.login.php:60
 
704
  msgid "Log out of this account"
705
  msgstr "Odhlásit se"
706
 
707
+ # @ profilebuilder
708
+ #: front-end/wppb.login.php:60
709
+ #, fuzzy
710
+ msgid "Log out"
711
  msgstr "Odhlásit se &raquo;"
712
 
713
+ # @ profilebuilder
714
+ #: front-end/wppb.login.php:78
715
+ #, fuzzy
716
+ msgid "You have successfully logged in as"
717
  msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
718
 
719
+ #: front-end/wppb.login.php:104
720
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
721
+ msgstr ""
722
+
723
+ #: front-end/wppb.login.php:104
724
+ #: front-end/wppb.register.php:1180
725
+ msgid "here"
726
+ msgstr ""
727
+
728
+ #: front-end/wppb.login.php:114
729
+ #: front-end/wppb.recover.password.php:386
730
+ msgid "ERROR:"
731
+ msgstr ""
732
+
733
+ #: front-end/wppb.login.php:114
734
+ msgid "The username field is empty"
735
+ msgstr ""
736
+
737
+ # @ profilebuilder
738
+ #: front-end/wppb.login.php:146
739
+ #: front-end/wppb.recover.password.php:327
740
+ #: front-end/wppb.recover.password.php:357
741
+ #: front-end/wppb.register.php:1545
742
  msgid "Password"
743
  msgstr "Heslo"
744
 
745
+ # @ profilebuilder
746
+ #: front-end/wppb.login.php:154
747
  msgid "Log in"
748
  msgstr "Přihlásit se"
749
 
750
+ # @ profilebuilder
751
+ #: front-end/wppb.login.php:158
752
  msgid "Remember me"
753
  msgstr "Pamatovat si mě"
754
 
755
+ # @ profilebuilder
756
+ #: front-end/wppb.login.php:170
757
  msgid "Lost password?"
758
  msgstr "Zapomněli jste heslo?"
759
 
760
+ #: front-end/wppb.recover.password.php:108
761
+ #: front-end/wppb.recover.password.php:175
762
+ #: front-end/wppb.recover.password.php:226
763
+ msgid "ERROR"
764
+ msgstr ""
 
 
 
 
765
 
766
+ #: front-end/wppb.recover.password.php:108
767
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
768
+ msgstr ""
 
769
 
770
+ #: front-end/wppb.recover.password.php:147
771
+ #: front-end/wppb.recover.password.php:198
772
+ msgid "A password reset email has been sent to "
773
+ msgstr ""
774
 
775
+ #: front-end/wppb.recover.password.php:147
776
+ #: front-end/wppb.recover.password.php:198
777
+ msgid "Following the link sent in the email address will reset the password."
778
+ msgstr ""
779
 
780
+ #: front-end/wppb.recover.password.php:159
781
+ #: front-end/wppb.recover.password.php:210
782
+ msgid "Someone requested that the password be reset for the following account: "
783
+ msgstr ""
784
 
785
+ #: front-end/wppb.recover.password.php:161
786
+ #: front-end/wppb.recover.password.php:212
787
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
788
+ msgstr ""
 
789
 
790
+ #: front-end/wppb.recover.password.php:162
791
+ #: front-end/wppb.recover.password.php:213
792
+ msgid "To reset your password, visit the following link:"
793
+ msgstr ""
794
 
795
+ #: front-end/wppb.recover.password.php:166
796
+ #: front-end/wppb.recover.password.php:217
797
+ msgid "Password Reset Feature from"
798
+ msgstr ""
 
799
 
800
+ # @ profilebuilder
801
+ #: front-end/wppb.recover.password.php:175
802
+ #: front-end/wppb.recover.password.php:226
803
+ #, fuzzy
804
+ msgid "There was an error while trying to send the activation link to "
805
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
806
 
807
+ # @ profilebuilder
808
+ #: front-end/wppb.recover.password.php:185
809
+ #, fuzzy
810
+ msgid "The email address entered wasn't found in the database!"
811
+ msgstr "Zadaný e-mail není platný. <br/> Adresa "
812
 
813
+ #: front-end/wppb.recover.password.php:185
814
+ msgid "Please check that you entered the correct email address."
815
+ msgstr ""
 
816
 
817
+ #: front-end/wppb.recover.password.php:234
818
+ msgid "The username entered wasn't found in the database!"
819
+ msgstr ""
 
820
 
821
+ #: front-end/wppb.recover.password.php:234
822
+ msgid "Please check that you entered the correct username."
823
+ msgstr ""
 
824
 
825
+ # @ profilebuilder
826
+ #: front-end/wppb.recover.password.php:245
827
+ #, fuzzy
828
+ msgid "Your password has been successfully changed!"
829
+ msgstr "Změny byly úspěšně uloženy."
830
 
831
+ #: front-end/wppb.recover.password.php:259
832
+ msgid "You have successfully reset your password to:"
833
+ msgstr ""
 
834
 
835
+ # @ profilebuilder
836
+ #: front-end/wppb.recover.password.php:263
837
+ #: front-end/wppb.recover.password.php:277
838
+ #, fuzzy
839
+ msgid "Password Successfully Reset for"
840
+ msgstr "\" byla úspěšně odstraněna."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841
 
842
+ #: front-end/wppb.recover.password.php:263
843
+ #: front-end/wppb.recover.password.php:277
844
+ msgid "from"
845
+ msgstr ""
 
846
 
847
+ #: front-end/wppb.recover.password.php:273
848
+ msgid "has requested a password change via the password reset feature."
849
+ msgstr ""
 
850
 
851
+ #: front-end/wppb.recover.password.php:274
852
+ msgid "His/her new password is:"
853
+ msgstr ""
 
854
 
855
+ # @ profilebuilder
856
+ #: front-end/wppb.recover.password.php:292
857
+ #: front-end/wppb.register.php:882
858
+ msgid "The entered passwords don't match!"
859
+ msgstr "Zadaná hesla se neshodují."
860
 
861
+ # @ profilebuilder
862
+ #: front-end/wppb.recover.password.php:339
863
+ #: front-end/wppb.recover.password.php:369
864
+ #, fuzzy
865
+ msgid "Reset Password"
866
+ msgstr "Heslo ještě jednou"
867
 
868
+ #: front-end/wppb.recover.password.php:386
869
+ msgid "Invalid key!"
870
+ msgstr ""
 
871
 
872
+ # @ profilebuilder
873
+ #: front-end/wppb.recover.password.php:401
874
+ #, fuzzy
875
+ msgid "Please enter your username or email address."
876
+ msgstr "Musíte zadat platnou e-mailovou adresu."
877
 
878
+ #: front-end/wppb.recover.password.php:401
879
+ msgid "You will receive a link to create a new password via email."
880
+ msgstr ""
 
881
 
882
+ # @ profilebuilder
883
+ #: front-end/wppb.recover.password.php:410
884
+ #, fuzzy
885
+ msgid "Username or E-mail"
886
+ msgstr "Uživatelské jméno"
887
 
888
+ # @ profilebuilder
889
+ #: front-end/wppb.recover.password.php:419
890
+ #, fuzzy
891
+ msgid "Get New Password"
892
+ msgstr "Nové heslo"
893
 
894
+ #: front-end/wppb.register.php:373
895
+ #, php-format
896
+ msgid ""
897
+ "To activate your user, please click the following link:\n"
898
+ "\n"
899
+ "%s\n"
900
+ "\n"
901
+ "After you activate, you will receive *another email* with your login.\n"
902
+ "\n"
903
+ msgstr ""
904
 
905
+ #: front-end/wppb.register.php:375
906
+ #, php-format
907
+ msgid "[%1$s] Activate %2$s"
908
+ msgstr ""
 
909
 
910
+ #: front-end/wppb.register.php:405
911
+ msgid "Invalid activation key!"
912
+ msgstr ""
 
 
913
 
914
+ #: front-end/wppb.register.php:409
915
+ msgid "The user is already active!"
916
+ msgstr ""
 
 
917
 
918
+ #: front-end/wppb.register.php:424
919
+ msgid "Could not create user!"
920
+ msgstr ""
 
921
 
922
+ # @ profilebuilder
923
+ #: front-end/wppb.register.php:434
924
+ #, fuzzy
925
+ msgid "That username is already activated!"
926
+ msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
927
 
928
+ # @ profilebuilder
929
+ #: front-end/wppb.register.php:450
930
+ #, fuzzy
931
+ msgid "The user was successfully activated."
932
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
933
 
934
+ # @ profilebuilder
935
+ #: front-end/wppb.register.php:452
936
+ #, fuzzy
937
+ msgid "There was an error while trying to activate the user."
938
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
939
 
940
+ #: front-end/wppb.register.php:487
941
+ msgid "New subscriber on"
942
+ msgstr ""
 
943
 
944
+ #: front-end/wppb.register.php:491
945
+ msgid "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!"
946
+ msgstr ""
 
947
 
948
+ #: front-end/wppb.register.php:494
949
+ msgid "A new subscriber has (been) registered!"
950
+ msgstr ""
 
951
 
952
+ # @ profilebuilder
953
+ #: front-end/wppb.register.php:512
954
+ #, fuzzy
955
+ msgid "A new account has been created for you."
956
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
957
 
958
+ #: front-end/wppb.register.php:515
959
+ msgid "Welcome to"
960
+ msgstr ""
 
961
 
962
+ #: front-end/wppb.register.php:515
963
+ msgid "Your username is:"
964
+ msgstr ""
 
965
 
966
+ # @ profilebuilder
967
+ #: front-end/wppb.register.php:515
968
+ #, fuzzy
969
+ msgid "and password:"
970
+ msgstr "Heslo"
971
 
972
+ #: front-end/wppb.register.php:517
973
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
974
+ msgstr ""
 
975
 
976
+ #: front-end/wppb.register.php:580
977
+ msgid "The user was NOT created!"
978
+ msgstr ""
 
 
979
 
980
+ # @ profilebuilder
981
+ #: front-end/wppb.register.php:871
982
+ msgid "A username is required for registration."
983
+ msgstr "Uživatelské jméno je nutné pro registraci."
984
+
985
+ # @ profilebuilder
986
+ #: front-end/wppb.register.php:873
987
+ msgid "Sorry, that username already exists!"
988
+ msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
989
+
990
+ # @ profilebuilder
991
+ #: front-end/wppb.register.php:875
992
+ msgid "You must enter a valid email address."
993
+ msgstr "Musíte zadat platnou e-mailovou adresu."
994
+
995
+ # @ profilebuilder
996
+ #: front-end/wppb.register.php:877
997
+ msgid "Sorry, that email address is already used!"
998
+ msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
999
+
1000
+ # @ profilebuilder
1001
+ #: front-end/wppb.register.php:880
1002
+ msgid "You didn't complete one of the password-fields!"
1003
+ msgstr "Nebyla vyplněna obě pole hesla."
1004
+
1005
+ # @ profilebuilder
1006
+ #: front-end/wppb.register.php:892
1007
+ #: front-end/wppb.register.php:898
1008
+ #, fuzzy
1009
+ msgid "The account was NOT created!"
1010
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
1011
+
1012
+ #: front-end/wppb.register.php:896
1013
+ msgid "You must agree to the terms and conditions before registering!"
1014
+ msgstr ""
1015
+
1016
+ #: front-end/wppb.register.php:898
1017
+ msgid "(Several required fields were left uncompleted)"
1018
+ msgstr ""
1019
+
1020
+ #: front-end/wppb.register.php:916
1021
+ msgid "This username is already reserved to be used soon."
1022
+ msgstr ""
1023
+
1024
+ #: front-end/wppb.register.php:916
1025
+ #: front-end/wppb.register.php:920
1026
+ msgid "Please try a different one!"
1027
+ msgstr ""
1028
+
1029
+ # @ profilebuilder
1030
+ #: front-end/wppb.register.php:920
1031
+ #, fuzzy
1032
+ msgid "This email address is already reserved to be used soon."
1033
+ msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
1034
+
1035
+ #: front-end/wppb.register.php:1147
1036
+ msgid "You are logged in as"
1037
+ msgstr ""
1038
+
1039
+ #: front-end/wppb.register.php:1147
1040
+ msgid "You don't need another account."
1041
+ msgstr ""
1042
+
1043
+ # @ profilebuilder
1044
+ #: front-end/wppb.register.php:1147
1045
+ #, fuzzy
1046
+ msgid "Log out of this account."
1047
+ msgstr "Odhlásit se"
1048
+
1049
+ # @ profilebuilder
1050
+ #: front-end/wppb.register.php:1147
1051
+ #, fuzzy
1052
+ msgid "Logout"
1053
+ msgstr "Odhlásit se &raquo;"
1054
+
1055
+ #: front-end/wppb.register.php:1155
1056
+ msgid "An email has been sent to "
1057
+ msgstr ""
1058
+
1059
+ #: front-end/wppb.register.php:1155
1060
+ msgid "with information on how to activate his/her account"
1061
+ msgstr ""
1062
+
1063
+ # @ profilebuilder
1064
+ #: front-end/wppb.register.php:1160
1065
+ #, fuzzy
1066
+ msgid "A user account has been created for"
1067
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
1068
+
1069
+ #: front-end/wppb.register.php:1180
1070
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
1071
+ msgstr ""
1072
+
1073
+ #: front-end/wppb.register.php:1187
1074
+ msgid "An email has been sent to you with information on how to activate your account"
1075
+ msgstr ""
1076
+
1077
+ # @ profilebuilder
1078
+ #: front-end/wppb.register.php:1192
1079
+ #, fuzzy
1080
+ msgid "Thank you for registering"
1081
+ msgstr "Děkujeme za registraci, %1$s."
1082
+
1083
+ #: front-end/wppb.register.php:1220
1084
+ msgid "An error occured while trying to send the notification email."
1085
+ msgstr ""
1086
+
1087
+ #: front-end/wppb.register.php:1225
1088
+ msgid "An email containing activation instructions was successfully sent."
1089
+ msgstr ""
1090
+
1091
+ #: front-end/wppb.register.php:1230
1092
+ msgid "An email containing the username and password was successfully sent."
1093
+ msgstr ""
1094
+
1095
+ # @ profilebuilder
1096
+ #: front-end/wppb.register.php:1246
1097
+ msgid "Users can register themselves or you can manually create users here."
1098
+ msgstr "Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet uživatele zde."
1099
+
1100
+ # @ profilebuilder
1101
+ #: front-end/wppb.register.php:1251
1102
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1103
+ msgstr "Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
1104
+
1105
+ # @ profilebuilder
1106
+ #: front-end/wppb.register.php:1256
1107
+ msgid "Only an administrator can add new users."
1108
+ msgstr "Pouze administrátor může přidávat nové uživatele."
1109
+
1110
+ #: front-end/wppb.register.php:1279
1111
+ #: front-end/wppb.register.php:1303
1112
+ #: front-end/wppb.register.php:1327
1113
+ #: front-end/wppb.register.php:1351
1114
+ #: front-end/wppb.register.php:1402
1115
+ #: front-end/wppb.register.php:1426
1116
+ #: front-end/wppb.register.php:1450
1117
+ #: front-end/wppb.register.php:1474
1118
+ #: front-end/wppb.register.php:1501
1119
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
1120
+ msgstr ""
1121
+
1122
+ #: front-end/wppb.register.php:1300
1123
+ #: front-end/wppb.register.php:1324
1124
+ #: front-end/wppb.register.php:1348
1125
+ #: front-end/wppb.register.php:1375
1126
+ #: front-end/wppb.register.php:1399
1127
+ #: front-end/wppb.register.php:1423
1128
+ #: front-end/wppb.register.php:1447
1129
+ #: front-end/wppb.register.php:1471
1130
+ #: front-end/wppb.register.php:1498
1131
+ msgid "This field is marked as required by the administrator"
1132
+ msgstr ""
1133
+
1134
+ #: front-end/wppb.register.php:1572
1135
+ msgid "Anti-Spam"
1136
+ msgstr ""
1137
+
1138
+ # @ profilebuilder
1139
+ #: front-end/wppb.register.php:1593
1140
+ #, fuzzy
1141
+ msgid "Send these credentials via email."
1142
+ msgstr "Odeslat tyto přihlašovací údaje e-mailem."
1143
+
1144
+ # @ profilebuilder
1145
+ #: front-end/wppb.register.php:1607
1146
+ msgid "Add User"
1147
+ msgstr "Přidat uživatele"
1148
+
1149
+ # @ profilebuilder
1150
+ #: front-end/wppb.register.php:1607
1151
+ msgid "Register"
1152
+ msgstr "Registrovat"
1153
+
1154
+ # @ profilebuilder
1155
+ #: premium/premium.php:8
1156
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1157
+ msgstr "Můžete vytvořit libovolné množství vlastních polí. K jejich rozdělení do tématických celků (ve front-endu) použijte pole \""
1158
+
1159
+ # @ profilebuilder
1160
+ #: premium/premium.php:8
1161
+ msgid "heading"
1162
+ msgstr "záhlaví"
1163
+
1164
+ # @ profilebuilder
1165
+ #: premium/premium.php:8
1166
+ msgid "\" custom field."
1167
+ msgstr "\"."
1168
+
1169
+ # @ profilebuilder
1170
+ #: premium/premium.php:9
1171
+ #, fuzzy
1172
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1173
+ msgstr "Všechna pole lze třídit pomocí "
1174
+
1175
+ # @ profilebuilder
1176
+ #: premium/premium.php:9
1177
+ msgid "Drag"
1178
+ msgstr "Drag"
1179
+
1180
+ # @ profilebuilder
1181
+ #: premium/premium.php:9
1182
+ msgid "Drop"
1183
+ msgstr "Drop"
1184
+
1185
+ # @ profilebuilder
1186
+ #: premium/premium.php:9
1187
+ #, fuzzy
1188
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1189
+ msgstr ". Není proto třeba se starat o pořadí, ve kterém vytvoříte vlastní pole, můžete jej kdykoli změnit."
1190
+
1191
+ # @ profilebuilder
1192
+ #: premium/premium.php:13
1193
+ #: premium/premium.php:23
1194
+ msgid "Title"
1195
+ msgstr "Název"
1196
+
1197
+ # @ profilebuilder
1198
+ #: premium/premium.php:14
1199
+ #: premium/premium.php:24
1200
+ msgid "Type"
1201
+ msgstr "Typ"
1202
+
1203
+ #: premium/premium.php:15
1204
+ #: premium/premium.php:25
1205
+ msgid "Meta-Key"
1206
+ msgstr ""
1207
+
1208
+ #: premium/premium.php:16
1209
+ #: premium/premium.php:26
1210
+ msgid "ID"
1211
+ msgstr ""
1212
+
1213
+ #: premium/premium.php:17
1214
+ #: premium/premium.php:27
1215
+ msgid "Req'd"
1216
+ msgstr ""
1217
+
1218
+ # @ profilebuilder
1219
+ #: premium/premium.php:18
1220
+ #: premium/premium.php:28
1221
+ msgid "Add Option"
1222
+ msgstr "Přidat volbu"
1223
+
1224
+ # @ profilebuilder
1225
+ #: premium/premium.php:40
1226
+ #: premium/premium.php:73
1227
+ #: premium/premium.php:206
1228
+ msgid "Edit"
1229
+ msgstr "Upravit"
1230
+
1231
+ # @ profilebuilder
1232
+ #: premium/premium.php:41
1233
+ #: premium/premium.php:74
1234
+ #: premium/premium.php:207
1235
+ msgid "Delete"
1236
+ msgstr "Odstranit"
1237
+
1238
+ # @ profilebuilder
1239
+ #: premium/premium.php:101
1240
+ msgid "Title:"
1241
+ msgstr "Název:"
1242
+
1243
+ # @ profilebuilder
1244
+ #: premium/premium.php:101
1245
+ msgid "The title of the item."
1246
+ msgstr "Název vlastního pole."
1247
+
1248
+ #: premium/premium.php:111
1249
+ msgid "Meta-Key:"
1250
+ msgstr ""
1251
+
1252
+ #: premium/premium.php:111
1253
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1254
+ msgstr ""
1255
+
1256
+ # @ profilebuilder
1257
+ #: premium/premium.php:144
1258
+ msgid "Option Type:"
1259
+ msgstr "Typ vlastního pole:"
1260
+
1261
+ # @ profilebuilder
1262
+ #: premium/premium.php:144
1263
+ msgid "Choose one of the supported option types."
1264
+ msgstr "Vyberte jednu z nabízených možností."
1265
+
1266
+ # @ profilebuilder
1267
+ #: premium/premium.php:154
1268
+ msgid "Description:"
1269
+ msgstr "Popis:"
1270
+
1271
+ # @ profilebuilder
1272
+ #: premium/premium.php:154
1273
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1274
+ msgstr "Zadejte podrobný popis vlastního pole pro uživatele (volitelné)."
1275
+
1276
+ #: premium/premium.php:155
1277
+ msgid "You can only insert links using standard HTML syntax:"
1278
+ msgstr ""
1279
+
1280
+ #: premium/premium.php:155
1281
+ msgid "address"
1282
+ msgstr ""
1283
+
1284
+ # @ profilebuilder
1285
+ #: premium/premium.php:155
1286
+ #, fuzzy
1287
+ msgid "name"
1288
+ msgstr "Jméno"
1289
+
1290
+ # @ profilebuilder
1291
+ #: premium/premium.php:165
1292
+ msgid "Options:"
1293
+ msgstr "Možnosti:"
1294
+
1295
+ # @ profilebuilder
1296
+ #: premium/premium.php:165
1297
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1298
+ msgstr "Zadejte čárkami oddělený seznam možností. Například \"Jedna, dva, tři\" nebo jen jednu hodnotu (např. \"Ano\" u check-boxu)."
1299
+
1300
+ #: premium/premium.php:176
1301
+ msgid "ID:"
1302
+ msgstr ""
1303
+
1304
+ #: premium/premium.php:176
1305
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1306
+ msgstr ""
1307
+
1308
+ # @ profilebuilder
1309
+ #: premium/premium.php:187
1310
+ #, fuzzy
1311
+ msgid "Required:"
1312
+ msgstr "(vyžadováno)"
1313
+
1314
+ #: premium/premium.php:187
1315
+ msgid "Check this box to make this field required."
1316
+ msgstr ""
1317
+
1318
+ # @ profilebuilder
1319
+ #: premium/premium.php:194
1320
+ msgid "Cancel"
1321
+ msgstr "Zrušit"
1322
+
1323
+ # @ profilebuilder
1324
+ #: premium/premium.php:195
1325
+ msgid "Save"
1326
+ msgstr "Uložit"
1327
+
1328
+ # @ profilebuilder
1329
+ #: premium/premium.php:229
1330
+ #: premium/premium.php:230
1331
+ msgid "Register your version of Profile Builder Pro"
1332
+ msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
1333
+
1334
+ # @ profilebuilder
1335
+ #: premium/premium.php:231
1336
  msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1337
  msgstr "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
1338
 
1339
+ # @ profilebuilder
1340
+ #: premium/premium.php:232
1341
  msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1342
  msgstr "Pokud si zaregistrujete tuto verzi Profile Builder, budete dostávat informace o aktualizacích, nových verzích a získáte přístup k technické podpoře."
1343
 
1344
+ # @ profilebuilder
1345
+ #: premium/premium.php:233
1346
  msgid "Serial Number:"
1347
  msgstr "Sériové číslo:"
1348
 
1349
+ # @ profilebuilder
1350
+ #: premium/premium.php:239
1351
+ msgid "The serial number was successfully validated!"
1352
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
1353
+
1354
+ # @ profilebuilder
1355
+ #: premium/premium.php:241
1356
  msgid "The serial number couldn't be validated or isn't valid!"
1357
  msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
1358
 
1359
+ #: premium/premium.php:243
1360
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1361
+ msgstr ""
 
1362
 
1363
+ # @ profilebuilder
1364
+ #: premium/premium.php:247
1365
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1366
  msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1367
 
1368
+ #: premium/addon/addon.functions.php:4
1369
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1370
+ msgstr ""
1371
+
1372
+ #: premium/addon/addon.functions.php:4
1373
+ msgid "You can find it in Profile Builder's menu."
1374
+ msgstr ""
1375
+
1376
+ # @ profilebuilder
1377
+ #: premium/addon/addon.functions.php:29
1378
+ #, fuzzy
1379
+ msgid "You need to be logged in to view the userlisting!"
1380
+ msgstr "Pro úpravu profilu je nutné se přihlásit."
1381
+
1382
+ #: premium/addon/addon.functions.php:80
1383
+ #: premium/addon/addon.functions.php:106
1384
+ #: premium/addon/addon.functions.php:124
1385
+ #: premium/addon/addon.functions.php:912
1386
+ #: premium/addon/addon.functions.php:999
1387
+ msgid "Search Users by All Fields"
1388
+ msgstr ""
1389
+
1390
+ #: premium/addon/addon.functions.php:124
1391
+ msgid "Leave Blank and Press Search to List All Users"
1392
+ msgstr ""
1393
+
1394
+ #: premium/addon/addon.functions.php:128
1395
+ msgid "Search"
1396
+ msgstr ""
1397
+
1398
+ # @ profilebuilder
1399
+ #: premium/addon/addon.functions.php:141
1400
+ #, fuzzy
1401
+ msgid "First/Lastname"
1402
+ msgstr "Křestní jméno"
1403
+
1404
+ # @ profilebuilder
1405
+ #: premium/addon/addon.functions.php:147
1406
+ #, fuzzy
1407
+ msgid "Email"
1408
+ msgstr "E-mail"
1409
+
1410
+ #: premium/addon/addon.functions.php:153
1411
+ msgid "Sign-up Date"
1412
+ msgstr ""
1413
+
1414
+ # @ profilebuilder
1415
+ #: premium/addon/addon.functions.php:159
1416
+ #, fuzzy
1417
+ msgid "Firstname"
1418
+ msgstr "Křestní jméno"
1419
+
1420
+ # @ profilebuilder
1421
+ #: premium/addon/addon.functions.php:165
1422
+ #, fuzzy
1423
+ msgid "Lastname"
1424
+ msgstr "Příjmení"
1425
+
1426
+ # @ profilebuilder
1427
+ #: premium/addon/addon.functions.php:171
1428
+ #, fuzzy
1429
+ msgid "Display Name"
1430
+ msgstr "Křestní jméno"
1431
+
1432
+ #: premium/addon/addon.functions.php:189
1433
+ msgid "Posts"
1434
+ msgstr ""
1435
+
1436
+ #: premium/addon/addon.functions.php:231
1437
+ msgid "Click here to see more information about this user"
1438
+ msgstr ""
1439
+
1440
+ #: premium/addon/addon.functions.php:231
1441
+ msgid "More..."
1442
+ msgstr ""
1443
+
1444
+ # @ profilebuilder
1445
+ #: premium/addon/addon.functions.php:415
1446
+ #: premium/addon/addon.functions.php:691
1447
+ #, fuzzy
1448
+ msgid "No uploaded attachment"
1449
+ msgstr "Příloha \""
1450
+
1451
+ #: premium/addon/addon.functions.php:417
1452
+ #: premium/addon/addon.functions.php:693
1453
+ #: premium/addon/addon.functions.php:747
1454
+ msgid "Click to see the current attachment"
1455
+ msgstr ""
1456
+
1457
+ #: premium/addon/addon.functions.php:533
1458
+ msgid "Click here to go back"
1459
+ msgstr ""
1460
+
1461
+ # @ profilebuilder
1462
+ #: premium/addon/addon.functions.php:533
1463
+ #, fuzzy
1464
+ msgid "Back"
1465
+ msgstr "Černý"
1466
+
1467
+ # @ profilebuilder
1468
+ #: premium/addon/addon.functions.php:691
1469
+ #: premium/addon/addon.functions.php:693
1470
+ msgid "Current file"
1471
+ msgstr "Aktuální soubor"
1472
+
1473
+ #: premium/addon/addon.functions.php:745
1474
+ msgid "Avatar"
1475
+ msgstr ""
1476
+
1477
+ #: premium/addon/addon.functions.php:802
1478
+ msgid "No results found!"
1479
+ msgstr ""
1480
+
1481
+ #: premium/addon/addon.functions.php:895
1482
+ msgid "&laquo;&laquo; First"
1483
+ msgstr ""
1484
+
1485
+ #: premium/addon/addon.functions.php:896
1486
+ msgid "&laquo; Prev"
1487
+ msgstr ""
1488
+
1489
+ # @ profilebuilder
1490
+ #: premium/addon/addon.functions.php:897
1491
+ #, fuzzy
1492
+ msgid "Next &raquo; "
1493
+ msgstr "Odhlásit se &raquo;"
1494
+
1495
+ # @ profilebuilder
1496
+ #: premium/addon/addon.functions.php:898
1497
+ #, fuzzy
1498
+ msgid "Last &raquo;&raquo;"
1499
+ msgstr "Odhlásit se &raquo;"
1500
+
1501
+ #: premium/addon/addon.functions.php:1250
1502
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1503
+ msgstr ""
1504
+
1505
+ #: premium/addon/addon.php:9
1506
+ #: premium/addon/addon.php:10
1507
+ msgid "Activate/Deactivate Addons"
1508
+ msgstr ""
1509
+
1510
+ # @ profilebuilder
1511
+ #: premium/addon/addon.php:14
1512
+ #, fuzzy
1513
+ msgid "Name/Description"
1514
+ msgstr "Popis:"
1515
+
1516
+ #: premium/addon/addon.php:15
1517
+ msgid "Status"
1518
+ msgstr ""
1519
+
1520
+ #: premium/addon/addon.php:20
1521
+ #: premium/addon/addon.php:82
1522
+ #: premium/addon/addon.php:83
1523
+ msgid "User-Listing"
1524
+ msgstr ""
1525
+
1526
+ #: premium/addon/addon.php:22
1527
+ #: premium/addon/addon.php:29
1528
+ #: premium/addon/addon.php:36
1529
+ msgid "Active"
1530
+ msgstr ""
1531
+
1532
+ #: premium/addon/addon.php:23
1533
+ #: premium/addon/addon.php:30
1534
+ #: premium/addon/addon.php:37
1535
+ msgid "Inactive"
1536
+ msgstr ""
1537
+
1538
+ #: premium/addon/addon.php:27
1539
+ #: premium/addon/addon.php:458
1540
+ #: premium/addon/addon.php:459
1541
+ msgid "Custom Redirects"
1542
+ msgstr ""
1543
+
1544
+ #: premium/addon/addon.php:34
1545
+ #: premium/addon/addon.php:600
1546
+ #: premium/addon/addon.php:601
1547
+ msgid "reCAPTCHA"
1548
+ msgstr ""
1549
+
1550
+ #: premium/addon/addon.php:85
1551
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1552
+ msgstr ""
1553
+
1554
+ #: premium/addon/addon.php:86
1555
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1556
+ msgstr ""
1557
+
1558
+ #: premium/addon/addon.php:91
1559
+ msgid "These settings are applied to the front-end userlisting."
1560
+ msgstr ""
1561
+
1562
+ #: premium/addon/addon.php:97
1563
+ msgid "Number of Users/Page: "
1564
+ msgstr ""
1565
+
1566
+ #: premium/addon/addon.php:114
1567
+ msgid "Default Sorting Order: "
1568
+ msgstr ""
1569
+
1570
+ #: premium/addon/addon.php:125
1571
+ msgid "\"All-Userlisting\" Template"
1572
+ msgstr ""
1573
+
1574
+ #: premium/addon/addon.php:127
1575
+ #: premium/addon/addon.php:269
1576
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1577
+ msgstr ""
1578
+
1579
+ #: premium/addon/addon.php:128
1580
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1581
+ msgstr ""
1582
+
1583
+ #: premium/addon/addon.php:132
1584
+ msgid "Avatar size: "
1585
+ msgstr ""
1586
+
1587
+ #: premium/addon/addon.php:148
1588
+ msgid "Insert \"Sort By\" Field:"
1589
+ msgstr ""
1590
+
1591
+ #: premium/addon/addon.php:176
1592
+ #: premium/addon/addon.php:275
1593
+ msgid "Insert \"User-Meta\" Field:"
1594
+ msgstr ""
1595
+
1596
+ #: premium/addon/addon.php:207
1597
+ #: premium/addon/addon.php:313
1598
+ msgid "Insert Extra Functions:"
1599
+ msgstr ""
1600
+
1601
+ #: premium/addon/addon.php:222
1602
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1603
+ msgstr ""
1604
+
1605
+ #: premium/addon/addon.php:224
1606
+ #: premium/addon/addon.php:327
1607
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1608
+ msgstr ""
1609
+
1610
+ #: premium/addon/addon.php:267
1611
+ msgid "\"Single-Userlisting\" Template"
1612
+ msgstr ""
1613
+
1614
+ #: premium/addon/addon.php:270
1615
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1616
+ msgstr ""
1617
+
1618
+ #: premium/addon/addon.php:325
1619
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1620
+ msgstr ""
1621
+
1622
+ #: premium/addon/addon.php:463
1623
+ msgid "Redirects on custom page requests:"
1624
+ msgstr ""
1625
+
1626
+ # @ profilebuilder
1627
+ #: premium/addon/addon.php:469
1628
+ #, fuzzy
1629
+ msgid "Action"
1630
+ msgstr "Přidat volbu"
1631
+
1632
+ #: premium/addon/addon.php:470
1633
+ #: premium/addon/addon.php:515
1634
+ msgid "Redirect"
1635
+ msgstr ""
1636
+
1637
+ #: premium/addon/addon.php:471
1638
+ #: premium/addon/addon.php:516
1639
+ msgid "URL"
1640
+ msgstr ""
1641
+
1642
+ #: premium/addon/addon.php:475
1643
+ msgid "After Registration:"
1644
+ msgstr ""
1645
+
1646
+ #: premium/addon/addon.php:483
1647
+ msgid "After Login:"
1648
+ msgstr ""
1649
+
1650
+ # @ profilebuilder
1651
+ #: premium/addon/addon.php:492
1652
+ #, fuzzy
1653
+ msgid "Recover Password (*)"
1654
+ msgstr "Heslo ještě jednou"
1655
+
1656
+ #: premium/addon/addon.php:503
1657
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1658
+ msgstr ""
1659
+
1660
+ #: premium/addon/addon.php:508
1661
+ msgid "Redirects on default WordPress page requests:"
1662
+ msgstr ""
1663
+
1664
+ #: premium/addon/addon.php:514
1665
+ msgid "Requested WP Page"
1666
+ msgstr ""
1667
+
1668
+ #: premium/addon/addon.php:521
1669
+ msgid "Default WP Login Page(*)"
1670
+ msgstr ""
1671
+
1672
+ #: premium/addon/addon.php:533
1673
+ msgid "Default WP Logout Page(**)"
1674
+ msgstr ""
1675
+
1676
+ #: premium/addon/addon.php:545
1677
+ msgid "Default WP Register Page"
1678
+ msgstr ""
1679
+
1680
+ #: premium/addon/addon.php:557
1681
+ msgid "Default WP Dashboard (***)"
1682
+ msgstr ""
1683
+
1684
+ #: premium/addon/addon.php:568
1685
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1686
+ msgstr ""
1687
+
1688
+ #: premium/addon/addon.php:569
1689
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1690
+ msgstr ""
1691
+
1692
+ #: premium/addon/addon.php:570
1693
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1694
+ msgstr ""
1695
+
1696
+ #: premium/addon/addon.php:605
1697
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1698
+ msgstr ""
1699
+
1700
+ #: premium/addon/addon.php:606
1701
+ msgid "For this you must get a public and private key from Google:"
1702
+ msgstr ""
1703
+
1704
+ # @ profilebuilder
1705
+ #: premium/addon/addon.php:612
1706
+ msgid "Key"
1707
+ msgstr "Klíč"
1708
+
1709
+ #: premium/addon/addon.php:613
1710
+ msgid "Code"
1711
+ msgstr ""
1712
+
1713
+ #: premium/addon/addon.php:617
1714
+ msgid "Public Key:"
1715
+ msgstr ""
1716
+
1717
+ #: premium/addon/addon.php:621
1718
+ msgid "Private Key:"
1719
+ msgstr ""
1720
+
1721
+ #: premium/addon/recaptcha.library.php:81
1722
+ msgid "Could not open socket!"
1723
+ msgstr ""
1724
+
1725
+ #: premium/addon/recaptcha.library.php:110
1726
+ #: premium/addon/recaptcha.library.php:156
1727
+ msgid "To use reCAPTCHA you must get an API key from"
1728
+ msgstr ""
1729
+
1730
+ #: premium/addon/recaptcha.library.php:161
1731
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1732
+ msgstr ""
1733
+
1734
+ #: premium/addon/recaptcha.library.php:220
1735
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1736
+ msgstr ""
1737
+
1738
+ #: premium/addon/recaptcha.library.php:237
1739
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1740
+ msgstr ""
1741
+
1742
+ # @ profilebuilder
1743
+ #: premium/classes/premium.class.admin.php:283
1744
+ #: premium/classes/premium.class.admin.php:426
1745
+ #, fuzzy
1746
+ msgid "You must give your option a title."
1747
+ msgstr "Pro úpravu profilu je nutné se přihlásit."
1748
+
1749
+ #: premium/classes/premium.class.admin.php:287
1750
+ #: premium/classes/premium.class.admin.php:430
1751
+ msgid "You have entered an invalid meta-key format!"
1752
+ msgstr ""
1753
+
1754
+ # @ profilebuilder
1755
+ #: premium/classes/premium.class.admin.php:291
1756
+ #: premium/classes/premium.class.admin.php:434
1757
+ #, fuzzy
1758
+ msgid "You must enter a valid meta-key."
1759
+ msgstr "Musíte zadat platnou e-mailovou adresu."
1760
+
1761
+ #: premium/classes/premium.class.admin.php:297
1762
+ #: premium/classes/premium.class.admin.php:307
1763
+ #: premium/classes/premium.class.admin.php:444
1764
+ #: premium/classes/premium.class.admin.php:456
1765
+ msgid "That meta-key is already in use."
1766
+ msgstr ""
1767
+
1768
+ #: premium/classes/premium.class.admin.php:314
1769
+ #: premium/classes/premium.class.admin.php:464
1770
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1771
+ msgstr ""
1772
+
1773
+ #: premium/classes/premium.class.admin.php:321
1774
+ #: premium/classes/premium.class.admin.php:471
1775
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1776
+ msgstr ""
1777
+
1778
+ #: premium/classes/premium.class.admin.php:326
1779
+ #: premium/classes/premium.class.admin.php:476
1780
+ msgid "The textarea row value must be numeric."
1781
+ msgstr ""
1782
+
1783
+ #: premium/classes/premium.class.admin.php:330
1784
+ #: premium/classes/premium.class.admin.php:480
1785
+ msgid "The maxlength attribute must be numeric."
1786
+ msgstr ""
1787
+
1788
+ #: premium/classes/premium.class.admin.php:337
1789
+ #: premium/classes/premium.class.admin.php:487
1790
+ msgid "The value must be between 20 and 200!"
1791
+ msgstr ""
1792
+
1793
+ #: premium/classes/premium.class.admin.php:342
1794
+ #: premium/classes/premium.class.admin.php:492
1795
+ msgid "The width component of the entered value must be numeric!"
1796
+ msgstr ""
1797
+
1798
+ #: premium/classes/premium.class.admin.php:344
1799
+ #: premium/classes/premium.class.admin.php:494
1800
+ msgid "The height component of the entered value must be numeric!"
1801
+ msgstr ""
1802
+
1803
+ #: premium/classes/premium.class.admin.php:346
1804
+ #: premium/classes/premium.class.admin.php:496
1805
+ msgid "The width component of the entered value must be between 20 and 200!"
1806
+ msgstr ""
1807
+
1808
+ #: premium/classes/premium.class.admin.php:348
1809
+ #: premium/classes/premium.class.admin.php:498
1810
+ msgid "The height component of the entered value must be between 20 and 200!"
1811
+ msgstr ""
1812
+
1813
+ #: premium/classes/premium.class.admin.php:350
1814
+ #: premium/classes/premium.class.admin.php:500
1815
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1816
+ msgstr ""
1817
+
1818
+ #: premium/classes/premium.class.admin.php:353
1819
+ #: premium/classes/premium.class.admin.php:503
1820
+ msgid "The entered avatar size must be numeric!"
1821
+ msgstr ""
1822
+
1823
+ #: premium/classes/premium.class.admin.php:387
1824
+ #: premium/classes/premium.class.admin.php:563
1825
+ msgid "There was an error, please try again."
1826
+ msgstr ""
1827
+
1828
+ #: premium/functions/extra.fields.php:67
1829
+ #: premium/functions/extra.fields.php:169
1830
+ #: premium/functions/extra.fields.php:235
1831
+ #: premium/functions/extra.fields.php:300
1832
+ #: premium/functions/extra.fields.php:365
1833
+ #: premium/functions/extra.fields.php:431
1834
+ #: premium/functions/extra.fields.php:485
1835
+ #: premium/functions/extra.fields.php:533
1836
+ #: premium/functions/extra.fields.php:596
1837
+ #: premium/functions/extra.fields.php:705
1838
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1839
+ msgstr ""
1840
+
1841
+ #: premium/functions/extra.fields.php:574
1842
+ #: premium/functions/extra.fields.php:606
1843
+ #: premium/functions/extra.fields.php:680
1844
+ #: premium/functions/extra.fields.php:711
1845
+ msgid "max upload size"
1846
+ msgstr ""
1847
+
1848
+ #: premium/functions/extra.fields.php:580
1849
+ #: premium/functions/extra.fields.php:616
1850
+ msgid "Are you sure you want to delete this attachment?"
1851
+ msgstr ""
1852
+
1853
+ #: premium/functions/extra.fields.php:581
1854
+ #: premium/functions/extra.fields.php:617
1855
+ #: premium/functions/extra.fields.php:690
1856
+ msgid "Click to delete the current attachment"
1857
+ msgstr ""
1858
+
1859
+ #: premium/functions/extra.fields.php:614
1860
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1861
+ msgstr ""
1862
+
1863
+ # @ profilebuilder
1864
+ #: premium/functions/extra.fields.php:683
1865
+ #: premium/functions/extra.fields.php:715
1866
+ msgid "Current avatar"
1867
+ msgstr "Aktuální avatar"
1868
+
1869
+ #: premium/functions/extra.fields.php:683
1870
+ #: premium/functions/extra.fields.php:715
1871
+ msgid "No uploaded avatar"
1872
+ msgstr ""
1873
+
1874
+ #: premium/functions/extra.fields.php:689
1875
+ #: premium/functions/extra.fields.php:724
1876
+ msgid "Are you sure you want to delete this avatar?"
1877
+ msgstr ""
1878
+
1879
+ #: premium/functions/extra.fields.php:722
1880
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1881
+ msgstr ""
1882
+
1883
+ # @ profilebuilder
1884
+ #: premium/functions/extra.fields.php:725
1885
+ #, fuzzy
1886
+ msgid "Click to see the current avatar"
1887
+ msgstr "Aktuální avatar"
1888
+
1889
+ #: premium/functions/extra.fields.php:725
1890
+ msgid "Click to delete the avatar"
1891
+ msgstr ""
1892
+
1893
+ #: premium/functions/premium.functions.load.php:15
1894
+ msgid "The user-validation has failed - the avatar was not deleted!"
1895
+ msgstr ""
1896
+
1897
+ #: premium/functions/premium.functions.load.php:26
1898
+ msgid "The user-validation has failed - the attachment was not deleted!"
1899
+ msgstr ""
1900
+
1901
+ #: premium/functions/premium.functions.load.php:511
1902
+ msgid "Do you want to"
1903
+ msgstr ""
1904
+
1905
+ #: premium/functions/premium.functions.load.php:511
1906
+ msgid "the current user?"
1907
+ msgstr ""
1908
+
1909
+ #: premium/functions/premium.functions.load.php:539
1910
+ #: premium/functions/premium.functions.load.php:543
1911
+ msgid "Your account on"
1912
+ msgstr ""
1913
+
1914
+ #: premium/functions/premium.functions.load.php:539
1915
+ msgid "has been approved!"
1916
+ msgstr ""
1917
+
1918
+ #: premium/functions/premium.functions.load.php:540
1919
+ msgid "An administrator has just approved your account on"
1920
+ msgstr ""
1921
+
1922
+ #: premium/functions/premium.functions.load.php:543
1923
+ msgid "has been unapproved!"
1924
+ msgstr ""
1925
+
1926
+ #: premium/functions/premium.functions.load.php:544
1927
+ msgid "An administrator has just unapproved your account on"
1928
+ msgstr ""
1929
+
1930
+ #: premium/functions/premium.functions.load.php:608
1931
+ #: premium/functions/premium.functions.load.php:654
1932
+ msgid "Approve"
1933
+ msgstr ""
1934
+
1935
+ #: premium/functions/premium.functions.load.php:609
1936
+ #: premium/functions/premium.functions.load.php:699
1937
+ msgid "Unapproved"
1938
+ msgstr ""
1939
+
1940
+ #: premium/functions/premium.functions.load.php:620
1941
+ #: premium/functions/premium.functions.load.php:650
1942
+ msgid "Unapprove"
1943
+ msgstr ""
1944
+
1945
+ #: premium/functions/premium.functions.load.php:621
1946
+ #: premium/functions/premium.functions.load.php:696
1947
+ msgid "Approved"
1948
+ msgstr ""
1949
+
1950
+ #: premium/functions/premium.functions.load.php:649
1951
+ msgid "unapprove"
1952
+ msgstr ""
1953
+
1954
+ #: premium/functions/premium.functions.load.php:653
1955
+ msgid "approve"
1956
+ msgstr ""
1957
+
1958
+ #: premium/functions/premium.functions.load.php:657
1959
+ msgid "Are you sure you want to"
1960
+ msgstr ""
1961
+
1962
+ #: premium/functions/premium.functions.load.php:657
1963
+ msgid "this user?"
1964
+ msgstr ""
1965
+
1966
+ #: premium/functions/premium.functions.load.php:718
1967
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1968
+ msgstr ""
1969
+
translation/profilebuilder-de_DE.mo CHANGED
Binary file
translation/profilebuilder-de_DE.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2011-08-16 18:29+0100\n"
7
- "Last-Translator: \n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,486 +14,1722 @@ msgstr ""
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
19
  msgid "Profile Builder"
20
  msgstr ""
21
 
22
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
23
  msgid "Welcome to Profile Builder!"
24
  msgstr ""
25
 
26
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr ""
29
 
30
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr ""
33
 
34
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr ""
37
 
38
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr ""
41
 
42
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr ""
45
 
46
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
47
  msgid "You can use the following shortcodes:"
48
  msgstr ""
49
 
50
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
51
  msgid "for a log-in form."
52
  msgstr ""
53
 
54
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
55
  msgid "to add a registration form."
56
  msgstr ""
57
 
58
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr ""
61
 
62
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
63
  msgid "Users with administrator rights have access to the following features:"
64
  msgstr ""
65
 
66
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
67
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
68
  msgstr ""
69
 
70
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
71
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
72
  msgstr ""
73
 
74
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
75
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
76
  msgstr ""
77
 
78
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
79
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
80
  msgstr ""
81
 
82
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
83
  msgid "add an avatar field."
84
  msgstr ""
85
 
86
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  msgid "NOTE:"
88
  msgstr ""
89
 
90
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
91
  msgid "this plugin only adds/removes fields in the front-end."
92
  msgstr ""
93
 
94
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
95
  msgid "The default information-fields will still be visible(and thus modifiable)"
96
  msgstr ""
97
 
98
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
99
  msgid "from the back-end, while custom fields will only be visible in the front-end."
100
  msgstr ""
101
 
102
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
104
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
105
- msgid "Plugin Layout"
 
106
  msgstr ""
107
 
108
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
109
- msgid "Stylesheet used:"
110
  msgstr ""
111
 
112
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
113
  msgid "Default"
114
  msgstr ""
115
 
116
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
117
  msgid "White"
118
  msgstr ""
119
 
120
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
121
  msgid "Black"
122
  msgstr ""
123
 
124
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
125
  msgid "None"
126
  msgstr ""
127
 
128
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  msgid "Save Changes"
132
  msgstr ""
133
 
134
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
136
  msgid "Show/Hide the Admin Bar on Front End"
137
  msgstr ""
138
 
139
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
140
  msgid "User-group"
141
  msgstr ""
142
 
143
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
144
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
145
  msgid "Visibility"
146
  msgstr ""
147
 
148
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
149
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
161
  msgid "Show"
162
  msgstr ""
163
 
164
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
165
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
177
  msgid "Hide"
178
  msgstr ""
179
 
180
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
181
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
182
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
183
  msgid "Default Profile Fields"
184
  msgstr ""
185
 
186
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
187
  msgid "Input Field Name"
188
  msgstr ""
189
 
190
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
191
  msgid "Name:"
192
  msgstr ""
193
 
194
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
195
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
196
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
198
  msgid "Username"
199
  msgstr "Benutzername"
200
 
201
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
202
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
203
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
204
  msgid "First Name"
205
  msgstr ""
206
 
207
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
208
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
209
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
210
  msgid "Last Name"
211
  msgstr ""
212
 
213
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
214
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
215
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
216
  msgid "Nickname"
217
  msgstr ""
218
 
219
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
220
  msgid "Display name publicly as..."
221
  msgstr ""
222
 
223
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
224
  msgid "Contact Info:"
225
  msgstr "Kontakt:"
226
 
227
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
228
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
229
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
230
  msgid "E-mail"
231
  msgstr ""
232
 
233
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
234
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
235
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
236
  msgid "Website"
237
  msgstr ""
238
 
239
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
240
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
241
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
242
  msgid "AIM"
243
  msgstr ""
244
 
245
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
246
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
247
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
248
  msgid "Yahoo IM"
249
  msgstr ""
250
 
251
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
252
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
253
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
254
  msgid "Jabber / Google Talk"
255
  msgstr ""
256
 
257
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
258
  msgid "About Yourself:"
259
  msgstr ""
260
 
261
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
262
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
263
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
264
  msgid "Biographical Info"
265
  msgstr ""
266
 
267
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
268
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
269
  msgid "New Password"
270
  msgstr ""
271
 
272
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
273
  msgid "Basic Information"
274
  msgstr ""
275
 
276
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
277
  msgid "Show/Hide the Admin Bar on Front-end"
278
  msgstr ""
279
 
280
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
281
  msgid "Extra Profile Fields"
282
  msgstr ""
283
 
284
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
285
  msgid "Register Your Version"
286
  msgstr ""
287
 
288
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "You must be logged in to edit your profile."
290
  msgstr ""
291
 
292
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
293
  msgid "The avatar was successfully deleted."
294
  msgstr ""
295
 
296
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
297
- msgid "The attachment \""
298
  msgstr ""
299
 
300
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
301
- msgid "\" was successfully deleted."
302
  msgstr ""
303
 
304
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
305
  msgid "The changes have been successfully saved."
306
  msgstr ""
307
 
308
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
309
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
 
 
 
 
310
  msgstr ""
311
 
312
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
313
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
318
  msgid "NOT"
319
  msgstr ""
320
 
321
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
322
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
327
- msgid " updated along with the rest of the information."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  msgstr ""
329
 
330
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
331
- msgid "The email address you entered is invalid. <br/> The email address was "
332
  msgstr ""
333
 
334
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
335
- msgid "The passwords you entered do not match. <br/> The password was "
336
  msgstr ""
337
 
338
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
339
- msgid "You didn't complete both password fields. <br/> The password was "
340
  msgstr ""
341
 
342
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
343
- msgid "There was an error while trying to upload the following attachments:<br/>"
344
  msgstr ""
345
 
346
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
347
- msgid "<br/>Possible cause: the size was bigger than "
348
  msgstr ""
349
 
350
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
351
- msgid "b.<br/>The listed attachements were "
352
  msgstr ""
353
 
354
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
355
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
356
  msgstr ""
357
 
358
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
359
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
360
  msgid "Name"
361
  msgstr ""
362
 
363
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
364
- msgid " Usernames cannot be changed."
365
  msgstr ""
366
 
367
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
368
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
371
- msgid "(required)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
  msgstr ""
373
 
374
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
375
  msgid "Display name publicly as"
376
  msgstr ""
377
 
378
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
379
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
380
  msgid "Contact Info"
381
  msgstr ""
382
 
383
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
384
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
385
  msgid "About Yourself"
386
  msgstr ""
387
 
388
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
389
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
390
  msgid "Repeat Password"
391
  msgstr ""
392
 
393
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
394
  msgid "Update"
395
  msgstr ""
396
 
397
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
398
- #, php-format
399
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
400
  msgstr ""
401
 
402
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
403
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
404
  msgid "Log out of this account"
405
  msgstr ""
406
 
407
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
408
- msgid "Log out &raquo;"
409
  msgstr ""
410
 
411
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
412
- #, php-format
413
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
 
 
 
414
  msgstr ""
415
 
416
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
417
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid "Password"
419
  msgstr ""
420
 
421
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
422
  msgid "Log in"
423
  msgstr ""
424
 
425
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
426
  msgid "Remember me"
427
  msgstr ""
428
 
429
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
430
  msgid "Lost password?"
431
  msgstr ""
432
 
433
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "A username is required for registration."
435
  msgstr ""
436
 
437
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
438
  msgid "Sorry, that username already exists!"
439
  msgstr ""
440
 
441
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
442
  msgid "You must enter a valid email address."
443
  msgstr ""
444
 
445
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
446
  msgid "Sorry, that email address is already used!"
447
  msgstr ""
448
 
449
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
450
  msgid "You didn't complete one of the password-fields!"
451
  msgstr ""
452
 
453
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
454
- msgid "The entered passwords don't match!"
 
455
  msgstr ""
456
 
457
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
458
- #, php-format
459
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
460
  msgstr ""
461
 
462
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
463
- msgid "Logout &raquo;"
464
  msgstr ""
465
 
466
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
467
- #, php-format
468
- msgid "A user account for %1$s has been created."
469
  msgstr ""
470
 
471
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
472
- #, php-format
473
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
474
  msgstr ""
475
 
476
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Users can register themselves or you can manually create users here."
478
  msgstr ""
479
 
480
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
481
  msgid "Users cannot currently register themselves, but you can manually create users here."
482
  msgstr ""
483
 
484
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
485
  msgid "Only an administrator can add new users."
486
  msgstr ""
487
 
488
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
489
- msgid " Send these credentials via email."
 
 
 
 
 
 
 
 
490
  msgstr ""
491
 
492
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  msgid "Add User"
494
  msgstr ""
495
 
496
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
497
  msgid "Register"
498
  msgstr ""
499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:30+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
19
  msgid "Profile Builder"
20
  msgstr ""
21
 
22
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
23
  msgid "Welcome to Profile Builder!"
24
  msgstr ""
25
 
26
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr ""
29
 
30
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr ""
33
 
34
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr ""
37
 
38
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr ""
41
 
42
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr ""
45
 
46
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
47
  msgid "You can use the following shortcodes:"
48
  msgstr ""
49
 
50
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
51
  msgid "for a log-in form."
52
  msgstr ""
53
 
54
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
55
  msgid "to add a registration form."
56
  msgstr ""
57
 
58
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr ""
61
 
62
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
63
+ msgid "to add a password recovery form."
64
+ msgstr ""
65
+
66
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
67
  msgid "Users with administrator rights have access to the following features:"
68
  msgstr ""
69
 
70
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
71
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
72
  msgstr ""
73
 
74
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
75
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
76
  msgstr ""
77
 
78
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
79
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
80
  msgstr ""
81
 
82
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
83
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
84
  msgstr ""
85
 
86
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
87
  msgid "add an avatar field."
88
  msgstr ""
89
 
90
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
91
+ msgid "create custom redirects."
92
+ msgstr ""
93
+
94
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
95
+ msgid "front-end userlisting using the"
96
+ msgstr ""
97
+
98
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
99
+ msgid "shortcode."
100
+ msgstr ""
101
+
102
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
105
  msgid "NOTE:"
106
  msgstr ""
107
 
108
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
109
  msgid "this plugin only adds/removes fields in the front-end."
110
  msgstr ""
111
 
112
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
113
  msgid "The default information-fields will still be visible(and thus modifiable)"
114
  msgstr ""
115
 
116
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
117
  msgid "from the back-end, while custom fields will only be visible in the front-end."
118
  msgstr ""
119
 
120
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
124
+ msgid "General Settings"
125
  msgstr ""
126
 
127
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
128
+ msgid "Stylesheet Used on the Front-End:"
129
  msgstr ""
130
 
131
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
132
  msgid "Default"
133
  msgstr ""
134
 
135
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
136
  msgid "White"
137
  msgstr ""
138
 
139
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
140
  msgid "Black"
141
  msgstr ""
142
 
143
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
144
  msgid "None"
145
  msgstr ""
146
 
147
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
148
+ msgid "\"Email Confirmation\" Feature Activated:"
149
+ msgstr ""
150
+
151
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
152
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
172
+ msgid "Yes"
173
+ msgstr ""
174
+
175
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
176
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
177
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
196
+ msgid "No"
197
+ msgstr ""
198
+
199
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
200
+ msgid "\"Admin Approval\" Feature Activated:"
201
+ msgstr ""
202
+
203
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
204
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
205
+ msgstr ""
206
+
207
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
208
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
209
+ msgstr ""
210
+
211
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
212
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
213
+ msgstr ""
214
+
215
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
217
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
223
  msgid "Save Changes"
224
  msgstr ""
225
 
226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
228
  msgid "Show/Hide the Admin Bar on Front End"
229
  msgstr ""
230
 
231
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
232
  msgid "User-group"
233
  msgstr ""
234
 
235
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
236
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
237
  msgid "Visibility"
238
  msgstr ""
239
 
240
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
242
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
253
  msgid "Show"
254
  msgstr ""
255
 
256
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
258
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
269
  msgid "Hide"
270
  msgstr ""
271
 
272
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
273
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
274
+ msgstr ""
275
+
276
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
278
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
279
  msgid "Default Profile Fields"
280
  msgstr ""
281
 
282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
283
  msgid "Input Field Name"
284
  msgstr ""
285
 
286
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
287
+ msgid "Required"
288
+ msgstr ""
289
+
290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
291
  msgid "Name:"
292
  msgstr ""
293
 
294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
295
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
296
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
297
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
300
  msgid "Username"
301
  msgstr "Benutzername"
302
 
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
305
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
306
  msgid "First Name"
307
  msgstr ""
308
 
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
310
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
311
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
312
  msgid "Last Name"
313
  msgstr ""
314
 
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
318
  msgid "Nickname"
319
  msgstr ""
320
 
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
322
  msgid "Display name publicly as..."
323
  msgstr ""
324
 
325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
326
  msgid "Contact Info:"
327
  msgstr "Kontakt:"
328
 
329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
330
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
331
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
332
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
333
  msgid "E-mail"
334
  msgstr ""
335
 
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
337
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
340
  msgid "Website"
341
  msgstr ""
342
 
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
345
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
346
  msgid "AIM"
347
  msgstr ""
348
 
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
352
  msgid "Yahoo IM"
353
  msgstr ""
354
 
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
358
  msgid "Jabber / Google Talk"
359
  msgstr ""
360
 
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
362
  msgid "About Yourself:"
363
  msgstr ""
364
 
365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
366
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
367
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
368
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
369
  msgid "Biographical Info"
370
  msgstr ""
371
 
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
373
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
374
  msgid "New Password"
375
  msgstr ""
376
 
377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
378
  msgid "Basic Information"
379
  msgstr ""
380
 
381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
382
  msgid "Show/Hide the Admin Bar on Front-end"
383
  msgstr ""
384
 
385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
386
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
387
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
388
  msgid "Extra Profile Fields"
389
  msgstr ""
390
 
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
392
+ msgid "Addons"
393
+ msgstr ""
394
+
395
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
396
  msgid "Register Your Version"
397
  msgstr ""
398
 
399
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
400
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
401
+ msgid "The information size you were trying to submit was larger than"
402
+ msgstr ""
403
+
404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
406
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
407
+ msgstr ""
408
+
409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
411
+ msgid "Since it was also larger than"
412
+ msgstr ""
413
+
414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
415
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
416
+ msgid "no additional information is available."
417
+ msgstr ""
418
+
419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
420
  msgid "You must be logged in to edit your profile."
421
  msgstr ""
422
 
423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
424
  msgid "The avatar was successfully deleted."
425
  msgstr ""
426
 
427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
428
+ msgid "The attachment"
429
  msgstr ""
430
 
431
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
432
+ msgid "was successfully deleted."
433
  msgstr ""
434
 
435
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
436
  msgid "The changes have been successfully saved."
437
  msgstr ""
438
 
439
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
440
+ msgid "The email address you entered is already registered to a different user."
441
+ msgstr ""
442
+
443
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
444
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
445
+ msgid "The email address was"
446
  msgstr ""
447
 
448
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
449
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
451
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
452
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
454
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
455
  msgid "NOT"
456
  msgstr ""
457
 
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
463
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
464
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
465
+ msgid "updated along with the rest of the information."
466
+ msgstr ""
467
+
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
469
+ msgid "The email address you entered is invalid."
470
+ msgstr ""
471
+
472
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
473
+ msgid "The passwords you entered do not match."
474
+ msgstr ""
475
+
476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
477
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
478
+ msgid "The password was"
479
+ msgstr ""
480
+
481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
482
+ msgid "You didn't complete both password fields."
483
  msgstr ""
484
 
485
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
486
+ msgid "Your profile was NOT updated!"
487
  msgstr ""
488
 
489
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
490
+ msgid "There was an error while trying to upload the following attachments:"
491
  msgstr ""
492
 
493
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
494
+ msgid "Possible cause: the size was bigger than"
495
  msgstr ""
496
 
497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
498
+ msgid "The listed attachements were"
499
  msgstr ""
500
 
501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
502
+ msgid "There was an error while trying to upload your avatar picture."
503
  msgstr ""
504
 
505
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
506
+ msgid "Possible cause: size/incorrect file-type."
507
  msgstr ""
508
 
509
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
510
+ msgid "The avatar was"
511
  msgstr ""
512
 
513
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
514
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
515
+ msgid "There was an error while trying to upload the following attachment(s)"
516
+ msgstr ""
517
+
518
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
519
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
520
+ msgid "Only files with the following extension(s) can be uploaded:"
521
+ msgstr ""
522
+
523
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
524
+ msgid "This file was"
525
+ msgstr ""
526
+
527
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
529
  msgid "Name"
530
  msgstr ""
531
 
532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
533
+ msgid "Usernames cannot be changed."
534
  msgstr ""
535
 
536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
537
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
538
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
539
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
541
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
542
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
543
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
546
+ msgid "This field is marked as required by the administrator."
547
+ msgstr ""
548
+
549
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
550
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
551
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
552
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
559
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
560
  msgstr ""
561
 
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
563
  msgid "Display name publicly as"
564
  msgstr ""
565
 
566
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
568
  msgid "Contact Info"
569
  msgstr ""
570
 
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
572
+ msgid "(required)"
573
+ msgstr ""
574
+
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
577
  msgid "About Yourself"
578
  msgstr ""
579
 
580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
582
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
583
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
584
  msgid "Repeat Password"
585
  msgstr ""
586
 
587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
588
  msgid "Update"
589
  msgstr ""
590
 
591
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
592
+ msgid "You are currently logged in as"
 
593
  msgstr ""
594
 
595
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
596
  msgid "Log out of this account"
597
  msgstr ""
598
 
599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
600
+ msgid "Log out"
601
  msgstr ""
602
 
603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
604
+ msgid "You have successfully logged in as"
605
+ msgstr ""
606
+
607
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
608
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
609
  msgstr ""
610
 
611
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
612
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
613
+ msgid "here"
614
+ msgstr ""
615
+
616
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
617
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
618
+ msgid "ERROR:"
619
+ msgstr ""
620
+
621
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
622
+ msgid "The username field is empty"
623
+ msgstr ""
624
+
625
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
626
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
627
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
629
  msgid "Password"
630
  msgstr ""
631
 
632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
633
  msgid "Log in"
634
  msgstr ""
635
 
636
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
637
  msgid "Remember me"
638
  msgstr ""
639
 
640
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
641
  msgid "Lost password?"
642
  msgstr ""
643
 
644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
645
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
647
+ msgid "ERROR"
648
+ msgstr ""
649
+
650
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
651
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
652
+ msgstr ""
653
+
654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
656
+ msgid "A password reset email has been sent to "
657
+ msgstr ""
658
+
659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
661
+ msgid "Following the link sent in the email address will reset the password."
662
+ msgstr ""
663
+
664
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
666
+ msgid "Someone requested that the password be reset for the following account: "
667
+ msgstr ""
668
+
669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
670
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
671
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
672
+ msgstr ""
673
+
674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
676
+ msgid "To reset your password, visit the following link:"
677
+ msgstr ""
678
+
679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
681
+ msgid "Password Reset Feature from"
682
+ msgstr ""
683
+
684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
686
+ msgid "There was an error while trying to send the activation link to "
687
+ msgstr ""
688
+
689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
690
+ msgid "The email address entered wasn't found in the database!"
691
+ msgstr ""
692
+
693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
694
+ msgid "Please check that you entered the correct email address."
695
+ msgstr ""
696
+
697
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
698
+ msgid "The username entered wasn't found in the database!"
699
+ msgstr ""
700
+
701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
702
+ msgid "Please check that you entered the correct username."
703
+ msgstr ""
704
+
705
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
706
+ msgid "Your password has been successfully changed!"
707
+ msgstr ""
708
+
709
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
710
+ msgid "You have successfully reset your password to:"
711
+ msgstr ""
712
+
713
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
714
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
715
+ msgid "Password Successfully Reset for"
716
+ msgstr ""
717
+
718
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
719
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
720
+ msgid "from"
721
+ msgstr ""
722
+
723
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
724
+ msgid "has requested a password change via the password reset feature."
725
+ msgstr ""
726
+
727
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
728
+ msgid "His/her new password is:"
729
+ msgstr ""
730
+
731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
733
+ msgid "The entered passwords don't match!"
734
+ msgstr ""
735
+
736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
738
+ msgid "Reset Password"
739
+ msgstr ""
740
+
741
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
742
+ msgid "Invalid key!"
743
+ msgstr ""
744
+
745
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
746
+ msgid "Please enter your username or email address."
747
+ msgstr ""
748
+
749
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
750
+ msgid "You will receive a link to create a new password via email."
751
+ msgstr ""
752
+
753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
754
+ #, fuzzy
755
+ msgid "Username or E-mail"
756
+ msgstr "Benutzername"
757
+
758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
759
+ msgid "Get New Password"
760
+ msgstr ""
761
+
762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
763
+ #, php-format
764
+ msgid ""
765
+ "To activate your user, please click the following link:\n"
766
+ "\n"
767
+ "%s\n"
768
+ "\n"
769
+ "After you activate, you will receive *another email* with your login.\n"
770
+ "\n"
771
+ msgstr ""
772
+
773
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
774
+ #, php-format
775
+ msgid "[%1$s] Activate %2$s"
776
+ msgstr ""
777
+
778
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
779
+ msgid "Invalid activation key!"
780
+ msgstr ""
781
+
782
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
783
+ msgid "The user is already active!"
784
+ msgstr ""
785
+
786
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
787
+ msgid "Could not create user!"
788
+ msgstr ""
789
+
790
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
791
+ msgid "That username is already activated!"
792
+ msgstr ""
793
+
794
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
795
+ msgid "The user was successfully activated."
796
+ msgstr ""
797
+
798
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
799
+ msgid "There was an error while trying to activate the user."
800
+ msgstr ""
801
+
802
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
803
+ msgid "New subscriber on"
804
+ msgstr ""
805
+
806
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
807
+ msgid "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!"
808
+ msgstr ""
809
+
810
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
811
+ msgid "A new subscriber has (been) registered!"
812
+ msgstr ""
813
+
814
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
815
+ msgid "A new account has been created for you."
816
+ msgstr ""
817
+
818
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
819
+ msgid "Welcome to"
820
+ msgstr ""
821
+
822
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
823
+ msgid "Your username is:"
824
+ msgstr ""
825
+
826
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
827
+ msgid "and password:"
828
+ msgstr ""
829
+
830
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
831
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
832
+ msgstr ""
833
+
834
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
835
+ msgid "The user was NOT created!"
836
+ msgstr ""
837
+
838
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
839
  msgid "A username is required for registration."
840
  msgstr ""
841
 
842
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
843
  msgid "Sorry, that username already exists!"
844
  msgstr ""
845
 
846
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
847
  msgid "You must enter a valid email address."
848
  msgstr ""
849
 
850
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
851
  msgid "Sorry, that email address is already used!"
852
  msgstr ""
853
 
854
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
855
  msgid "You didn't complete one of the password-fields!"
856
  msgstr ""
857
 
858
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
859
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
860
+ msgid "The account was NOT created!"
861
  msgstr ""
862
 
863
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
864
+ msgid "You must agree to the terms and conditions before registering!"
 
865
  msgstr ""
866
 
867
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
868
+ msgid "(Several required fields were left uncompleted)"
869
  msgstr ""
870
 
871
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
872
+ msgid "This username is already reserved to be used soon."
 
873
  msgstr ""
874
 
875
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
876
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
877
+ msgid "Please try a different one!"
878
+ msgstr ""
879
+
880
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
881
+ msgid "This email address is already reserved to be used soon."
882
+ msgstr ""
883
+
884
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
885
+ msgid "You are logged in as"
886
+ msgstr ""
887
+
888
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
889
+ msgid "You don't need another account."
890
+ msgstr ""
891
+
892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
893
+ msgid "Log out of this account."
894
+ msgstr ""
895
+
896
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
897
+ msgid "Logout"
898
+ msgstr ""
899
+
900
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
901
+ msgid "An email has been sent to "
902
  msgstr ""
903
 
904
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
905
+ msgid "with information on how to activate his/her account"
906
+ msgstr ""
907
+
908
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
909
+ msgid "A user account has been created for"
910
+ msgstr ""
911
+
912
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
913
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
914
+ msgstr ""
915
+
916
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
917
+ msgid "An email has been sent to you with information on how to activate your account"
918
+ msgstr ""
919
+
920
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
921
+ msgid "Thank you for registering"
922
+ msgstr ""
923
+
924
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
925
+ msgid "An error occured while trying to send the notification email."
926
+ msgstr ""
927
+
928
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
929
+ msgid "An email containing activation instructions was successfully sent."
930
+ msgstr ""
931
+
932
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
933
+ msgid "An email containing the username and password was successfully sent."
934
+ msgstr ""
935
+
936
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
937
  msgid "Users can register themselves or you can manually create users here."
938
  msgstr ""
939
 
940
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
941
  msgid "Users cannot currently register themselves, but you can manually create users here."
942
  msgstr ""
943
 
944
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
945
  msgid "Only an administrator can add new users."
946
  msgstr ""
947
 
948
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
949
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
950
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
951
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
952
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
953
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
954
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
955
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
956
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
957
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
958
  msgstr ""
959
 
960
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
961
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
962
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
963
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
964
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
965
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
966
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
967
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
968
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
969
+ msgid "This field is marked as required by the administrator"
970
+ msgstr ""
971
+
972
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
973
+ msgid "Anti-Spam"
974
+ msgstr ""
975
+
976
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
977
+ msgid "Send these credentials via email."
978
+ msgstr ""
979
+
980
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
981
  msgid "Add User"
982
  msgstr ""
983
 
984
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
985
  msgid "Register"
986
  msgstr ""
987
 
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
989
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
990
+ msgstr ""
991
+
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
993
+ msgid "heading"
994
+ msgstr ""
995
+
996
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
997
+ msgid "\" custom field."
998
+ msgstr ""
999
+
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1001
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1002
+ msgstr ""
1003
+
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1005
+ msgid "Drag"
1006
+ msgstr ""
1007
+
1008
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1009
+ msgid "Drop"
1010
+ msgstr ""
1011
+
1012
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1013
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1014
+ msgstr ""
1015
+
1016
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1017
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1018
+ msgid "Title"
1019
+ msgstr ""
1020
+
1021
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1022
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1023
+ msgid "Type"
1024
+ msgstr ""
1025
+
1026
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1027
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1028
+ msgid "Meta-Key"
1029
+ msgstr ""
1030
+
1031
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1032
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1033
+ msgid "ID"
1034
+ msgstr ""
1035
+
1036
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1037
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1038
+ msgid "Req'd"
1039
+ msgstr ""
1040
+
1041
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1042
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1043
+ msgid "Add Option"
1044
+ msgstr ""
1045
+
1046
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1047
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1048
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1049
+ msgid "Edit"
1050
+ msgstr ""
1051
+
1052
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1053
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1054
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1055
+ msgid "Delete"
1056
+ msgstr ""
1057
+
1058
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1059
+ msgid "Title:"
1060
+ msgstr ""
1061
+
1062
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1063
+ msgid "The title of the item."
1064
+ msgstr ""
1065
+
1066
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1067
+ msgid "Meta-Key:"
1068
+ msgstr ""
1069
+
1070
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1071
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1072
+ msgstr ""
1073
+
1074
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1075
+ msgid "Option Type:"
1076
+ msgstr ""
1077
+
1078
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1079
+ msgid "Choose one of the supported option types."
1080
+ msgstr ""
1081
+
1082
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1083
+ msgid "Description:"
1084
+ msgstr ""
1085
+
1086
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1087
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1088
+ msgstr ""
1089
+
1090
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1091
+ msgid "You can only insert links using standard HTML syntax:"
1092
+ msgstr ""
1093
+
1094
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1095
+ msgid "address"
1096
+ msgstr ""
1097
+
1098
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1099
+ #, fuzzy
1100
+ msgid "name"
1101
+ msgstr "Benutzername"
1102
+
1103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1104
+ msgid "Options:"
1105
+ msgstr ""
1106
+
1107
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1108
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1109
+ msgstr ""
1110
+
1111
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1112
+ msgid "ID:"
1113
+ msgstr ""
1114
+
1115
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1116
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1117
+ msgstr ""
1118
+
1119
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1120
+ msgid "Required:"
1121
+ msgstr ""
1122
+
1123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1124
+ msgid "Check this box to make this field required."
1125
+ msgstr ""
1126
+
1127
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1128
+ msgid "Cancel"
1129
+ msgstr ""
1130
+
1131
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1132
+ msgid "Save"
1133
+ msgstr ""
1134
+
1135
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1136
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1137
+ msgid "Register your version of Profile Builder Pro"
1138
+ msgstr ""
1139
+
1140
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1141
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1142
+ msgstr ""
1143
+
1144
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1145
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1146
+ msgstr ""
1147
+
1148
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1149
+ msgid "Serial Number:"
1150
+ msgstr ""
1151
+
1152
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1153
+ msgid "The serial number was successfully validated!"
1154
+ msgstr ""
1155
+
1156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1157
+ msgid "The serial number couldn't be validated or isn't valid!"
1158
+ msgstr ""
1159
+
1160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1161
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1162
+ msgstr ""
1163
+
1164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1165
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1166
+ msgstr ""
1167
+
1168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1169
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1170
+ msgstr ""
1171
+
1172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1173
+ msgid "You can find it in Profile Builder's menu."
1174
+ msgstr ""
1175
+
1176
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1177
+ msgid "You need to be logged in to view the userlisting!"
1178
+ msgstr ""
1179
+
1180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1185
+ msgid "Search Users by All Fields"
1186
+ msgstr ""
1187
+
1188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1189
+ msgid "Leave Blank and Press Search to List All Users"
1190
+ msgstr ""
1191
+
1192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1193
+ msgid "Search"
1194
+ msgstr ""
1195
+
1196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1197
+ msgid "First/Lastname"
1198
+ msgstr ""
1199
+
1200
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1201
+ msgid "Email"
1202
+ msgstr ""
1203
+
1204
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1205
+ msgid "Sign-up Date"
1206
+ msgstr ""
1207
+
1208
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1209
+ msgid "Firstname"
1210
+ msgstr ""
1211
+
1212
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1213
+ #, fuzzy
1214
+ msgid "Lastname"
1215
+ msgstr "Benutzername"
1216
+
1217
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1218
+ msgid "Display Name"
1219
+ msgstr ""
1220
+
1221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1222
+ msgid "Posts"
1223
+ msgstr ""
1224
+
1225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1226
+ msgid "Click here to see more information about this user"
1227
+ msgstr ""
1228
+
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1230
+ msgid "More..."
1231
+ msgstr ""
1232
+
1233
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1235
+ msgid "No uploaded attachment"
1236
+ msgstr ""
1237
+
1238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1239
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1240
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1241
+ msgid "Click to see the current attachment"
1242
+ msgstr ""
1243
+
1244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1245
+ msgid "Click here to go back"
1246
+ msgstr ""
1247
+
1248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1249
+ msgid "Back"
1250
+ msgstr ""
1251
+
1252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1254
+ msgid "Current file"
1255
+ msgstr ""
1256
+
1257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1258
+ msgid "Avatar"
1259
+ msgstr ""
1260
+
1261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1262
+ msgid "No results found!"
1263
+ msgstr ""
1264
+
1265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1266
+ msgid "&laquo;&laquo; First"
1267
+ msgstr ""
1268
+
1269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1270
+ msgid "&laquo; Prev"
1271
+ msgstr ""
1272
+
1273
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1274
+ msgid "Next &raquo; "
1275
+ msgstr ""
1276
+
1277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1278
+ msgid "Last &raquo;&raquo;"
1279
+ msgstr ""
1280
+
1281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1282
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1283
+ msgstr ""
1284
+
1285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1286
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1287
+ msgid "Activate/Deactivate Addons"
1288
+ msgstr ""
1289
+
1290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1291
+ msgid "Name/Description"
1292
+ msgstr ""
1293
+
1294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1295
+ msgid "Status"
1296
+ msgstr ""
1297
+
1298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1301
+ msgid "User-Listing"
1302
+ msgstr ""
1303
+
1304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1305
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1306
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1307
+ msgid "Active"
1308
+ msgstr ""
1309
+
1310
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1311
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1313
+ msgid "Inactive"
1314
+ msgstr ""
1315
+
1316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1318
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1319
+ msgid "Custom Redirects"
1320
+ msgstr ""
1321
+
1322
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1323
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1324
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1325
+ msgid "reCAPTCHA"
1326
+ msgstr ""
1327
+
1328
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1329
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1330
+ msgstr ""
1331
+
1332
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1333
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1334
+ msgstr ""
1335
+
1336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1337
+ msgid "These settings are applied to the front-end userlisting."
1338
+ msgstr ""
1339
+
1340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1341
+ msgid "Number of Users/Page: "
1342
+ msgstr ""
1343
+
1344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1345
+ msgid "Default Sorting Order: "
1346
+ msgstr ""
1347
+
1348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1349
+ msgid "\"All-Userlisting\" Template"
1350
+ msgstr ""
1351
+
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1354
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1355
+ msgstr ""
1356
+
1357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1358
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1359
+ msgstr ""
1360
+
1361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1362
+ msgid "Avatar size: "
1363
+ msgstr ""
1364
+
1365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1366
+ msgid "Insert \"Sort By\" Field:"
1367
+ msgstr ""
1368
+
1369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1371
+ msgid "Insert \"User-Meta\" Field:"
1372
+ msgstr ""
1373
+
1374
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1376
+ msgid "Insert Extra Functions:"
1377
+ msgstr ""
1378
+
1379
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1380
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1381
+ msgstr ""
1382
+
1383
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1384
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1385
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1386
+ msgstr ""
1387
+
1388
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1389
+ msgid "\"Single-Userlisting\" Template"
1390
+ msgstr ""
1391
+
1392
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1393
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1394
+ msgstr ""
1395
+
1396
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1397
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1398
+ msgstr ""
1399
+
1400
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1401
+ msgid "Redirects on custom page requests:"
1402
+ msgstr ""
1403
+
1404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1405
+ msgid "Action"
1406
+ msgstr ""
1407
+
1408
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1410
+ msgid "Redirect"
1411
+ msgstr ""
1412
+
1413
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1415
+ msgid "URL"
1416
+ msgstr ""
1417
+
1418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1419
+ msgid "After Registration:"
1420
+ msgstr ""
1421
+
1422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1423
+ msgid "After Login:"
1424
+ msgstr ""
1425
+
1426
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1427
+ msgid "Recover Password (*)"
1428
+ msgstr ""
1429
+
1430
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1431
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1432
+ msgstr ""
1433
+
1434
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1435
+ msgid "Redirects on default WordPress page requests:"
1436
+ msgstr ""
1437
+
1438
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1439
+ msgid "Requested WP Page"
1440
+ msgstr ""
1441
+
1442
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1443
+ msgid "Default WP Login Page(*)"
1444
+ msgstr ""
1445
+
1446
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1447
+ msgid "Default WP Logout Page(**)"
1448
+ msgstr ""
1449
+
1450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1451
+ msgid "Default WP Register Page"
1452
+ msgstr ""
1453
+
1454
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1455
+ msgid "Default WP Dashboard (***)"
1456
+ msgstr ""
1457
+
1458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1459
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1460
+ msgstr ""
1461
+
1462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1463
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1464
+ msgstr ""
1465
+
1466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1467
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1468
+ msgstr ""
1469
+
1470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1471
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1472
+ msgstr ""
1473
+
1474
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1475
+ msgid "For this you must get a public and private key from Google:"
1476
+ msgstr ""
1477
+
1478
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1479
+ msgid "Key"
1480
+ msgstr ""
1481
+
1482
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1483
+ msgid "Code"
1484
+ msgstr ""
1485
+
1486
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1487
+ msgid "Public Key:"
1488
+ msgstr ""
1489
+
1490
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1491
+ msgid "Private Key:"
1492
+ msgstr ""
1493
+
1494
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1495
+ msgid "Could not open socket!"
1496
+ msgstr ""
1497
+
1498
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1499
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1500
+ msgid "To use reCAPTCHA you must get an API key from"
1501
+ msgstr ""
1502
+
1503
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1504
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1505
+ msgstr ""
1506
+
1507
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1508
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1509
+ msgstr ""
1510
+
1511
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1512
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1513
+ msgstr ""
1514
+
1515
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1517
+ msgid "You must give your option a title."
1518
+ msgstr ""
1519
+
1520
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1522
+ msgid "You have entered an invalid meta-key format!"
1523
+ msgstr ""
1524
+
1525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1526
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1527
+ msgid "You must enter a valid meta-key."
1528
+ msgstr ""
1529
+
1530
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1531
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1533
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1534
+ msgid "That meta-key is already in use."
1535
+ msgstr ""
1536
+
1537
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1538
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1539
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1540
+ msgstr ""
1541
+
1542
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1543
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1544
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1545
+ msgstr ""
1546
+
1547
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1548
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1549
+ msgid "The textarea row value must be numeric."
1550
+ msgstr ""
1551
+
1552
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1554
+ msgid "The maxlength attribute must be numeric."
1555
+ msgstr ""
1556
+
1557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1559
+ msgid "The value must be between 20 and 200!"
1560
+ msgstr ""
1561
+
1562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1564
+ msgid "The width component of the entered value must be numeric!"
1565
+ msgstr ""
1566
+
1567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1569
+ msgid "The height component of the entered value must be numeric!"
1570
+ msgstr ""
1571
+
1572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1574
+ msgid "The width component of the entered value must be between 20 and 200!"
1575
+ msgstr ""
1576
+
1577
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1578
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1579
+ msgid "The height component of the entered value must be between 20 and 200!"
1580
+ msgstr ""
1581
+
1582
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1583
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1584
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1585
+ msgstr ""
1586
+
1587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1589
+ msgid "The entered avatar size must be numeric!"
1590
+ msgstr ""
1591
+
1592
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1594
+ msgid "There was an error, please try again."
1595
+ msgstr ""
1596
+
1597
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1602
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1605
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1606
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1607
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1608
+ msgstr ""
1609
+
1610
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1611
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1612
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1613
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1614
+ msgid "max upload size"
1615
+ msgstr ""
1616
+
1617
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1619
+ msgid "Are you sure you want to delete this attachment?"
1620
+ msgstr ""
1621
+
1622
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1625
+ msgid "Click to delete the current attachment"
1626
+ msgstr ""
1627
+
1628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1629
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1630
+ msgstr ""
1631
+
1632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1634
+ msgid "Current avatar"
1635
+ msgstr ""
1636
+
1637
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1639
+ msgid "No uploaded avatar"
1640
+ msgstr ""
1641
+
1642
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1644
+ msgid "Are you sure you want to delete this avatar?"
1645
+ msgstr ""
1646
+
1647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1648
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1649
+ msgstr ""
1650
+
1651
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1652
+ msgid "Click to see the current avatar"
1653
+ msgstr ""
1654
+
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1656
+ msgid "Click to delete the avatar"
1657
+ msgstr ""
1658
+
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1660
+ msgid "The user-validation has failed - the avatar was not deleted!"
1661
+ msgstr ""
1662
+
1663
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1664
+ msgid "The user-validation has failed - the attachment was not deleted!"
1665
+ msgstr ""
1666
+
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1668
+ msgid "Do you want to"
1669
+ msgstr ""
1670
+
1671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1672
+ msgid "the current user?"
1673
+ msgstr ""
1674
+
1675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1677
+ msgid "Your account on"
1678
+ msgstr ""
1679
+
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1681
+ msgid "has been approved!"
1682
+ msgstr ""
1683
+
1684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1685
+ msgid "An administrator has just approved your account on"
1686
+ msgstr ""
1687
+
1688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1689
+ msgid "has been unapproved!"
1690
+ msgstr ""
1691
+
1692
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1693
+ msgid "An administrator has just unapproved your account on"
1694
+ msgstr ""
1695
+
1696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1697
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1698
+ msgid "Approve"
1699
+ msgstr ""
1700
+
1701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1702
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1703
+ msgid "Unapproved"
1704
+ msgstr ""
1705
+
1706
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1708
+ msgid "Unapprove"
1709
+ msgstr ""
1710
+
1711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1712
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1713
+ msgid "Approved"
1714
+ msgstr ""
1715
+
1716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1717
+ msgid "unapprove"
1718
+ msgstr ""
1719
+
1720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1721
+ msgid "approve"
1722
+ msgstr ""
1723
+
1724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1725
+ msgid "Are you sure you want to"
1726
+ msgstr ""
1727
+
1728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1729
+ msgid "this user?"
1730
+ msgstr ""
1731
+
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1733
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1734
+ msgstr ""
1735
+
translation/profilebuilder-en_US.mo CHANGED
Binary file
translation/profilebuilder-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ProfileBuilder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-08-09 17:16+0200\n"
6
- "PO-Revision-Date: 2012-08-09 17:16+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"
@@ -118,7 +118,7 @@ msgstr ""
118
 
119
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
120
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
121
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
122
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
123
  msgid "General Settings"
124
  msgstr ""
@@ -274,7 +274,7 @@ msgstr ""
274
 
275
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
276
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
277
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
278
  msgid "Default Profile Fields"
279
  msgstr ""
280
 
@@ -294,26 +294,26 @@ msgstr ""
294
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
295
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
296
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
297
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1276
298
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
299
  msgid "Username"
300
  msgstr ""
301
 
302
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
303
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
304
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
305
  msgid "First Name"
306
  msgstr ""
307
 
308
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
309
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
310
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
311
  msgid "Last Name"
312
  msgstr ""
313
 
314
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
315
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
316
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
317
  msgid "Nickname"
318
  msgstr ""
319
 
@@ -328,32 +328,32 @@ msgstr ""
328
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
329
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
330
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
331
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
332
  msgid "E-mail"
333
  msgstr ""
334
 
335
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
336
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
337
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
338
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
339
  msgid "Website"
340
  msgstr ""
341
 
342
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
343
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
344
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
345
  msgid "AIM"
346
  msgstr ""
347
 
348
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
349
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
350
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
351
  msgid "Yahoo IM"
352
  msgstr ""
353
 
354
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
355
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
356
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
357
  msgid "Jabber / Google Talk"
358
  msgstr ""
359
 
@@ -363,7 +363,7 @@ msgstr ""
363
 
364
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
365
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
366
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
367
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
368
  msgid "Biographical Info"
369
  msgstr ""
@@ -373,25 +373,25 @@ msgstr ""
373
  msgid "New Password"
374
  msgstr ""
375
 
376
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:57
377
  msgid "Basic Information"
378
  msgstr ""
379
 
380
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
381
  msgid "Show/Hide the Admin Bar on Front-end"
382
  msgstr ""
383
 
384
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:66
385
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
386
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
387
  msgid "Extra Profile Fields"
388
  msgstr ""
389
 
390
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:69
391
  msgid "Addons"
392
  msgstr ""
393
 
394
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:72
395
  msgid "Register Your Version"
396
  msgstr ""
397
 
@@ -510,12 +510,12 @@ msgid "The avatar was"
510
  msgstr ""
511
 
512
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
513
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
514
  msgid "There was an error while trying to upload the following attachment(s)"
515
  msgstr ""
516
 
517
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
518
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:878
519
  msgid "Only files with the following extension(s) can be uploaded:"
520
  msgstr ""
521
 
@@ -524,7 +524,7 @@ msgid "This file was"
524
  msgstr ""
525
 
526
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
527
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1255
528
  msgid "Name"
529
  msgstr ""
530
 
@@ -563,7 +563,7 @@ msgid "Display name publicly as"
563
  msgstr ""
564
 
565
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
566
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1354
567
  msgid "Contact Info"
568
  msgstr ""
569
 
@@ -572,14 +572,14 @@ msgid "(required)"
572
  msgstr ""
573
 
574
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
575
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1477
576
  msgid "About Yourself"
577
  msgstr ""
578
 
579
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
580
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:297
581
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
582
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1532
583
  msgid "Repeat Password"
584
  msgstr ""
585
 
@@ -608,12 +608,12 @@ msgid "You will soon be redirected automatically. If you see this page for more
608
  msgstr ""
609
 
610
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
611
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1166
612
  msgid "here"
613
  msgstr ""
614
 
615
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
616
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:351
617
  msgid "ERROR:"
618
  msgstr ""
619
 
@@ -622,9 +622,9 @@ msgid "The username field is empty"
622
  msgstr ""
623
 
624
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
625
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
626
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:322
627
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1527
628
  msgid "Password"
629
  msgstr ""
630
 
@@ -640,115 +640,120 @@ msgstr ""
640
  msgid "Lost password?"
641
  msgstr ""
642
 
643
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:119
644
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:164
 
 
 
 
 
 
 
 
 
 
645
  msgid "A password reset email has been sent to "
646
  msgstr ""
647
 
648
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:119
649
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:164
650
  msgid "Following the link sent in the email address will reset the password."
651
  msgstr ""
652
 
653
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:131
654
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:176
655
  msgid "Someone requested that the password be reset for the following account: "
656
  msgstr ""
657
 
658
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:133
659
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:178
660
  msgid "If this was a mistake, just ignore this email and nothing will happen."
661
  msgstr ""
662
 
663
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:134
664
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
665
  msgid "To reset your password, visit the following link:"
666
  msgstr ""
667
 
668
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:138
669
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:183
670
  msgid "Password Reset Feature from"
671
  msgstr ""
672
 
673
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
674
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:192
675
- msgid "ERROR"
676
- msgstr ""
677
-
678
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
679
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:192
680
  msgid "There was an error while trying to send the activation link to "
681
  msgstr ""
682
 
683
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:157
684
  msgid "The email address entered wasn't found in the database!"
685
  msgstr ""
686
 
687
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:157
688
  msgid "Please check that you entered the correct email address."
689
  msgstr ""
690
 
691
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:199
692
  msgid "The username entered wasn't found in the database!"
693
  msgstr ""
694
 
695
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:199
696
  msgid "Please check that you entered the correct username."
697
  msgstr ""
698
 
699
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
700
  msgid "Your password has been successfully changed!"
701
  msgstr ""
702
 
703
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
704
  msgid "You have successfully reset your password to:"
705
  msgstr ""
706
 
707
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:228
708
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:242
709
  msgid "Password Successfully Reset for"
710
  msgstr ""
711
 
712
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:228
713
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:242
714
  msgid "from"
715
  msgstr ""
716
 
717
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
718
  msgid "has requested a password change via the password reset feature."
719
  msgstr ""
720
 
721
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:239
722
  msgid "His/her new password is:"
723
  msgstr ""
724
 
725
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
726
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:868
727
  msgid "The entered passwords don't match!"
728
  msgstr ""
729
 
730
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:304
731
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:334
732
  msgid "Reset Password"
733
  msgstr ""
734
 
735
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:351
736
  msgid "Invalid key!"
737
  msgstr ""
738
 
739
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
740
  msgid "Please enter your username or email address."
741
  msgstr ""
742
 
743
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
744
  msgid "You will receive a link to create a new password via email."
745
  msgstr ""
746
 
747
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:375
748
  msgid "Username or E-mail"
749
  msgstr ""
750
 
751
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:384
752
  msgid "Get New Password"
753
  msgstr ""
754
 
@@ -828,153 +833,153 @@ msgstr ""
828
  msgid "The user was NOT created!"
829
  msgstr ""
830
 
831
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:857
832
  msgid "A username is required for registration."
833
  msgstr ""
834
 
835
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:859
836
  msgid "Sorry, that username already exists!"
837
  msgstr ""
838
 
839
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:861
840
  msgid "You must enter a valid email address."
841
  msgstr ""
842
 
843
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:863
844
  msgid "Sorry, that email address is already used!"
845
  msgstr ""
846
 
847
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:866
848
  msgid "You didn't complete one of the password-fields!"
849
  msgstr ""
850
 
851
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:878
852
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
853
  msgid "The account was NOT created!"
854
  msgstr ""
855
 
856
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
857
  msgid "You must agree to the terms and conditions before registering!"
858
  msgstr ""
859
 
860
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
861
  msgid "(Several required fields were left uncompleted)"
862
  msgstr ""
863
 
864
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:902
865
  msgid "This username is already reserved to be used soon."
866
  msgstr ""
867
 
868
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:902
869
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:906
870
  msgid "Please try a different one!"
871
  msgstr ""
872
 
873
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:906
874
  msgid "This email address is already reserved to be used soon."
875
  msgstr ""
876
 
877
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1133
878
  msgid "You are logged in as"
879
  msgstr ""
880
 
881
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1133
882
  msgid "You don't need another account."
883
  msgstr ""
884
 
885
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1133
886
  msgid "Log out of this account."
887
  msgstr ""
888
 
889
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1133
890
  msgid "Logout"
891
  msgstr ""
892
 
893
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1141
894
  msgid "An email has been sent to "
895
  msgstr ""
896
 
897
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1141
898
  msgid "with information on how to activate his/her account"
899
  msgstr ""
900
 
901
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1146
902
  msgid "A user account has been created for"
903
  msgstr ""
904
 
905
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1166
906
  msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
907
  msgstr ""
908
 
909
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
910
  msgid "An email has been sent to you with information on how to activate your account"
911
  msgstr ""
912
 
913
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1178
914
  msgid "Thank you for registering"
915
  msgstr ""
916
 
917
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1206
918
  msgid "An error occured while trying to send the notification email."
919
  msgstr ""
920
 
921
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1211
922
  msgid "An email containing activation instructions was successfully sent."
923
  msgstr ""
924
 
925
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1216
926
  msgid "An email containing the username and password was successfully sent."
927
  msgstr ""
928
 
929
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1232
930
  msgid "Users can register themselves or you can manually create users here."
931
  msgstr ""
932
 
933
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
934
  msgid "Users cannot currently register themselves, but you can manually create users here."
935
  msgstr ""
936
 
937
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1242
938
  msgid "Only an administrator can add new users."
939
  msgstr ""
940
 
941
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1265
942
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1289
943
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
944
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
945
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
946
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
947
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
948
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
949
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
950
  msgid "This field must be filled out before registering (It was marked as required by the administrator)"
951
  msgstr ""
952
 
953
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1286
954
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1310
955
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1334
956
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
957
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1385
958
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1409
959
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1433
960
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1457
961
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
962
  msgid "This field is marked as required by the administrator"
963
  msgstr ""
964
 
965
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1554
966
  msgid "Anti-Spam"
967
  msgstr ""
968
 
969
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1575
970
  msgid "Send these credentials via email."
971
  msgstr ""
972
 
973
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1589
974
  msgid "Add User"
975
  msgstr ""
976
 
977
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1589
978
  msgid "Register"
979
  msgstr ""
980
 
@@ -1172,8 +1177,8 @@ msgstr ""
1172
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1173
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1174
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1175
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:903
1176
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:991
1177
  msgid "Search Users by All Fields"
1178
  msgstr ""
1179
 
@@ -1221,55 +1226,55 @@ msgstr ""
1221
  msgid "More..."
1222
  msgstr ""
1223
 
1224
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:414
1225
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
1226
  msgid "No uploaded attachment"
1227
  msgstr ""
1228
 
1229
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:416
1230
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
1231
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:739
1232
  msgid "Click to see the current attachment"
1233
  msgstr ""
1234
 
1235
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:530
1236
  msgid "Click here to go back"
1237
  msgstr ""
1238
 
1239
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:530
1240
  msgid "Back"
1241
  msgstr ""
1242
 
1243
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
1244
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
1245
  msgid "Current file"
1246
  msgstr ""
1247
 
1248
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:737
1249
  msgid "Avatar"
1250
  msgstr ""
1251
 
1252
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:793
1253
  msgid "No results found!"
1254
  msgstr ""
1255
 
1256
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:886
1257
  msgid "&laquo;&laquo; First"
1258
  msgstr ""
1259
 
1260
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:887
1261
  msgid "&laquo; Prev"
1262
  msgstr ""
1263
 
1264
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:888
1265
  msgid "Next &raquo; "
1266
  msgstr ""
1267
 
1268
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:889
1269
  msgid "Last &raquo;&raquo;"
1270
  msgstr ""
1271
 
1272
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1242
1273
  msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1274
  msgstr ""
1275
 
@@ -1594,14 +1599,14 @@ msgstr ""
1594
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1595
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1596
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1597
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:706
1598
  msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1599
  msgstr ""
1600
 
1601
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1602
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1603
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:681
1604
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:712
1605
  msgid "max upload size"
1606
  msgstr ""
1607
 
@@ -1612,7 +1617,7 @@ msgstr ""
1612
 
1613
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1614
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1615
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:691
1616
  msgid "Click to delete the current attachment"
1617
  msgstr ""
1618
 
@@ -1620,107 +1625,107 @@ msgstr ""
1620
  msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1621
  msgstr ""
1622
 
1623
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:684
1624
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:716
1625
  msgid "Current avatar"
1626
  msgstr ""
1627
 
1628
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:684
1629
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:716
1630
  msgid "No uploaded avatar"
1631
  msgstr ""
1632
 
1633
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1634
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1635
  msgid "Are you sure you want to delete this avatar?"
1636
  msgstr ""
1637
 
1638
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:723
1639
  msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1640
  msgstr ""
1641
 
1642
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:726
1643
  msgid "Click to see the current avatar"
1644
  msgstr ""
1645
 
1646
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:726
1647
  msgid "Click to delete the avatar"
1648
  msgstr ""
1649
 
1650
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:31
1651
  msgid "The user-validation has failed - the avatar was not deleted!"
1652
  msgstr ""
1653
 
1654
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:42
1655
  msgid "The user-validation has failed - the attachment was not deleted!"
1656
  msgstr ""
1657
 
1658
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:502
1659
  msgid "Do you want to"
1660
  msgstr ""
1661
 
1662
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:502
1663
  msgid "the current user?"
1664
  msgstr ""
1665
 
1666
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:530
1667
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:534
1668
  msgid "Your account on"
1669
  msgstr ""
1670
 
1671
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:530
1672
  msgid "has been approved!"
1673
  msgstr ""
1674
 
1675
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:531
1676
  msgid "An administrator has just approved your account on"
1677
  msgstr ""
1678
 
1679
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:534
1680
  msgid "has been unapproved!"
1681
  msgstr ""
1682
 
1683
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:535
1684
  msgid "An administrator has just unapproved your account on"
1685
  msgstr ""
1686
 
1687
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:599
1688
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:645
1689
  msgid "Approve"
1690
  msgstr ""
1691
 
1692
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:600
1693
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:690
1694
  msgid "Unapproved"
1695
  msgstr ""
1696
 
1697
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:611
1698
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:641
1699
  msgid "Unapprove"
1700
  msgstr ""
1701
 
1702
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:612
1703
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:687
1704
  msgid "Approved"
1705
  msgstr ""
1706
 
1707
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:640
1708
  msgid "unapprove"
1709
  msgstr ""
1710
 
1711
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:644
1712
  msgid "approve"
1713
  msgstr ""
1714
 
1715
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:648
1716
  msgid "Are you sure you want to"
1717
  msgstr ""
1718
 
1719
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:648
1720
  msgid "this user?"
1721
  msgstr ""
1722
 
1723
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:709
1724
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1725
  msgstr ""
1726
 
2
  msgstr ""
3
  "Project-Id-Version: ProfileBuilder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:30+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"
118
 
119
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
120
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
122
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
123
  msgid "General Settings"
124
  msgstr ""
274
 
275
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
276
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
278
  msgid "Default Profile Fields"
279
  msgstr ""
280
 
294
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
295
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
296
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
297
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
298
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
299
  msgid "Username"
300
  msgstr ""
301
 
302
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
303
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
305
  msgid "First Name"
306
  msgstr ""
307
 
308
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
309
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
310
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
311
  msgid "Last Name"
312
  msgstr ""
313
 
314
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
315
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
317
  msgid "Nickname"
318
  msgstr ""
319
 
328
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
329
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
330
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
331
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
332
  msgid "E-mail"
333
  msgstr ""
334
 
335
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
336
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
337
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
338
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
339
  msgid "Website"
340
  msgstr ""
341
 
342
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
343
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
345
  msgid "AIM"
346
  msgstr ""
347
 
348
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
349
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
351
  msgid "Yahoo IM"
352
  msgstr ""
353
 
354
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
355
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
357
  msgid "Jabber / Google Talk"
358
  msgstr ""
359
 
363
 
364
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
365
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
366
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
367
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
368
  msgid "Biographical Info"
369
  msgstr ""
373
  msgid "New Password"
374
  msgstr ""
375
 
376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
377
  msgid "Basic Information"
378
  msgstr ""
379
 
380
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
381
  msgid "Show/Hide the Admin Bar on Front-end"
382
  msgstr ""
383
 
384
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
385
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
386
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
387
  msgid "Extra Profile Fields"
388
  msgstr ""
389
 
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
391
  msgid "Addons"
392
  msgstr ""
393
 
394
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
395
  msgid "Register Your Version"
396
  msgstr ""
397
 
510
  msgstr ""
511
 
512
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
513
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
514
  msgid "There was an error while trying to upload the following attachment(s)"
515
  msgstr ""
516
 
517
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
518
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
519
  msgid "Only files with the following extension(s) can be uploaded:"
520
  msgstr ""
521
 
524
  msgstr ""
525
 
526
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
527
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
528
  msgid "Name"
529
  msgstr ""
530
 
563
  msgstr ""
564
 
565
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
566
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
567
  msgid "Contact Info"
568
  msgstr ""
569
 
572
  msgstr ""
573
 
574
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
576
  msgid "About Yourself"
577
  msgstr ""
578
 
579
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
582
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
583
  msgid "Repeat Password"
584
  msgstr ""
585
 
608
  msgstr ""
609
 
610
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
611
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
612
  msgid "here"
613
  msgstr ""
614
 
615
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
616
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
617
  msgid "ERROR:"
618
  msgstr ""
619
 
622
  msgstr ""
623
 
624
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
625
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
626
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
627
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
628
  msgid "Password"
629
  msgstr ""
630
 
640
  msgid "Lost password?"
641
  msgstr ""
642
 
643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
645
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
646
+ msgid "ERROR"
647
+ msgstr ""
648
+
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
650
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
651
+ msgstr ""
652
+
653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
655
  msgid "A password reset email has been sent to "
656
  msgstr ""
657
 
658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
660
  msgid "Following the link sent in the email address will reset the password."
661
  msgstr ""
662
 
663
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
664
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
665
  msgid "Someone requested that the password be reset for the following account: "
666
  msgstr ""
667
 
668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
670
  msgid "If this was a mistake, just ignore this email and nothing will happen."
671
  msgstr ""
672
 
673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
675
  msgid "To reset your password, visit the following link:"
676
  msgstr ""
677
 
678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
680
  msgid "Password Reset Feature from"
681
  msgstr ""
682
 
683
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
 
 
 
 
 
685
  msgid "There was an error while trying to send the activation link to "
686
  msgstr ""
687
 
688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
689
  msgid "The email address entered wasn't found in the database!"
690
  msgstr ""
691
 
692
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
693
  msgid "Please check that you entered the correct email address."
694
  msgstr ""
695
 
696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
697
  msgid "The username entered wasn't found in the database!"
698
  msgstr ""
699
 
700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
701
  msgid "Please check that you entered the correct username."
702
  msgstr ""
703
 
704
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
705
  msgid "Your password has been successfully changed!"
706
  msgstr ""
707
 
708
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
709
  msgid "You have successfully reset your password to:"
710
  msgstr ""
711
 
712
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
713
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
714
  msgid "Password Successfully Reset for"
715
  msgstr ""
716
 
717
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
718
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
719
  msgid "from"
720
  msgstr ""
721
 
722
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
723
  msgid "has requested a password change via the password reset feature."
724
  msgstr ""
725
 
726
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
727
  msgid "His/her new password is:"
728
  msgstr ""
729
 
730
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
732
  msgid "The entered passwords don't match!"
733
  msgstr ""
734
 
735
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
737
  msgid "Reset Password"
738
  msgstr ""
739
 
740
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
741
  msgid "Invalid key!"
742
  msgstr ""
743
 
744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
745
  msgid "Please enter your username or email address."
746
  msgstr ""
747
 
748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
749
  msgid "You will receive a link to create a new password via email."
750
  msgstr ""
751
 
752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
753
  msgid "Username or E-mail"
754
  msgstr ""
755
 
756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
757
  msgid "Get New Password"
758
  msgstr ""
759
 
833
  msgid "The user was NOT created!"
834
  msgstr ""
835
 
836
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
837
  msgid "A username is required for registration."
838
  msgstr ""
839
 
840
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
841
  msgid "Sorry, that username already exists!"
842
  msgstr ""
843
 
844
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
845
  msgid "You must enter a valid email address."
846
  msgstr ""
847
 
848
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
849
  msgid "Sorry, that email address is already used!"
850
  msgstr ""
851
 
852
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
853
  msgid "You didn't complete one of the password-fields!"
854
  msgstr ""
855
 
856
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
857
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
858
  msgid "The account was NOT created!"
859
  msgstr ""
860
 
861
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
862
  msgid "You must agree to the terms and conditions before registering!"
863
  msgstr ""
864
 
865
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
866
  msgid "(Several required fields were left uncompleted)"
867
  msgstr ""
868
 
869
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
870
  msgid "This username is already reserved to be used soon."
871
  msgstr ""
872
 
873
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
874
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
875
  msgid "Please try a different one!"
876
  msgstr ""
877
 
878
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
879
  msgid "This email address is already reserved to be used soon."
880
  msgstr ""
881
 
882
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
883
  msgid "You are logged in as"
884
  msgstr ""
885
 
886
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
887
  msgid "You don't need another account."
888
  msgstr ""
889
 
890
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
891
  msgid "Log out of this account."
892
  msgstr ""
893
 
894
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
895
  msgid "Logout"
896
  msgstr ""
897
 
898
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
899
  msgid "An email has been sent to "
900
  msgstr ""
901
 
902
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
903
  msgid "with information on how to activate his/her account"
904
  msgstr ""
905
 
906
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
907
  msgid "A user account has been created for"
908
  msgstr ""
909
 
910
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
911
  msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
912
  msgstr ""
913
 
914
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
915
  msgid "An email has been sent to you with information on how to activate your account"
916
  msgstr ""
917
 
918
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
919
  msgid "Thank you for registering"
920
  msgstr ""
921
 
922
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
923
  msgid "An error occured while trying to send the notification email."
924
  msgstr ""
925
 
926
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
927
  msgid "An email containing activation instructions was successfully sent."
928
  msgstr ""
929
 
930
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
931
  msgid "An email containing the username and password was successfully sent."
932
  msgstr ""
933
 
934
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
935
  msgid "Users can register themselves or you can manually create users here."
936
  msgstr ""
937
 
938
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
939
  msgid "Users cannot currently register themselves, but you can manually create users here."
940
  msgstr ""
941
 
942
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
943
  msgid "Only an administrator can add new users."
944
  msgstr ""
945
 
946
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
947
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
948
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
949
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
950
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
951
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
952
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
953
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
954
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
955
  msgid "This field must be filled out before registering (It was marked as required by the administrator)"
956
  msgstr ""
957
 
958
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
959
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
960
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
961
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
962
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
963
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
964
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
965
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
966
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
967
  msgid "This field is marked as required by the administrator"
968
  msgstr ""
969
 
970
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
971
  msgid "Anti-Spam"
972
  msgstr ""
973
 
974
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
975
  msgid "Send these credentials via email."
976
  msgstr ""
977
 
978
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
979
  msgid "Add User"
980
  msgstr ""
981
 
982
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
983
  msgid "Register"
984
  msgstr ""
985
 
1177
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1178
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1179
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1182
  msgid "Search Users by All Fields"
1183
  msgstr ""
1184
 
1226
  msgid "More..."
1227
  msgstr ""
1228
 
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1231
  msgid "No uploaded attachment"
1232
  msgstr ""
1233
 
1234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1235
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1236
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1237
  msgid "Click to see the current attachment"
1238
  msgstr ""
1239
 
1240
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1241
  msgid "Click here to go back"
1242
  msgstr ""
1243
 
1244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1245
  msgid "Back"
1246
  msgstr ""
1247
 
1248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1250
  msgid "Current file"
1251
  msgstr ""
1252
 
1253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1254
  msgid "Avatar"
1255
  msgstr ""
1256
 
1257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1258
  msgid "No results found!"
1259
  msgstr ""
1260
 
1261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1262
  msgid "&laquo;&laquo; First"
1263
  msgstr ""
1264
 
1265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1266
  msgid "&laquo; Prev"
1267
  msgstr ""
1268
 
1269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1270
  msgid "Next &raquo; "
1271
  msgstr ""
1272
 
1273
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1274
  msgid "Last &raquo;&raquo;"
1275
  msgstr ""
1276
 
1277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1278
  msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1279
  msgstr ""
1280
 
1599
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1600
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1601
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1602
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1603
  msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1604
  msgstr ""
1605
 
1606
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1607
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1610
  msgid "max upload size"
1611
  msgstr ""
1612
 
1617
 
1618
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1619
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1620
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1621
  msgid "Click to delete the current attachment"
1622
  msgstr ""
1623
 
1625
  msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1626
  msgstr ""
1627
 
1628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1630
  msgid "Current avatar"
1631
  msgstr ""
1632
 
1633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1635
  msgid "No uploaded avatar"
1636
  msgstr ""
1637
 
1638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1640
  msgid "Are you sure you want to delete this avatar?"
1641
  msgstr ""
1642
 
1643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1644
  msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1645
  msgstr ""
1646
 
1647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1648
  msgid "Click to see the current avatar"
1649
  msgstr ""
1650
 
1651
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1652
  msgid "Click to delete the avatar"
1653
  msgstr ""
1654
 
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1656
  msgid "The user-validation has failed - the avatar was not deleted!"
1657
  msgstr ""
1658
 
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1660
  msgid "The user-validation has failed - the attachment was not deleted!"
1661
  msgstr ""
1662
 
1663
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1664
  msgid "Do you want to"
1665
  msgstr ""
1666
 
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1668
  msgid "the current user?"
1669
  msgstr ""
1670
 
1671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1672
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1673
  msgid "Your account on"
1674
  msgstr ""
1675
 
1676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1677
  msgid "has been approved!"
1678
  msgstr ""
1679
 
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1681
  msgid "An administrator has just approved your account on"
1682
  msgstr ""
1683
 
1684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1685
  msgid "has been unapproved!"
1686
  msgstr ""
1687
 
1688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1689
  msgid "An administrator has just unapproved your account on"
1690
  msgstr ""
1691
 
1692
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1694
  msgid "Approve"
1695
  msgstr ""
1696
 
1697
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1698
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1699
  msgid "Unapproved"
1700
  msgstr ""
1701
 
1702
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1703
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1704
  msgid "Unapprove"
1705
  msgstr ""
1706
 
1707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1708
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1709
  msgid "Approved"
1710
  msgstr ""
1711
 
1712
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1713
  msgid "unapprove"
1714
  msgstr ""
1715
 
1716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1717
  msgid "approve"
1718
  msgstr ""
1719
 
1720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1721
  msgid "Are you sure you want to"
1722
  msgstr ""
1723
 
1724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1725
  msgid "this user?"
1726
  msgstr ""
1727
 
1728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1729
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1730
  msgstr ""
1731
 
translation/profilebuilder-es_ES.mo CHANGED
Binary file
translation/profilebuilder-es_ES.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2011-08-04 11:01+0100\n"
7
- "Last-Translator: redywebs.com <inzubi@redywebs.com>\n"
8
  "Language-Team: redywebs <correo.1@redywebs.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,486 +15,1799 @@ msgstr ""
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
 
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
19
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
20
  msgid "Profile Builder"
21
  msgstr "Generador de perfiles"
22
 
23
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
24
  msgid "Welcome to Profile Builder!"
25
  msgstr "Bienvenido al Generador de perfiles"
26
 
27
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
28
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
29
  msgstr "te permite personalizar tu sitio web añadiendo un menú en el front-end para todos sus usuarios, dándoles una forma más flexible para modificar su información de usuario o para registrar nuevos usuarios."
30
 
31
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
32
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
33
  msgstr "Además, otorga a los usuarios con derechos de administrador personalizar los campos básicos o añadir otros nuevos."
34
 
35
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
36
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
37
  msgstr "Para lograr esto, basta con crear una nueva página, y darle un nombre intuitivo (por ejemplo, Editar perfil)."
38
 
39
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
40
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
41
  msgstr "Ahora todo lo que necesitas hacer es añadir el shortcode siguiente (para el ejemplo anterior):"
42
 
43
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
44
  msgid "Publish your page and you are ready to go!"
45
  msgstr "Publica tu página y ya está listo para usar"
46
 
47
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
48
  msgid "You can use the following shortcodes:"
49
  msgstr "Puedes utilizar los shortcodes siguientes:"
50
 
51
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
52
  msgid "for a log-in form."
53
  msgstr "para un formulario de acceso."
54
 
55
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
56
  msgid "to add a registration form."
57
  msgstr "para añadir un formulario de inscripción."
58
 
59
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
60
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
61
  msgstr "para otorgar a los usuarios un acceso desde el front-end a su información personal (requiere que el usuario esté conectado)."
62
 
63
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
 
64
  msgid "Users with administrator rights have access to the following features:"
65
  msgstr "Los usuarios con derechos de administrador tienen acceso a las siguientes características:"
66
 
67
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
68
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
69
  msgstr "añadir una hoja de estilo personalizada/heredar los valores del tema actual o utilizar una de las siguientes integradas en este plugin: por defecto, blanco o negro."
70
 
71
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
72
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
73
  msgstr "seleccionar si se desea mostrar o no la barra de administración en la parte delantera para un determinado grupo de usuarios registrados en el sitio."
74
 
75
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
76
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
77
  msgstr "seleccionar qué información de campo pueden ver/modificar los usuarios. Los valores de los campos ocultos no se modificarán."
78
 
79
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
80
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
81
  msgstr "añadir campos personalizados a los ya existentes, con varios tipos a elegir: título, texto, textarea, select, checkbox, radio, y/o subir."
82
 
83
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
84
  msgid "add an avatar field."
85
  msgstr "agregar un campo de avatar."
86
 
87
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  msgid "NOTE:"
89
  msgstr "OBSERVACION:"
90
 
91
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
92
  msgid "this plugin only adds/removes fields in the front-end."
93
  msgstr "este plugin sólo añade/elimina campos en la parte pública."
94
 
95
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
96
  msgid "The default information-fields will still be visible(and thus modifiable)"
97
  msgstr "Los campos de información por defecto seguirán siendo visibles (y por lo tanto modificables)"
98
 
99
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
100
  msgid "from the back-end, while custom fields will only be visible in the front-end."
101
  msgstr "desde la administración, mientras los campos personalizados sólo serán visibles en la parte pública."
102
 
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
104
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
105
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
106
- msgid "Plugin Layout"
107
- msgstr "Diseño del Plugin"
 
108
 
109
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
110
- msgid "Stylesheet used:"
 
111
  msgstr "Hoja de estilos usada:"
112
 
113
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
114
  msgid "Default"
115
  msgstr "Predeterminada"
116
 
117
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
118
  msgid "White"
119
  msgstr "Blanco"
120
 
121
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
122
  msgid "Black"
123
  msgstr "Negro"
124
 
125
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
126
  msgid "None"
127
  msgstr "Ninguna"
128
 
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
131
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  msgid "Save Changes"
133
  msgstr "Guardar cambios"
134
 
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
136
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
137
  msgid "Show/Hide the Admin Bar on Front End"
138
  msgstr "Mostrar/Ocultar la bbara de administración en la parte pública"
139
 
140
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
141
  msgid "User-group"
142
  msgstr "Perfiles"
143
 
144
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
145
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
146
  msgid "Visibility"
147
  msgstr "Visibilidad"
148
 
149
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
161
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
162
  msgid "Show"
163
  msgstr "Mostrar"
164
 
165
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
177
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
178
  msgid "Hide"
179
  msgstr "Ocultar"
180
 
181
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
182
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
183
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
184
  msgid "Default Profile Fields"
185
  msgstr "Campos de perfil predeterminado"
186
 
187
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
188
  msgid "Input Field Name"
189
  msgstr "Etiqueta de campo"
190
 
191
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
 
192
  msgid "Name:"
193
  msgstr "Nombre:"
194
 
195
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
196
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
198
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
199
  msgid "Username"
200
  msgstr "Nombre de usuario"
201
 
202
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
203
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
204
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
205
  msgid "First Name"
206
  msgstr "Nombre:"
207
 
208
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
209
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
210
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
211
  msgid "Last Name"
212
  msgstr "Apellidos"
213
 
214
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
215
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
216
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
217
  msgid "Nickname"
218
  msgstr "Alias"
219
 
220
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
221
  msgid "Display name publicly as..."
222
  msgstr "Mostrar publicamente como..."
223
 
224
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
225
  msgid "Contact Info:"
226
  msgstr "Información de contacto:"
227
 
228
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
229
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
230
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
231
  msgid "E-mail"
232
  msgstr "Email"
233
 
234
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
235
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
236
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
237
  msgid "Website"
238
  msgstr "Sitio web"
239
 
240
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
241
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
242
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
243
  msgid "AIM"
244
  msgstr "AIM"
245
 
246
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
247
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
248
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
249
  msgid "Yahoo IM"
250
  msgstr "Yahoo IM"
251
 
252
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
253
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
254
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
255
  msgid "Jabber / Google Talk"
256
  msgstr "Jabber / Google Talk"
257
 
258
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
259
  msgid "About Yourself:"
260
  msgstr "Acerca de ti:"
261
 
262
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
263
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
264
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
265
  msgid "Biographical Info"
266
  msgstr "Información biográfica"
267
 
268
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
269
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
270
  msgid "New Password"
271
  msgstr "Nueva contraseña"
272
 
273
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
274
  msgid "Basic Information"
275
  msgstr "Información básica"
276
 
277
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
278
  msgid "Show/Hide the Admin Bar on Front-end"
279
  msgstr "Mostrar/ocultar la barra de administración en el Front-end"
280
 
281
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
282
  msgid "Extra Profile Fields"
283
  msgstr "Campos extra de perfil"
284
 
285
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
286
  msgid "Register Your Version"
287
  msgstr "Registra tu versión"
288
 
289
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "You must be logged in to edit your profile."
291
  msgstr "Debes estar conectado para editar tu perfil."
292
 
293
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
294
  msgid "The avatar was successfully deleted."
295
  msgstr "El avatar ha sido eliminado."
296
 
297
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
298
- msgid "The attachment \""
 
299
  msgstr "El archivo adjunto \""
300
 
301
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
302
- msgid "\" was successfully deleted."
 
303
  msgstr "\" ha sido eliminado."
304
 
305
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
306
  msgid "The changes have been successfully saved."
307
  msgstr "Los cambios se han guardado correctamente."
308
 
309
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
310
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
311
  msgstr "La dirección de correo electrónico que ha introducido ya está siendo usada por un usuario diferente.<br/>La dirección de email era"
312
 
313
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
318
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
319
  msgid "NOT"
320
  msgstr "NO"
321
 
322
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
327
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
328
- msgid " updated along with the rest of the information."
 
 
329
  msgstr " actualizado junto con el resto de la información."
330
 
331
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
332
- msgid "The email address you entered is invalid. <br/> The email address was "
 
333
  msgstr "La dirección de email no es válida.<br/>La dirección de email era"
334
 
335
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
336
- msgid "The passwords you entered do not match. <br/> The password was "
 
337
  msgstr "Las contraseñas introducidas no coinciden.<br/>La dirección de email era"
338
 
339
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
340
- msgid "You didn't complete both password fields. <br/> The password was "
341
- msgstr "No has completado ambos campos de contraseña.<br/>La dirección de email era"
 
 
 
 
 
 
 
 
 
 
 
342
 
343
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
344
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
345
  msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
346
 
347
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
348
- msgid "<br/>Possible cause: the size was bigger than "
 
349
  msgstr "<br/>Causa posible: el tamaño era más grande que "
350
 
351
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
352
- msgid "b.<br/>The listed attachements were "
 
353
  msgstr "b.<br/>Los archivos adjuntos listados eran"
354
 
355
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
356
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
357
- msgstr "Se ha producido un error al intentar subir la imagen del avatar.<br/>Causa posible: tamaño/tipo de archivo incorrecto.<br/>El avatar era"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
 
359
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
360
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
361
  msgid "Name"
362
  msgstr "Nombre"
363
 
364
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
365
- msgid " Usernames cannot be changed."
 
366
  msgstr "Los nombres de usuario no pueden ser cambiados."
367
 
368
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
371
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
372
- msgid "(required)"
373
- msgstr "(obligatorio)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
 
375
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
376
  msgid "Display name publicly as"
377
  msgstr "Mostrar nombre públicamente como"
378
 
379
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
380
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
381
  msgid "Contact Info"
382
  msgstr "Información de contacto"
383
 
384
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
385
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
386
  msgid "About Yourself"
387
  msgstr "Acerca de ti"
388
 
389
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
390
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
391
  msgid "Repeat Password"
392
  msgstr "Repetir contraseña"
393
 
394
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
395
  msgid "Update"
396
  msgstr "Actualizar"
397
 
398
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
399
- #, php-format
400
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
401
  msgstr "Actualmente estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
402
 
403
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
404
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
405
  msgid "Log out of this account"
406
  msgstr "Cerrar sesión"
407
 
408
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
409
- msgid "Log out &raquo;"
 
410
  msgstr "Salir &raquo;"
411
 
412
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
413
- #, php-format
414
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
415
  msgstr "Te has conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
416
 
417
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
418
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  msgid "Password"
420
  msgstr "Contraseña"
421
 
422
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
423
  msgid "Log in"
424
  msgstr "Acceder"
425
 
426
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
427
  msgid "Remember me"
428
  msgstr "Recordarme"
429
 
430
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
431
  msgid "Lost password?"
432
  msgstr "¿has olvidado la contraseña?"
433
 
434
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
435
  msgid "A username is required for registration."
436
  msgstr "Es obligatorio un nombre de usuario para la inscripción."
437
 
438
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
439
  msgid "Sorry, that username already exists!"
440
  msgstr "Lo sentimos, ese nombre de usuario ya existe"
441
 
442
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
443
  msgid "You must enter a valid email address."
444
  msgstr "Has de introducir una dirección de Email válida."
445
 
446
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
447
  msgid "Sorry, that email address is already used!"
448
  msgstr "Lo sentimos, esa dirección ya está en uso"
449
 
450
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
451
  msgid "You didn't complete one of the password-fields!"
452
  msgstr "No has completado una de los campos de contraseña"
453
 
454
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
455
- msgid "The entered passwords don't match!"
456
- msgstr "Las contraseñas introducidas no coinciden"
 
 
457
 
458
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
459
- #, php-format
460
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
461
- msgstr "Estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. No necesitas otra cuenta."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
 
463
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
464
- msgid "Logout &raquo;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
465
  msgstr "Salir &raquo;"
466
 
467
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
468
- #, php-format
469
- msgid "A user account for %1$s has been created."
 
 
 
 
 
 
 
 
470
  msgstr "Se ha creado la cuenta de usuario para %1$s."
471
 
472
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
473
- #, php-format
474
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
475
  msgstr "Gracias por registrarte, %1$s."
476
 
477
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
478
  msgid "Users can register themselves or you can manually create users here."
479
  msgstr "Los usuarios pueden registrarse ellos mismos o puedes crear manualmente los usuarios desde aquí."
480
 
481
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
482
  msgid "Users cannot currently register themselves, but you can manually create users here."
483
  msgstr "Los usuarios no pueden registrarse ellos mismos, pero puedes crear manualmente los usuarios desde aquí."
484
 
485
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
486
  msgid "Only an administrator can add new users."
487
  msgstr "Sólo el administrador puede añadir nuevos usuarios."
488
 
489
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
490
- msgid " Send these credentials via email."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
  msgstr "Enviar las credenciales por correo electrónico."
492
 
493
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
494
  msgid "Add User"
495
  msgstr "Añadir usuario"
496
 
497
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
498
  msgid "Register"
499
  msgstr "Registrar"
500
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:30+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: redywebs <correo.1@redywebs.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
 
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
19
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
20
  msgid "Profile Builder"
21
  msgstr "Generador de perfiles"
22
 
23
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
24
  msgid "Welcome to Profile Builder!"
25
  msgstr "Bienvenido al Generador de perfiles"
26
 
27
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
28
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
29
  msgstr "te permite personalizar tu sitio web añadiendo un menú en el front-end para todos sus usuarios, dándoles una forma más flexible para modificar su información de usuario o para registrar nuevos usuarios."
30
 
31
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
32
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
33
  msgstr "Además, otorga a los usuarios con derechos de administrador personalizar los campos básicos o añadir otros nuevos."
34
 
35
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
36
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
37
  msgstr "Para lograr esto, basta con crear una nueva página, y darle un nombre intuitivo (por ejemplo, Editar perfil)."
38
 
39
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
40
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
41
  msgstr "Ahora todo lo que necesitas hacer es añadir el shortcode siguiente (para el ejemplo anterior):"
42
 
43
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
44
  msgid "Publish your page and you are ready to go!"
45
  msgstr "Publica tu página y ya está listo para usar"
46
 
47
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
48
  msgid "You can use the following shortcodes:"
49
  msgstr "Puedes utilizar los shortcodes siguientes:"
50
 
51
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
52
  msgid "for a log-in form."
53
  msgstr "para un formulario de acceso."
54
 
55
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
56
  msgid "to add a registration form."
57
  msgstr "para añadir un formulario de inscripción."
58
 
59
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
60
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
61
  msgstr "para otorgar a los usuarios un acceso desde el front-end a su información personal (requiere que el usuario esté conectado)."
62
 
63
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
64
+ #, fuzzy
65
+ msgid "to add a password recovery form."
66
+ msgstr "para añadir un formulario de inscripción."
67
+
68
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
69
  msgid "Users with administrator rights have access to the following features:"
70
  msgstr "Los usuarios con derechos de administrador tienen acceso a las siguientes características:"
71
 
72
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
73
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
74
  msgstr "añadir una hoja de estilo personalizada/heredar los valores del tema actual o utilizar una de las siguientes integradas en este plugin: por defecto, blanco o negro."
75
 
76
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
77
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
78
  msgstr "seleccionar si se desea mostrar o no la barra de administración en la parte delantera para un determinado grupo de usuarios registrados en el sitio."
79
 
80
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
81
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
82
  msgstr "seleccionar qué información de campo pueden ver/modificar los usuarios. Los valores de los campos ocultos no se modificarán."
83
 
84
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
85
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
86
  msgstr "añadir campos personalizados a los ya existentes, con varios tipos a elegir: título, texto, textarea, select, checkbox, radio, y/o subir."
87
 
88
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
89
  msgid "add an avatar field."
90
  msgstr "agregar un campo de avatar."
91
 
92
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
93
+ msgid "create custom redirects."
94
+ msgstr ""
95
+
96
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
97
+ msgid "front-end userlisting using the"
98
+ msgstr ""
99
+
100
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
101
+ msgid "shortcode."
102
+ msgstr ""
103
+
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
106
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
107
  msgid "NOTE:"
108
  msgstr "OBSERVACION:"
109
 
110
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
111
  msgid "this plugin only adds/removes fields in the front-end."
112
  msgstr "este plugin sólo añade/elimina campos en la parte pública."
113
 
114
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
115
  msgid "The default information-fields will still be visible(and thus modifiable)"
116
  msgstr "Los campos de información por defecto seguirán siendo visibles (y por lo tanto modificables)"
117
 
118
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
119
  msgid "from the back-end, while custom fields will only be visible in the front-end."
120
  msgstr "desde la administración, mientras los campos personalizados sólo serán visibles en la parte pública."
121
 
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
125
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
126
+ msgid "General Settings"
127
+ msgstr ""
128
 
129
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
130
+ #, fuzzy
131
+ msgid "Stylesheet Used on the Front-End:"
132
  msgstr "Hoja de estilos usada:"
133
 
134
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
135
  msgid "Default"
136
  msgstr "Predeterminada"
137
 
138
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
139
  msgid "White"
140
  msgstr "Blanco"
141
 
142
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
143
  msgid "Black"
144
  msgstr "Negro"
145
 
146
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
147
  msgid "None"
148
  msgstr "Ninguna"
149
 
150
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
151
+ msgid "\"Email Confirmation\" Feature Activated:"
152
+ msgstr ""
153
+
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
174
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
175
+ msgid "Yes"
176
+ msgstr ""
177
+
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
198
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
199
+ #, fuzzy
200
+ msgid "No"
201
+ msgstr "Ninguna"
202
+
203
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
204
+ msgid "\"Admin Approval\" Feature Activated:"
205
+ msgstr ""
206
+
207
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
208
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
209
+ msgstr ""
210
+
211
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
212
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
213
+ msgstr ""
214
+
215
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
216
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
217
+ msgstr ""
218
+
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
227
  msgid "Save Changes"
228
  msgstr "Guardar cambios"
229
 
230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
231
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
232
  msgid "Show/Hide the Admin Bar on Front End"
233
  msgstr "Mostrar/Ocultar la bbara de administración en la parte pública"
234
 
235
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
236
  msgid "User-group"
237
  msgstr "Perfiles"
238
 
239
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
240
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
241
  msgid "Visibility"
242
  msgstr "Visibilidad"
243
 
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
256
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
257
  msgid "Show"
258
  msgstr "Mostrar"
259
 
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
272
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
273
  msgid "Hide"
274
  msgstr "Ocultar"
275
 
276
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
277
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
278
+ msgstr ""
279
+
280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
283
  msgid "Default Profile Fields"
284
  msgstr "Campos de perfil predeterminado"
285
 
286
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
287
  msgid "Input Field Name"
288
  msgstr "Etiqueta de campo"
289
 
290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
291
+ #, fuzzy
292
+ msgid "Required"
293
+ msgstr "(obligatorio)"
294
+
295
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
296
  msgid "Name:"
297
  msgstr "Nombre:"
298
 
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
305
  msgid "Username"
306
  msgstr "Nombre de usuario"
307
 
308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
310
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
311
  msgid "First Name"
312
  msgstr "Nombre:"
313
 
314
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
317
  msgid "Last Name"
318
  msgstr "Apellidos"
319
 
320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
322
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
323
  msgid "Nickname"
324
  msgstr "Alias"
325
 
326
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
327
  msgid "Display name publicly as..."
328
  msgstr "Mostrar publicamente como..."
329
 
330
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
331
  msgid "Contact Info:"
332
  msgstr "Información de contacto:"
333
 
334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
337
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
338
  msgid "E-mail"
339
  msgstr "Email"
340
 
341
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
345
  msgid "Website"
346
  msgstr "Sitio web"
347
 
348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
351
  msgid "AIM"
352
  msgstr "AIM"
353
 
354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
357
  msgid "Yahoo IM"
358
  msgstr "Yahoo IM"
359
 
360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
362
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
363
  msgid "Jabber / Google Talk"
364
  msgstr "Jabber / Google Talk"
365
 
366
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
367
  msgid "About Yourself:"
368
  msgstr "Acerca de ti:"
369
 
370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
373
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
374
  msgid "Biographical Info"
375
  msgstr "Información biográfica"
376
 
377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
378
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
379
  msgid "New Password"
380
  msgstr "Nueva contraseña"
381
 
382
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
383
  msgid "Basic Information"
384
  msgstr "Información básica"
385
 
386
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
387
  msgid "Show/Hide the Admin Bar on Front-end"
388
  msgstr "Mostrar/ocultar la barra de administración en el Front-end"
389
 
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
392
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
393
  msgid "Extra Profile Fields"
394
  msgstr "Campos extra de perfil"
395
 
396
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
397
+ msgid "Addons"
398
+ msgstr ""
399
+
400
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
401
  msgid "Register Your Version"
402
  msgstr "Registra tu versión"
403
 
404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
406
+ msgid "The information size you were trying to submit was larger than"
407
+ msgstr ""
408
+
409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
411
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
412
+ msgstr ""
413
+
414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
415
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
416
+ msgid "Since it was also larger than"
417
+ msgstr ""
418
+
419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
420
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
421
+ msgid "no additional information is available."
422
+ msgstr ""
423
+
424
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
425
  msgid "You must be logged in to edit your profile."
426
  msgstr "Debes estar conectado para editar tu perfil."
427
 
428
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
429
  msgid "The avatar was successfully deleted."
430
  msgstr "El avatar ha sido eliminado."
431
 
432
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
433
+ #, fuzzy
434
+ msgid "The attachment"
435
  msgstr "El archivo adjunto \""
436
 
437
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
438
+ #, fuzzy
439
+ msgid "was successfully deleted."
440
  msgstr "\" ha sido eliminado."
441
 
442
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
443
  msgid "The changes have been successfully saved."
444
  msgstr "Los cambios se han guardado correctamente."
445
 
446
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
447
+ #, fuzzy
448
+ msgid "The email address you entered is already registered to a different user."
449
  msgstr "La dirección de correo electrónico que ha introducido ya está siendo usada por un usuario diferente.<br/>La dirección de email era"
450
 
451
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
452
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
453
+ msgid "The email address was"
454
+ msgstr ""
455
+
456
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
463
  msgid "NOT"
464
  msgstr "NO"
465
 
466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
472
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
473
+ #, fuzzy
474
+ msgid "updated along with the rest of the information."
475
  msgstr " actualizado junto con el resto de la información."
476
 
477
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
478
+ #, fuzzy
479
+ msgid "The email address you entered is invalid."
480
  msgstr "La dirección de email no es válida.<br/>La dirección de email era"
481
 
482
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
483
+ #, fuzzy
484
+ msgid "The passwords you entered do not match."
485
  msgstr "Las contraseñas introducidas no coinciden.<br/>La dirección de email era"
486
 
487
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
489
+ #, fuzzy
490
+ msgid "The password was"
491
+ msgstr "Nueva contraseña"
492
+
493
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
494
+ #, fuzzy
495
+ msgid "You didn't complete both password fields."
496
+ msgstr "No has completado una de los campos de contraseña"
497
+
498
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
499
+ msgid "Your profile was NOT updated!"
500
+ msgstr ""
501
 
502
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
503
+ #, fuzzy
504
+ msgid "There was an error while trying to upload the following attachments:"
505
  msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
506
 
507
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
508
+ #, fuzzy
509
+ msgid "Possible cause: the size was bigger than"
510
  msgstr "<br/>Causa posible: el tamaño era más grande que "
511
 
512
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
513
+ #, fuzzy
514
+ msgid "The listed attachements were"
515
  msgstr "b.<br/>Los archivos adjuntos listados eran"
516
 
517
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
518
+ #, fuzzy
519
+ msgid "There was an error while trying to upload your avatar picture."
520
+ msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
521
+
522
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
523
+ msgid "Possible cause: size/incorrect file-type."
524
+ msgstr ""
525
+
526
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
527
+ msgid "The avatar was"
528
+ msgstr ""
529
+
530
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
531
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
532
+ #, fuzzy
533
+ msgid "There was an error while trying to upload the following attachment(s)"
534
+ msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
535
+
536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
537
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
538
+ msgid "Only files with the following extension(s) can be uploaded:"
539
+ msgstr ""
540
+
541
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
542
+ msgid "This file was"
543
+ msgstr ""
544
 
545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
546
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
547
  msgid "Name"
548
  msgstr "Nombre"
549
 
550
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
551
+ #, fuzzy
552
+ msgid "Usernames cannot be changed."
553
  msgstr "Los nombres de usuario no pueden ser cambiados."
554
 
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
560
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
564
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
565
+ msgid "This field is marked as required by the administrator."
566
+ msgstr ""
567
+
568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
574
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
577
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
578
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
579
+ msgstr ""
580
 
581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
582
  msgid "Display name publicly as"
583
  msgstr "Mostrar nombre públicamente como"
584
 
585
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
587
  msgid "Contact Info"
588
  msgstr "Información de contacto"
589
 
590
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
591
+ msgid "(required)"
592
+ msgstr "(obligatorio)"
593
+
594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
595
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
596
  msgid "About Yourself"
597
  msgstr "Acerca de ti"
598
 
599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
602
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
603
  msgid "Repeat Password"
604
  msgstr "Repetir contraseña"
605
 
606
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
607
  msgid "Update"
608
  msgstr "Actualizar"
609
 
610
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
611
+ #, fuzzy
612
+ msgid "You are currently logged in as"
613
  msgstr "Actualmente estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
614
 
615
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
616
  msgid "Log out of this account"
617
  msgstr "Cerrar sesión"
618
 
619
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
620
+ #, fuzzy
621
+ msgid "Log out"
622
  msgstr "Salir &raquo;"
623
 
624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
625
+ #, fuzzy
626
+ msgid "You have successfully logged in as"
627
  msgstr "Te has conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
628
 
629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
630
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
631
+ msgstr ""
632
+
633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
635
+ msgid "here"
636
+ msgstr ""
637
+
638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
640
+ msgid "ERROR:"
641
+ msgstr ""
642
+
643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
644
+ msgid "The username field is empty"
645
+ msgstr ""
646
+
647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
650
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
651
  msgid "Password"
652
  msgstr "Contraseña"
653
 
654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
655
  msgid "Log in"
656
  msgstr "Acceder"
657
 
658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
659
  msgid "Remember me"
660
  msgstr "Recordarme"
661
 
662
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
663
  msgid "Lost password?"
664
  msgstr "¿has olvidado la contraseña?"
665
 
666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
669
+ msgid "ERROR"
670
+ msgstr ""
671
+
672
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
673
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
674
+ msgstr ""
675
+
676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
677
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
678
+ msgid "A password reset email has been sent to "
679
+ msgstr ""
680
+
681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
682
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
683
+ msgid "Following the link sent in the email address will reset the password."
684
+ msgstr ""
685
+
686
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
687
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
688
+ msgid "Someone requested that the password be reset for the following account: "
689
+ msgstr ""
690
+
691
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
692
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
693
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
694
+ msgstr ""
695
+
696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
697
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
698
+ msgid "To reset your password, visit the following link:"
699
+ msgstr ""
700
+
701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
702
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
703
+ msgid "Password Reset Feature from"
704
+ msgstr ""
705
+
706
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
708
+ #, fuzzy
709
+ msgid "There was an error while trying to send the activation link to "
710
+ msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
711
+
712
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
713
+ #, fuzzy
714
+ msgid "The email address entered wasn't found in the database!"
715
+ msgstr "La dirección de email no es válida.<br/>La dirección de email era"
716
+
717
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
718
+ msgid "Please check that you entered the correct email address."
719
+ msgstr ""
720
+
721
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
722
+ msgid "The username entered wasn't found in the database!"
723
+ msgstr ""
724
+
725
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
726
+ msgid "Please check that you entered the correct username."
727
+ msgstr ""
728
+
729
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
730
+ #, fuzzy
731
+ msgid "Your password has been successfully changed!"
732
+ msgstr "Los cambios se han guardado correctamente."
733
+
734
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
735
+ msgid "You have successfully reset your password to:"
736
+ msgstr ""
737
+
738
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
739
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
740
+ #, fuzzy
741
+ msgid "Password Successfully Reset for"
742
+ msgstr "\" ha sido eliminado."
743
+
744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
745
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
746
+ msgid "from"
747
+ msgstr ""
748
+
749
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
750
+ msgid "has requested a password change via the password reset feature."
751
+ msgstr ""
752
+
753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
754
+ msgid "His/her new password is:"
755
+ msgstr ""
756
+
757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
759
+ msgid "The entered passwords don't match!"
760
+ msgstr "Las contraseñas introducidas no coinciden"
761
+
762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
763
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
764
+ #, fuzzy
765
+ msgid "Reset Password"
766
+ msgstr "Repetir contraseña"
767
+
768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
769
+ msgid "Invalid key!"
770
+ msgstr ""
771
+
772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
773
+ #, fuzzy
774
+ msgid "Please enter your username or email address."
775
+ msgstr "Has de introducir una dirección de Email válida."
776
+
777
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
778
+ msgid "You will receive a link to create a new password via email."
779
+ msgstr ""
780
+
781
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
782
+ #, fuzzy
783
+ msgid "Username or E-mail"
784
+ msgstr "Nombre de usuario"
785
+
786
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
787
+ #, fuzzy
788
+ msgid "Get New Password"
789
+ msgstr "Nueva contraseña"
790
+
791
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
792
+ #, php-format
793
+ msgid ""
794
+ "To activate your user, please click the following link:\n"
795
+ "\n"
796
+ "%s\n"
797
+ "\n"
798
+ "After you activate, you will receive *another email* with your login.\n"
799
+ "\n"
800
+ msgstr ""
801
+
802
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
803
+ #, php-format
804
+ msgid "[%1$s] Activate %2$s"
805
+ msgstr ""
806
+
807
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
808
+ msgid "Invalid activation key!"
809
+ msgstr ""
810
+
811
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
812
+ msgid "The user is already active!"
813
+ msgstr ""
814
+
815
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
816
+ msgid "Could not create user!"
817
+ msgstr ""
818
+
819
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
820
+ #, fuzzy
821
+ msgid "That username is already activated!"
822
+ msgstr "Lo sentimos, ese nombre de usuario ya existe"
823
+
824
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
825
+ #, fuzzy
826
+ msgid "The user was successfully activated."
827
+ msgstr "El avatar ha sido eliminado."
828
+
829
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
830
+ #, fuzzy
831
+ msgid "There was an error while trying to activate the user."
832
+ msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
833
+
834
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
835
+ msgid "New subscriber on"
836
+ msgstr ""
837
+
838
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
839
+ msgid "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!"
840
+ msgstr ""
841
+
842
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
843
+ msgid "A new subscriber has (been) registered!"
844
+ msgstr ""
845
+
846
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
847
+ #, fuzzy
848
+ msgid "A new account has been created for you."
849
+ msgstr "Se ha creado la cuenta de usuario para %1$s."
850
+
851
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
852
+ msgid "Welcome to"
853
+ msgstr ""
854
+
855
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
856
+ msgid "Your username is:"
857
+ msgstr ""
858
+
859
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
860
+ #, fuzzy
861
+ msgid "and password:"
862
+ msgstr "Contraseña"
863
+
864
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
865
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
866
+ msgstr ""
867
+
868
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
869
+ msgid "The user was NOT created!"
870
+ msgstr ""
871
+
872
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
873
  msgid "A username is required for registration."
874
  msgstr "Es obligatorio un nombre de usuario para la inscripción."
875
 
876
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
877
  msgid "Sorry, that username already exists!"
878
  msgstr "Lo sentimos, ese nombre de usuario ya existe"
879
 
880
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
881
  msgid "You must enter a valid email address."
882
  msgstr "Has de introducir una dirección de Email válida."
883
 
884
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
885
  msgid "Sorry, that email address is already used!"
886
  msgstr "Lo sentimos, esa dirección ya está en uso"
887
 
888
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
889
  msgid "You didn't complete one of the password-fields!"
890
  msgstr "No has completado una de los campos de contraseña"
891
 
892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
893
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
894
+ #, fuzzy
895
+ msgid "The account was NOT created!"
896
+ msgstr "Se ha creado la cuenta de usuario para %1$s."
897
 
898
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
899
+ msgid "You must agree to the terms and conditions before registering!"
900
+ msgstr ""
901
+
902
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
903
+ msgid "(Several required fields were left uncompleted)"
904
+ msgstr ""
905
+
906
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
907
+ msgid "This username is already reserved to be used soon."
908
+ msgstr ""
909
+
910
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
911
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
912
+ msgid "Please try a different one!"
913
+ msgstr ""
914
+
915
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
916
+ #, fuzzy
917
+ msgid "This email address is already reserved to be used soon."
918
+ msgstr "Lo sentimos, esa dirección ya está en uso"
919
 
920
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
921
+ msgid "You are logged in as"
922
+ msgstr ""
923
+
924
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
925
+ msgid "You don't need another account."
926
+ msgstr ""
927
+
928
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
929
+ #, fuzzy
930
+ msgid "Log out of this account."
931
+ msgstr "Cerrar sesión"
932
+
933
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
934
+ #, fuzzy
935
+ msgid "Logout"
936
  msgstr "Salir &raquo;"
937
 
938
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
939
+ msgid "An email has been sent to "
940
+ msgstr ""
941
+
942
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
943
+ msgid "with information on how to activate his/her account"
944
+ msgstr ""
945
+
946
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
947
+ #, fuzzy
948
+ msgid "A user account has been created for"
949
  msgstr "Se ha creado la cuenta de usuario para %1$s."
950
 
951
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
952
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
953
+ msgstr ""
954
+
955
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
956
+ msgid "An email has been sent to you with information on how to activate your account"
957
+ msgstr ""
958
+
959
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
960
+ #, fuzzy
961
+ msgid "Thank you for registering"
962
  msgstr "Gracias por registrarte, %1$s."
963
 
964
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
965
+ msgid "An error occured while trying to send the notification email."
966
+ msgstr ""
967
+
968
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
969
+ msgid "An email containing activation instructions was successfully sent."
970
+ msgstr ""
971
+
972
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
973
+ msgid "An email containing the username and password was successfully sent."
974
+ msgstr ""
975
+
976
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
977
  msgid "Users can register themselves or you can manually create users here."
978
  msgstr "Los usuarios pueden registrarse ellos mismos o puedes crear manualmente los usuarios desde aquí."
979
 
980
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
981
  msgid "Users cannot currently register themselves, but you can manually create users here."
982
  msgstr "Los usuarios no pueden registrarse ellos mismos, pero puedes crear manualmente los usuarios desde aquí."
983
 
984
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
985
  msgid "Only an administrator can add new users."
986
  msgstr "Sólo el administrador puede añadir nuevos usuarios."
987
 
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
989
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
991
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
993
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
994
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
995
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
996
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
997
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
998
+ msgstr ""
999
+
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
1001
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
1002
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
1003
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1005
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1006
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1007
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1008
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1009
+ msgid "This field is marked as required by the administrator"
1010
+ msgstr ""
1011
+
1012
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1013
+ msgid "Anti-Spam"
1014
+ msgstr ""
1015
+
1016
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1017
+ #, fuzzy
1018
+ msgid "Send these credentials via email."
1019
  msgstr "Enviar las credenciales por correo electrónico."
1020
 
1021
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1022
  msgid "Add User"
1023
  msgstr "Añadir usuario"
1024
 
1025
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1026
  msgid "Register"
1027
  msgstr "Registrar"
1028
 
1029
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1030
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1031
+ msgstr ""
1032
+
1033
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1034
+ msgid "heading"
1035
+ msgstr ""
1036
+
1037
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1038
+ msgid "\" custom field."
1039
+ msgstr ""
1040
+
1041
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1042
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1043
+ msgstr ""
1044
+
1045
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1046
+ msgid "Drag"
1047
+ msgstr ""
1048
+
1049
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1050
+ msgid "Drop"
1051
+ msgstr ""
1052
+
1053
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1054
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1055
+ msgstr ""
1056
+
1057
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1058
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1059
+ #, fuzzy
1060
+ msgid "Title"
1061
+ msgstr "Blanco"
1062
+
1063
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1064
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1065
+ msgid "Type"
1066
+ msgstr ""
1067
+
1068
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1069
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1070
+ msgid "Meta-Key"
1071
+ msgstr ""
1072
+
1073
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1074
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1075
+ msgid "ID"
1076
+ msgstr ""
1077
+
1078
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1079
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1080
+ msgid "Req'd"
1081
+ msgstr ""
1082
+
1083
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1084
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1085
+ msgid "Add Option"
1086
+ msgstr ""
1087
+
1088
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1089
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1090
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1091
+ msgid "Edit"
1092
+ msgstr ""
1093
+
1094
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1095
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1096
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1097
+ #, fuzzy
1098
+ msgid "Delete"
1099
+ msgstr "Predeterminada"
1100
+
1101
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1102
+ msgid "Title:"
1103
+ msgstr ""
1104
+
1105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1106
+ msgid "The title of the item."
1107
+ msgstr ""
1108
+
1109
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1110
+ msgid "Meta-Key:"
1111
+ msgstr ""
1112
+
1113
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1114
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1115
+ msgstr ""
1116
+
1117
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1118
+ msgid "Option Type:"
1119
+ msgstr ""
1120
+
1121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1122
+ msgid "Choose one of the supported option types."
1123
+ msgstr ""
1124
+
1125
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1126
+ msgid "Description:"
1127
+ msgstr ""
1128
+
1129
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1130
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1131
+ msgstr ""
1132
+
1133
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1134
+ msgid "You can only insert links using standard HTML syntax:"
1135
+ msgstr ""
1136
+
1137
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1138
+ msgid "address"
1139
+ msgstr ""
1140
+
1141
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1142
+ #, fuzzy
1143
+ msgid "name"
1144
+ msgstr "Nombre"
1145
+
1146
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1147
+ msgid "Options:"
1148
+ msgstr ""
1149
+
1150
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1151
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1152
+ msgstr ""
1153
+
1154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1155
+ msgid "ID:"
1156
+ msgstr ""
1157
+
1158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1159
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1160
+ msgstr ""
1161
+
1162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1163
+ #, fuzzy
1164
+ msgid "Required:"
1165
+ msgstr "(obligatorio)"
1166
+
1167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1168
+ msgid "Check this box to make this field required."
1169
+ msgstr ""
1170
+
1171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1172
+ msgid "Cancel"
1173
+ msgstr ""
1174
+
1175
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1176
+ msgid "Save"
1177
+ msgstr ""
1178
+
1179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1181
+ msgid "Register your version of Profile Builder Pro"
1182
+ msgstr ""
1183
+
1184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1185
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1186
+ msgstr ""
1187
+
1188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1189
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1190
+ msgstr ""
1191
+
1192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1193
+ msgid "Serial Number:"
1194
+ msgstr ""
1195
+
1196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1197
+ #, fuzzy
1198
+ msgid "The serial number was successfully validated!"
1199
+ msgstr "El avatar ha sido eliminado."
1200
+
1201
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1202
+ msgid "The serial number couldn't be validated or isn't valid!"
1203
+ msgstr ""
1204
+
1205
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1206
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1207
+ msgstr ""
1208
+
1209
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1210
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1211
+ msgstr ""
1212
+
1213
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1214
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1215
+ msgstr ""
1216
+
1217
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1218
+ msgid "You can find it in Profile Builder's menu."
1219
+ msgstr ""
1220
+
1221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1222
+ #, fuzzy
1223
+ msgid "You need to be logged in to view the userlisting!"
1224
+ msgstr "Debes estar conectado para editar tu perfil."
1225
+
1226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1228
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1231
+ msgid "Search Users by All Fields"
1232
+ msgstr ""
1233
+
1234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1235
+ msgid "Leave Blank and Press Search to List All Users"
1236
+ msgstr ""
1237
+
1238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1239
+ msgid "Search"
1240
+ msgstr ""
1241
+
1242
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1243
+ #, fuzzy
1244
+ msgid "First/Lastname"
1245
+ msgstr "Nombre:"
1246
+
1247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1248
+ #, fuzzy
1249
+ msgid "Email"
1250
+ msgstr "Email"
1251
+
1252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1253
+ msgid "Sign-up Date"
1254
+ msgstr ""
1255
+
1256
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1257
+ #, fuzzy
1258
+ msgid "Firstname"
1259
+ msgstr "Nombre:"
1260
+
1261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1262
+ #, fuzzy
1263
+ msgid "Lastname"
1264
+ msgstr "Apellidos"
1265
+
1266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1267
+ #, fuzzy
1268
+ msgid "Display Name"
1269
+ msgstr "Nombre:"
1270
+
1271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1272
+ msgid "Posts"
1273
+ msgstr ""
1274
+
1275
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1276
+ msgid "Click here to see more information about this user"
1277
+ msgstr ""
1278
+
1279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1280
+ msgid "More..."
1281
+ msgstr ""
1282
+
1283
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1284
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1285
+ #, fuzzy
1286
+ msgid "No uploaded attachment"
1287
+ msgstr "El archivo adjunto \""
1288
+
1289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1291
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1292
+ msgid "Click to see the current attachment"
1293
+ msgstr ""
1294
+
1295
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1296
+ msgid "Click here to go back"
1297
+ msgstr ""
1298
+
1299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1300
+ #, fuzzy
1301
+ msgid "Back"
1302
+ msgstr "Negro"
1303
+
1304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1305
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1306
+ msgid "Current file"
1307
+ msgstr ""
1308
+
1309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1310
+ msgid "Avatar"
1311
+ msgstr ""
1312
+
1313
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1314
+ msgid "No results found!"
1315
+ msgstr ""
1316
+
1317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1318
+ msgid "&laquo;&laquo; First"
1319
+ msgstr ""
1320
+
1321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1322
+ msgid "&laquo; Prev"
1323
+ msgstr ""
1324
+
1325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1326
+ #, fuzzy
1327
+ msgid "Next &raquo; "
1328
+ msgstr "Salir &raquo;"
1329
+
1330
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1331
+ #, fuzzy
1332
+ msgid "Last &raquo;&raquo;"
1333
+ msgstr "Salir &raquo;"
1334
+
1335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1336
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1337
+ msgstr ""
1338
+
1339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1341
+ msgid "Activate/Deactivate Addons"
1342
+ msgstr ""
1343
+
1344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1345
+ msgid "Name/Description"
1346
+ msgstr ""
1347
+
1348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1349
+ msgid "Status"
1350
+ msgstr ""
1351
+
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1355
+ msgid "User-Listing"
1356
+ msgstr ""
1357
+
1358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1361
+ msgid "Active"
1362
+ msgstr ""
1363
+
1364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1366
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1367
+ msgid "Inactive"
1368
+ msgstr ""
1369
+
1370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1373
+ msgid "Custom Redirects"
1374
+ msgstr ""
1375
+
1376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1378
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1379
+ msgid "reCAPTCHA"
1380
+ msgstr ""
1381
+
1382
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1383
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1384
+ msgstr ""
1385
+
1386
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1387
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1388
+ msgstr ""
1389
+
1390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1391
+ msgid "These settings are applied to the front-end userlisting."
1392
+ msgstr ""
1393
+
1394
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1395
+ msgid "Number of Users/Page: "
1396
+ msgstr ""
1397
+
1398
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1399
+ msgid "Default Sorting Order: "
1400
+ msgstr ""
1401
+
1402
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1403
+ msgid "\"All-Userlisting\" Template"
1404
+ msgstr ""
1405
+
1406
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1407
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1408
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1409
+ msgstr ""
1410
+
1411
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1412
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1413
+ msgstr ""
1414
+
1415
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1416
+ msgid "Avatar size: "
1417
+ msgstr ""
1418
+
1419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1420
+ msgid "Insert \"Sort By\" Field:"
1421
+ msgstr ""
1422
+
1423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1424
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1425
+ msgid "Insert \"User-Meta\" Field:"
1426
+ msgstr ""
1427
+
1428
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1429
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1430
+ msgid "Insert Extra Functions:"
1431
+ msgstr ""
1432
+
1433
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1434
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1435
+ msgstr ""
1436
+
1437
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1438
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1439
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1440
+ msgstr ""
1441
+
1442
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1443
+ msgid "\"Single-Userlisting\" Template"
1444
+ msgstr ""
1445
+
1446
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1447
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1448
+ msgstr ""
1449
+
1450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1451
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1452
+ msgstr ""
1453
+
1454
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1455
+ msgid "Redirects on custom page requests:"
1456
+ msgstr ""
1457
+
1458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1459
+ msgid "Action"
1460
+ msgstr ""
1461
+
1462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1463
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1464
+ msgid "Redirect"
1465
+ msgstr ""
1466
+
1467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1469
+ msgid "URL"
1470
+ msgstr ""
1471
+
1472
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1473
+ msgid "After Registration:"
1474
+ msgstr ""
1475
+
1476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1477
+ msgid "After Login:"
1478
+ msgstr ""
1479
+
1480
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1481
+ #, fuzzy
1482
+ msgid "Recover Password (*)"
1483
+ msgstr "Repetir contraseña"
1484
+
1485
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1486
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1487
+ msgstr ""
1488
+
1489
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1490
+ msgid "Redirects on default WordPress page requests:"
1491
+ msgstr ""
1492
+
1493
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1494
+ msgid "Requested WP Page"
1495
+ msgstr ""
1496
+
1497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1498
+ msgid "Default WP Login Page(*)"
1499
+ msgstr ""
1500
+
1501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1502
+ msgid "Default WP Logout Page(**)"
1503
+ msgstr ""
1504
+
1505
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1506
+ msgid "Default WP Register Page"
1507
+ msgstr ""
1508
+
1509
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1510
+ msgid "Default WP Dashboard (***)"
1511
+ msgstr ""
1512
+
1513
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1514
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1515
+ msgstr ""
1516
+
1517
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1518
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1519
+ msgstr ""
1520
+
1521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1522
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1523
+ msgstr ""
1524
+
1525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1526
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1527
+ msgstr ""
1528
+
1529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1530
+ msgid "For this you must get a public and private key from Google:"
1531
+ msgstr ""
1532
+
1533
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1534
+ msgid "Key"
1535
+ msgstr ""
1536
+
1537
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1538
+ msgid "Code"
1539
+ msgstr ""
1540
+
1541
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1542
+ msgid "Public Key:"
1543
+ msgstr ""
1544
+
1545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1546
+ msgid "Private Key:"
1547
+ msgstr ""
1548
+
1549
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1550
+ msgid "Could not open socket!"
1551
+ msgstr ""
1552
+
1553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1555
+ msgid "To use reCAPTCHA you must get an API key from"
1556
+ msgstr ""
1557
+
1558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1559
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1560
+ msgstr ""
1561
+
1562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1563
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1564
+ msgstr ""
1565
+
1566
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1567
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1568
+ msgstr ""
1569
+
1570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1572
+ #, fuzzy
1573
+ msgid "You must give your option a title."
1574
+ msgstr "Debes estar conectado para editar tu perfil."
1575
+
1576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1577
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1578
+ msgid "You have entered an invalid meta-key format!"
1579
+ msgstr ""
1580
+
1581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1582
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1583
+ #, fuzzy
1584
+ msgid "You must enter a valid meta-key."
1585
+ msgstr "Has de introducir una dirección de Email válida."
1586
+
1587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1590
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1591
+ msgid "That meta-key is already in use."
1592
+ msgstr ""
1593
+
1594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1595
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1596
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1597
+ msgstr ""
1598
+
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1601
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1602
+ msgstr ""
1603
+
1604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1605
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1606
+ msgid "The textarea row value must be numeric."
1607
+ msgstr ""
1608
+
1609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1610
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1611
+ msgid "The maxlength attribute must be numeric."
1612
+ msgstr ""
1613
+
1614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1615
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1616
+ msgid "The value must be between 20 and 200!"
1617
+ msgstr ""
1618
+
1619
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1620
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1621
+ msgid "The width component of the entered value must be numeric!"
1622
+ msgstr ""
1623
+
1624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1625
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1626
+ msgid "The height component of the entered value must be numeric!"
1627
+ msgstr ""
1628
+
1629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1630
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1631
+ msgid "The width component of the entered value must be between 20 and 200!"
1632
+ msgstr ""
1633
+
1634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1635
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1636
+ msgid "The height component of the entered value must be between 20 and 200!"
1637
+ msgstr ""
1638
+
1639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1640
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1641
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1642
+ msgstr ""
1643
+
1644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1645
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1646
+ msgid "The entered avatar size must be numeric!"
1647
+ msgstr ""
1648
+
1649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1650
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1651
+ msgid "There was an error, please try again."
1652
+ msgstr ""
1653
+
1654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1662
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1663
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1664
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1665
+ msgstr ""
1666
+
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1670
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1671
+ msgid "max upload size"
1672
+ msgstr ""
1673
+
1674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1676
+ msgid "Are you sure you want to delete this attachment?"
1677
+ msgstr ""
1678
+
1679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1682
+ msgid "Click to delete the current attachment"
1683
+ msgstr ""
1684
+
1685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1686
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1687
+ msgstr ""
1688
+
1689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1690
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1691
+ msgid "Current avatar"
1692
+ msgstr ""
1693
+
1694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1695
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1696
+ msgid "No uploaded avatar"
1697
+ msgstr ""
1698
+
1699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1701
+ msgid "Are you sure you want to delete this avatar?"
1702
+ msgstr ""
1703
+
1704
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1705
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1706
+ msgstr ""
1707
+
1708
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1709
+ msgid "Click to see the current avatar"
1710
+ msgstr ""
1711
+
1712
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1713
+ msgid "Click to delete the avatar"
1714
+ msgstr ""
1715
+
1716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1717
+ msgid "The user-validation has failed - the avatar was not deleted!"
1718
+ msgstr ""
1719
+
1720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1721
+ msgid "The user-validation has failed - the attachment was not deleted!"
1722
+ msgstr ""
1723
+
1724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1725
+ msgid "Do you want to"
1726
+ msgstr ""
1727
+
1728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1729
+ msgid "the current user?"
1730
+ msgstr ""
1731
+
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1733
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1734
+ msgid "Your account on"
1735
+ msgstr ""
1736
+
1737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1738
+ msgid "has been approved!"
1739
+ msgstr ""
1740
+
1741
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1742
+ msgid "An administrator has just approved your account on"
1743
+ msgstr ""
1744
+
1745
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1746
+ msgid "has been unapproved!"
1747
+ msgstr ""
1748
+
1749
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1750
+ msgid "An administrator has just unapproved your account on"
1751
+ msgstr ""
1752
+
1753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1754
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1755
+ msgid "Approve"
1756
+ msgstr ""
1757
+
1758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1759
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1760
+ msgid "Unapproved"
1761
+ msgstr ""
1762
+
1763
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1764
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1765
+ msgid "Unapprove"
1766
+ msgstr ""
1767
+
1768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1769
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1770
+ msgid "Approved"
1771
+ msgstr ""
1772
+
1773
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1774
+ msgid "unapprove"
1775
+ msgstr ""
1776
+
1777
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1778
+ msgid "approve"
1779
+ msgstr ""
1780
+
1781
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1782
+ msgid "Are you sure you want to"
1783
+ msgstr ""
1784
+
1785
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1786
+ msgid "this user?"
1787
+ msgstr ""
1788
+
1789
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1790
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1791
+ msgstr ""
1792
+
1793
+ #~ msgid "Plugin Layout"
1794
+ #~ msgstr "Diseño del Plugin"
1795
+
1796
+ #~ msgid "You didn't complete both password fields. <br/> The password was "
1797
+ #~ msgstr ""
1798
+ #~ "No has completado ambos campos de contraseña.<br/>La dirección de email "
1799
+ #~ "era"
1800
+
1801
+ #~ msgid ""
1802
+ #~ "There was an error while trying to upload your avatar picture.<br/"
1803
+ #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
1804
+ #~ msgstr ""
1805
+ #~ "Se ha producido un error al intentar subir la imagen del avatar.<br/"
1806
+ #~ ">Causa posible: tamaño/tipo de archivo incorrecto.<br/>El avatar era"
1807
+
1808
+ #~ msgid ""
1809
+ #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
1810
+ #~ "need another account."
1811
+ #~ msgstr ""
1812
+ #~ "Estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. No "
1813
+ #~ "necesitas otra cuenta."
translation/profilebuilder-fr_FR.mo CHANGED
Binary file
translation/profilebuilder-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2011-08-22 11:52+0100\n"
7
- "Last-Translator: Sébastien CEZARD <foxyflying@gmail.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,486 +14,1799 @@ msgstr ""
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Bienvenue dans Profile Builder !"
25
 
26
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr " vous permet de personnaliser votre site en y ajoutant un menu visible par les utilisateurs, leur permettant de modifier de manière plus flexible les informations les concernant ou encore, de permettre l'enregistrement de nouveaux utilisateurs."
29
 
30
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Il permet également aux utilisateurs dotés de droits d'administrateurs de personnaliser les champs de base ou d'en ajouter d'autre à leur guise."
33
 
34
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "Pour mettre en place le dispositif, créez simplement une nouvelle page et donnez-lui un nom évocateur (par exemple, \"Modifier le Profil\")."
37
 
38
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Tout ce qu'il vous reste à faire ensuite est d'ajouter le shortcode suivant (pour l'exemple précédent): [wppb-edit-profile]."
41
 
42
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Publiez votre page et le tour est joué !"
45
 
46
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
47
  msgid "You can use the following shortcodes:"
48
  msgstr "Vous pouvez utiliser les shortcodes suivant:"
49
 
50
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
51
  msgid "for a log-in form."
52
  msgstr "pour un formulaire de connexion."
53
 
54
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
55
  msgid "to add a registration form."
56
  msgstr "pour ajouter un formulaire d'enregistrement."
57
 
58
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "pour permettre aux utilisateurs d'accéder à leurs données personnelles (l'utilisateur doit être connecté)."
61
 
62
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
 
63
  msgid "Users with administrator rights have access to the following features:"
64
  msgstr "Les utilisateurs possédant des droits d'administrateurs ont accés aux fonctions suivantes:"
65
 
66
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
67
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
68
  msgstr "ajout de feuilles de styles personnalisées/héritées du thème courant ou incluses par défaut dans le plugin: défaut, blanc ou noir."
69
 
70
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
71
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
72
  msgstr "possibilité d'afficher ou non la Barre d'Administration sur le Front-End pour un groupe d'utilisateurs spécifique enregistré sur le site."
73
 
74
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
75
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
76
  msgstr "choix du type de champ pouvant être affiché ou modifié. Les valeurs entrées dans les champs masqués demeurent non modifiées."
77
 
78
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
79
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
80
  msgstr "ajout de champs personnalisés, avec le choix entre différents types: titre, texte, zone de texte, sélection, case à cocher, bouton, et/ou téléversement."
81
 
82
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
83
  msgid "add an avatar field."
84
  msgstr "ajout d'un champ d'avatar"
85
 
86
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  msgid "NOTE:"
88
  msgstr "NOTE:"
89
 
90
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
91
  msgid "this plugin only adds/removes fields in the front-end."
92
  msgstr "ce plugin ajoute/retire des champs uniquement sur le Front-End."
93
 
94
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
95
  msgid "The default information-fields will still be visible(and thus modifiable)"
96
  msgstr "Les champs d'informations par défaut seront encore visibles (donc modifiables)"
97
 
98
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
99
  msgid "from the back-end, while custom fields will only be visible in the front-end."
100
  msgstr "depuis le Back-End, alors que les champs personnalisés ne seront visibles que sur le Front-End. "
101
 
102
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
104
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
105
- msgid "Plugin Layout"
106
- msgstr "Apparence du Plugin"
 
107
 
108
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
109
- msgid "Stylesheet used:"
 
110
  msgstr "Feuille de style utilisée"
111
 
112
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
113
  msgid "Default"
114
  msgstr "Défaut"
115
 
116
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
117
  msgid "White"
118
  msgstr "Blanc"
119
 
120
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
121
  msgid "Black"
122
  msgstr "Noir"
123
 
124
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
125
  msgid "None"
126
  msgstr "Aucune"
127
 
128
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  msgid "Save Changes"
132
  msgstr "Sauvegarder les modifications"
133
 
134
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
136
  msgid "Show/Hide the Admin Bar on Front End"
137
  msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
138
 
139
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
140
  msgid "User-group"
141
  msgstr "Groupe d'Utilisateurs"
142
 
143
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
144
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
145
  msgid "Visibility"
146
  msgstr "Visibilité"
147
 
148
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
149
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
161
  msgid "Show"
162
  msgstr "Afficher"
163
 
164
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
165
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
177
  msgid "Hide"
178
  msgstr "Masquer"
179
 
180
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
181
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
182
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
183
  msgid "Default Profile Fields"
184
  msgstr "Champs de Profil par Défaut"
185
 
186
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
187
  msgid "Input Field Name"
188
  msgstr "Nom du Champ de Saisie"
189
 
190
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
 
191
  msgid "Name:"
192
  msgstr "Nom:"
193
 
194
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
195
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
196
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
198
  msgid "Username"
199
  msgstr "Nom d'Utilisateur"
200
 
201
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
202
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
203
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
204
  msgid "First Name"
205
  msgstr "Prénom"
206
 
207
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
208
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
209
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
210
  msgid "Last Name"
211
  msgstr "Nom"
212
 
213
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
214
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
215
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
216
  msgid "Nickname"
217
  msgstr "Pseudo"
218
 
219
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
220
  msgid "Display name publicly as..."
221
  msgstr "Apparaître publiquement en tant que..."
222
 
223
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
224
  msgid "Contact Info:"
225
  msgstr "Infos de Contact"
226
 
227
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
228
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
229
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
230
  msgid "E-mail"
231
  msgstr "Courriel"
232
 
233
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
234
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
235
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
236
  msgid "Website"
237
  msgstr "Site Web"
238
 
239
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
240
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
241
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
242
  msgid "AIM"
243
  msgstr "AIM"
244
 
245
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
246
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
247
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
248
  msgid "Yahoo IM"
249
  msgstr "Yahoo IM"
250
 
251
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
252
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
253
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
254
  msgid "Jabber / Google Talk"
255
  msgstr "Jabber / Google Talk"
256
 
257
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
258
  msgid "About Yourself:"
259
  msgstr "À propos de vous:"
260
 
261
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
262
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
263
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
264
  msgid "Biographical Info"
265
  msgstr "Infos Biographiques"
266
 
267
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
268
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
269
  msgid "New Password"
270
  msgstr "Nouveau Mot de Passe"
271
 
272
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
273
  msgid "Basic Information"
274
  msgstr "Informations de Base"
275
 
276
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
277
  msgid "Show/Hide the Admin Bar on Front-end"
278
  msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
279
 
280
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
281
  msgid "Extra Profile Fields"
282
  msgstr "Champs de Profile Supplémentaires"
283
 
284
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
285
  msgid "Register Your Version"
286
  msgstr "Enregistrer Votre Version"
287
 
288
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "You must be logged in to edit your profile."
290
  msgstr "Vous devez être connecté(e) pour modifier votre profil."
291
 
292
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
293
  msgid "The avatar was successfully deleted."
294
  msgstr "L'avatar a bien été supprimé."
295
 
296
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
297
- msgid "The attachment \""
 
298
  msgstr "La pièce jointe \""
299
 
300
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
301
- msgid "\" was successfully deleted."
 
302
  msgstr "\" a bien été supprimée."
303
 
304
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
305
  msgid "The changes have been successfully saved."
306
  msgstr "Les modifications ont bien été sauvegardées."
307
 
308
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
309
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
310
  msgstr "L'adresse de courriel indiquée appartient déjà à un autre utilisateur.<br/>L'adresse de courriel était "
311
 
312
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
313
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
318
  msgid "NOT"
319
  msgstr "PAS"
320
 
321
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
322
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
327
- msgid " updated along with the rest of the information."
 
 
328
  msgstr " mis à jour avec le reste des informations."
329
 
330
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
331
- msgid "The email address you entered is invalid. <br/> The email address was "
 
332
  msgstr "L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
333
 
334
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
335
- msgid "The passwords you entered do not match. <br/> The password was "
 
336
  msgstr "Les mots de passe ne correspondent pas. <br/> Les mots de passe étaient "
337
 
338
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
339
- msgid "You didn't complete both password fields. <br/> The password was "
340
- msgstr "Vous n'avez pas renseigné les champs de mots de passe. <br/> Les mots de passe étaient "
 
 
 
 
 
 
 
 
 
 
 
341
 
342
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
343
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
344
  msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
345
 
346
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
347
- msgid "<br/>Possible cause: the size was bigger than "
 
348
  msgstr "<br/>Cause possible: la taille est supérieur à "
349
 
350
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
351
- msgid "b.<br/>The listed attachements were "
 
352
  msgstr "b.<br/>les fichiers étaient "
353
 
354
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
355
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
356
- msgstr "Une erreur est survenue durant le téléversement de l'image.<br/>Cause possible: taille/type de fichier incorrect.<br/>L'avatar était "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
359
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
360
  msgid "Name"
361
  msgstr "Nom"
362
 
363
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
364
- msgid " Usernames cannot be changed."
 
365
  msgstr " Les noms d'utilisateurs ne peuvent être modifiés."
366
 
367
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
368
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
371
- msgid "(required)"
372
- msgstr "(requis)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
 
374
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
375
  msgid "Display name publicly as"
376
  msgstr "Apparaître publiquement en tant que"
377
 
378
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
379
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
380
  msgid "Contact Info"
381
  msgstr "Infos de Contact"
382
 
383
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
384
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
385
  msgid "About Yourself"
386
  msgstr "À Propos de Vous"
387
 
388
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
389
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
390
  msgid "Repeat Password"
391
  msgstr "Répéter le Mot de Passe"
392
 
393
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
394
  msgid "Update"
395
  msgstr "Mettre à Jour"
396
 
397
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
398
- #, php-format
399
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
400
  msgstr "Vous êtes actuellement connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
401
 
402
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
403
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
404
  msgid "Log out of this account"
405
  msgstr "Se déconnecter de ce compte"
406
 
407
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
408
- msgid "Log out &raquo;"
 
409
  msgstr "Déconnexion &raquo;"
410
 
411
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
412
- #, php-format
413
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
414
  msgstr "Vous vous êtes connecté en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
415
 
416
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
417
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid "Password"
419
  msgstr "Mot de Passe"
420
 
421
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
422
  msgid "Log in"
423
  msgstr "Connexion"
424
 
425
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
426
  msgid "Remember me"
427
  msgstr "Se souvenir de moi"
428
 
429
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
430
  msgid "Lost password?"
431
  msgstr "Mot de passe oublié ?"
432
 
433
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "A username is required for registration."
435
  msgstr "Un nom d'utilisateur est requis pour l'enregistrement."
436
 
437
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
438
  msgid "Sorry, that username already exists!"
439
  msgstr "Désolé, ce nom d'utilisateur existe déjà !"
440
 
441
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
442
  msgid "You must enter a valid email address."
443
  msgstr "Vous devez entrer une adresse de courriel valide."
444
 
445
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
446
  msgid "Sorry, that email address is already used!"
447
  msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
448
 
449
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
450
  msgid "You didn't complete one of the password-fields!"
451
  msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
452
 
453
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
454
- msgid "The entered passwords don't match!"
455
- msgstr "Les mots de passe ne correspondent pas !"
 
 
456
 
457
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
458
- #, php-format
459
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
460
- msgstr "Vous êtes connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Vous n'avez pas besoin de créer un autre compte."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
 
462
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
463
- msgid "Logout &raquo;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgstr "Déconnexion &raquo;"
465
 
466
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
467
- #, php-format
468
- msgid "A user account for %1$s has been created."
 
 
 
 
 
 
 
 
469
  msgstr "Un compte utilisateur pour %1$s a été créé."
470
 
471
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
472
- #, php-format
473
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
474
  msgstr "Merci de vous être enregistré, %1$s."
475
 
476
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Users can register themselves or you can manually create users here."
478
  msgstr "Les utilisateurs peuvent s'enregistrer ou bien vous pouvez les créer manuellement ici."
479
 
480
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
481
  msgid "Users cannot currently register themselves, but you can manually create users here."
482
  msgstr "Les utilisateurs ne peuvent actuellement pas s'enregistrer eux-même, mais vous pouvez les créer manuellement ici."
483
 
484
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
485
  msgid "Only an administrator can add new users."
486
  msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
487
 
488
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
489
- msgid " Send these credentials via email."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
490
  msgstr " Envoyer ces données par courriel."
491
 
492
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
493
  msgid "Add User"
494
  msgstr "Ajouter un Utilisateur"
495
 
496
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
497
  msgid "Register"
498
  msgstr "Enregistrement"
499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:31+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Bienvenue dans Profile Builder !"
25
 
26
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr " vous permet de personnaliser votre site en y ajoutant un menu visible par les utilisateurs, leur permettant de modifier de manière plus flexible les informations les concernant ou encore, de permettre l'enregistrement de nouveaux utilisateurs."
29
 
30
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Il permet également aux utilisateurs dotés de droits d'administrateurs de personnaliser les champs de base ou d'en ajouter d'autre à leur guise."
33
 
34
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "Pour mettre en place le dispositif, créez simplement une nouvelle page et donnez-lui un nom évocateur (par exemple, \"Modifier le Profil\")."
37
 
38
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Tout ce qu'il vous reste à faire ensuite est d'ajouter le shortcode suivant (pour l'exemple précédent): [wppb-edit-profile]."
41
 
42
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Publiez votre page et le tour est joué !"
45
 
46
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
47
  msgid "You can use the following shortcodes:"
48
  msgstr "Vous pouvez utiliser les shortcodes suivant:"
49
 
50
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
51
  msgid "for a log-in form."
52
  msgstr "pour un formulaire de connexion."
53
 
54
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
55
  msgid "to add a registration form."
56
  msgstr "pour ajouter un formulaire d'enregistrement."
57
 
58
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "pour permettre aux utilisateurs d'accéder à leurs données personnelles (l'utilisateur doit être connecté)."
61
 
62
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
63
+ #, fuzzy
64
+ msgid "to add a password recovery form."
65
+ msgstr "pour ajouter un formulaire d'enregistrement."
66
+
67
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
68
  msgid "Users with administrator rights have access to the following features:"
69
  msgstr "Les utilisateurs possédant des droits d'administrateurs ont accés aux fonctions suivantes:"
70
 
71
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
72
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
73
  msgstr "ajout de feuilles de styles personnalisées/héritées du thème courant ou incluses par défaut dans le plugin: défaut, blanc ou noir."
74
 
75
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
76
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
77
  msgstr "possibilité d'afficher ou non la Barre d'Administration sur le Front-End pour un groupe d'utilisateurs spécifique enregistré sur le site."
78
 
79
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
80
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
81
  msgstr "choix du type de champ pouvant être affiché ou modifié. Les valeurs entrées dans les champs masqués demeurent non modifiées."
82
 
83
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
84
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
85
  msgstr "ajout de champs personnalisés, avec le choix entre différents types: titre, texte, zone de texte, sélection, case à cocher, bouton, et/ou téléversement."
86
 
87
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
88
  msgid "add an avatar field."
89
  msgstr "ajout d'un champ d'avatar"
90
 
91
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
92
+ msgid "create custom redirects."
93
+ msgstr ""
94
+
95
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
96
+ msgid "front-end userlisting using the"
97
+ msgstr ""
98
+
99
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
100
+ msgid "shortcode."
101
+ msgstr ""
102
+
103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
106
  msgid "NOTE:"
107
  msgstr "NOTE:"
108
 
109
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
110
  msgid "this plugin only adds/removes fields in the front-end."
111
  msgstr "ce plugin ajoute/retire des champs uniquement sur le Front-End."
112
 
113
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
114
  msgid "The default information-fields will still be visible(and thus modifiable)"
115
  msgstr "Les champs d'informations par défaut seront encore visibles (donc modifiables)"
116
 
117
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
118
  msgid "from the back-end, while custom fields will only be visible in the front-end."
119
  msgstr "depuis le Back-End, alors que les champs personnalisés ne seront visibles que sur le Front-End. "
120
 
121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
125
+ msgid "General Settings"
126
+ msgstr ""
127
 
128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
129
+ #, fuzzy
130
+ msgid "Stylesheet Used on the Front-End:"
131
  msgstr "Feuille de style utilisée"
132
 
133
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
134
  msgid "Default"
135
  msgstr "Défaut"
136
 
137
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
138
  msgid "White"
139
  msgstr "Blanc"
140
 
141
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
142
  msgid "Black"
143
  msgstr "Noir"
144
 
145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
146
  msgid "None"
147
  msgstr "Aucune"
148
 
149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
150
+ msgid "\"Email Confirmation\" Feature Activated:"
151
+ msgstr ""
152
+
153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
174
+ msgid "Yes"
175
+ msgstr ""
176
+
177
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
198
+ #, fuzzy
199
+ msgid "No"
200
+ msgstr "Aucune"
201
+
202
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
203
+ msgid "\"Admin Approval\" Feature Activated:"
204
+ msgstr ""
205
+
206
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
207
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
208
+ msgstr ""
209
+
210
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
211
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
212
+ msgstr ""
213
+
214
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
215
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
216
+ msgstr ""
217
+
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
226
  msgid "Save Changes"
227
  msgstr "Sauvegarder les modifications"
228
 
229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
231
  msgid "Show/Hide the Admin Bar on Front End"
232
  msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
233
 
234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
235
  msgid "User-group"
236
  msgstr "Groupe d'Utilisateurs"
237
 
238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
239
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
240
  msgid "Visibility"
241
  msgstr "Visibilité"
242
 
243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
256
  msgid "Show"
257
  msgstr "Afficher"
258
 
259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
272
  msgid "Hide"
273
  msgstr "Masquer"
274
 
275
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
276
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
277
+ msgstr ""
278
+
279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
282
  msgid "Default Profile Fields"
283
  msgstr "Champs de Profil par Défaut"
284
 
285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
286
  msgid "Input Field Name"
287
  msgstr "Nom du Champ de Saisie"
288
 
289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
290
+ #, fuzzy
291
+ msgid "Required"
292
+ msgstr "(requis)"
293
+
294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
295
  msgid "Name:"
296
  msgstr "Nom:"
297
 
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
304
  msgid "Username"
305
  msgstr "Nom d'Utilisateur"
306
 
307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
310
  msgid "First Name"
311
  msgstr "Prénom"
312
 
313
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
314
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
316
  msgid "Last Name"
317
  msgstr "Nom"
318
 
319
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
322
  msgid "Nickname"
323
  msgstr "Pseudo"
324
 
325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
326
  msgid "Display name publicly as..."
327
  msgstr "Apparaître publiquement en tant que..."
328
 
329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
330
  msgid "Contact Info:"
331
  msgstr "Infos de Contact"
332
 
333
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
337
  msgid "E-mail"
338
  msgstr "Courriel"
339
 
340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
341
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
344
  msgid "Website"
345
  msgstr "Site Web"
346
 
347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
350
  msgid "AIM"
351
  msgstr "AIM"
352
 
353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
356
  msgid "Yahoo IM"
357
  msgstr "Yahoo IM"
358
 
359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
362
  msgid "Jabber / Google Talk"
363
  msgstr "Jabber / Google Talk"
364
 
365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
366
  msgid "About Yourself:"
367
  msgstr "À propos de vous:"
368
 
369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
373
  msgid "Biographical Info"
374
  msgstr "Infos Biographiques"
375
 
376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
378
  msgid "New Password"
379
  msgstr "Nouveau Mot de Passe"
380
 
381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
382
  msgid "Basic Information"
383
  msgstr "Informations de Base"
384
 
385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
386
  msgid "Show/Hide the Admin Bar on Front-end"
387
  msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
388
 
389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
392
  msgid "Extra Profile Fields"
393
  msgstr "Champs de Profile Supplémentaires"
394
 
395
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
396
+ msgid "Addons"
397
+ msgstr ""
398
+
399
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
400
  msgid "Register Your Version"
401
  msgstr "Enregistrer Votre Version"
402
 
403
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
405
+ msgid "The information size you were trying to submit was larger than"
406
+ msgstr ""
407
+
408
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
410
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
411
+ msgstr ""
412
+
413
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
415
+ msgid "Since it was also larger than"
416
+ msgstr ""
417
+
418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
420
+ msgid "no additional information is available."
421
+ msgstr ""
422
+
423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
424
  msgid "You must be logged in to edit your profile."
425
  msgstr "Vous devez être connecté(e) pour modifier votre profil."
426
 
427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
428
  msgid "The avatar was successfully deleted."
429
  msgstr "L'avatar a bien été supprimé."
430
 
431
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
432
+ #, fuzzy
433
+ msgid "The attachment"
434
  msgstr "La pièce jointe \""
435
 
436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
437
+ #, fuzzy
438
+ msgid "was successfully deleted."
439
  msgstr "\" a bien été supprimée."
440
 
441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
442
  msgid "The changes have been successfully saved."
443
  msgstr "Les modifications ont bien été sauvegardées."
444
 
445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
446
+ #, fuzzy
447
+ msgid "The email address you entered is already registered to a different user."
448
  msgstr "L'adresse de courriel indiquée appartient déjà à un autre utilisateur.<br/>L'adresse de courriel était "
449
 
450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
451
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
452
+ msgid "The email address was"
453
+ msgstr ""
454
+
455
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
456
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
462
  msgid "NOT"
463
  msgstr "PAS"
464
 
465
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
472
+ #, fuzzy
473
+ msgid "updated along with the rest of the information."
474
  msgstr " mis à jour avec le reste des informations."
475
 
476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
477
+ #, fuzzy
478
+ msgid "The email address you entered is invalid."
479
  msgstr "L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
480
 
481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
482
+ #, fuzzy
483
+ msgid "The passwords you entered do not match."
484
  msgstr "Les mots de passe ne correspondent pas. <br/> Les mots de passe étaient "
485
 
486
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
487
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
488
+ #, fuzzy
489
+ msgid "The password was"
490
+ msgstr "Nouveau Mot de Passe"
491
+
492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
493
+ #, fuzzy
494
+ msgid "You didn't complete both password fields."
495
+ msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
496
+
497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
498
+ msgid "Your profile was NOT updated!"
499
+ msgstr ""
500
 
501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
502
+ #, fuzzy
503
+ msgid "There was an error while trying to upload the following attachments:"
504
  msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
505
 
506
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
507
+ #, fuzzy
508
+ msgid "Possible cause: the size was bigger than"
509
  msgstr "<br/>Cause possible: la taille est supérieur à "
510
 
511
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
512
+ #, fuzzy
513
+ msgid "The listed attachements were"
514
  msgstr "b.<br/>les fichiers étaient "
515
 
516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
517
+ #, fuzzy
518
+ msgid "There was an error while trying to upload your avatar picture."
519
+ msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
520
+
521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
522
+ msgid "Possible cause: size/incorrect file-type."
523
+ msgstr ""
524
+
525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
526
+ msgid "The avatar was"
527
+ msgstr ""
528
+
529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
530
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
531
+ #, fuzzy
532
+ msgid "There was an error while trying to upload the following attachment(s)"
533
+ msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
534
+
535
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
537
+ msgid "Only files with the following extension(s) can be uploaded:"
538
+ msgstr ""
539
+
540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
541
+ msgid "This file was"
542
+ msgstr ""
543
 
544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
546
  msgid "Name"
547
  msgstr "Nom"
548
 
549
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
550
+ #, fuzzy
551
+ msgid "Usernames cannot be changed."
552
  msgstr " Les noms d'utilisateurs ne peuvent être modifiés."
553
 
554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
560
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
564
+ msgid "This field is marked as required by the administrator."
565
+ msgstr ""
566
+
567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
574
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
577
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
578
+ msgstr ""
579
 
580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
581
  msgid "Display name publicly as"
582
  msgstr "Apparaître publiquement en tant que"
583
 
584
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
585
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
586
  msgid "Contact Info"
587
  msgstr "Infos de Contact"
588
 
589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
590
+ msgid "(required)"
591
+ msgstr "(requis)"
592
+
593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
595
  msgid "About Yourself"
596
  msgstr "À Propos de Vous"
597
 
598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
602
  msgid "Repeat Password"
603
  msgstr "Répéter le Mot de Passe"
604
 
605
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
606
  msgid "Update"
607
  msgstr "Mettre à Jour"
608
 
609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
610
+ #, fuzzy
611
+ msgid "You are currently logged in as"
612
  msgstr "Vous êtes actuellement connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
613
 
614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
615
  msgid "Log out of this account"
616
  msgstr "Se déconnecter de ce compte"
617
 
618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
619
+ #, fuzzy
620
+ msgid "Log out"
621
  msgstr "Déconnexion &raquo;"
622
 
623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
624
+ #, fuzzy
625
+ msgid "You have successfully logged in as"
626
  msgstr "Vous vous êtes connecté en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
627
 
628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
629
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
630
+ msgstr ""
631
+
632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
634
+ msgid "here"
635
+ msgstr ""
636
+
637
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
639
+ msgid "ERROR:"
640
+ msgstr ""
641
+
642
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
643
+ msgid "The username field is empty"
644
+ msgstr ""
645
+
646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
650
  msgid "Password"
651
  msgstr "Mot de Passe"
652
 
653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
654
  msgid "Log in"
655
  msgstr "Connexion"
656
 
657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
658
  msgid "Remember me"
659
  msgstr "Se souvenir de moi"
660
 
661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
662
  msgid "Lost password?"
663
  msgstr "Mot de passe oublié ?"
664
 
665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
668
+ msgid "ERROR"
669
+ msgstr ""
670
+
671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
672
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
673
+ msgstr ""
674
+
675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
677
+ msgid "A password reset email has been sent to "
678
+ msgstr ""
679
+
680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
682
+ msgid "Following the link sent in the email address will reset the password."
683
+ msgstr ""
684
+
685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
686
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
687
+ msgid "Someone requested that the password be reset for the following account: "
688
+ msgstr ""
689
+
690
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
691
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
692
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
693
+ msgstr ""
694
+
695
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
697
+ msgid "To reset your password, visit the following link:"
698
+ msgstr ""
699
+
700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
702
+ msgid "Password Reset Feature from"
703
+ msgstr ""
704
+
705
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
706
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
707
+ #, fuzzy
708
+ msgid "There was an error while trying to send the activation link to "
709
+ msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
710
+
711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
712
+ #, fuzzy
713
+ msgid "The email address entered wasn't found in the database!"
714
+ msgstr "L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
715
+
716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
717
+ msgid "Please check that you entered the correct email address."
718
+ msgstr ""
719
+
720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
721
+ msgid "The username entered wasn't found in the database!"
722
+ msgstr ""
723
+
724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
725
+ msgid "Please check that you entered the correct username."
726
+ msgstr ""
727
+
728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
729
+ #, fuzzy
730
+ msgid "Your password has been successfully changed!"
731
+ msgstr "Les modifications ont bien été sauvegardées."
732
+
733
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
734
+ msgid "You have successfully reset your password to:"
735
+ msgstr ""
736
+
737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
738
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
739
+ #, fuzzy
740
+ msgid "Password Successfully Reset for"
741
+ msgstr "\" a bien été supprimée."
742
+
743
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
745
+ msgid "from"
746
+ msgstr ""
747
+
748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
749
+ msgid "has requested a password change via the password reset feature."
750
+ msgstr ""
751
+
752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
753
+ msgid "His/her new password is:"
754
+ msgstr ""
755
+
756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
758
+ msgid "The entered passwords don't match!"
759
+ msgstr "Les mots de passe ne correspondent pas !"
760
+
761
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
763
+ #, fuzzy
764
+ msgid "Reset Password"
765
+ msgstr "Répéter le Mot de Passe"
766
+
767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
768
+ msgid "Invalid key!"
769
+ msgstr ""
770
+
771
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
772
+ #, fuzzy
773
+ msgid "Please enter your username or email address."
774
+ msgstr "Vous devez entrer une adresse de courriel valide."
775
+
776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
777
+ msgid "You will receive a link to create a new password via email."
778
+ msgstr ""
779
+
780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
781
+ #, fuzzy
782
+ msgid "Username or E-mail"
783
+ msgstr "Nom d'Utilisateur"
784
+
785
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
786
+ #, fuzzy
787
+ msgid "Get New Password"
788
+ msgstr "Nouveau Mot de Passe"
789
+
790
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
791
+ #, php-format
792
+ msgid ""
793
+ "To activate your user, please click the following link:\n"
794
+ "\n"
795
+ "%s\n"
796
+ "\n"
797
+ "After you activate, you will receive *another email* with your login.\n"
798
+ "\n"
799
+ msgstr ""
800
+
801
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
802
+ #, php-format
803
+ msgid "[%1$s] Activate %2$s"
804
+ msgstr ""
805
+
806
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
807
+ msgid "Invalid activation key!"
808
+ msgstr ""
809
+
810
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
811
+ msgid "The user is already active!"
812
+ msgstr ""
813
+
814
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
815
+ msgid "Could not create user!"
816
+ msgstr ""
817
+
818
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
819
+ #, fuzzy
820
+ msgid "That username is already activated!"
821
+ msgstr "Désolé, ce nom d'utilisateur existe déjà !"
822
+
823
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
824
+ #, fuzzy
825
+ msgid "The user was successfully activated."
826
+ msgstr "L'avatar a bien été supprimé."
827
+
828
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
829
+ #, fuzzy
830
+ msgid "There was an error while trying to activate the user."
831
+ msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
832
+
833
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
834
+ msgid "New subscriber on"
835
+ msgstr ""
836
+
837
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
838
+ msgid "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!"
839
+ msgstr ""
840
+
841
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
842
+ msgid "A new subscriber has (been) registered!"
843
+ msgstr ""
844
+
845
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
846
+ #, fuzzy
847
+ msgid "A new account has been created for you."
848
+ msgstr "Un compte utilisateur pour %1$s a été créé."
849
+
850
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
851
+ msgid "Welcome to"
852
+ msgstr ""
853
+
854
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
855
+ msgid "Your username is:"
856
+ msgstr ""
857
+
858
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
859
+ #, fuzzy
860
+ msgid "and password:"
861
+ msgstr "Mot de Passe"
862
+
863
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
864
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
865
+ msgstr ""
866
+
867
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
868
+ msgid "The user was NOT created!"
869
+ msgstr ""
870
+
871
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
872
  msgid "A username is required for registration."
873
  msgstr "Un nom d'utilisateur est requis pour l'enregistrement."
874
 
875
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
876
  msgid "Sorry, that username already exists!"
877
  msgstr "Désolé, ce nom d'utilisateur existe déjà !"
878
 
879
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
880
  msgid "You must enter a valid email address."
881
  msgstr "Vous devez entrer une adresse de courriel valide."
882
 
883
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
884
  msgid "Sorry, that email address is already used!"
885
  msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
886
 
887
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
888
  msgid "You didn't complete one of the password-fields!"
889
  msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
890
 
891
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
893
+ #, fuzzy
894
+ msgid "The account was NOT created!"
895
+ msgstr "Un compte utilisateur pour %1$s a été créé."
896
 
897
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
898
+ msgid "You must agree to the terms and conditions before registering!"
899
+ msgstr ""
900
+
901
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
902
+ msgid "(Several required fields were left uncompleted)"
903
+ msgstr ""
904
+
905
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
906
+ msgid "This username is already reserved to be used soon."
907
+ msgstr ""
908
+
909
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
910
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
911
+ msgid "Please try a different one!"
912
+ msgstr ""
913
+
914
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
915
+ #, fuzzy
916
+ msgid "This email address is already reserved to be used soon."
917
+ msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
918
 
919
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
920
+ msgid "You are logged in as"
921
+ msgstr ""
922
+
923
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
924
+ msgid "You don't need another account."
925
+ msgstr ""
926
+
927
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
928
+ #, fuzzy
929
+ msgid "Log out of this account."
930
+ msgstr "Se déconnecter de ce compte"
931
+
932
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
933
+ #, fuzzy
934
+ msgid "Logout"
935
  msgstr "Déconnexion &raquo;"
936
 
937
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
938
+ msgid "An email has been sent to "
939
+ msgstr ""
940
+
941
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
942
+ msgid "with information on how to activate his/her account"
943
+ msgstr ""
944
+
945
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
946
+ #, fuzzy
947
+ msgid "A user account has been created for"
948
  msgstr "Un compte utilisateur pour %1$s a été créé."
949
 
950
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
951
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
952
+ msgstr ""
953
+
954
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
955
+ msgid "An email has been sent to you with information on how to activate your account"
956
+ msgstr ""
957
+
958
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
959
+ #, fuzzy
960
+ msgid "Thank you for registering"
961
  msgstr "Merci de vous être enregistré, %1$s."
962
 
963
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
964
+ msgid "An error occured while trying to send the notification email."
965
+ msgstr ""
966
+
967
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
968
+ msgid "An email containing activation instructions was successfully sent."
969
+ msgstr ""
970
+
971
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
972
+ msgid "An email containing the username and password was successfully sent."
973
+ msgstr ""
974
+
975
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
976
  msgid "Users can register themselves or you can manually create users here."
977
  msgstr "Les utilisateurs peuvent s'enregistrer ou bien vous pouvez les créer manuellement ici."
978
 
979
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
980
  msgid "Users cannot currently register themselves, but you can manually create users here."
981
  msgstr "Les utilisateurs ne peuvent actuellement pas s'enregistrer eux-même, mais vous pouvez les créer manuellement ici."
982
 
983
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
984
  msgid "Only an administrator can add new users."
985
  msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
986
 
987
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
989
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
991
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
993
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
994
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
995
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
996
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
997
+ msgstr ""
998
+
999
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
1001
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
1002
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1003
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1005
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1006
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1007
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1008
+ msgid "This field is marked as required by the administrator"
1009
+ msgstr ""
1010
+
1011
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1012
+ msgid "Anti-Spam"
1013
+ msgstr ""
1014
+
1015
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1016
+ #, fuzzy
1017
+ msgid "Send these credentials via email."
1018
  msgstr " Envoyer ces données par courriel."
1019
 
1020
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1021
  msgid "Add User"
1022
  msgstr "Ajouter un Utilisateur"
1023
 
1024
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1025
  msgid "Register"
1026
  msgstr "Enregistrement"
1027
 
1028
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1029
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1030
+ msgstr ""
1031
+
1032
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1033
+ msgid "heading"
1034
+ msgstr ""
1035
+
1036
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1037
+ msgid "\" custom field."
1038
+ msgstr ""
1039
+
1040
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1041
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1042
+ msgstr ""
1043
+
1044
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1045
+ msgid "Drag"
1046
+ msgstr ""
1047
+
1048
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1049
+ msgid "Drop"
1050
+ msgstr ""
1051
+
1052
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1053
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1054
+ msgstr ""
1055
+
1056
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1057
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1058
+ #, fuzzy
1059
+ msgid "Title"
1060
+ msgstr "Blanc"
1061
+
1062
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1063
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1064
+ msgid "Type"
1065
+ msgstr ""
1066
+
1067
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1068
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1069
+ msgid "Meta-Key"
1070
+ msgstr ""
1071
+
1072
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1073
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1074
+ msgid "ID"
1075
+ msgstr ""
1076
+
1077
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1078
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1079
+ msgid "Req'd"
1080
+ msgstr ""
1081
+
1082
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1083
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1084
+ msgid "Add Option"
1085
+ msgstr ""
1086
+
1087
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1088
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1089
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1090
+ msgid "Edit"
1091
+ msgstr ""
1092
+
1093
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1094
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1095
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1096
+ #, fuzzy
1097
+ msgid "Delete"
1098
+ msgstr "Défaut"
1099
+
1100
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1101
+ msgid "Title:"
1102
+ msgstr ""
1103
+
1104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1105
+ msgid "The title of the item."
1106
+ msgstr ""
1107
+
1108
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1109
+ msgid "Meta-Key:"
1110
+ msgstr ""
1111
+
1112
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1113
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1114
+ msgstr ""
1115
+
1116
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1117
+ msgid "Option Type:"
1118
+ msgstr ""
1119
+
1120
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1121
+ msgid "Choose one of the supported option types."
1122
+ msgstr ""
1123
+
1124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1125
+ msgid "Description:"
1126
+ msgstr ""
1127
+
1128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1129
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1130
+ msgstr ""
1131
+
1132
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1133
+ msgid "You can only insert links using standard HTML syntax:"
1134
+ msgstr ""
1135
+
1136
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1137
+ msgid "address"
1138
+ msgstr ""
1139
+
1140
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1141
+ #, fuzzy
1142
+ msgid "name"
1143
+ msgstr "Nom"
1144
+
1145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1146
+ msgid "Options:"
1147
+ msgstr ""
1148
+
1149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1150
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1151
+ msgstr ""
1152
+
1153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1154
+ msgid "ID:"
1155
+ msgstr ""
1156
+
1157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1158
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1159
+ msgstr ""
1160
+
1161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1162
+ #, fuzzy
1163
+ msgid "Required:"
1164
+ msgstr "(requis)"
1165
+
1166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1167
+ msgid "Check this box to make this field required."
1168
+ msgstr ""
1169
+
1170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1171
+ msgid "Cancel"
1172
+ msgstr ""
1173
+
1174
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1175
+ msgid "Save"
1176
+ msgstr ""
1177
+
1178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1180
+ msgid "Register your version of Profile Builder Pro"
1181
+ msgstr ""
1182
+
1183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1184
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1185
+ msgstr ""
1186
+
1187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1188
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1189
+ msgstr ""
1190
+
1191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1192
+ msgid "Serial Number:"
1193
+ msgstr ""
1194
+
1195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1196
+ #, fuzzy
1197
+ msgid "The serial number was successfully validated!"
1198
+ msgstr "L'avatar a bien été supprimé."
1199
+
1200
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1201
+ msgid "The serial number couldn't be validated or isn't valid!"
1202
+ msgstr ""
1203
+
1204
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1205
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1206
+ msgstr ""
1207
+
1208
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1209
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1210
+ msgstr ""
1211
+
1212
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1213
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1214
+ msgstr ""
1215
+
1216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1217
+ msgid "You can find it in Profile Builder's menu."
1218
+ msgstr ""
1219
+
1220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1221
+ #, fuzzy
1222
+ msgid "You need to be logged in to view the userlisting!"
1223
+ msgstr "Vous devez être connecté(e) pour modifier votre profil."
1224
+
1225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1228
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1230
+ msgid "Search Users by All Fields"
1231
+ msgstr ""
1232
+
1233
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1234
+ msgid "Leave Blank and Press Search to List All Users"
1235
+ msgstr ""
1236
+
1237
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1238
+ msgid "Search"
1239
+ msgstr ""
1240
+
1241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1242
+ #, fuzzy
1243
+ msgid "First/Lastname"
1244
+ msgstr "Prénom"
1245
+
1246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1247
+ #, fuzzy
1248
+ msgid "Email"
1249
+ msgstr "Courriel"
1250
+
1251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1252
+ msgid "Sign-up Date"
1253
+ msgstr ""
1254
+
1255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1256
+ #, fuzzy
1257
+ msgid "Firstname"
1258
+ msgstr "Prénom"
1259
+
1260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1261
+ #, fuzzy
1262
+ msgid "Lastname"
1263
+ msgstr "Nom"
1264
+
1265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1266
+ #, fuzzy
1267
+ msgid "Display Name"
1268
+ msgstr "Prénom"
1269
+
1270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1271
+ msgid "Posts"
1272
+ msgstr ""
1273
+
1274
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1275
+ msgid "Click here to see more information about this user"
1276
+ msgstr ""
1277
+
1278
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1279
+ msgid "More..."
1280
+ msgstr ""
1281
+
1282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1283
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1284
+ #, fuzzy
1285
+ msgid "No uploaded attachment"
1286
+ msgstr "La pièce jointe \""
1287
+
1288
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1291
+ msgid "Click to see the current attachment"
1292
+ msgstr ""
1293
+
1294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1295
+ msgid "Click here to go back"
1296
+ msgstr ""
1297
+
1298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1299
+ #, fuzzy
1300
+ msgid "Back"
1301
+ msgstr "Noir"
1302
+
1303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1305
+ msgid "Current file"
1306
+ msgstr ""
1307
+
1308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1309
+ msgid "Avatar"
1310
+ msgstr ""
1311
+
1312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1313
+ msgid "No results found!"
1314
+ msgstr ""
1315
+
1316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1317
+ msgid "&laquo;&laquo; First"
1318
+ msgstr ""
1319
+
1320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1321
+ msgid "&laquo; Prev"
1322
+ msgstr ""
1323
+
1324
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1325
+ #, fuzzy
1326
+ msgid "Next &raquo; "
1327
+ msgstr "Déconnexion &raquo;"
1328
+
1329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1330
+ #, fuzzy
1331
+ msgid "Last &raquo;&raquo;"
1332
+ msgstr "Déconnexion &raquo;"
1333
+
1334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1335
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1336
+ msgstr ""
1337
+
1338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1340
+ msgid "Activate/Deactivate Addons"
1341
+ msgstr ""
1342
+
1343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1344
+ msgid "Name/Description"
1345
+ msgstr ""
1346
+
1347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1348
+ msgid "Status"
1349
+ msgstr ""
1350
+
1351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1354
+ msgid "User-Listing"
1355
+ msgstr ""
1356
+
1357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1360
+ msgid "Active"
1361
+ msgstr ""
1362
+
1363
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1366
+ msgid "Inactive"
1367
+ msgstr ""
1368
+
1369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1372
+ msgid "Custom Redirects"
1373
+ msgstr ""
1374
+
1375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1378
+ msgid "reCAPTCHA"
1379
+ msgstr ""
1380
+
1381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1382
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1383
+ msgstr ""
1384
+
1385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1386
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1387
+ msgstr ""
1388
+
1389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1390
+ msgid "These settings are applied to the front-end userlisting."
1391
+ msgstr ""
1392
+
1393
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1394
+ msgid "Number of Users/Page: "
1395
+ msgstr ""
1396
+
1397
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1398
+ msgid "Default Sorting Order: "
1399
+ msgstr ""
1400
+
1401
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1402
+ msgid "\"All-Userlisting\" Template"
1403
+ msgstr ""
1404
+
1405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1406
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1407
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1408
+ msgstr ""
1409
+
1410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1411
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1412
+ msgstr ""
1413
+
1414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1415
+ msgid "Avatar size: "
1416
+ msgstr ""
1417
+
1418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1419
+ msgid "Insert \"Sort By\" Field:"
1420
+ msgstr ""
1421
+
1422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1424
+ msgid "Insert \"User-Meta\" Field:"
1425
+ msgstr ""
1426
+
1427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1428
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1429
+ msgid "Insert Extra Functions:"
1430
+ msgstr ""
1431
+
1432
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1433
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1434
+ msgstr ""
1435
+
1436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1437
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1438
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1439
+ msgstr ""
1440
+
1441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1442
+ msgid "\"Single-Userlisting\" Template"
1443
+ msgstr ""
1444
+
1445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1446
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1447
+ msgstr ""
1448
+
1449
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1450
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1451
+ msgstr ""
1452
+
1453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1454
+ msgid "Redirects on custom page requests:"
1455
+ msgstr ""
1456
+
1457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1458
+ msgid "Action"
1459
+ msgstr ""
1460
+
1461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1463
+ msgid "Redirect"
1464
+ msgstr ""
1465
+
1466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1468
+ msgid "URL"
1469
+ msgstr ""
1470
+
1471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1472
+ msgid "After Registration:"
1473
+ msgstr ""
1474
+
1475
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1476
+ msgid "After Login:"
1477
+ msgstr ""
1478
+
1479
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1480
+ #, fuzzy
1481
+ msgid "Recover Password (*)"
1482
+ msgstr "Répéter le Mot de Passe"
1483
+
1484
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1485
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1486
+ msgstr ""
1487
+
1488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1489
+ msgid "Redirects on default WordPress page requests:"
1490
+ msgstr ""
1491
+
1492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1493
+ msgid "Requested WP Page"
1494
+ msgstr ""
1495
+
1496
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1497
+ msgid "Default WP Login Page(*)"
1498
+ msgstr ""
1499
+
1500
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1501
+ msgid "Default WP Logout Page(**)"
1502
+ msgstr ""
1503
+
1504
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1505
+ msgid "Default WP Register Page"
1506
+ msgstr ""
1507
+
1508
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1509
+ msgid "Default WP Dashboard (***)"
1510
+ msgstr ""
1511
+
1512
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1513
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1514
+ msgstr ""
1515
+
1516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1517
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1518
+ msgstr ""
1519
+
1520
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1521
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1522
+ msgstr ""
1523
+
1524
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1525
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1526
+ msgstr ""
1527
+
1528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1529
+ msgid "For this you must get a public and private key from Google:"
1530
+ msgstr ""
1531
+
1532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1533
+ msgid "Key"
1534
+ msgstr ""
1535
+
1536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1537
+ msgid "Code"
1538
+ msgstr ""
1539
+
1540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1541
+ msgid "Public Key:"
1542
+ msgstr ""
1543
+
1544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1545
+ msgid "Private Key:"
1546
+ msgstr ""
1547
+
1548
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1549
+ msgid "Could not open socket!"
1550
+ msgstr ""
1551
+
1552
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1554
+ msgid "To use reCAPTCHA you must get an API key from"
1555
+ msgstr ""
1556
+
1557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1558
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1559
+ msgstr ""
1560
+
1561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1562
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1563
+ msgstr ""
1564
+
1565
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1566
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1567
+ msgstr ""
1568
+
1569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1571
+ #, fuzzy
1572
+ msgid "You must give your option a title."
1573
+ msgstr "Vous devez être connecté(e) pour modifier votre profil."
1574
+
1575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1577
+ msgid "You have entered an invalid meta-key format!"
1578
+ msgstr ""
1579
+
1580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1582
+ #, fuzzy
1583
+ msgid "You must enter a valid meta-key."
1584
+ msgstr "Vous devez entrer une adresse de courriel valide."
1585
+
1586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1590
+ msgid "That meta-key is already in use."
1591
+ msgstr ""
1592
+
1593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1595
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1596
+ msgstr ""
1597
+
1598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1600
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1601
+ msgstr ""
1602
+
1603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1605
+ msgid "The textarea row value must be numeric."
1606
+ msgstr ""
1607
+
1608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1610
+ msgid "The maxlength attribute must be numeric."
1611
+ msgstr ""
1612
+
1613
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1615
+ msgid "The value must be between 20 and 200!"
1616
+ msgstr ""
1617
+
1618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1619
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1620
+ msgid "The width component of the entered value must be numeric!"
1621
+ msgstr ""
1622
+
1623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1625
+ msgid "The height component of the entered value must be numeric!"
1626
+ msgstr ""
1627
+
1628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1630
+ msgid "The width component of the entered value must be between 20 and 200!"
1631
+ msgstr ""
1632
+
1633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1635
+ msgid "The height component of the entered value must be between 20 and 200!"
1636
+ msgstr ""
1637
+
1638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1640
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1641
+ msgstr ""
1642
+
1643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1645
+ msgid "The entered avatar size must be numeric!"
1646
+ msgstr ""
1647
+
1648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1650
+ msgid "There was an error, please try again."
1651
+ msgstr ""
1652
+
1653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1662
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1663
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1664
+ msgstr ""
1665
+
1666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1670
+ msgid "max upload size"
1671
+ msgstr ""
1672
+
1673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1675
+ msgid "Are you sure you want to delete this attachment?"
1676
+ msgstr ""
1677
+
1678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1681
+ msgid "Click to delete the current attachment"
1682
+ msgstr ""
1683
+
1684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1685
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1686
+ msgstr ""
1687
+
1688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1690
+ msgid "Current avatar"
1691
+ msgstr ""
1692
+
1693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1695
+ msgid "No uploaded avatar"
1696
+ msgstr ""
1697
+
1698
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1700
+ msgid "Are you sure you want to delete this avatar?"
1701
+ msgstr ""
1702
+
1703
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1704
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1705
+ msgstr ""
1706
+
1707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1708
+ msgid "Click to see the current avatar"
1709
+ msgstr ""
1710
+
1711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1712
+ msgid "Click to delete the avatar"
1713
+ msgstr ""
1714
+
1715
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1716
+ msgid "The user-validation has failed - the avatar was not deleted!"
1717
+ msgstr ""
1718
+
1719
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1720
+ msgid "The user-validation has failed - the attachment was not deleted!"
1721
+ msgstr ""
1722
+
1723
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1724
+ msgid "Do you want to"
1725
+ msgstr ""
1726
+
1727
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1728
+ msgid "the current user?"
1729
+ msgstr ""
1730
+
1731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1733
+ msgid "Your account on"
1734
+ msgstr ""
1735
+
1736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1737
+ msgid "has been approved!"
1738
+ msgstr ""
1739
+
1740
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1741
+ msgid "An administrator has just approved your account on"
1742
+ msgstr ""
1743
+
1744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1745
+ msgid "has been unapproved!"
1746
+ msgstr ""
1747
+
1748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1749
+ msgid "An administrator has just unapproved your account on"
1750
+ msgstr ""
1751
+
1752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1754
+ msgid "Approve"
1755
+ msgstr ""
1756
+
1757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1759
+ msgid "Unapproved"
1760
+ msgstr ""
1761
+
1762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1763
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1764
+ msgid "Unapprove"
1765
+ msgstr ""
1766
+
1767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1769
+ msgid "Approved"
1770
+ msgstr ""
1771
+
1772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1773
+ msgid "unapprove"
1774
+ msgstr ""
1775
+
1776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1777
+ msgid "approve"
1778
+ msgstr ""
1779
+
1780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1781
+ msgid "Are you sure you want to"
1782
+ msgstr ""
1783
+
1784
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1785
+ msgid "this user?"
1786
+ msgstr ""
1787
+
1788
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1789
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1790
+ msgstr ""
1791
+
1792
+ #~ msgid "Plugin Layout"
1793
+ #~ msgstr "Apparence du Plugin"
1794
+
1795
+ #~ msgid "You didn't complete both password fields. <br/> The password was "
1796
+ #~ msgstr ""
1797
+ #~ "Vous n'avez pas renseigné les champs de mots de passe. <br/> Les mots de "
1798
+ #~ "passe étaient "
1799
+
1800
+ #~ msgid ""
1801
+ #~ "There was an error while trying to upload your avatar picture.<br/"
1802
+ #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
1803
+ #~ msgstr ""
1804
+ #~ "Une erreur est survenue durant le téléversement de l'image.<br/>Cause "
1805
+ #~ "possible: taille/type de fichier incorrect.<br/>L'avatar était "
1806
+
1807
+ #~ msgid ""
1808
+ #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
1809
+ #~ "need another account."
1810
+ #~ msgstr ""
1811
+ #~ "Vous êtes connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</"
1812
+ #~ "a>. Vous n'avez pas besoin de créer un autre compte."
translation/profilebuilder-hu_HU.mo CHANGED
Binary file
translation/profilebuilder-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2011-07-07 16:12+0200\n"
7
  "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
@@ -14,486 +14,1797 @@ msgstr ""
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Üdv.a Profile Buliderben!"
25
 
26
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr "testreszabhatod a weboldaladat egy új menü létrehozásával, amely minden felhasználónak biztosítja az adatai rugalmasabb szerkesztését."
29
 
30
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Az adminisztrátor jogú felhasználók testreszabhatják az alap mezőket, vagy újakat adhatnak hozzá"
33
 
34
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "Ennek elérése érdekében hozz létre egy új oldalt, és adj neki egy nevet (pl. Profil szerkesztése)"
37
 
38
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Most mindössze annyit kell tennie, hogy a következő rövidkódot beilleszti (az előző példában):"
41
 
42
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Az oldal közzététele és már mehet is!"
45
 
46
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
47
  msgid "You can use the following shortcodes:"
48
  msgstr "A következő rövidkódokat használhatod:"
49
 
50
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
51
  msgid "for a log-in form."
52
  msgstr "bejelentkezési űrlaphoz."
53
 
54
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
55
  msgid "to add a registration form."
56
  msgstr "regisztrációs űrlap hozzáadásához."
57
 
58
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "a felhasználóknak lehetőséget biztosít a személyes adataik eléréséhez (bejelentkezés szükséges)."
61
 
62
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
 
63
  msgid "Users with administrator rights have access to the following features:"
64
  msgstr "Az adminisztrátor jogú felhasználók ezeket a funkciókat is elérhetik:"
65
 
66
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
67
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
68
  msgstr "Saját stíluslap használata a jelenlegi témából, vagy a következő bővítménybe épített stíluslapok: szokásos, fehér, vagy fekete."
69
 
70
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
71
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
72
  msgstr "Válaszd ki, hogy az admin sáv megjelenjen-e egy adott felhasználói csoportnak amely regisztrált az oldalra. "
73
 
74
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
75
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
76
  msgstr "Válaszd ki, mely információs mezőket láthat/módosíthat a felhasználó. A rejtett mezők értéke változatlan marad."
77
 
78
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
79
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
80
  msgstr "Egyéni mezők hozzáadása a meglévőkhöz, amit a következők közül lehet kiválasztani: heading, text, textarea, select, checkbox, radio, and/or upload."
81
 
82
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
83
  msgid "add an avatar field."
84
  msgstr "Avatar mező hozzáadása."
85
 
86
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  msgid "NOTE:"
88
  msgstr "MEGJEGYZÉS:"
89
 
90
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
91
  msgid "this plugin only adds/removes fields in the front-end."
92
  msgstr "Ez a bővítmény csak hozzáad/eltávolít mezőket a felhasználó elől. "
93
 
94
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
95
  msgid "The default information-fields will still be visible(and thus modifiable)"
96
  msgstr "Az alap információs mezők továbbra is láthatóak (és módosíthatóak)"
97
 
98
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
99
  msgid "from the back-end, while custom fields will only be visible in the front-end."
100
  msgstr "Az egyedi mezők csak a felhasználók számára lesznek láthatók. "
101
 
102
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
104
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
105
- msgid "Plugin Layout"
106
- msgstr "Bővítény megjelenítés"
 
107
 
108
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
109
- msgid "Stylesheet used:"
 
110
  msgstr "Stíluslap használata:"
111
 
112
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
113
  msgid "Default"
114
  msgstr "Szokásos"
115
 
116
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
117
  msgid "White"
118
  msgstr "Fehér"
119
 
120
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
121
  msgid "Black"
122
  msgstr "Fekete"
123
 
124
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
125
  msgid "None"
126
  msgstr "Nincs"
127
 
128
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  msgid "Save Changes"
132
  msgstr "Módosítások mentése"
133
 
134
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
136
  msgid "Show/Hide the Admin Bar on Front End"
137
  msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
138
 
139
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
140
  msgid "User-group"
141
  msgstr "Felhasználói csoport"
142
 
143
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
144
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
145
  msgid "Visibility"
146
  msgstr "Láthatóság"
147
 
148
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
149
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
161
  msgid "Show"
162
  msgstr "Mutat"
163
 
164
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
165
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
177
  msgid "Hide"
178
  msgstr "Elrejt"
179
 
180
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
181
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
182
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
183
  msgid "Default Profile Fields"
184
  msgstr "Alap profil mezők"
185
 
186
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
187
  msgid "Input Field Name"
188
  msgstr "Beviteli mező neve"
189
 
190
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
 
191
  msgid "Name:"
192
  msgstr "Név:"
193
 
194
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
195
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
196
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
198
  msgid "Username"
199
  msgstr "Felhasználónév"
200
 
201
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
202
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
203
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
204
  msgid "First Name"
205
  msgstr "Keresztnév"
206
 
207
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
208
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
209
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
210
  msgid "Last Name"
211
  msgstr "Vezetéknév"
212
 
213
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
214
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
215
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
216
  msgid "Nickname"
217
  msgstr "Loginnév"
218
 
219
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
220
  msgid "Display name publicly as..."
221
  msgstr "A nevem publikus megjelenítése, mint"
222
 
223
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
224
  msgid "Contact Info:"
225
  msgstr "Kapcsolati adatok"
226
 
227
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
228
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
229
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
230
  msgid "E-mail"
231
  msgstr "E-mail"
232
 
233
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
234
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
235
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
236
  msgid "Website"
237
  msgstr "Weboldal"
238
 
239
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
240
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
241
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
242
  msgid "AIM"
243
  msgstr "AIM"
244
 
245
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
246
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
247
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
248
  msgid "Yahoo IM"
249
  msgstr "Yahoo IM"
250
 
251
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
252
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
253
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
254
  msgid "Jabber / Google Talk"
255
  msgstr "Jabber / Google Talk"
256
 
257
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
258
  msgid "About Yourself:"
259
  msgstr "Magadról:"
260
 
261
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
262
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
263
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
264
  msgid "Biographical Info"
265
  msgstr "Életrajzi információk"
266
 
267
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
268
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
269
  msgid "New Password"
270
  msgstr "Új jelszó"
271
 
272
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
273
  msgid "Basic Information"
274
  msgstr "Alapadatok"
275
 
276
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
277
  msgid "Show/Hide the Admin Bar on Front-end"
278
  msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
279
 
280
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
281
  msgid "Extra Profile Fields"
282
  msgstr "Extra profil mezők"
283
 
284
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
285
  msgid "Register Your Version"
286
  msgstr "Regisztráld a verziódat!"
287
 
288
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "You must be logged in to edit your profile."
290
  msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
291
 
292
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
293
  msgid "The avatar was successfully deleted."
294
  msgstr "Az avatar sikeresen törölve."
295
 
296
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
297
- msgid "The attachment \""
 
298
  msgstr "A csatolmány \""
299
 
300
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
301
- msgid "\" was successfully deleted."
 
302
  msgstr "\" sikeresen törölve."
303
 
304
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
305
  msgid "The changes have been successfully saved."
306
  msgstr "A változások sikeresen mentve."
307
 
308
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
309
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
310
  msgstr "Az email címmel, amit megadtál már egy másik felhasználó regisztrált. <br/> Az email cím"
311
 
312
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
313
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
318
  msgid "NOT"
319
  msgstr "NEM"
320
 
321
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
322
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
327
- msgid " updated along with the rest of the information."
 
 
328
  msgstr "lett a többi információval együtt frissítve."
329
 
330
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
331
- msgid "The email address you entered is invalid. <br/> The email address was "
 
332
  msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
333
 
334
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
335
- msgid "The passwords you entered do not match. <br/> The password was "
 
336
  msgstr "Az általad megadott jelszavak nem egyeznek <br/> A jelszó"
337
 
338
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
339
- msgid "You didn't complete both password fields. <br/> The password was "
340
- msgstr "Nem töltötted ki mindkét jelszó mezőt. <br/> A jelszó"
 
 
 
 
 
 
 
 
 
 
 
341
 
342
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
343
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
344
  msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
345
 
346
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
347
- msgid "<br/>Possible cause: the size was bigger than "
 
348
  msgstr "<br/>Lehetséges okok: A mérete nagyobb volt, mint"
349
 
350
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
351
- msgid "b.<br/>The listed attachements were "
 
352
  msgstr "b.<br/>A felsorolt csatolmányok"
353
 
354
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
355
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
356
- msgstr "Hiba történt az avatar kép feltöltésekor: <br/>Lehetséges okok: méret/helytelen fájltípus <br/> Az avatar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
359
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
360
  msgid "Name"
361
  msgstr "Név"
362
 
363
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
364
- msgid " Usernames cannot be changed."
 
365
  msgstr "A Felhasználónév nem változtatható."
366
 
367
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
368
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
371
- msgid "(required)"
372
- msgstr "(kötelező)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
 
374
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
375
  msgid "Display name publicly as"
376
  msgstr "Név megjelenítése publikusan, mint"
377
 
378
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
379
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
380
  msgid "Contact Info"
381
  msgstr "Kapcsolati információ"
382
 
383
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
384
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
385
  msgid "About Yourself"
386
  msgstr "Magadról"
387
 
388
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
389
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
390
  msgid "Repeat Password"
391
  msgstr "Jelszó, mégegyszer"
392
 
393
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
394
  msgid "Update"
395
  msgstr "Frissítés"
396
 
397
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
398
- #, php-format
399
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
400
  msgstr "Jelenleg be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
401
 
402
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
403
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
404
  msgid "Log out of this account"
405
  msgstr "Kijelentkezés ebből a fiókból"
406
 
407
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
408
- msgid "Log out &raquo;"
 
409
  msgstr "Kijelentkezés &raquo;"
410
 
411
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
412
- #, php-format
413
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
414
  msgstr "Sikeresen bejelentkeztél, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
415
 
416
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
417
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid "Password"
419
  msgstr "Jelszó"
420
 
421
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
422
  msgid "Log in"
423
  msgstr "Bejelentkezés"
424
 
425
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
426
  msgid "Remember me"
427
  msgstr "Emlékezz rám!"
428
 
429
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
430
  msgid "Lost password?"
431
  msgstr "Elvesztett jelszó?"
432
 
433
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "A username is required for registration."
435
  msgstr "Felhasználónév megadása kötelező a regisztrációhoz."
436
 
437
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
438
  msgid "Sorry, that username already exists!"
439
  msgstr "Bocs, de ez a felhasználónév foglalt!"
440
 
441
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
442
  msgid "You must enter a valid email address."
443
  msgstr "Valós email címet kell beírnod!"
444
 
445
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
446
  msgid "Sorry, that email address is already used!"
447
  msgstr "Bocs, de ez az email cím már használatban van!"
448
 
449
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
450
  msgid "You didn't complete one of the password-fields!"
451
  msgstr "Nem töltötted ki az egyik jelszó mezőt!"
452
 
453
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
454
- msgid "The entered passwords don't match!"
455
- msgstr "A beírt jelszavak nem egyeznek!"
 
 
456
 
457
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
458
- #, php-format
459
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
460
- msgstr "Be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Nincs szükséged másik fiókra. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
 
462
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
463
- msgid "Logout &raquo;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgstr "Kijelentkezés &raquo;"
465
 
466
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
467
- #, php-format
468
- msgid "A user account for %1$s has been created."
 
 
 
 
 
 
 
 
469
  msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
470
 
471
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
472
- #, php-format
473
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
474
  msgstr "Kösz a regisztrációt, %1$s!"
475
 
476
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Users can register themselves or you can manually create users here."
478
  msgstr "A felhasználók önmagukat tudják regisztrálni, vagy sajátkezűleg készíthetsz felhasználókat itt."
479
 
480
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
481
  msgid "Users cannot currently register themselves, but you can manually create users here."
482
  msgstr "A felhasználók jelenleg nem tudják magukat regisztrálni, de te tudsz itt létrehozni új felhasználót."
483
 
484
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
485
  msgid "Only an administrator can add new users."
486
  msgstr "Csak egy adminisztrátor tud felhasználót hozzáadni."
487
 
488
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
489
- msgid " Send these credentials via email."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
490
  msgstr "Hitelesítő adatok küldése emailben. "
491
 
492
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
493
  msgid "Add User"
494
  msgstr "Felhasználó hozzáadása"
495
 
496
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
497
  msgid "Register"
498
  msgstr "Regisztráció"
499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:31+0200\n"
7
  "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Üdv.a Profile Buliderben!"
25
 
26
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr "testreszabhatod a weboldaladat egy új menü létrehozásával, amely minden felhasználónak biztosítja az adatai rugalmasabb szerkesztését."
29
 
30
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Az adminisztrátor jogú felhasználók testreszabhatják az alap mezőket, vagy újakat adhatnak hozzá"
33
 
34
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "Ennek elérése érdekében hozz létre egy új oldalt, és adj neki egy nevet (pl. Profil szerkesztése)"
37
 
38
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Most mindössze annyit kell tennie, hogy a következő rövidkódot beilleszti (az előző példában):"
41
 
42
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Az oldal közzététele és már mehet is!"
45
 
46
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
47
  msgid "You can use the following shortcodes:"
48
  msgstr "A következő rövidkódokat használhatod:"
49
 
50
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
51
  msgid "for a log-in form."
52
  msgstr "bejelentkezési űrlaphoz."
53
 
54
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
55
  msgid "to add a registration form."
56
  msgstr "regisztrációs űrlap hozzáadásához."
57
 
58
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "a felhasználóknak lehetőséget biztosít a személyes adataik eléréséhez (bejelentkezés szükséges)."
61
 
62
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
63
+ #, fuzzy
64
+ msgid "to add a password recovery form."
65
+ msgstr "regisztrációs űrlap hozzáadásához."
66
+
67
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
68
  msgid "Users with administrator rights have access to the following features:"
69
  msgstr "Az adminisztrátor jogú felhasználók ezeket a funkciókat is elérhetik:"
70
 
71
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
72
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
73
  msgstr "Saját stíluslap használata a jelenlegi témából, vagy a következő bővítménybe épített stíluslapok: szokásos, fehér, vagy fekete."
74
 
75
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
76
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
77
  msgstr "Válaszd ki, hogy az admin sáv megjelenjen-e egy adott felhasználói csoportnak amely regisztrált az oldalra. "
78
 
79
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
80
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
81
  msgstr "Válaszd ki, mely információs mezőket láthat/módosíthat a felhasználó. A rejtett mezők értéke változatlan marad."
82
 
83
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
84
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
85
  msgstr "Egyéni mezők hozzáadása a meglévőkhöz, amit a következők közül lehet kiválasztani: heading, text, textarea, select, checkbox, radio, and/or upload."
86
 
87
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
88
  msgid "add an avatar field."
89
  msgstr "Avatar mező hozzáadása."
90
 
91
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
92
+ msgid "create custom redirects."
93
+ msgstr ""
94
+
95
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
96
+ msgid "front-end userlisting using the"
97
+ msgstr ""
98
+
99
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
100
+ msgid "shortcode."
101
+ msgstr ""
102
+
103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
106
  msgid "NOTE:"
107
  msgstr "MEGJEGYZÉS:"
108
 
109
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
110
  msgid "this plugin only adds/removes fields in the front-end."
111
  msgstr "Ez a bővítmény csak hozzáad/eltávolít mezőket a felhasználó elől. "
112
 
113
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
114
  msgid "The default information-fields will still be visible(and thus modifiable)"
115
  msgstr "Az alap információs mezők továbbra is láthatóak (és módosíthatóak)"
116
 
117
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
118
  msgid "from the back-end, while custom fields will only be visible in the front-end."
119
  msgstr "Az egyedi mezők csak a felhasználók számára lesznek láthatók. "
120
 
121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
125
+ msgid "General Settings"
126
+ msgstr ""
127
 
128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
129
+ #, fuzzy
130
+ msgid "Stylesheet Used on the Front-End:"
131
  msgstr "Stíluslap használata:"
132
 
133
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
134
  msgid "Default"
135
  msgstr "Szokásos"
136
 
137
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
138
  msgid "White"
139
  msgstr "Fehér"
140
 
141
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
142
  msgid "Black"
143
  msgstr "Fekete"
144
 
145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
146
  msgid "None"
147
  msgstr "Nincs"
148
 
149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
150
+ msgid "\"Email Confirmation\" Feature Activated:"
151
+ msgstr ""
152
+
153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
174
+ msgid "Yes"
175
+ msgstr ""
176
+
177
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
198
+ #, fuzzy
199
+ msgid "No"
200
+ msgstr "Nincs"
201
+
202
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
203
+ msgid "\"Admin Approval\" Feature Activated:"
204
+ msgstr ""
205
+
206
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
207
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
208
+ msgstr ""
209
+
210
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
211
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
212
+ msgstr ""
213
+
214
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
215
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
216
+ msgstr ""
217
+
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
226
  msgid "Save Changes"
227
  msgstr "Módosítások mentése"
228
 
229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
231
  msgid "Show/Hide the Admin Bar on Front End"
232
  msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
233
 
234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
235
  msgid "User-group"
236
  msgstr "Felhasználói csoport"
237
 
238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
239
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
240
  msgid "Visibility"
241
  msgstr "Láthatóság"
242
 
243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
256
  msgid "Show"
257
  msgstr "Mutat"
258
 
259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
272
  msgid "Hide"
273
  msgstr "Elrejt"
274
 
275
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
276
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
277
+ msgstr ""
278
+
279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
282
  msgid "Default Profile Fields"
283
  msgstr "Alap profil mezők"
284
 
285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
286
  msgid "Input Field Name"
287
  msgstr "Beviteli mező neve"
288
 
289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
290
+ #, fuzzy
291
+ msgid "Required"
292
+ msgstr "(kötelező)"
293
+
294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
295
  msgid "Name:"
296
  msgstr "Név:"
297
 
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
304
  msgid "Username"
305
  msgstr "Felhasználónév"
306
 
307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
310
  msgid "First Name"
311
  msgstr "Keresztnév"
312
 
313
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
314
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
316
  msgid "Last Name"
317
  msgstr "Vezetéknév"
318
 
319
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
322
  msgid "Nickname"
323
  msgstr "Loginnév"
324
 
325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
326
  msgid "Display name publicly as..."
327
  msgstr "A nevem publikus megjelenítése, mint"
328
 
329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
330
  msgid "Contact Info:"
331
  msgstr "Kapcsolati adatok"
332
 
333
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
337
  msgid "E-mail"
338
  msgstr "E-mail"
339
 
340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
341
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
344
  msgid "Website"
345
  msgstr "Weboldal"
346
 
347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
350
  msgid "AIM"
351
  msgstr "AIM"
352
 
353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
356
  msgid "Yahoo IM"
357
  msgstr "Yahoo IM"
358
 
359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
362
  msgid "Jabber / Google Talk"
363
  msgstr "Jabber / Google Talk"
364
 
365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
366
  msgid "About Yourself:"
367
  msgstr "Magadról:"
368
 
369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
373
  msgid "Biographical Info"
374
  msgstr "Életrajzi információk"
375
 
376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
378
  msgid "New Password"
379
  msgstr "Új jelszó"
380
 
381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
382
  msgid "Basic Information"
383
  msgstr "Alapadatok"
384
 
385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
386
  msgid "Show/Hide the Admin Bar on Front-end"
387
  msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
388
 
389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
392
  msgid "Extra Profile Fields"
393
  msgstr "Extra profil mezők"
394
 
395
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
396
+ msgid "Addons"
397
+ msgstr ""
398
+
399
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
400
  msgid "Register Your Version"
401
  msgstr "Regisztráld a verziódat!"
402
 
403
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
405
+ msgid "The information size you were trying to submit was larger than"
406
+ msgstr ""
407
+
408
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
410
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
411
+ msgstr ""
412
+
413
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
415
+ msgid "Since it was also larger than"
416
+ msgstr ""
417
+
418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
420
+ msgid "no additional information is available."
421
+ msgstr ""
422
+
423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
424
  msgid "You must be logged in to edit your profile."
425
  msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
426
 
427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
428
  msgid "The avatar was successfully deleted."
429
  msgstr "Az avatar sikeresen törölve."
430
 
431
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
432
+ #, fuzzy
433
+ msgid "The attachment"
434
  msgstr "A csatolmány \""
435
 
436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
437
+ #, fuzzy
438
+ msgid "was successfully deleted."
439
  msgstr "\" sikeresen törölve."
440
 
441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
442
  msgid "The changes have been successfully saved."
443
  msgstr "A változások sikeresen mentve."
444
 
445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
446
+ #, fuzzy
447
+ msgid "The email address you entered is already registered to a different user."
448
  msgstr "Az email címmel, amit megadtál már egy másik felhasználó regisztrált. <br/> Az email cím"
449
 
450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
451
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
452
+ msgid "The email address was"
453
+ msgstr ""
454
+
455
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
456
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
462
  msgid "NOT"
463
  msgstr "NEM"
464
 
465
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
472
+ #, fuzzy
473
+ msgid "updated along with the rest of the information."
474
  msgstr "lett a többi információval együtt frissítve."
475
 
476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
477
+ #, fuzzy
478
+ msgid "The email address you entered is invalid."
479
  msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
480
 
481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
482
+ #, fuzzy
483
+ msgid "The passwords you entered do not match."
484
  msgstr "Az általad megadott jelszavak nem egyeznek <br/> A jelszó"
485
 
486
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
487
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
488
+ #, fuzzy
489
+ msgid "The password was"
490
+ msgstr "Új jelszó"
491
+
492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
493
+ #, fuzzy
494
+ msgid "You didn't complete both password fields."
495
+ msgstr "Nem töltötted ki az egyik jelszó mezőt!"
496
+
497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
498
+ msgid "Your profile was NOT updated!"
499
+ msgstr ""
500
 
501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
502
+ #, fuzzy
503
+ msgid "There was an error while trying to upload the following attachments:"
504
  msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
505
 
506
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
507
+ #, fuzzy
508
+ msgid "Possible cause: the size was bigger than"
509
  msgstr "<br/>Lehetséges okok: A mérete nagyobb volt, mint"
510
 
511
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
512
+ #, fuzzy
513
+ msgid "The listed attachements were"
514
  msgstr "b.<br/>A felsorolt csatolmányok"
515
 
516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
517
+ #, fuzzy
518
+ msgid "There was an error while trying to upload your avatar picture."
519
+ msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
520
+
521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
522
+ msgid "Possible cause: size/incorrect file-type."
523
+ msgstr ""
524
+
525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
526
+ msgid "The avatar was"
527
+ msgstr ""
528
+
529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
530
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
531
+ #, fuzzy
532
+ msgid "There was an error while trying to upload the following attachment(s)"
533
+ msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
534
+
535
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
537
+ msgid "Only files with the following extension(s) can be uploaded:"
538
+ msgstr ""
539
+
540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
541
+ msgid "This file was"
542
+ msgstr ""
543
 
544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
546
  msgid "Name"
547
  msgstr "Név"
548
 
549
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
550
+ #, fuzzy
551
+ msgid "Usernames cannot be changed."
552
  msgstr "A Felhasználónév nem változtatható."
553
 
554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
560
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
564
+ msgid "This field is marked as required by the administrator."
565
+ msgstr ""
566
+
567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
574
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
577
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
578
+ msgstr ""
579
 
580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
581
  msgid "Display name publicly as"
582
  msgstr "Név megjelenítése publikusan, mint"
583
 
584
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
585
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
586
  msgid "Contact Info"
587
  msgstr "Kapcsolati információ"
588
 
589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
590
+ msgid "(required)"
591
+ msgstr "(kötelező)"
592
+
593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
595
  msgid "About Yourself"
596
  msgstr "Magadról"
597
 
598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
602
  msgid "Repeat Password"
603
  msgstr "Jelszó, mégegyszer"
604
 
605
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
606
  msgid "Update"
607
  msgstr "Frissítés"
608
 
609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
610
+ #, fuzzy
611
+ msgid "You are currently logged in as"
612
  msgstr "Jelenleg be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
613
 
614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
615
  msgid "Log out of this account"
616
  msgstr "Kijelentkezés ebből a fiókból"
617
 
618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
619
+ #, fuzzy
620
+ msgid "Log out"
621
  msgstr "Kijelentkezés &raquo;"
622
 
623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
624
+ #, fuzzy
625
+ msgid "You have successfully logged in as"
626
  msgstr "Sikeresen bejelentkeztél, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
627
 
628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
629
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
630
+ msgstr ""
631
+
632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
634
+ msgid "here"
635
+ msgstr ""
636
+
637
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
639
+ msgid "ERROR:"
640
+ msgstr ""
641
+
642
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
643
+ msgid "The username field is empty"
644
+ msgstr ""
645
+
646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
650
  msgid "Password"
651
  msgstr "Jelszó"
652
 
653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
654
  msgid "Log in"
655
  msgstr "Bejelentkezés"
656
 
657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
658
  msgid "Remember me"
659
  msgstr "Emlékezz rám!"
660
 
661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
662
  msgid "Lost password?"
663
  msgstr "Elvesztett jelszó?"
664
 
665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
668
+ msgid "ERROR"
669
+ msgstr ""
670
+
671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
672
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
673
+ msgstr ""
674
+
675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
677
+ msgid "A password reset email has been sent to "
678
+ msgstr ""
679
+
680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
682
+ msgid "Following the link sent in the email address will reset the password."
683
+ msgstr ""
684
+
685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
686
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
687
+ msgid "Someone requested that the password be reset for the following account: "
688
+ msgstr ""
689
+
690
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
691
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
692
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
693
+ msgstr ""
694
+
695
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
697
+ msgid "To reset your password, visit the following link:"
698
+ msgstr ""
699
+
700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
702
+ msgid "Password Reset Feature from"
703
+ msgstr ""
704
+
705
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
706
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
707
+ #, fuzzy
708
+ msgid "There was an error while trying to send the activation link to "
709
+ msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
710
+
711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
712
+ #, fuzzy
713
+ msgid "The email address entered wasn't found in the database!"
714
+ msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
715
+
716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
717
+ msgid "Please check that you entered the correct email address."
718
+ msgstr ""
719
+
720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
721
+ msgid "The username entered wasn't found in the database!"
722
+ msgstr ""
723
+
724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
725
+ msgid "Please check that you entered the correct username."
726
+ msgstr ""
727
+
728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
729
+ #, fuzzy
730
+ msgid "Your password has been successfully changed!"
731
+ msgstr "A változások sikeresen mentve."
732
+
733
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
734
+ msgid "You have successfully reset your password to:"
735
+ msgstr ""
736
+
737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
738
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
739
+ #, fuzzy
740
+ msgid "Password Successfully Reset for"
741
+ msgstr "\" sikeresen törölve."
742
+
743
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
745
+ msgid "from"
746
+ msgstr ""
747
+
748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
749
+ msgid "has requested a password change via the password reset feature."
750
+ msgstr ""
751
+
752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
753
+ msgid "His/her new password is:"
754
+ msgstr ""
755
+
756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
758
+ msgid "The entered passwords don't match!"
759
+ msgstr "A beírt jelszavak nem egyeznek!"
760
+
761
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
763
+ #, fuzzy
764
+ msgid "Reset Password"
765
+ msgstr "Jelszó, mégegyszer"
766
+
767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
768
+ msgid "Invalid key!"
769
+ msgstr ""
770
+
771
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
772
+ #, fuzzy
773
+ msgid "Please enter your username or email address."
774
+ msgstr "Valós email címet kell beírnod!"
775
+
776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
777
+ msgid "You will receive a link to create a new password via email."
778
+ msgstr ""
779
+
780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
781
+ #, fuzzy
782
+ msgid "Username or E-mail"
783
+ msgstr "Felhasználónév"
784
+
785
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
786
+ #, fuzzy
787
+ msgid "Get New Password"
788
+ msgstr "Új jelszó"
789
+
790
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
791
+ #, php-format
792
+ msgid ""
793
+ "To activate your user, please click the following link:\n"
794
+ "\n"
795
+ "%s\n"
796
+ "\n"
797
+ "After you activate, you will receive *another email* with your login.\n"
798
+ "\n"
799
+ msgstr ""
800
+
801
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
802
+ #, php-format
803
+ msgid "[%1$s] Activate %2$s"
804
+ msgstr ""
805
+
806
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
807
+ msgid "Invalid activation key!"
808
+ msgstr ""
809
+
810
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
811
+ msgid "The user is already active!"
812
+ msgstr ""
813
+
814
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
815
+ msgid "Could not create user!"
816
+ msgstr ""
817
+
818
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
819
+ #, fuzzy
820
+ msgid "That username is already activated!"
821
+ msgstr "Bocs, de ez a felhasználónév foglalt!"
822
+
823
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
824
+ #, fuzzy
825
+ msgid "The user was successfully activated."
826
+ msgstr "Az avatar sikeresen törölve."
827
+
828
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
829
+ #, fuzzy
830
+ msgid "There was an error while trying to activate the user."
831
+ msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
832
+
833
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
834
+ msgid "New subscriber on"
835
+ msgstr ""
836
+
837
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
838
+ msgid "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!"
839
+ msgstr ""
840
+
841
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
842
+ msgid "A new subscriber has (been) registered!"
843
+ msgstr ""
844
+
845
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
846
+ #, fuzzy
847
+ msgid "A new account has been created for you."
848
+ msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
849
+
850
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
851
+ msgid "Welcome to"
852
+ msgstr ""
853
+
854
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
855
+ msgid "Your username is:"
856
+ msgstr ""
857
+
858
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
859
+ #, fuzzy
860
+ msgid "and password:"
861
+ msgstr "Jelszó"
862
+
863
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
864
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
865
+ msgstr ""
866
+
867
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
868
+ msgid "The user was NOT created!"
869
+ msgstr ""
870
+
871
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
872
  msgid "A username is required for registration."
873
  msgstr "Felhasználónév megadása kötelező a regisztrációhoz."
874
 
875
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
876
  msgid "Sorry, that username already exists!"
877
  msgstr "Bocs, de ez a felhasználónév foglalt!"
878
 
879
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
880
  msgid "You must enter a valid email address."
881
  msgstr "Valós email címet kell beírnod!"
882
 
883
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
884
  msgid "Sorry, that email address is already used!"
885
  msgstr "Bocs, de ez az email cím már használatban van!"
886
 
887
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
888
  msgid "You didn't complete one of the password-fields!"
889
  msgstr "Nem töltötted ki az egyik jelszó mezőt!"
890
 
891
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
893
+ #, fuzzy
894
+ msgid "The account was NOT created!"
895
+ msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
896
 
897
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
898
+ msgid "You must agree to the terms and conditions before registering!"
899
+ msgstr ""
900
+
901
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
902
+ msgid "(Several required fields were left uncompleted)"
903
+ msgstr ""
904
+
905
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
906
+ msgid "This username is already reserved to be used soon."
907
+ msgstr ""
908
+
909
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
910
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
911
+ msgid "Please try a different one!"
912
+ msgstr ""
913
+
914
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
915
+ #, fuzzy
916
+ msgid "This email address is already reserved to be used soon."
917
+ msgstr "Bocs, de ez az email cím már használatban van!"
918
 
919
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
920
+ msgid "You are logged in as"
921
+ msgstr ""
922
+
923
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
924
+ msgid "You don't need another account."
925
+ msgstr ""
926
+
927
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
928
+ #, fuzzy
929
+ msgid "Log out of this account."
930
+ msgstr "Kijelentkezés ebből a fiókból"
931
+
932
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
933
+ #, fuzzy
934
+ msgid "Logout"
935
  msgstr "Kijelentkezés &raquo;"
936
 
937
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
938
+ msgid "An email has been sent to "
939
+ msgstr ""
940
+
941
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
942
+ msgid "with information on how to activate his/her account"
943
+ msgstr ""
944
+
945
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
946
+ #, fuzzy
947
+ msgid "A user account has been created for"
948
  msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
949
 
950
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
951
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
952
+ msgstr ""
953
+
954
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
955
+ msgid "An email has been sent to you with information on how to activate your account"
956
+ msgstr ""
957
+
958
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
959
+ #, fuzzy
960
+ msgid "Thank you for registering"
961
  msgstr "Kösz a regisztrációt, %1$s!"
962
 
963
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
964
+ msgid "An error occured while trying to send the notification email."
965
+ msgstr ""
966
+
967
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
968
+ msgid "An email containing activation instructions was successfully sent."
969
+ msgstr ""
970
+
971
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
972
+ msgid "An email containing the username and password was successfully sent."
973
+ msgstr ""
974
+
975
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
976
  msgid "Users can register themselves or you can manually create users here."
977
  msgstr "A felhasználók önmagukat tudják regisztrálni, vagy sajátkezűleg készíthetsz felhasználókat itt."
978
 
979
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
980
  msgid "Users cannot currently register themselves, but you can manually create users here."
981
  msgstr "A felhasználók jelenleg nem tudják magukat regisztrálni, de te tudsz itt létrehozni új felhasználót."
982
 
983
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
984
  msgid "Only an administrator can add new users."
985
  msgstr "Csak egy adminisztrátor tud felhasználót hozzáadni."
986
 
987
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
989
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
991
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
993
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
994
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
995
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
996
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
997
+ msgstr ""
998
+
999
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
1001
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
1002
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1003
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1005
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1006
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1007
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1008
+ msgid "This field is marked as required by the administrator"
1009
+ msgstr ""
1010
+
1011
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1012
+ msgid "Anti-Spam"
1013
+ msgstr ""
1014
+
1015
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1016
+ #, fuzzy
1017
+ msgid "Send these credentials via email."
1018
  msgstr "Hitelesítő adatok küldése emailben. "
1019
 
1020
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1021
  msgid "Add User"
1022
  msgstr "Felhasználó hozzáadása"
1023
 
1024
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1025
  msgid "Register"
1026
  msgstr "Regisztráció"
1027
 
1028
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1029
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1030
+ msgstr ""
1031
+
1032
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1033
+ msgid "heading"
1034
+ msgstr ""
1035
+
1036
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1037
+ msgid "\" custom field."
1038
+ msgstr ""
1039
+
1040
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1041
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1042
+ msgstr ""
1043
+
1044
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1045
+ msgid "Drag"
1046
+ msgstr ""
1047
+
1048
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1049
+ msgid "Drop"
1050
+ msgstr ""
1051
+
1052
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1053
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1054
+ msgstr ""
1055
+
1056
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1057
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1058
+ #, fuzzy
1059
+ msgid "Title"
1060
+ msgstr "Fehér"
1061
+
1062
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1063
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1064
+ msgid "Type"
1065
+ msgstr ""
1066
+
1067
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1068
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1069
+ msgid "Meta-Key"
1070
+ msgstr ""
1071
+
1072
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1073
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1074
+ msgid "ID"
1075
+ msgstr ""
1076
+
1077
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1078
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1079
+ msgid "Req'd"
1080
+ msgstr ""
1081
+
1082
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1083
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1084
+ msgid "Add Option"
1085
+ msgstr ""
1086
+
1087
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1088
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1089
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1090
+ msgid "Edit"
1091
+ msgstr ""
1092
+
1093
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1094
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1095
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1096
+ #, fuzzy
1097
+ msgid "Delete"
1098
+ msgstr "Szokásos"
1099
+
1100
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1101
+ msgid "Title:"
1102
+ msgstr ""
1103
+
1104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1105
+ msgid "The title of the item."
1106
+ msgstr ""
1107
+
1108
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1109
+ msgid "Meta-Key:"
1110
+ msgstr ""
1111
+
1112
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1113
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1114
+ msgstr ""
1115
+
1116
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1117
+ msgid "Option Type:"
1118
+ msgstr ""
1119
+
1120
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1121
+ msgid "Choose one of the supported option types."
1122
+ msgstr ""
1123
+
1124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1125
+ msgid "Description:"
1126
+ msgstr ""
1127
+
1128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1129
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1130
+ msgstr ""
1131
+
1132
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1133
+ msgid "You can only insert links using standard HTML syntax:"
1134
+ msgstr ""
1135
+
1136
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1137
+ msgid "address"
1138
+ msgstr ""
1139
+
1140
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1141
+ #, fuzzy
1142
+ msgid "name"
1143
+ msgstr "Név"
1144
+
1145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1146
+ msgid "Options:"
1147
+ msgstr ""
1148
+
1149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1150
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1151
+ msgstr ""
1152
+
1153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1154
+ msgid "ID:"
1155
+ msgstr ""
1156
+
1157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1158
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1159
+ msgstr ""
1160
+
1161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1162
+ #, fuzzy
1163
+ msgid "Required:"
1164
+ msgstr "(kötelező)"
1165
+
1166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1167
+ msgid "Check this box to make this field required."
1168
+ msgstr ""
1169
+
1170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1171
+ msgid "Cancel"
1172
+ msgstr ""
1173
+
1174
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1175
+ msgid "Save"
1176
+ msgstr ""
1177
+
1178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1180
+ msgid "Register your version of Profile Builder Pro"
1181
+ msgstr ""
1182
+
1183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1184
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1185
+ msgstr ""
1186
+
1187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1188
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1189
+ msgstr ""
1190
+
1191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1192
+ msgid "Serial Number:"
1193
+ msgstr ""
1194
+
1195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1196
+ #, fuzzy
1197
+ msgid "The serial number was successfully validated!"
1198
+ msgstr "Az avatar sikeresen törölve."
1199
+
1200
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1201
+ msgid "The serial number couldn't be validated or isn't valid!"
1202
+ msgstr ""
1203
+
1204
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1205
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1206
+ msgstr ""
1207
+
1208
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1209
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1210
+ msgstr ""
1211
+
1212
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1213
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1214
+ msgstr ""
1215
+
1216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1217
+ msgid "You can find it in Profile Builder's menu."
1218
+ msgstr ""
1219
+
1220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1221
+ #, fuzzy
1222
+ msgid "You need to be logged in to view the userlisting!"
1223
+ msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
1224
+
1225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1228
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1230
+ msgid "Search Users by All Fields"
1231
+ msgstr ""
1232
+
1233
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1234
+ msgid "Leave Blank and Press Search to List All Users"
1235
+ msgstr ""
1236
+
1237
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1238
+ msgid "Search"
1239
+ msgstr ""
1240
+
1241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1242
+ #, fuzzy
1243
+ msgid "First/Lastname"
1244
+ msgstr "Keresztnév"
1245
+
1246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1247
+ #, fuzzy
1248
+ msgid "Email"
1249
+ msgstr "E-mail"
1250
+
1251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1252
+ msgid "Sign-up Date"
1253
+ msgstr ""
1254
+
1255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1256
+ #, fuzzy
1257
+ msgid "Firstname"
1258
+ msgstr "Keresztnév"
1259
+
1260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1261
+ #, fuzzy
1262
+ msgid "Lastname"
1263
+ msgstr "Vezetéknév"
1264
+
1265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1266
+ #, fuzzy
1267
+ msgid "Display Name"
1268
+ msgstr "Keresztnév"
1269
+
1270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1271
+ msgid "Posts"
1272
+ msgstr ""
1273
+
1274
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1275
+ msgid "Click here to see more information about this user"
1276
+ msgstr ""
1277
+
1278
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1279
+ msgid "More..."
1280
+ msgstr ""
1281
+
1282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1283
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1284
+ #, fuzzy
1285
+ msgid "No uploaded attachment"
1286
+ msgstr "A csatolmány \""
1287
+
1288
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1291
+ msgid "Click to see the current attachment"
1292
+ msgstr ""
1293
+
1294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1295
+ msgid "Click here to go back"
1296
+ msgstr ""
1297
+
1298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1299
+ #, fuzzy
1300
+ msgid "Back"
1301
+ msgstr "Fekete"
1302
+
1303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1305
+ msgid "Current file"
1306
+ msgstr ""
1307
+
1308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1309
+ msgid "Avatar"
1310
+ msgstr ""
1311
+
1312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1313
+ msgid "No results found!"
1314
+ msgstr ""
1315
+
1316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1317
+ msgid "&laquo;&laquo; First"
1318
+ msgstr ""
1319
+
1320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1321
+ msgid "&laquo; Prev"
1322
+ msgstr ""
1323
+
1324
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1325
+ #, fuzzy
1326
+ msgid "Next &raquo; "
1327
+ msgstr "Kijelentkezés &raquo;"
1328
+
1329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1330
+ #, fuzzy
1331
+ msgid "Last &raquo;&raquo;"
1332
+ msgstr "Kijelentkezés &raquo;"
1333
+
1334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1335
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1336
+ msgstr ""
1337
+
1338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1340
+ msgid "Activate/Deactivate Addons"
1341
+ msgstr ""
1342
+
1343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1344
+ msgid "Name/Description"
1345
+ msgstr ""
1346
+
1347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1348
+ msgid "Status"
1349
+ msgstr ""
1350
+
1351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1354
+ msgid "User-Listing"
1355
+ msgstr ""
1356
+
1357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1360
+ msgid "Active"
1361
+ msgstr ""
1362
+
1363
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1366
+ msgid "Inactive"
1367
+ msgstr ""
1368
+
1369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1372
+ msgid "Custom Redirects"
1373
+ msgstr ""
1374
+
1375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1378
+ msgid "reCAPTCHA"
1379
+ msgstr ""
1380
+
1381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1382
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1383
+ msgstr ""
1384
+
1385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1386
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1387
+ msgstr ""
1388
+
1389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1390
+ msgid "These settings are applied to the front-end userlisting."
1391
+ msgstr ""
1392
+
1393
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1394
+ msgid "Number of Users/Page: "
1395
+ msgstr ""
1396
+
1397
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1398
+ msgid "Default Sorting Order: "
1399
+ msgstr ""
1400
+
1401
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1402
+ msgid "\"All-Userlisting\" Template"
1403
+ msgstr ""
1404
+
1405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1406
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1407
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1408
+ msgstr ""
1409
+
1410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1411
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1412
+ msgstr ""
1413
+
1414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1415
+ msgid "Avatar size: "
1416
+ msgstr ""
1417
+
1418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1419
+ msgid "Insert \"Sort By\" Field:"
1420
+ msgstr ""
1421
+
1422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1424
+ msgid "Insert \"User-Meta\" Field:"
1425
+ msgstr ""
1426
+
1427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1428
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1429
+ msgid "Insert Extra Functions:"
1430
+ msgstr ""
1431
+
1432
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1433
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1434
+ msgstr ""
1435
+
1436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1437
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1438
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1439
+ msgstr ""
1440
+
1441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1442
+ msgid "\"Single-Userlisting\" Template"
1443
+ msgstr ""
1444
+
1445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1446
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1447
+ msgstr ""
1448
+
1449
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1450
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1451
+ msgstr ""
1452
+
1453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1454
+ msgid "Redirects on custom page requests:"
1455
+ msgstr ""
1456
+
1457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1458
+ msgid "Action"
1459
+ msgstr ""
1460
+
1461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1463
+ msgid "Redirect"
1464
+ msgstr ""
1465
+
1466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1468
+ msgid "URL"
1469
+ msgstr ""
1470
+
1471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1472
+ msgid "After Registration:"
1473
+ msgstr ""
1474
+
1475
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1476
+ msgid "After Login:"
1477
+ msgstr ""
1478
+
1479
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1480
+ #, fuzzy
1481
+ msgid "Recover Password (*)"
1482
+ msgstr "Jelszó, mégegyszer"
1483
+
1484
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1485
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1486
+ msgstr ""
1487
+
1488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1489
+ msgid "Redirects on default WordPress page requests:"
1490
+ msgstr ""
1491
+
1492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1493
+ msgid "Requested WP Page"
1494
+ msgstr ""
1495
+
1496
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1497
+ msgid "Default WP Login Page(*)"
1498
+ msgstr ""
1499
+
1500
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1501
+ msgid "Default WP Logout Page(**)"
1502
+ msgstr ""
1503
+
1504
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1505
+ msgid "Default WP Register Page"
1506
+ msgstr ""
1507
+
1508
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1509
+ msgid "Default WP Dashboard (***)"
1510
+ msgstr ""
1511
+
1512
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1513
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1514
+ msgstr ""
1515
+
1516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1517
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1518
+ msgstr ""
1519
+
1520
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1521
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1522
+ msgstr ""
1523
+
1524
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1525
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1526
+ msgstr ""
1527
+
1528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1529
+ msgid "For this you must get a public and private key from Google:"
1530
+ msgstr ""
1531
+
1532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1533
+ msgid "Key"
1534
+ msgstr ""
1535
+
1536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1537
+ msgid "Code"
1538
+ msgstr ""
1539
+
1540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1541
+ msgid "Public Key:"
1542
+ msgstr ""
1543
+
1544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1545
+ msgid "Private Key:"
1546
+ msgstr ""
1547
+
1548
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1549
+ msgid "Could not open socket!"
1550
+ msgstr ""
1551
+
1552
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1554
+ msgid "To use reCAPTCHA you must get an API key from"
1555
+ msgstr ""
1556
+
1557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1558
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1559
+ msgstr ""
1560
+
1561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1562
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1563
+ msgstr ""
1564
+
1565
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1566
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1567
+ msgstr ""
1568
+
1569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1571
+ #, fuzzy
1572
+ msgid "You must give your option a title."
1573
+ msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
1574
+
1575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1577
+ msgid "You have entered an invalid meta-key format!"
1578
+ msgstr ""
1579
+
1580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1582
+ #, fuzzy
1583
+ msgid "You must enter a valid meta-key."
1584
+ msgstr "Valós email címet kell beírnod!"
1585
+
1586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1590
+ msgid "That meta-key is already in use."
1591
+ msgstr ""
1592
+
1593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1595
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1596
+ msgstr ""
1597
+
1598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1600
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1601
+ msgstr ""
1602
+
1603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1605
+ msgid "The textarea row value must be numeric."
1606
+ msgstr ""
1607
+
1608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1610
+ msgid "The maxlength attribute must be numeric."
1611
+ msgstr ""
1612
+
1613
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1615
+ msgid "The value must be between 20 and 200!"
1616
+ msgstr ""
1617
+
1618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1619
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1620
+ msgid "The width component of the entered value must be numeric!"
1621
+ msgstr ""
1622
+
1623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1625
+ msgid "The height component of the entered value must be numeric!"
1626
+ msgstr ""
1627
+
1628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1630
+ msgid "The width component of the entered value must be between 20 and 200!"
1631
+ msgstr ""
1632
+
1633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1635
+ msgid "The height component of the entered value must be between 20 and 200!"
1636
+ msgstr ""
1637
+
1638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1640
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1641
+ msgstr ""
1642
+
1643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1645
+ msgid "The entered avatar size must be numeric!"
1646
+ msgstr ""
1647
+
1648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1650
+ msgid "There was an error, please try again."
1651
+ msgstr ""
1652
+
1653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1662
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1663
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1664
+ msgstr ""
1665
+
1666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1670
+ msgid "max upload size"
1671
+ msgstr ""
1672
+
1673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1675
+ msgid "Are you sure you want to delete this attachment?"
1676
+ msgstr ""
1677
+
1678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1681
+ msgid "Click to delete the current attachment"
1682
+ msgstr ""
1683
+
1684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1685
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1686
+ msgstr ""
1687
+
1688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1690
+ msgid "Current avatar"
1691
+ msgstr ""
1692
+
1693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1695
+ msgid "No uploaded avatar"
1696
+ msgstr ""
1697
+
1698
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1700
+ msgid "Are you sure you want to delete this avatar?"
1701
+ msgstr ""
1702
+
1703
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1704
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1705
+ msgstr ""
1706
+
1707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1708
+ msgid "Click to see the current avatar"
1709
+ msgstr ""
1710
+
1711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1712
+ msgid "Click to delete the avatar"
1713
+ msgstr ""
1714
+
1715
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1716
+ msgid "The user-validation has failed - the avatar was not deleted!"
1717
+ msgstr ""
1718
+
1719
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1720
+ msgid "The user-validation has failed - the attachment was not deleted!"
1721
+ msgstr ""
1722
+
1723
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1724
+ msgid "Do you want to"
1725
+ msgstr ""
1726
+
1727
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1728
+ msgid "the current user?"
1729
+ msgstr ""
1730
+
1731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1733
+ msgid "Your account on"
1734
+ msgstr ""
1735
+
1736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1737
+ msgid "has been approved!"
1738
+ msgstr ""
1739
+
1740
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1741
+ msgid "An administrator has just approved your account on"
1742
+ msgstr ""
1743
+
1744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1745
+ msgid "has been unapproved!"
1746
+ msgstr ""
1747
+
1748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1749
+ msgid "An administrator has just unapproved your account on"
1750
+ msgstr ""
1751
+
1752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1754
+ msgid "Approve"
1755
+ msgstr ""
1756
+
1757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1759
+ msgid "Unapproved"
1760
+ msgstr ""
1761
+
1762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1763
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1764
+ msgid "Unapprove"
1765
+ msgstr ""
1766
+
1767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1769
+ msgid "Approved"
1770
+ msgstr ""
1771
+
1772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1773
+ msgid "unapprove"
1774
+ msgstr ""
1775
+
1776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1777
+ msgid "approve"
1778
+ msgstr ""
1779
+
1780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1781
+ msgid "Are you sure you want to"
1782
+ msgstr ""
1783
+
1784
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1785
+ msgid "this user?"
1786
+ msgstr ""
1787
+
1788
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1789
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1790
+ msgstr ""
1791
+
1792
+ #~ msgid "Plugin Layout"
1793
+ #~ msgstr "Bővítény megjelenítés"
1794
+
1795
+ #~ msgid "You didn't complete both password fields. <br/> The password was "
1796
+ #~ msgstr "Nem töltötted ki mindkét jelszó mezőt. <br/> A jelszó"
1797
+
1798
+ #~ msgid ""
1799
+ #~ "There was an error while trying to upload your avatar picture.<br/"
1800
+ #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
1801
+ #~ msgstr ""
1802
+ #~ "Hiba történt az avatar kép feltöltésekor: <br/>Lehetséges okok: méret/"
1803
+ #~ "helytelen fájltípus <br/> Az avatar"
1804
+
1805
+ #~ msgid ""
1806
+ #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
1807
+ #~ "need another account."
1808
+ #~ msgstr ""
1809
+ #~ "Be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Nincs "
1810
+ #~ "szükséged másik fiókra. "
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: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2011-09-04 09:49+0100\n"
7
- "Last-Translator: Gabriele <globalwebadvices@gmail.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,486 +14,1799 @@ msgstr ""
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Benvenuto su Profile Builder!"
25
 
26
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr "Consente di personalizzare il vostro sito con l'aggiunta di un front-end menu per tutti gli utenti, permettendo di modificare le proprie informazioni-utente in maniera più flessibile o per far registrare nuovi utenti."
29
 
30
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Inoltre, concede agli utenti con diritti di amministratore di personalizzare i campi base o di aggiungerne di nuovi."
33
 
34
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "Per ottenere ciò, basta creare una nuova pagina, e dare ad essa un nome intuitivo (ad esempio Modifica profilo)."
37
 
38
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Ora tutto quello che dovete fare è aggiungere il seguente shortcode (per l'esempio precedente):"
41
 
42
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Pubblica la tua pagina e sei è pronto a partire!"
45
 
46
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
47
  msgid "You can use the following shortcodes:"
48
  msgstr "È possibile utilizzare i seguenti codici brevi:"
49
 
50
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
51
  msgid "for a log-in form."
52
  msgstr "per form del login."
53
 
54
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
55
  msgid "to add a registration form."
56
  msgstr "per inserire un form di registrazione."
57
 
58
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "per concedere agli utenti un accesso front-end ai propri dati personali (l'utente deve essere loggato)."
61
 
62
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
 
63
  msgid "Users with administrator rights have access to the following features:"
64
  msgstr "Gli utenti con diritti di amministratore ha accesso alle seguenti funzionalità:"
65
 
66
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
67
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
68
  msgstr "aggiungere un foglio di stile personalizzato / ereditano i valori dal tema corrente oppure utilizzare una delle seguenti opzioni incorporate in questo plugin: di default, bianco o nero."
69
 
70
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
71
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
72
  msgstr "scegliere se visualizzare o meno la barra di amministrazione di front-end per uno specifico gruppo di utenti registrati al sito."
73
 
74
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
75
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
76
  msgstr "selezionare le informazioni sul campo utenti che si possono vedere / modificare. I valori dei campi nascosti 'non vengono modificati."
77
 
78
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
79
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
80
  msgstr "aggiungere campi personalizzati a quelli esistenti, con diversi tipi tra cui scegliere: voce, testo, textarea, select, checkbox, radio e / o upload."
81
 
82
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
83
  msgid "add an avatar field."
84
  msgstr "aggiungi un campo per l'avatar."
85
 
86
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  msgid "NOTE:"
88
  msgstr "NOTA:"
89
 
90
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
91
  msgid "this plugin only adds/removes fields in the front-end."
92
  msgstr "Questo plugin aggiunge / rimuove i campi del front-end."
93
 
94
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
95
  msgid "The default information-fields will still be visible(and thus modifiable)"
96
  msgstr "Il valore predefinito di campi di informazione saranno ancora visibili (e quindi modificabili)"
97
 
98
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
99
  msgid "from the back-end, while custom fields will only be visible in the front-end."
100
  msgstr "dal back-end, mentre i campi personalizzati saranno visibili solo nel front-end."
101
 
102
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
104
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
105
- msgid "Plugin Layout"
106
- msgstr "Plugin Layout"
 
107
 
108
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
109
- msgid "Stylesheet used:"
 
110
  msgstr "Stylesheet usato:"
111
 
112
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
113
  msgid "Default"
114
  msgstr "Default"
115
 
116
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
117
  msgid "White"
118
  msgstr "Bianco"
119
 
120
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
121
  msgid "Black"
122
  msgstr "Nero"
123
 
124
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
125
  msgid "None"
126
  msgstr "Nessuno"
127
 
128
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  msgid "Save Changes"
132
  msgstr "Salva modifiche"
133
 
134
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
136
  msgid "Show/Hide the Admin Bar on Front End"
137
  msgstr "Mostra / Nascondi la barra di amministrazione di Front End"
138
 
139
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
140
  msgid "User-group"
141
  msgstr "Gruppi di utenti"
142
 
143
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
144
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
145
  msgid "Visibility"
146
  msgstr "Visibilità"
147
 
148
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
149
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
161
  msgid "Show"
162
  msgstr "Mostra"
163
 
164
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
165
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
177
  msgid "Hide"
178
  msgstr "Nascondi"
179
 
180
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
181
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
182
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
183
  msgid "Default Profile Fields"
184
  msgstr "Campi profilo di default"
185
 
186
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
187
  msgid "Input Field Name"
188
  msgstr "Inserisci campo nome"
189
 
190
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
 
191
  msgid "Name:"
192
  msgstr "Nome:"
193
 
194
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
195
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
196
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
198
  msgid "Username"
199
  msgstr "Username"
200
 
201
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
202
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
203
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
204
  msgid "First Name"
205
  msgstr "Nome"
206
 
207
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
208
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
209
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
210
  msgid "Last Name"
211
  msgstr "Cognome"
212
 
213
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
214
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
215
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
216
  msgid "Nickname"
217
  msgstr "Nickname"
218
 
219
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
220
  msgid "Display name publicly as..."
221
  msgstr "Nome visualizzato pubblicamente come ..."
222
 
223
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
224
  msgid "Contact Info:"
225
  msgstr "Informazioni di contatto:"
226
 
227
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
228
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
229
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
230
  msgid "E-mail"
231
  msgstr "E-mail:"
232
 
233
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
234
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
235
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
236
  msgid "Website"
237
  msgstr "Sito web:"
238
 
239
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
240
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
241
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
242
  msgid "AIM"
243
  msgstr "AIM"
244
 
245
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
246
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
247
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
248
  msgid "Yahoo IM"
249
  msgstr "Yahoo IM"
250
 
251
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
252
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
253
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
254
  msgid "Jabber / Google Talk"
255
  msgstr "Google Talk"
256
 
257
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
258
  msgid "About Yourself:"
259
  msgstr "Su di te:"
260
 
261
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
262
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
263
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
264
  msgid "Biographical Info"
265
  msgstr "Informazioni biografiche"
266
 
267
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
268
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
269
  msgid "New Password"
270
  msgstr "Nuova Password"
271
 
272
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
273
  msgid "Basic Information"
274
  msgstr "Informazioni di base"
275
 
276
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
277
  msgid "Show/Hide the Admin Bar on Front-end"
278
  msgstr "Mostra / Nascondi la barra di amministrazione di front-end"
279
 
280
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
281
  msgid "Extra Profile Fields"
282
  msgstr "Campi profilo extra"
283
 
284
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
285
  msgid "Register Your Version"
286
  msgstr "Registra la tua Versione"
287
 
288
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "You must be logged in to edit your profile."
290
  msgstr "Devi essere registrato per modificare il tuo profilo."
291
 
292
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
293
  msgid "The avatar was successfully deleted."
294
  msgstr "L'avatar è stato cancellato con successo."
295
 
296
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
297
- msgid "The attachment \""
 
298
  msgstr "L'allegato \""
299
 
300
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
301
- msgid "\" was successfully deleted."
 
302
  msgstr "\" è stato cancellato con successo."
303
 
304
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
305
  msgid "The changes have been successfully saved."
306
  msgstr "Le modifiche sono state salvate con successo."
307
 
308
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
309
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
310
  msgstr "L'indirizzo e-mail che hai inserito è già registrato per un altro utente. <br/> L'indirizzo e-mail è stato"
311
 
312
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
313
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
318
  msgid "NOT"
319
  msgstr "NON"
320
 
321
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
322
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
327
- msgid " updated along with the rest of the information."
 
 
328
  msgstr "aggiornato insieme al resto delle informazioni."
329
 
330
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
331
- msgid "The email address you entered is invalid. <br/> The email address was "
 
332
  msgstr "L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
333
 
334
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
335
- msgid "The passwords you entered do not match. <br/> The password was "
 
336
  msgstr "Le password che hai inserito non corrispondono. <br/> La password è stata"
337
 
338
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
339
- msgid "You didn't complete both password fields. <br/> The password was "
340
- msgstr "Non ha completato entrambi i campi password. <br/> La password è stata"
 
 
 
 
 
 
 
 
 
 
 
341
 
342
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
343
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
344
  msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
345
 
346
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
347
- msgid "<br/>Possible cause: the size was bigger than "
 
348
  msgstr "<br/> Possibile causa: la dimensione era troppo grande"
349
 
350
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
351
- msgid "b.<br/>The listed attachements were "
 
352
  msgstr "b.<br/> Gli allegati elencate sono stati"
353
 
354
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
355
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
356
- msgstr "Si è verificato un errore durante il tentativo di caricare la tua foto avatar <br/> Possibile causa:.. Dimensione / tipo di file non corretto <br/> L'avatar è stato"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
359
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
360
  msgid "Name"
361
  msgstr "Nome"
362
 
363
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
364
- msgid " Usernames cannot be changed."
 
365
  msgstr "I nomi utente non possono essere cambiati."
366
 
367
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
368
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
371
- msgid "(required)"
372
- msgstr "(richiesto)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
 
374
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
375
  msgid "Display name publicly as"
376
  msgstr "Nome visualizzato pubblicamente come"
377
 
378
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
379
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
380
  msgid "Contact Info"
381
  msgstr "Informazioni di contatto"
382
 
383
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
384
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
385
  msgid "About Yourself"
386
  msgstr "Su di te"
387
 
388
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
389
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
390
  msgid "Repeat Password"
391
  msgstr "Ripeti Password"
392
 
393
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
394
  msgid "Update"
395
  msgstr "Aggiorna"
396
 
397
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
398
- #, php-format
399
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
400
  msgstr "Sei attualmente connesso come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
401
 
402
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
403
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
404
  msgid "Log out of this account"
405
  msgstr "Esci da questo account"
406
 
407
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
408
- msgid "Log out &raquo;"
 
409
  msgstr "Log out &raquo;"
410
 
411
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
412
- #, php-format
413
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
414
  msgstr "Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
415
 
416
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
417
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid "Password"
419
  msgstr "Password"
420
 
421
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
422
  msgid "Log in"
423
  msgstr "Log in"
424
 
425
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
426
  msgid "Remember me"
427
  msgstr "Ricordati di me"
428
 
429
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
430
  msgid "Lost password?"
431
  msgstr "Password persa?"
432
 
433
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "A username is required for registration."
435
  msgstr "E' richiesto un nome utente per la registrazione."
436
 
437
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
438
  msgid "Sorry, that username already exists!"
439
  msgstr "Ci dispiace, questo nome utente esiste già!"
440
 
441
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
442
  msgid "You must enter a valid email address."
443
  msgstr "Devi inserire un indirizzo email valido."
444
 
445
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
446
  msgid "Sorry, that email address is already used!"
447
  msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
448
 
449
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
450
  msgid "You didn't complete one of the password-fields!"
451
  msgstr "Non ha completato uno dei campi password!"
452
 
453
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
454
- msgid "The entered passwords don't match!"
455
- msgstr "Le password inserite non corrispondono!"
 
 
456
 
457
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
458
- #, php-format
459
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
460
- msgstr "Sei stato registrato come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Non hai bisogno di un altro account."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
 
462
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
463
- msgid "Logout &raquo;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgstr "Logout &raquo;"
465
 
466
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
467
- #, php-format
468
- msgid "A user account for %1$s has been created."
 
 
 
 
 
 
 
 
469
  msgstr "Un account utente come %1$s è stato creato."
470
 
471
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
472
- #, php-format
473
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
474
  msgstr "Grazie per esserti registrato, %1$s."
475
 
476
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Users can register themselves or you can manually create users here."
478
  msgstr "Gli utenti possono registrarsi oppure è possibile creare manualmente gli utenti qui."
479
 
480
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
481
  msgid "Users cannot currently register themselves, but you can manually create users here."
482
  msgstr "Gli utenti non possono al momento registrarsi, ma è possibile creare manualmente gli utenti qui."
483
 
484
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
485
  msgid "Only an administrator can add new users."
486
  msgstr "Solo gli amministratori possono inserire nuovi utenti."
487
 
488
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
489
- msgid " Send these credentials via email."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
490
  msgstr "Invia le mie credenziali via email."
491
 
492
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
493
  msgid "Add User"
494
  msgstr "Inserisci utente"
495
 
496
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
497
  msgid "Register"
498
  msgstr "Registrati"
499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:31+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Benvenuto su Profile Builder!"
25
 
26
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr "Consente di personalizzare il vostro sito con l'aggiunta di un front-end menu per tutti gli utenti, permettendo di modificare le proprie informazioni-utente in maniera più flessibile o per far registrare nuovi utenti."
29
 
30
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Inoltre, concede agli utenti con diritti di amministratore di personalizzare i campi base o di aggiungerne di nuovi."
33
 
34
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "Per ottenere ciò, basta creare una nuova pagina, e dare ad essa un nome intuitivo (ad esempio Modifica profilo)."
37
 
38
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Ora tutto quello che dovete fare è aggiungere il seguente shortcode (per l'esempio precedente):"
41
 
42
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Pubblica la tua pagina e sei è pronto a partire!"
45
 
46
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
47
  msgid "You can use the following shortcodes:"
48
  msgstr "È possibile utilizzare i seguenti codici brevi:"
49
 
50
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
51
  msgid "for a log-in form."
52
  msgstr "per form del login."
53
 
54
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
55
  msgid "to add a registration form."
56
  msgstr "per inserire un form di registrazione."
57
 
58
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "per concedere agli utenti un accesso front-end ai propri dati personali (l'utente deve essere loggato)."
61
 
62
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
63
+ #, fuzzy
64
+ msgid "to add a password recovery form."
65
+ msgstr "per inserire un form di registrazione."
66
+
67
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
68
  msgid "Users with administrator rights have access to the following features:"
69
  msgstr "Gli utenti con diritti di amministratore ha accesso alle seguenti funzionalità:"
70
 
71
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
72
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
73
  msgstr "aggiungere un foglio di stile personalizzato / ereditano i valori dal tema corrente oppure utilizzare una delle seguenti opzioni incorporate in questo plugin: di default, bianco o nero."
74
 
75
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
76
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
77
  msgstr "scegliere se visualizzare o meno la barra di amministrazione di front-end per uno specifico gruppo di utenti registrati al sito."
78
 
79
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
80
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
81
  msgstr "selezionare le informazioni sul campo utenti che si possono vedere / modificare. I valori dei campi nascosti 'non vengono modificati."
82
 
83
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
84
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
85
  msgstr "aggiungere campi personalizzati a quelli esistenti, con diversi tipi tra cui scegliere: voce, testo, textarea, select, checkbox, radio e / o upload."
86
 
87
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
88
  msgid "add an avatar field."
89
  msgstr "aggiungi un campo per l'avatar."
90
 
91
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
92
+ msgid "create custom redirects."
93
+ msgstr ""
94
+
95
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
96
+ msgid "front-end userlisting using the"
97
+ msgstr ""
98
+
99
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
100
+ msgid "shortcode."
101
+ msgstr ""
102
+
103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
106
  msgid "NOTE:"
107
  msgstr "NOTA:"
108
 
109
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
110
  msgid "this plugin only adds/removes fields in the front-end."
111
  msgstr "Questo plugin aggiunge / rimuove i campi del front-end."
112
 
113
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
114
  msgid "The default information-fields will still be visible(and thus modifiable)"
115
  msgstr "Il valore predefinito di campi di informazione saranno ancora visibili (e quindi modificabili)"
116
 
117
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
118
  msgid "from the back-end, while custom fields will only be visible in the front-end."
119
  msgstr "dal back-end, mentre i campi personalizzati saranno visibili solo nel front-end."
120
 
121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
125
+ msgid "General Settings"
126
+ msgstr ""
127
 
128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
129
+ #, fuzzy
130
+ msgid "Stylesheet Used on the Front-End:"
131
  msgstr "Stylesheet usato:"
132
 
133
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
134
  msgid "Default"
135
  msgstr "Default"
136
 
137
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
138
  msgid "White"
139
  msgstr "Bianco"
140
 
141
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
142
  msgid "Black"
143
  msgstr "Nero"
144
 
145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
146
  msgid "None"
147
  msgstr "Nessuno"
148
 
149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
150
+ msgid "\"Email Confirmation\" Feature Activated:"
151
+ msgstr ""
152
+
153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
174
+ msgid "Yes"
175
+ msgstr ""
176
+
177
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
198
+ #, fuzzy
199
+ msgid "No"
200
+ msgstr "Nessuno"
201
+
202
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
203
+ msgid "\"Admin Approval\" Feature Activated:"
204
+ msgstr ""
205
+
206
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
207
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
208
+ msgstr ""
209
+
210
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
211
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
212
+ msgstr ""
213
+
214
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
215
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
216
+ msgstr ""
217
+
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
226
  msgid "Save Changes"
227
  msgstr "Salva modifiche"
228
 
229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
231
  msgid "Show/Hide the Admin Bar on Front End"
232
  msgstr "Mostra / Nascondi la barra di amministrazione di Front End"
233
 
234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
235
  msgid "User-group"
236
  msgstr "Gruppi di utenti"
237
 
238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
239
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
240
  msgid "Visibility"
241
  msgstr "Visibilità"
242
 
243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
256
  msgid "Show"
257
  msgstr "Mostra"
258
 
259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
272
  msgid "Hide"
273
  msgstr "Nascondi"
274
 
275
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
276
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
277
+ msgstr ""
278
+
279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
282
  msgid "Default Profile Fields"
283
  msgstr "Campi profilo di default"
284
 
285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
286
  msgid "Input Field Name"
287
  msgstr "Inserisci campo nome"
288
 
289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
290
+ #, fuzzy
291
+ msgid "Required"
292
+ msgstr "(richiesto)"
293
+
294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
295
  msgid "Name:"
296
  msgstr "Nome:"
297
 
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
304
  msgid "Username"
305
  msgstr "Username"
306
 
307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
310
  msgid "First Name"
311
  msgstr "Nome"
312
 
313
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
314
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
316
  msgid "Last Name"
317
  msgstr "Cognome"
318
 
319
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
322
  msgid "Nickname"
323
  msgstr "Nickname"
324
 
325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
326
  msgid "Display name publicly as..."
327
  msgstr "Nome visualizzato pubblicamente come ..."
328
 
329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
330
  msgid "Contact Info:"
331
  msgstr "Informazioni di contatto:"
332
 
333
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
337
  msgid "E-mail"
338
  msgstr "E-mail:"
339
 
340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
341
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
344
  msgid "Website"
345
  msgstr "Sito web:"
346
 
347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
350
  msgid "AIM"
351
  msgstr "AIM"
352
 
353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
356
  msgid "Yahoo IM"
357
  msgstr "Yahoo IM"
358
 
359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
362
  msgid "Jabber / Google Talk"
363
  msgstr "Google Talk"
364
 
365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
366
  msgid "About Yourself:"
367
  msgstr "Su di te:"
368
 
369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
373
  msgid "Biographical Info"
374
  msgstr "Informazioni biografiche"
375
 
376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
378
  msgid "New Password"
379
  msgstr "Nuova Password"
380
 
381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
382
  msgid "Basic Information"
383
  msgstr "Informazioni di base"
384
 
385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
386
  msgid "Show/Hide the Admin Bar on Front-end"
387
  msgstr "Mostra / Nascondi la barra di amministrazione di front-end"
388
 
389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
392
  msgid "Extra Profile Fields"
393
  msgstr "Campi profilo extra"
394
 
395
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
396
+ msgid "Addons"
397
+ msgstr ""
398
+
399
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
400
  msgid "Register Your Version"
401
  msgstr "Registra la tua Versione"
402
 
403
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
405
+ msgid "The information size you were trying to submit was larger than"
406
+ msgstr ""
407
+
408
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
410
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
411
+ msgstr ""
412
+
413
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
415
+ msgid "Since it was also larger than"
416
+ msgstr ""
417
+
418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
420
+ msgid "no additional information is available."
421
+ msgstr ""
422
+
423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
424
  msgid "You must be logged in to edit your profile."
425
  msgstr "Devi essere registrato per modificare il tuo profilo."
426
 
427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
428
  msgid "The avatar was successfully deleted."
429
  msgstr "L'avatar è stato cancellato con successo."
430
 
431
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
432
+ #, fuzzy
433
+ msgid "The attachment"
434
  msgstr "L'allegato \""
435
 
436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
437
+ #, fuzzy
438
+ msgid "was successfully deleted."
439
  msgstr "\" è stato cancellato con successo."
440
 
441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
442
  msgid "The changes have been successfully saved."
443
  msgstr "Le modifiche sono state salvate con successo."
444
 
445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
446
+ #, fuzzy
447
+ msgid "The email address you entered is already registered to a different user."
448
  msgstr "L'indirizzo e-mail che hai inserito è già registrato per un altro utente. <br/> L'indirizzo e-mail è stato"
449
 
450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
451
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
452
+ msgid "The email address was"
453
+ msgstr ""
454
+
455
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
456
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
462
  msgid "NOT"
463
  msgstr "NON"
464
 
465
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
472
+ #, fuzzy
473
+ msgid "updated along with the rest of the information."
474
  msgstr "aggiornato insieme al resto delle informazioni."
475
 
476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
477
+ #, fuzzy
478
+ msgid "The email address you entered is invalid."
479
  msgstr "L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
480
 
481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
482
+ #, fuzzy
483
+ msgid "The passwords you entered do not match."
484
  msgstr "Le password che hai inserito non corrispondono. <br/> La password è stata"
485
 
486
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
487
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
488
+ #, fuzzy
489
+ msgid "The password was"
490
+ msgstr "Nuova Password"
491
+
492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
493
+ #, fuzzy
494
+ msgid "You didn't complete both password fields."
495
+ msgstr "Non ha completato uno dei campi password!"
496
+
497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
498
+ msgid "Your profile was NOT updated!"
499
+ msgstr ""
500
 
501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
502
+ #, fuzzy
503
+ msgid "There was an error while trying to upload the following attachments:"
504
  msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
505
 
506
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
507
+ #, fuzzy
508
+ msgid "Possible cause: the size was bigger than"
509
  msgstr "<br/> Possibile causa: la dimensione era troppo grande"
510
 
511
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
512
+ #, fuzzy
513
+ msgid "The listed attachements were"
514
  msgstr "b.<br/> Gli allegati elencate sono stati"
515
 
516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
517
+ #, fuzzy
518
+ msgid "There was an error while trying to upload your avatar picture."
519
+ msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
520
+
521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
522
+ msgid "Possible cause: size/incorrect file-type."
523
+ msgstr ""
524
+
525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
526
+ msgid "The avatar was"
527
+ msgstr ""
528
+
529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
530
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
531
+ #, fuzzy
532
+ msgid "There was an error while trying to upload the following attachment(s)"
533
+ msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
534
+
535
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
537
+ msgid "Only files with the following extension(s) can be uploaded:"
538
+ msgstr ""
539
+
540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
541
+ msgid "This file was"
542
+ msgstr ""
543
 
544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
546
  msgid "Name"
547
  msgstr "Nome"
548
 
549
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
550
+ #, fuzzy
551
+ msgid "Usernames cannot be changed."
552
  msgstr "I nomi utente non possono essere cambiati."
553
 
554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
560
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
564
+ msgid "This field is marked as required by the administrator."
565
+ msgstr ""
566
+
567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
574
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
577
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
578
+ msgstr ""
579
 
580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
581
  msgid "Display name publicly as"
582
  msgstr "Nome visualizzato pubblicamente come"
583
 
584
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
585
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
586
  msgid "Contact Info"
587
  msgstr "Informazioni di contatto"
588
 
589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
590
+ msgid "(required)"
591
+ msgstr "(richiesto)"
592
+
593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
595
  msgid "About Yourself"
596
  msgstr "Su di te"
597
 
598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
602
  msgid "Repeat Password"
603
  msgstr "Ripeti Password"
604
 
605
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
606
  msgid "Update"
607
  msgstr "Aggiorna"
608
 
609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
610
+ #, fuzzy
611
+ msgid "You are currently logged in as"
612
  msgstr "Sei attualmente connesso come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
613
 
614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
615
  msgid "Log out of this account"
616
  msgstr "Esci da questo account"
617
 
618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
619
+ #, fuzzy
620
+ msgid "Log out"
621
  msgstr "Log out &raquo;"
622
 
623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
624
+ #, fuzzy
625
+ msgid "You have successfully logged in as"
626
  msgstr "Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
627
 
628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
629
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
630
+ msgstr ""
631
+
632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
634
+ msgid "here"
635
+ msgstr ""
636
+
637
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
639
+ msgid "ERROR:"
640
+ msgstr ""
641
+
642
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
643
+ msgid "The username field is empty"
644
+ msgstr ""
645
+
646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
650
  msgid "Password"
651
  msgstr "Password"
652
 
653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
654
  msgid "Log in"
655
  msgstr "Log in"
656
 
657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
658
  msgid "Remember me"
659
  msgstr "Ricordati di me"
660
 
661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
662
  msgid "Lost password?"
663
  msgstr "Password persa?"
664
 
665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
668
+ msgid "ERROR"
669
+ msgstr ""
670
+
671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
672
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
673
+ msgstr ""
674
+
675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
677
+ msgid "A password reset email has been sent to "
678
+ msgstr ""
679
+
680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
682
+ msgid "Following the link sent in the email address will reset the password."
683
+ msgstr ""
684
+
685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
686
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
687
+ msgid "Someone requested that the password be reset for the following account: "
688
+ msgstr ""
689
+
690
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
691
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
692
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
693
+ msgstr ""
694
+
695
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
697
+ msgid "To reset your password, visit the following link:"
698
+ msgstr ""
699
+
700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
702
+ msgid "Password Reset Feature from"
703
+ msgstr ""
704
+
705
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
706
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
707
+ #, fuzzy
708
+ msgid "There was an error while trying to send the activation link to "
709
+ msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
710
+
711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
712
+ #, fuzzy
713
+ msgid "The email address entered wasn't found in the database!"
714
+ msgstr "L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
715
+
716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
717
+ msgid "Please check that you entered the correct email address."
718
+ msgstr ""
719
+
720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
721
+ msgid "The username entered wasn't found in the database!"
722
+ msgstr ""
723
+
724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
725
+ msgid "Please check that you entered the correct username."
726
+ msgstr ""
727
+
728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
729
+ #, fuzzy
730
+ msgid "Your password has been successfully changed!"
731
+ msgstr "Le modifiche sono state salvate con successo."
732
+
733
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
734
+ msgid "You have successfully reset your password to:"
735
+ msgstr ""
736
+
737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
738
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
739
+ #, fuzzy
740
+ msgid "Password Successfully Reset for"
741
+ msgstr "\" è stato cancellato con successo."
742
+
743
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
745
+ msgid "from"
746
+ msgstr ""
747
+
748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
749
+ msgid "has requested a password change via the password reset feature."
750
+ msgstr ""
751
+
752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
753
+ msgid "His/her new password is:"
754
+ msgstr ""
755
+
756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
758
+ msgid "The entered passwords don't match!"
759
+ msgstr "Le password inserite non corrispondono!"
760
+
761
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
763
+ #, fuzzy
764
+ msgid "Reset Password"
765
+ msgstr "Ripeti Password"
766
+
767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
768
+ msgid "Invalid key!"
769
+ msgstr ""
770
+
771
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
772
+ #, fuzzy
773
+ msgid "Please enter your username or email address."
774
+ msgstr "Devi inserire un indirizzo email valido."
775
+
776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
777
+ msgid "You will receive a link to create a new password via email."
778
+ msgstr ""
779
+
780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
781
+ #, fuzzy
782
+ msgid "Username or E-mail"
783
+ msgstr "Username"
784
+
785
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
786
+ #, fuzzy
787
+ msgid "Get New Password"
788
+ msgstr "Nuova Password"
789
+
790
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
791
+ #, php-format
792
+ msgid ""
793
+ "To activate your user, please click the following link:\n"
794
+ "\n"
795
+ "%s\n"
796
+ "\n"
797
+ "After you activate, you will receive *another email* with your login.\n"
798
+ "\n"
799
+ msgstr ""
800
+
801
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
802
+ #, php-format
803
+ msgid "[%1$s] Activate %2$s"
804
+ msgstr ""
805
+
806
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
807
+ msgid "Invalid activation key!"
808
+ msgstr ""
809
+
810
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
811
+ msgid "The user is already active!"
812
+ msgstr ""
813
+
814
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
815
+ msgid "Could not create user!"
816
+ msgstr ""
817
+
818
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
819
+ #, fuzzy
820
+ msgid "That username is already activated!"
821
+ msgstr "Ci dispiace, questo nome utente esiste già!"
822
+
823
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
824
+ #, fuzzy
825
+ msgid "The user was successfully activated."
826
+ msgstr "L'avatar è stato cancellato con successo."
827
+
828
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
829
+ #, fuzzy
830
+ msgid "There was an error while trying to activate the user."
831
+ msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
832
+
833
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
834
+ msgid "New subscriber on"
835
+ msgstr ""
836
+
837
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
838
+ msgid "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!"
839
+ msgstr ""
840
+
841
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
842
+ msgid "A new subscriber has (been) registered!"
843
+ msgstr ""
844
+
845
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
846
+ #, fuzzy
847
+ msgid "A new account has been created for you."
848
+ msgstr "Un account utente come %1$s è stato creato."
849
+
850
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
851
+ msgid "Welcome to"
852
+ msgstr ""
853
+
854
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
855
+ msgid "Your username is:"
856
+ msgstr ""
857
+
858
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
859
+ #, fuzzy
860
+ msgid "and password:"
861
+ msgstr "Password"
862
+
863
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
864
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
865
+ msgstr ""
866
+
867
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
868
+ msgid "The user was NOT created!"
869
+ msgstr ""
870
+
871
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
872
  msgid "A username is required for registration."
873
  msgstr "E' richiesto un nome utente per la registrazione."
874
 
875
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
876
  msgid "Sorry, that username already exists!"
877
  msgstr "Ci dispiace, questo nome utente esiste già!"
878
 
879
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
880
  msgid "You must enter a valid email address."
881
  msgstr "Devi inserire un indirizzo email valido."
882
 
883
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
884
  msgid "Sorry, that email address is already used!"
885
  msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
886
 
887
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
888
  msgid "You didn't complete one of the password-fields!"
889
  msgstr "Non ha completato uno dei campi password!"
890
 
891
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
893
+ #, fuzzy
894
+ msgid "The account was NOT created!"
895
+ msgstr "Un account utente come %1$s è stato creato."
896
 
897
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
898
+ msgid "You must agree to the terms and conditions before registering!"
899
+ msgstr ""
900
+
901
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
902
+ msgid "(Several required fields were left uncompleted)"
903
+ msgstr ""
904
+
905
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
906
+ msgid "This username is already reserved to be used soon."
907
+ msgstr ""
908
+
909
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
910
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
911
+ msgid "Please try a different one!"
912
+ msgstr ""
913
+
914
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
915
+ #, fuzzy
916
+ msgid "This email address is already reserved to be used soon."
917
+ msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
918
 
919
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
920
+ msgid "You are logged in as"
921
+ msgstr ""
922
+
923
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
924
+ msgid "You don't need another account."
925
+ msgstr ""
926
+
927
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
928
+ #, fuzzy
929
+ msgid "Log out of this account."
930
+ msgstr "Esci da questo account"
931
+
932
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
933
+ #, fuzzy
934
+ msgid "Logout"
935
  msgstr "Logout &raquo;"
936
 
937
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
938
+ msgid "An email has been sent to "
939
+ msgstr ""
940
+
941
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
942
+ msgid "with information on how to activate his/her account"
943
+ msgstr ""
944
+
945
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
946
+ #, fuzzy
947
+ msgid "A user account has been created for"
948
  msgstr "Un account utente come %1$s è stato creato."
949
 
950
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
951
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
952
+ msgstr ""
953
+
954
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
955
+ msgid "An email has been sent to you with information on how to activate your account"
956
+ msgstr ""
957
+
958
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
959
+ #, fuzzy
960
+ msgid "Thank you for registering"
961
  msgstr "Grazie per esserti registrato, %1$s."
962
 
963
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
964
+ msgid "An error occured while trying to send the notification email."
965
+ msgstr ""
966
+
967
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
968
+ msgid "An email containing activation instructions was successfully sent."
969
+ msgstr ""
970
+
971
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
972
+ msgid "An email containing the username and password was successfully sent."
973
+ msgstr ""
974
+
975
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
976
  msgid "Users can register themselves or you can manually create users here."
977
  msgstr "Gli utenti possono registrarsi oppure è possibile creare manualmente gli utenti qui."
978
 
979
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
980
  msgid "Users cannot currently register themselves, but you can manually create users here."
981
  msgstr "Gli utenti non possono al momento registrarsi, ma è possibile creare manualmente gli utenti qui."
982
 
983
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
984
  msgid "Only an administrator can add new users."
985
  msgstr "Solo gli amministratori possono inserire nuovi utenti."
986
 
987
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
989
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
991
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
993
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
994
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
995
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
996
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
997
+ msgstr ""
998
+
999
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
1001
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
1002
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1003
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1005
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1006
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1007
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1008
+ msgid "This field is marked as required by the administrator"
1009
+ msgstr ""
1010
+
1011
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1012
+ msgid "Anti-Spam"
1013
+ msgstr ""
1014
+
1015
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1016
+ #, fuzzy
1017
+ msgid "Send these credentials via email."
1018
  msgstr "Invia le mie credenziali via email."
1019
 
1020
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1021
  msgid "Add User"
1022
  msgstr "Inserisci utente"
1023
 
1024
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1025
  msgid "Register"
1026
  msgstr "Registrati"
1027
 
1028
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1029
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1030
+ msgstr ""
1031
+
1032
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1033
+ msgid "heading"
1034
+ msgstr ""
1035
+
1036
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1037
+ msgid "\" custom field."
1038
+ msgstr ""
1039
+
1040
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1041
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1042
+ msgstr ""
1043
+
1044
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1045
+ msgid "Drag"
1046
+ msgstr ""
1047
+
1048
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1049
+ msgid "Drop"
1050
+ msgstr ""
1051
+
1052
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1053
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1054
+ msgstr ""
1055
+
1056
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1057
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1058
+ #, fuzzy
1059
+ msgid "Title"
1060
+ msgstr "Bianco"
1061
+
1062
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1063
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1064
+ msgid "Type"
1065
+ msgstr ""
1066
+
1067
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1068
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1069
+ msgid "Meta-Key"
1070
+ msgstr ""
1071
+
1072
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1073
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1074
+ msgid "ID"
1075
+ msgstr ""
1076
+
1077
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1078
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1079
+ msgid "Req'd"
1080
+ msgstr ""
1081
+
1082
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1083
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1084
+ msgid "Add Option"
1085
+ msgstr ""
1086
+
1087
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1088
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1089
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1090
+ msgid "Edit"
1091
+ msgstr ""
1092
+
1093
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1094
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1095
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1096
+ #, fuzzy
1097
+ msgid "Delete"
1098
+ msgstr "Default"
1099
+
1100
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1101
+ msgid "Title:"
1102
+ msgstr ""
1103
+
1104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1105
+ msgid "The title of the item."
1106
+ msgstr ""
1107
+
1108
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1109
+ msgid "Meta-Key:"
1110
+ msgstr ""
1111
+
1112
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1113
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1114
+ msgstr ""
1115
+
1116
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1117
+ msgid "Option Type:"
1118
+ msgstr ""
1119
+
1120
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1121
+ msgid "Choose one of the supported option types."
1122
+ msgstr ""
1123
+
1124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1125
+ msgid "Description:"
1126
+ msgstr ""
1127
+
1128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1129
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1130
+ msgstr ""
1131
+
1132
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1133
+ msgid "You can only insert links using standard HTML syntax:"
1134
+ msgstr ""
1135
+
1136
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1137
+ msgid "address"
1138
+ msgstr ""
1139
+
1140
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1141
+ #, fuzzy
1142
+ msgid "name"
1143
+ msgstr "Nome"
1144
+
1145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1146
+ msgid "Options:"
1147
+ msgstr ""
1148
+
1149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1150
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1151
+ msgstr ""
1152
+
1153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1154
+ msgid "ID:"
1155
+ msgstr ""
1156
+
1157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1158
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1159
+ msgstr ""
1160
+
1161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1162
+ #, fuzzy
1163
+ msgid "Required:"
1164
+ msgstr "(richiesto)"
1165
+
1166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1167
+ msgid "Check this box to make this field required."
1168
+ msgstr ""
1169
+
1170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1171
+ msgid "Cancel"
1172
+ msgstr ""
1173
+
1174
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1175
+ msgid "Save"
1176
+ msgstr ""
1177
+
1178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1180
+ msgid "Register your version of Profile Builder Pro"
1181
+ msgstr ""
1182
+
1183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1184
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1185
+ msgstr ""
1186
+
1187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1188
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1189
+ msgstr ""
1190
+
1191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1192
+ msgid "Serial Number:"
1193
+ msgstr ""
1194
+
1195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1196
+ #, fuzzy
1197
+ msgid "The serial number was successfully validated!"
1198
+ msgstr "L'avatar è stato cancellato con successo."
1199
+
1200
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1201
+ msgid "The serial number couldn't be validated or isn't valid!"
1202
+ msgstr ""
1203
+
1204
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1205
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1206
+ msgstr ""
1207
+
1208
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1209
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1210
+ msgstr ""
1211
+
1212
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1213
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1214
+ msgstr ""
1215
+
1216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1217
+ msgid "You can find it in Profile Builder's menu."
1218
+ msgstr ""
1219
+
1220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1221
+ #, fuzzy
1222
+ msgid "You need to be logged in to view the userlisting!"
1223
+ msgstr "Devi essere registrato per modificare il tuo profilo."
1224
+
1225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1228
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1230
+ msgid "Search Users by All Fields"
1231
+ msgstr ""
1232
+
1233
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1234
+ msgid "Leave Blank and Press Search to List All Users"
1235
+ msgstr ""
1236
+
1237
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1238
+ msgid "Search"
1239
+ msgstr ""
1240
+
1241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1242
+ #, fuzzy
1243
+ msgid "First/Lastname"
1244
+ msgstr "Nome"
1245
+
1246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1247
+ #, fuzzy
1248
+ msgid "Email"
1249
+ msgstr "E-mail:"
1250
+
1251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1252
+ msgid "Sign-up Date"
1253
+ msgstr ""
1254
+
1255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1256
+ #, fuzzy
1257
+ msgid "Firstname"
1258
+ msgstr "Nome"
1259
+
1260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1261
+ #, fuzzy
1262
+ msgid "Lastname"
1263
+ msgstr "Cognome"
1264
+
1265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1266
+ #, fuzzy
1267
+ msgid "Display Name"
1268
+ msgstr "Nome"
1269
+
1270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1271
+ msgid "Posts"
1272
+ msgstr ""
1273
+
1274
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1275
+ msgid "Click here to see more information about this user"
1276
+ msgstr ""
1277
+
1278
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1279
+ msgid "More..."
1280
+ msgstr ""
1281
+
1282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1283
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1284
+ #, fuzzy
1285
+ msgid "No uploaded attachment"
1286
+ msgstr "L'allegato \""
1287
+
1288
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1291
+ msgid "Click to see the current attachment"
1292
+ msgstr ""
1293
+
1294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1295
+ msgid "Click here to go back"
1296
+ msgstr ""
1297
+
1298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1299
+ #, fuzzy
1300
+ msgid "Back"
1301
+ msgstr "Nero"
1302
+
1303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1305
+ msgid "Current file"
1306
+ msgstr ""
1307
+
1308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1309
+ msgid "Avatar"
1310
+ msgstr ""
1311
+
1312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1313
+ msgid "No results found!"
1314
+ msgstr ""
1315
+
1316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1317
+ msgid "&laquo;&laquo; First"
1318
+ msgstr ""
1319
+
1320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1321
+ msgid "&laquo; Prev"
1322
+ msgstr ""
1323
+
1324
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1325
+ #, fuzzy
1326
+ msgid "Next &raquo; "
1327
+ msgstr "Logout &raquo;"
1328
+
1329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1330
+ #, fuzzy
1331
+ msgid "Last &raquo;&raquo;"
1332
+ msgstr "Logout &raquo;"
1333
+
1334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1335
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1336
+ msgstr ""
1337
+
1338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1340
+ msgid "Activate/Deactivate Addons"
1341
+ msgstr ""
1342
+
1343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1344
+ msgid "Name/Description"
1345
+ msgstr ""
1346
+
1347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1348
+ msgid "Status"
1349
+ msgstr ""
1350
+
1351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1354
+ msgid "User-Listing"
1355
+ msgstr ""
1356
+
1357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1360
+ msgid "Active"
1361
+ msgstr ""
1362
+
1363
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1366
+ msgid "Inactive"
1367
+ msgstr ""
1368
+
1369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1372
+ msgid "Custom Redirects"
1373
+ msgstr ""
1374
+
1375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1378
+ msgid "reCAPTCHA"
1379
+ msgstr ""
1380
+
1381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1382
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1383
+ msgstr ""
1384
+
1385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1386
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1387
+ msgstr ""
1388
+
1389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1390
+ msgid "These settings are applied to the front-end userlisting."
1391
+ msgstr ""
1392
+
1393
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1394
+ msgid "Number of Users/Page: "
1395
+ msgstr ""
1396
+
1397
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1398
+ msgid "Default Sorting Order: "
1399
+ msgstr ""
1400
+
1401
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1402
+ msgid "\"All-Userlisting\" Template"
1403
+ msgstr ""
1404
+
1405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1406
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1407
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1408
+ msgstr ""
1409
+
1410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1411
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1412
+ msgstr ""
1413
+
1414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1415
+ msgid "Avatar size: "
1416
+ msgstr ""
1417
+
1418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1419
+ msgid "Insert \"Sort By\" Field:"
1420
+ msgstr ""
1421
+
1422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1424
+ msgid "Insert \"User-Meta\" Field:"
1425
+ msgstr ""
1426
+
1427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1428
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1429
+ msgid "Insert Extra Functions:"
1430
+ msgstr ""
1431
+
1432
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1433
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1434
+ msgstr ""
1435
+
1436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1437
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1438
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1439
+ msgstr ""
1440
+
1441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1442
+ msgid "\"Single-Userlisting\" Template"
1443
+ msgstr ""
1444
+
1445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1446
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1447
+ msgstr ""
1448
+
1449
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1450
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1451
+ msgstr ""
1452
+
1453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1454
+ msgid "Redirects on custom page requests:"
1455
+ msgstr ""
1456
+
1457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1458
+ msgid "Action"
1459
+ msgstr ""
1460
+
1461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1463
+ msgid "Redirect"
1464
+ msgstr ""
1465
+
1466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1468
+ msgid "URL"
1469
+ msgstr ""
1470
+
1471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1472
+ msgid "After Registration:"
1473
+ msgstr ""
1474
+
1475
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1476
+ msgid "After Login:"
1477
+ msgstr ""
1478
+
1479
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1480
+ #, fuzzy
1481
+ msgid "Recover Password (*)"
1482
+ msgstr "Ripeti Password"
1483
+
1484
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1485
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1486
+ msgstr ""
1487
+
1488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1489
+ msgid "Redirects on default WordPress page requests:"
1490
+ msgstr ""
1491
+
1492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1493
+ msgid "Requested WP Page"
1494
+ msgstr ""
1495
+
1496
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1497
+ msgid "Default WP Login Page(*)"
1498
+ msgstr ""
1499
+
1500
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1501
+ msgid "Default WP Logout Page(**)"
1502
+ msgstr ""
1503
+
1504
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1505
+ msgid "Default WP Register Page"
1506
+ msgstr ""
1507
+
1508
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1509
+ msgid "Default WP Dashboard (***)"
1510
+ msgstr ""
1511
+
1512
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1513
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1514
+ msgstr ""
1515
+
1516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1517
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1518
+ msgstr ""
1519
+
1520
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1521
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1522
+ msgstr ""
1523
+
1524
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1525
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1526
+ msgstr ""
1527
+
1528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1529
+ msgid "For this you must get a public and private key from Google:"
1530
+ msgstr ""
1531
+
1532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1533
+ msgid "Key"
1534
+ msgstr ""
1535
+
1536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1537
+ msgid "Code"
1538
+ msgstr ""
1539
+
1540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1541
+ msgid "Public Key:"
1542
+ msgstr ""
1543
+
1544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1545
+ msgid "Private Key:"
1546
+ msgstr ""
1547
+
1548
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1549
+ msgid "Could not open socket!"
1550
+ msgstr ""
1551
+
1552
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1554
+ msgid "To use reCAPTCHA you must get an API key from"
1555
+ msgstr ""
1556
+
1557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1558
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1559
+ msgstr ""
1560
+
1561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1562
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1563
+ msgstr ""
1564
+
1565
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1566
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1567
+ msgstr ""
1568
+
1569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1571
+ #, fuzzy
1572
+ msgid "You must give your option a title."
1573
+ msgstr "Devi essere registrato per modificare il tuo profilo."
1574
+
1575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1577
+ msgid "You have entered an invalid meta-key format!"
1578
+ msgstr ""
1579
+
1580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1582
+ #, fuzzy
1583
+ msgid "You must enter a valid meta-key."
1584
+ msgstr "Devi inserire un indirizzo email valido."
1585
+
1586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1590
+ msgid "That meta-key is already in use."
1591
+ msgstr ""
1592
+
1593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1595
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1596
+ msgstr ""
1597
+
1598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1600
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1601
+ msgstr ""
1602
+
1603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1605
+ msgid "The textarea row value must be numeric."
1606
+ msgstr ""
1607
+
1608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1610
+ msgid "The maxlength attribute must be numeric."
1611
+ msgstr ""
1612
+
1613
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1615
+ msgid "The value must be between 20 and 200!"
1616
+ msgstr ""
1617
+
1618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1619
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1620
+ msgid "The width component of the entered value must be numeric!"
1621
+ msgstr ""
1622
+
1623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1625
+ msgid "The height component of the entered value must be numeric!"
1626
+ msgstr ""
1627
+
1628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1630
+ msgid "The width component of the entered value must be between 20 and 200!"
1631
+ msgstr ""
1632
+
1633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1635
+ msgid "The height component of the entered value must be between 20 and 200!"
1636
+ msgstr ""
1637
+
1638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1640
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1641
+ msgstr ""
1642
+
1643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1645
+ msgid "The entered avatar size must be numeric!"
1646
+ msgstr ""
1647
+
1648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1650
+ msgid "There was an error, please try again."
1651
+ msgstr ""
1652
+
1653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1662
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1663
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1664
+ msgstr ""
1665
+
1666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1670
+ msgid "max upload size"
1671
+ msgstr ""
1672
+
1673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1675
+ msgid "Are you sure you want to delete this attachment?"
1676
+ msgstr ""
1677
+
1678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1681
+ msgid "Click to delete the current attachment"
1682
+ msgstr ""
1683
+
1684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1685
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1686
+ msgstr ""
1687
+
1688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1690
+ msgid "Current avatar"
1691
+ msgstr ""
1692
+
1693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1695
+ msgid "No uploaded avatar"
1696
+ msgstr ""
1697
+
1698
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1700
+ msgid "Are you sure you want to delete this avatar?"
1701
+ msgstr ""
1702
+
1703
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1704
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1705
+ msgstr ""
1706
+
1707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1708
+ msgid "Click to see the current avatar"
1709
+ msgstr ""
1710
+
1711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1712
+ msgid "Click to delete the avatar"
1713
+ msgstr ""
1714
+
1715
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1716
+ msgid "The user-validation has failed - the avatar was not deleted!"
1717
+ msgstr ""
1718
+
1719
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1720
+ msgid "The user-validation has failed - the attachment was not deleted!"
1721
+ msgstr ""
1722
+
1723
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1724
+ msgid "Do you want to"
1725
+ msgstr ""
1726
+
1727
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1728
+ msgid "the current user?"
1729
+ msgstr ""
1730
+
1731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1733
+ msgid "Your account on"
1734
+ msgstr ""
1735
+
1736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1737
+ msgid "has been approved!"
1738
+ msgstr ""
1739
+
1740
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1741
+ msgid "An administrator has just approved your account on"
1742
+ msgstr ""
1743
+
1744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1745
+ msgid "has been unapproved!"
1746
+ msgstr ""
1747
+
1748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1749
+ msgid "An administrator has just unapproved your account on"
1750
+ msgstr ""
1751
+
1752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1754
+ msgid "Approve"
1755
+ msgstr ""
1756
+
1757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1759
+ msgid "Unapproved"
1760
+ msgstr ""
1761
+
1762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1763
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1764
+ msgid "Unapprove"
1765
+ msgstr ""
1766
+
1767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1769
+ msgid "Approved"
1770
+ msgstr ""
1771
+
1772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1773
+ msgid "unapprove"
1774
+ msgstr ""
1775
+
1776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1777
+ msgid "approve"
1778
+ msgstr ""
1779
+
1780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1781
+ msgid "Are you sure you want to"
1782
+ msgstr ""
1783
+
1784
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1785
+ msgid "this user?"
1786
+ msgstr ""
1787
+
1788
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1789
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1790
+ msgstr ""
1791
+
1792
+ #~ msgid "Plugin Layout"
1793
+ #~ msgstr "Plugin Layout"
1794
+
1795
+ #~ msgid "You didn't complete both password fields. <br/> The password was "
1796
+ #~ msgstr ""
1797
+ #~ "Non ha completato entrambi i campi password. <br/> La password è stata"
1798
+
1799
+ #~ msgid ""
1800
+ #~ "There was an error while trying to upload your avatar picture.<br/"
1801
+ #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
1802
+ #~ msgstr ""
1803
+ #~ "Si è verificato un errore durante il tentativo di caricare la tua foto "
1804
+ #~ "avatar <br/> Possibile causa:.. Dimensione / tipo di file non corretto "
1805
+ #~ "<br/> L'avatar è stato"
1806
+
1807
+ #~ msgid ""
1808
+ #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
1809
+ #~ "need another account."
1810
+ #~ msgstr ""
1811
+ #~ "Sei stato registrato come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Non "
1812
+ #~ "hai bisogno di un altro account."
translation/profilebuilder-nb_NO.mo CHANGED
Binary file
translation/profilebuilder-nb_NO.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2011-08-09 00:14+0100\n"
7
- "Last-Translator: Håvard Ulvin <haavard@ulvin.no>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,486 +14,1798 @@ msgstr ""
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Velkommen til Profile Builder"
25
 
26
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr "lar deg skreddersy dine nettsider ved å legge til en front-end meny for alle dine brukere, dette gir dem en mer fleksibel måte å endre sin brukerinformasjon eller for deg som administrator å registrere nye brukere."
29
 
30
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Lar også brukere med administratorrettigheter mulighet til å skreddersy grunnleggende felter eller legge til nye"
33
 
34
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "For å legge til denne funksjonen, opprett en ny side og gi den et fornuftig nacn f.eks (Rediger min profil)"
37
 
38
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Alt du trenger å gjøre nå er å legge til følgende kode f.eks:"
41
 
42
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Publiser din side og så er alt klart til bruk"
45
 
46
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
47
  msgid "You can use the following shortcodes:"
48
  msgstr "Du kan bruke følgende shortcodes:"
49
 
50
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
51
  msgid "for a log-in form."
52
  msgstr "for en innloggingsform."
53
 
54
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
55
  msgid "to add a registration form."
56
  msgstr "for å legge til en registreringsform"
57
 
58
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "for å gi tilgang til front-end aksess til brukerens personlige informasjon (krever at bruker er logget inn)"
61
 
62
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
 
63
  msgid "Users with administrator rights have access to the following features:"
64
  msgstr "Brukere med administrator rettigheter har tilgang til følgende:"
65
 
66
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
67
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
68
  msgstr "legg til en skreddersydd stylesheet fra din eksisterende theme eller bruk en av de allerede innebygde i denne pluginen: default, hvit, eller svart"
69
 
70
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
71
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
72
  msgstr "velg om du ønsker å vise administratormenyen på front-endgrensesnittet for utvalgte brukergrupper registrert på siden."
73
 
74
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
75
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
76
  msgstr "velg hvilke informasjonsfelter brukere kan se/endre. Skjulte felt forblir uendret"
77
 
78
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
79
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
80
  msgstr "legg til skreddersydde felter til de eksisterende, med forskjellige typer å velge mellom: heading, tekst, tekstfelt, valg, checkbox, radio, og/eller opplasting."
81
 
82
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
83
  msgid "add an avatar field."
84
  msgstr "legg til et bildefelt (avatar)."
85
 
86
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  msgid "NOTE:"
88
  msgstr "MERK:"
89
 
90
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
91
  msgid "this plugin only adds/removes fields in the front-end."
92
  msgstr "denne pluginen legger kun til/fjerner felter på front-end"
93
 
94
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
95
  msgid "The default information-fields will still be visible(and thus modifiable)"
96
  msgstr "Standard informasjonsfelter vil fortsatt bli synlige "
97
 
98
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
99
  msgid "from the back-end, while custom fields will only be visible in the front-end."
100
  msgstr "fra back-end, vil skreddersydde felter kun bli synlige på front-end"
101
 
102
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
104
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
105
- msgid "Plugin Layout"
106
- msgstr "Plugin layout"
 
107
 
108
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
109
- msgid "Stylesheet used:"
 
110
  msgstr "Styelsheet brukt:"
111
 
112
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
113
  msgid "Default"
114
  msgstr "Standard"
115
 
116
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
117
  msgid "White"
118
  msgstr "Hvit"
119
 
120
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
121
  msgid "Black"
122
  msgstr "Svart"
123
 
124
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
125
  msgid "None"
126
  msgstr "Ingen"
127
 
128
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  msgid "Save Changes"
132
  msgstr "Lagre endringer"
133
 
134
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
136
  msgid "Show/Hide the Admin Bar on Front End"
137
  msgstr "Vis/Skjul administratormeny på front-end"
138
 
139
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
140
  msgid "User-group"
141
  msgstr "Brukergruppe"
142
 
143
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
144
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
145
  msgid "Visibility"
146
  msgstr "Synlighet"
147
 
148
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
149
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
161
  msgid "Show"
162
  msgstr "Vis"
163
 
164
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
165
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
177
  msgid "Hide"
178
  msgstr "Skjul"
179
 
180
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
181
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
182
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
183
  msgid "Default Profile Fields"
184
  msgstr "Grunnleggende felter"
185
 
186
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
187
  msgid "Input Field Name"
188
  msgstr "Sett inn feltnavn"
189
 
190
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
 
191
  msgid "Name:"
192
  msgstr "Navn:"
193
 
194
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
195
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
196
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
198
  msgid "Username"
199
  msgstr "Brukernavn"
200
 
201
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
202
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
203
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
204
  msgid "First Name"
205
  msgstr "Fornavn"
206
 
207
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
208
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
209
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
210
  msgid "Last Name"
211
  msgstr "Etternavn"
212
 
213
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
214
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
215
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
216
  msgid "Nickname"
217
  msgstr "Kallenavn"
218
 
219
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
220
  msgid "Display name publicly as..."
221
  msgstr "Vis mitt navn offentlig som"
222
 
223
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
224
  msgid "Contact Info:"
225
  msgstr "Kontaktinformasjon"
226
 
227
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
228
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
229
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
230
  msgid "E-mail"
231
  msgstr "E-post"
232
 
233
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
234
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
235
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
236
  msgid "Website"
237
  msgstr "Nettside"
238
 
239
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
240
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
241
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
242
  msgid "AIM"
243
  msgstr "AIM"
244
 
245
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
246
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
247
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
248
  msgid "Yahoo IM"
249
  msgstr "Yahoo IM"
250
 
251
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
252
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
253
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
254
  msgid "Jabber / Google Talk"
255
  msgstr "Jabber / Google Talk"
256
 
257
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
258
  msgid "About Yourself:"
259
  msgstr "Om meg selv:"
260
 
261
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
262
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
263
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
264
  msgid "Biographical Info"
265
  msgstr "Litt om meg selv"
266
 
267
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
268
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
269
  msgid "New Password"
270
  msgstr "Nytt passord"
271
 
272
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
273
  msgid "Basic Information"
274
  msgstr "Grunnleggende informasjon"
275
 
276
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
277
  msgid "Show/Hide the Admin Bar on Front-end"
278
  msgstr "Vis/skjul administratormenyen fra front-end"
279
 
280
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
281
  msgid "Extra Profile Fields"
282
  msgstr "Ekstra profilfelter"
283
 
284
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
285
  msgid "Register Your Version"
286
  msgstr "Registrer din versjon"
287
 
288
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "You must be logged in to edit your profile."
290
  msgstr "Du må være innlogget for å redigere profilen din."
291
 
292
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
293
  msgid "The avatar was successfully deleted."
294
  msgstr "Bildet ditt er slettet."
295
 
296
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
297
- msgid "The attachment \""
 
298
  msgstr "Vedlegget \""
299
 
300
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
301
- msgid "\" was successfully deleted."
 
302
  msgstr "\" er slettet."
303
 
304
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
305
  msgid "The changes have been successfully saved."
306
  msgstr "Endringene er lagret"
307
 
308
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
309
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
310
  msgstr "E-postadressen du skrev inn er allerede registrert på en annen bruker.<br/> E-postadressen var"
311
 
312
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
313
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
318
  msgid "NOT"
319
  msgstr "IKKE"
320
 
321
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
322
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
327
- msgid " updated along with the rest of the information."
 
 
328
  msgstr "oppdatert sammen med resten av informasjonen."
329
 
330
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
331
- msgid "The email address you entered is invalid. <br/> The email address was "
 
332
  msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
333
 
334
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
335
- msgid "The passwords you entered do not match. <br/> The password was "
 
336
  msgstr "Passordene du tastet inn stemmer ikke overens. <br/> Passordet var"
337
 
338
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
339
- msgid "You didn't complete both password fields. <br/> The password was "
340
- msgstr "Du fylte ikke ut begge passordfeltene riktig. <br/> Passordet var "
 
 
 
 
 
 
 
 
 
 
 
341
 
342
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
343
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
344
  msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
345
 
346
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
347
- msgid "<br/>Possible cause: the size was bigger than "
 
348
  msgstr "<br/>Sannsynlig årsak: størrelsen var større enn "
349
 
350
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
351
- msgid "b.<br/>The listed attachements were "
 
352
  msgstr "b.<br/>Vedleggene ble"
353
 
354
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
355
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
356
- msgstr "Det oppsto en feil når du forsøkte å laste opp bildet ditt. <br/>Sannsynligvis på grunn av feil størrelse eller feil filtype.<br/>Bildet ble "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
359
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
360
  msgid "Name"
361
  msgstr "Navn"
362
 
363
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
364
- msgid " Usernames cannot be changed."
 
365
  msgstr "Brukernavn kan ikke endres."
366
 
367
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
368
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
371
- msgid "(required)"
372
- msgstr "(påkrevd)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
 
374
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
375
  msgid "Display name publicly as"
376
  msgstr "Vis mitt navn offentlig som"
377
 
378
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
379
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
380
  msgid "Contact Info"
381
  msgstr "Kontaktinformasjon"
382
 
383
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
384
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
385
  msgid "About Yourself"
386
  msgstr "Om deg selv"
387
 
388
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
389
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
390
  msgid "Repeat Password"
391
  msgstr "Gjenta passord"
392
 
393
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
394
  msgid "Update"
395
  msgstr "Oppdater"
396
 
397
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
398
- #, php-format
399
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
400
  msgstr "Du er logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
401
 
402
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
403
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
404
  msgid "Log out of this account"
405
  msgstr "Logg ut av denne kontoen"
406
 
407
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
408
- msgid "Log out &raquo;"
 
409
  msgstr "Logg ut &raquo;"
410
 
411
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
412
- #, php-format
413
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
414
  msgstr "Du har logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
415
 
416
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
417
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid "Password"
419
  msgstr "Passord"
420
 
421
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
422
  msgid "Log in"
423
  msgstr "Logg inn"
424
 
425
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
426
  msgid "Remember me"
427
  msgstr "Husk meg"
428
 
429
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
430
  msgid "Lost password?"
431
  msgstr "Mistet passordet?"
432
 
433
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "A username is required for registration."
435
  msgstr "Et brukernavn kreves for registrering."
436
 
437
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
438
  msgid "Sorry, that username already exists!"
439
  msgstr "Brukernavnet er allerede i bruk!"
440
 
441
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
442
  msgid "You must enter a valid email address."
443
  msgstr "Du må skrive inn en gyldig e-postadresse"
444
 
445
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
446
  msgid "Sorry, that email address is already used!"
447
  msgstr "Denne e-posten er allerede i bruk!"
448
 
449
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
450
  msgid "You didn't complete one of the password-fields!"
451
  msgstr "Du fylte ut feil i et av passordfeltene!"
452
 
453
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
454
- msgid "The entered passwords don't match!"
455
- msgstr "Passordene er ikke like"
 
 
456
 
457
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
458
- #, php-format
459
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
460
- msgstr "Du er allerede logget inn som<a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Du trenger vel ikke flere kontoer?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
 
462
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
463
- msgid "Logout &raquo;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgstr "Logg ut &raquo;"
465
 
466
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
467
- #, php-format
468
- msgid "A user account for %1$s has been created."
 
 
 
 
 
 
 
 
469
  msgstr "En bruker for %1$s har blitt lagt til."
470
 
471
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
472
- #, php-format
473
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
474
  msgstr "Takk for at du registrerte deg, %1$s."
475
 
476
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Users can register themselves or you can manually create users here."
478
  msgstr "Brukere kan registrere seg selv eller du kan gjøre det manuelt her."
479
 
480
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
481
  msgid "Users cannot currently register themselves, but you can manually create users here."
482
  msgstr "Brukere kan ikke registrere seg selv, men du som har administratorrettigheter kan manuelt legge til brukere her. "
483
 
484
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
485
  msgid "Only an administrator can add new users."
486
  msgstr "Kun en administrator kan legge til nye brukere."
487
 
488
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
489
- msgid " Send these credentials via email."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
490
  msgstr "Send denne informasjon om brukernavn og passord på e-post"
491
 
492
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
493
  msgid "Add User"
494
  msgstr "Legg til bruker"
495
 
496
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
497
  msgid "Register"
498
  msgstr "Registrer"
499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:31+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: ReflectionMedia\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
16
 
17
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
19
  msgid "Profile Builder"
20
  msgstr "Profile Builder"
21
 
22
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
23
  msgid "Welcome to Profile Builder!"
24
  msgstr "Velkommen til Profile Builder"
25
 
26
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
27
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
28
  msgstr "lar deg skreddersy dine nettsider ved å legge til en front-end meny for alle dine brukere, dette gir dem en mer fleksibel måte å endre sin brukerinformasjon eller for deg som administrator å registrere nye brukere."
29
 
30
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
31
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
32
  msgstr "Lar også brukere med administratorrettigheter mulighet til å skreddersy grunnleggende felter eller legge til nye"
33
 
34
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
35
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
36
  msgstr "For å legge til denne funksjonen, opprett en ny side og gi den et fornuftig nacn f.eks (Rediger min profil)"
37
 
38
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
39
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
40
  msgstr "Alt du trenger å gjøre nå er å legge til følgende kode f.eks:"
41
 
42
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
43
  msgid "Publish your page and you are ready to go!"
44
  msgstr "Publiser din side og så er alt klart til bruk"
45
 
46
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
47
  msgid "You can use the following shortcodes:"
48
  msgstr "Du kan bruke følgende shortcodes:"
49
 
50
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
51
  msgid "for a log-in form."
52
  msgstr "for en innloggingsform."
53
 
54
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
55
  msgid "to add a registration form."
56
  msgstr "for å legge til en registreringsform"
57
 
58
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
59
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
60
  msgstr "for å gi tilgang til front-end aksess til brukerens personlige informasjon (krever at bruker er logget inn)"
61
 
62
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
63
+ #, fuzzy
64
+ msgid "to add a password recovery form."
65
+ msgstr "for å legge til en registreringsform"
66
+
67
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
68
  msgid "Users with administrator rights have access to the following features:"
69
  msgstr "Brukere med administrator rettigheter har tilgang til følgende:"
70
 
71
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
72
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
73
  msgstr "legg til en skreddersydd stylesheet fra din eksisterende theme eller bruk en av de allerede innebygde i denne pluginen: default, hvit, eller svart"
74
 
75
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
76
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
77
  msgstr "velg om du ønsker å vise administratormenyen på front-endgrensesnittet for utvalgte brukergrupper registrert på siden."
78
 
79
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
80
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
81
  msgstr "velg hvilke informasjonsfelter brukere kan se/endre. Skjulte felt forblir uendret"
82
 
83
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
84
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
85
  msgstr "legg til skreddersydde felter til de eksisterende, med forskjellige typer å velge mellom: heading, tekst, tekstfelt, valg, checkbox, radio, og/eller opplasting."
86
 
87
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
88
  msgid "add an avatar field."
89
  msgstr "legg til et bildefelt (avatar)."
90
 
91
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
92
+ msgid "create custom redirects."
93
+ msgstr ""
94
+
95
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
96
+ msgid "front-end userlisting using the"
97
+ msgstr ""
98
+
99
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
100
+ msgid "shortcode."
101
+ msgstr ""
102
+
103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
106
  msgid "NOTE:"
107
  msgstr "MERK:"
108
 
109
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
110
  msgid "this plugin only adds/removes fields in the front-end."
111
  msgstr "denne pluginen legger kun til/fjerner felter på front-end"
112
 
113
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
114
  msgid "The default information-fields will still be visible(and thus modifiable)"
115
  msgstr "Standard informasjonsfelter vil fortsatt bli synlige "
116
 
117
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
118
  msgid "from the back-end, while custom fields will only be visible in the front-end."
119
  msgstr "fra back-end, vil skreddersydde felter kun bli synlige på front-end"
120
 
121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
125
+ msgid "General Settings"
126
+ msgstr ""
127
 
128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
129
+ #, fuzzy
130
+ msgid "Stylesheet Used on the Front-End:"
131
  msgstr "Styelsheet brukt:"
132
 
133
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
134
  msgid "Default"
135
  msgstr "Standard"
136
 
137
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
138
  msgid "White"
139
  msgstr "Hvit"
140
 
141
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
142
  msgid "Black"
143
  msgstr "Svart"
144
 
145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
146
  msgid "None"
147
  msgstr "Ingen"
148
 
149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
150
+ msgid "\"Email Confirmation\" Feature Activated:"
151
+ msgstr ""
152
+
153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
174
+ msgid "Yes"
175
+ msgstr ""
176
+
177
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
198
+ #, fuzzy
199
+ msgid "No"
200
+ msgstr "Ingen"
201
+
202
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
203
+ msgid "\"Admin Approval\" Feature Activated:"
204
+ msgstr ""
205
+
206
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
207
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
208
+ msgstr ""
209
+
210
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
211
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
212
+ msgstr ""
213
+
214
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
215
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
216
+ msgstr ""
217
+
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
226
  msgid "Save Changes"
227
  msgstr "Lagre endringer"
228
 
229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
231
  msgid "Show/Hide the Admin Bar on Front End"
232
  msgstr "Vis/Skjul administratormeny på front-end"
233
 
234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
235
  msgid "User-group"
236
  msgstr "Brukergruppe"
237
 
238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
239
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
240
  msgid "Visibility"
241
  msgstr "Synlighet"
242
 
243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
256
  msgid "Show"
257
  msgstr "Vis"
258
 
259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
272
  msgid "Hide"
273
  msgstr "Skjul"
274
 
275
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
276
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
277
+ msgstr ""
278
+
279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
282
  msgid "Default Profile Fields"
283
  msgstr "Grunnleggende felter"
284
 
285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
286
  msgid "Input Field Name"
287
  msgstr "Sett inn feltnavn"
288
 
289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
290
+ #, fuzzy
291
+ msgid "Required"
292
+ msgstr "(påkrevd)"
293
+
294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
295
  msgid "Name:"
296
  msgstr "Navn:"
297
 
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
304
  msgid "Username"
305
  msgstr "Brukernavn"
306
 
307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
310
  msgid "First Name"
311
  msgstr "Fornavn"
312
 
313
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
314
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
316
  msgid "Last Name"
317
  msgstr "Etternavn"
318
 
319
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
322
  msgid "Nickname"
323
  msgstr "Kallenavn"
324
 
325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
326
  msgid "Display name publicly as..."
327
  msgstr "Vis mitt navn offentlig som"
328
 
329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
330
  msgid "Contact Info:"
331
  msgstr "Kontaktinformasjon"
332
 
333
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
337
  msgid "E-mail"
338
  msgstr "E-post"
339
 
340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
341
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
344
  msgid "Website"
345
  msgstr "Nettside"
346
 
347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
350
  msgid "AIM"
351
  msgstr "AIM"
352
 
353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
356
  msgid "Yahoo IM"
357
  msgstr "Yahoo IM"
358
 
359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
362
  msgid "Jabber / Google Talk"
363
  msgstr "Jabber / Google Talk"
364
 
365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
366
  msgid "About Yourself:"
367
  msgstr "Om meg selv:"
368
 
369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
373
  msgid "Biographical Info"
374
  msgstr "Litt om meg selv"
375
 
376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
378
  msgid "New Password"
379
  msgstr "Nytt passord"
380
 
381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
382
  msgid "Basic Information"
383
  msgstr "Grunnleggende informasjon"
384
 
385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
386
  msgid "Show/Hide the Admin Bar on Front-end"
387
  msgstr "Vis/skjul administratormenyen fra front-end"
388
 
389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
392
  msgid "Extra Profile Fields"
393
  msgstr "Ekstra profilfelter"
394
 
395
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
396
+ msgid "Addons"
397
+ msgstr ""
398
+
399
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
400
  msgid "Register Your Version"
401
  msgstr "Registrer din versjon"
402
 
403
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
405
+ msgid "The information size you were trying to submit was larger than"
406
+ msgstr ""
407
+
408
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
410
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
411
+ msgstr ""
412
+
413
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
415
+ msgid "Since it was also larger than"
416
+ msgstr ""
417
+
418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
420
+ msgid "no additional information is available."
421
+ msgstr ""
422
+
423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
424
  msgid "You must be logged in to edit your profile."
425
  msgstr "Du må være innlogget for å redigere profilen din."
426
 
427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
428
  msgid "The avatar was successfully deleted."
429
  msgstr "Bildet ditt er slettet."
430
 
431
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
432
+ #, fuzzy
433
+ msgid "The attachment"
434
  msgstr "Vedlegget \""
435
 
436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
437
+ #, fuzzy
438
+ msgid "was successfully deleted."
439
  msgstr "\" er slettet."
440
 
441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
442
  msgid "The changes have been successfully saved."
443
  msgstr "Endringene er lagret"
444
 
445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
446
+ #, fuzzy
447
+ msgid "The email address you entered is already registered to a different user."
448
  msgstr "E-postadressen du skrev inn er allerede registrert på en annen bruker.<br/> E-postadressen var"
449
 
450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
451
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
452
+ msgid "The email address was"
453
+ msgstr ""
454
+
455
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
456
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
462
  msgid "NOT"
463
  msgstr "IKKE"
464
 
465
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
472
+ #, fuzzy
473
+ msgid "updated along with the rest of the information."
474
  msgstr "oppdatert sammen med resten av informasjonen."
475
 
476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
477
+ #, fuzzy
478
+ msgid "The email address you entered is invalid."
479
  msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
480
 
481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
482
+ #, fuzzy
483
+ msgid "The passwords you entered do not match."
484
  msgstr "Passordene du tastet inn stemmer ikke overens. <br/> Passordet var"
485
 
486
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
487
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
488
+ #, fuzzy
489
+ msgid "The password was"
490
+ msgstr "Nytt passord"
491
+
492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
493
+ #, fuzzy
494
+ msgid "You didn't complete both password fields."
495
+ msgstr "Du fylte ut feil i et av passordfeltene!"
496
+
497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
498
+ msgid "Your profile was NOT updated!"
499
+ msgstr ""
500
 
501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
502
+ #, fuzzy
503
+ msgid "There was an error while trying to upload the following attachments:"
504
  msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
505
 
506
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
507
+ #, fuzzy
508
+ msgid "Possible cause: the size was bigger than"
509
  msgstr "<br/>Sannsynlig årsak: størrelsen var større enn "
510
 
511
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
512
+ #, fuzzy
513
+ msgid "The listed attachements were"
514
  msgstr "b.<br/>Vedleggene ble"
515
 
516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
517
+ #, fuzzy
518
+ msgid "There was an error while trying to upload your avatar picture."
519
+ msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
520
+
521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
522
+ msgid "Possible cause: size/incorrect file-type."
523
+ msgstr ""
524
+
525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
526
+ msgid "The avatar was"
527
+ msgstr ""
528
+
529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
530
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
531
+ #, fuzzy
532
+ msgid "There was an error while trying to upload the following attachment(s)"
533
+ msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
534
+
535
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
537
+ msgid "Only files with the following extension(s) can be uploaded:"
538
+ msgstr ""
539
+
540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
541
+ msgid "This file was"
542
+ msgstr ""
543
 
544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
546
  msgid "Name"
547
  msgstr "Navn"
548
 
549
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
550
+ #, fuzzy
551
+ msgid "Usernames cannot be changed."
552
  msgstr "Brukernavn kan ikke endres."
553
 
554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
560
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
564
+ msgid "This field is marked as required by the administrator."
565
+ msgstr ""
566
+
567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
574
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
577
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
578
+ msgstr ""
579
 
580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
581
  msgid "Display name publicly as"
582
  msgstr "Vis mitt navn offentlig som"
583
 
584
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
585
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
586
  msgid "Contact Info"
587
  msgstr "Kontaktinformasjon"
588
 
589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
590
+ msgid "(required)"
591
+ msgstr "(påkrevd)"
592
+
593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
595
  msgid "About Yourself"
596
  msgstr "Om deg selv"
597
 
598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
602
  msgid "Repeat Password"
603
  msgstr "Gjenta passord"
604
 
605
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
606
  msgid "Update"
607
  msgstr "Oppdater"
608
 
609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
610
+ #, fuzzy
611
+ msgid "You are currently logged in as"
612
  msgstr "Du er logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
613
 
614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
615
  msgid "Log out of this account"
616
  msgstr "Logg ut av denne kontoen"
617
 
618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
619
+ #, fuzzy
620
+ msgid "Log out"
621
  msgstr "Logg ut &raquo;"
622
 
623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
624
+ #, fuzzy
625
+ msgid "You have successfully logged in as"
626
  msgstr "Du har logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
627
 
628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
629
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
630
+ msgstr ""
631
+
632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
634
+ msgid "here"
635
+ msgstr ""
636
+
637
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
639
+ msgid "ERROR:"
640
+ msgstr ""
641
+
642
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
643
+ msgid "The username field is empty"
644
+ msgstr ""
645
+
646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
650
  msgid "Password"
651
  msgstr "Passord"
652
 
653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
654
  msgid "Log in"
655
  msgstr "Logg inn"
656
 
657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
658
  msgid "Remember me"
659
  msgstr "Husk meg"
660
 
661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
662
  msgid "Lost password?"
663
  msgstr "Mistet passordet?"
664
 
665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
668
+ msgid "ERROR"
669
+ msgstr ""
670
+
671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
672
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
673
+ msgstr ""
674
+
675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
677
+ msgid "A password reset email has been sent to "
678
+ msgstr ""
679
+
680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
682
+ msgid "Following the link sent in the email address will reset the password."
683
+ msgstr ""
684
+
685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
686
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
687
+ msgid "Someone requested that the password be reset for the following account: "
688
+ msgstr ""
689
+
690
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
691
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
692
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
693
+ msgstr ""
694
+
695
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
697
+ msgid "To reset your password, visit the following link:"
698
+ msgstr ""
699
+
700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
702
+ msgid "Password Reset Feature from"
703
+ msgstr ""
704
+
705
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
706
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
707
+ #, fuzzy
708
+ msgid "There was an error while trying to send the activation link to "
709
+ msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
710
+
711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
712
+ #, fuzzy
713
+ msgid "The email address entered wasn't found in the database!"
714
+ msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
715
+
716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
717
+ msgid "Please check that you entered the correct email address."
718
+ msgstr ""
719
+
720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
721
+ msgid "The username entered wasn't found in the database!"
722
+ msgstr ""
723
+
724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
725
+ msgid "Please check that you entered the correct username."
726
+ msgstr ""
727
+
728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
729
+ #, fuzzy
730
+ msgid "Your password has been successfully changed!"
731
+ msgstr "Endringene er lagret"
732
+
733
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
734
+ msgid "You have successfully reset your password to:"
735
+ msgstr ""
736
+
737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
738
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
739
+ #, fuzzy
740
+ msgid "Password Successfully Reset for"
741
+ msgstr "\" er slettet."
742
+
743
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
745
+ msgid "from"
746
+ msgstr ""
747
+
748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
749
+ msgid "has requested a password change via the password reset feature."
750
+ msgstr ""
751
+
752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
753
+ msgid "His/her new password is:"
754
+ msgstr ""
755
+
756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
758
+ msgid "The entered passwords don't match!"
759
+ msgstr "Passordene er ikke like"
760
+
761
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
763
+ #, fuzzy
764
+ msgid "Reset Password"
765
+ msgstr "Gjenta passord"
766
+
767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
768
+ msgid "Invalid key!"
769
+ msgstr ""
770
+
771
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
772
+ #, fuzzy
773
+ msgid "Please enter your username or email address."
774
+ msgstr "Du må skrive inn en gyldig e-postadresse"
775
+
776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
777
+ msgid "You will receive a link to create a new password via email."
778
+ msgstr ""
779
+
780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
781
+ #, fuzzy
782
+ msgid "Username or E-mail"
783
+ msgstr "Brukernavn"
784
+
785
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
786
+ #, fuzzy
787
+ msgid "Get New Password"
788
+ msgstr "Nytt passord"
789
+
790
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
791
+ #, php-format
792
+ msgid ""
793
+ "To activate your user, please click the following link:\n"
794
+ "\n"
795
+ "%s\n"
796
+ "\n"
797
+ "After you activate, you will receive *another email* with your login.\n"
798
+ "\n"
799
+ msgstr ""
800
+
801
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
802
+ #, php-format
803
+ msgid "[%1$s] Activate %2$s"
804
+ msgstr ""
805
+
806
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
807
+ msgid "Invalid activation key!"
808
+ msgstr ""
809
+
810
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
811
+ msgid "The user is already active!"
812
+ msgstr ""
813
+
814
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
815
+ msgid "Could not create user!"
816
+ msgstr ""
817
+
818
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
819
+ #, fuzzy
820
+ msgid "That username is already activated!"
821
+ msgstr "Brukernavnet er allerede i bruk!"
822
+
823
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
824
+ #, fuzzy
825
+ msgid "The user was successfully activated."
826
+ msgstr "Bildet ditt er slettet."
827
+
828
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
829
+ #, fuzzy
830
+ msgid "There was an error while trying to activate the user."
831
+ msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
832
+
833
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
834
+ msgid "New subscriber on"
835
+ msgstr ""
836
+
837
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
838
+ msgid "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!"
839
+ msgstr ""
840
+
841
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
842
+ msgid "A new subscriber has (been) registered!"
843
+ msgstr ""
844
+
845
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
846
+ #, fuzzy
847
+ msgid "A new account has been created for you."
848
+ msgstr "En bruker for %1$s har blitt lagt til."
849
+
850
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
851
+ msgid "Welcome to"
852
+ msgstr ""
853
+
854
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
855
+ msgid "Your username is:"
856
+ msgstr ""
857
+
858
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
859
+ #, fuzzy
860
+ msgid "and password:"
861
+ msgstr "Passord"
862
+
863
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
864
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
865
+ msgstr ""
866
+
867
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
868
+ msgid "The user was NOT created!"
869
+ msgstr ""
870
+
871
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
872
  msgid "A username is required for registration."
873
  msgstr "Et brukernavn kreves for registrering."
874
 
875
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
876
  msgid "Sorry, that username already exists!"
877
  msgstr "Brukernavnet er allerede i bruk!"
878
 
879
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
880
  msgid "You must enter a valid email address."
881
  msgstr "Du må skrive inn en gyldig e-postadresse"
882
 
883
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
884
  msgid "Sorry, that email address is already used!"
885
  msgstr "Denne e-posten er allerede i bruk!"
886
 
887
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
888
  msgid "You didn't complete one of the password-fields!"
889
  msgstr "Du fylte ut feil i et av passordfeltene!"
890
 
891
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
893
+ #, fuzzy
894
+ msgid "The account was NOT created!"
895
+ msgstr "En bruker for %1$s har blitt lagt til."
896
 
897
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
898
+ msgid "You must agree to the terms and conditions before registering!"
899
+ msgstr ""
900
+
901
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
902
+ msgid "(Several required fields were left uncompleted)"
903
+ msgstr ""
904
+
905
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
906
+ msgid "This username is already reserved to be used soon."
907
+ msgstr ""
908
+
909
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
910
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
911
+ msgid "Please try a different one!"
912
+ msgstr ""
913
+
914
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
915
+ #, fuzzy
916
+ msgid "This email address is already reserved to be used soon."
917
+ msgstr "Denne e-posten er allerede i bruk!"
918
 
919
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
920
+ msgid "You are logged in as"
921
+ msgstr ""
922
+
923
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
924
+ msgid "You don't need another account."
925
+ msgstr ""
926
+
927
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
928
+ #, fuzzy
929
+ msgid "Log out of this account."
930
+ msgstr "Logg ut av denne kontoen"
931
+
932
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
933
+ #, fuzzy
934
+ msgid "Logout"
935
  msgstr "Logg ut &raquo;"
936
 
937
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
938
+ msgid "An email has been sent to "
939
+ msgstr ""
940
+
941
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
942
+ msgid "with information on how to activate his/her account"
943
+ msgstr ""
944
+
945
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
946
+ #, fuzzy
947
+ msgid "A user account has been created for"
948
  msgstr "En bruker for %1$s har blitt lagt til."
949
 
950
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
951
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
952
+ msgstr ""
953
+
954
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
955
+ msgid "An email has been sent to you with information on how to activate your account"
956
+ msgstr ""
957
+
958
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
959
+ #, fuzzy
960
+ msgid "Thank you for registering"
961
  msgstr "Takk for at du registrerte deg, %1$s."
962
 
963
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
964
+ msgid "An error occured while trying to send the notification email."
965
+ msgstr ""
966
+
967
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
968
+ msgid "An email containing activation instructions was successfully sent."
969
+ msgstr ""
970
+
971
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
972
+ msgid "An email containing the username and password was successfully sent."
973
+ msgstr ""
974
+
975
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
976
  msgid "Users can register themselves or you can manually create users here."
977
  msgstr "Brukere kan registrere seg selv eller du kan gjøre det manuelt her."
978
 
979
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
980
  msgid "Users cannot currently register themselves, but you can manually create users here."
981
  msgstr "Brukere kan ikke registrere seg selv, men du som har administratorrettigheter kan manuelt legge til brukere her. "
982
 
983
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
984
  msgid "Only an administrator can add new users."
985
  msgstr "Kun en administrator kan legge til nye brukere."
986
 
987
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
989
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
991
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
993
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
994
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
995
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
996
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
997
+ msgstr ""
998
+
999
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
1001
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
1002
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1003
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1005
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1006
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1007
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1008
+ msgid "This field is marked as required by the administrator"
1009
+ msgstr ""
1010
+
1011
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1012
+ msgid "Anti-Spam"
1013
+ msgstr ""
1014
+
1015
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1016
+ #, fuzzy
1017
+ msgid "Send these credentials via email."
1018
  msgstr "Send denne informasjon om brukernavn og passord på e-post"
1019
 
1020
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1021
  msgid "Add User"
1022
  msgstr "Legg til bruker"
1023
 
1024
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1025
  msgid "Register"
1026
  msgstr "Registrer"
1027
 
1028
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1029
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1030
+ msgstr ""
1031
+
1032
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1033
+ msgid "heading"
1034
+ msgstr ""
1035
+
1036
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1037
+ msgid "\" custom field."
1038
+ msgstr ""
1039
+
1040
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1041
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1042
+ msgstr ""
1043
+
1044
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1045
+ msgid "Drag"
1046
+ msgstr ""
1047
+
1048
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1049
+ msgid "Drop"
1050
+ msgstr ""
1051
+
1052
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1053
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1054
+ msgstr ""
1055
+
1056
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1057
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1058
+ #, fuzzy
1059
+ msgid "Title"
1060
+ msgstr "Hvit"
1061
+
1062
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1063
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1064
+ msgid "Type"
1065
+ msgstr ""
1066
+
1067
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1068
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1069
+ msgid "Meta-Key"
1070
+ msgstr ""
1071
+
1072
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1073
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1074
+ msgid "ID"
1075
+ msgstr ""
1076
+
1077
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1078
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1079
+ msgid "Req'd"
1080
+ msgstr ""
1081
+
1082
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1083
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1084
+ msgid "Add Option"
1085
+ msgstr ""
1086
+
1087
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1088
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1089
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1090
+ msgid "Edit"
1091
+ msgstr ""
1092
+
1093
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1094
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1095
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1096
+ #, fuzzy
1097
+ msgid "Delete"
1098
+ msgstr "Standard"
1099
+
1100
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1101
+ msgid "Title:"
1102
+ msgstr ""
1103
+
1104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1105
+ msgid "The title of the item."
1106
+ msgstr ""
1107
+
1108
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1109
+ msgid "Meta-Key:"
1110
+ msgstr ""
1111
+
1112
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1113
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1114
+ msgstr ""
1115
+
1116
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1117
+ msgid "Option Type:"
1118
+ msgstr ""
1119
+
1120
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1121
+ msgid "Choose one of the supported option types."
1122
+ msgstr ""
1123
+
1124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1125
+ msgid "Description:"
1126
+ msgstr ""
1127
+
1128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1129
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1130
+ msgstr ""
1131
+
1132
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1133
+ msgid "You can only insert links using standard HTML syntax:"
1134
+ msgstr ""
1135
+
1136
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1137
+ msgid "address"
1138
+ msgstr ""
1139
+
1140
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1141
+ #, fuzzy
1142
+ msgid "name"
1143
+ msgstr "Navn"
1144
+
1145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1146
+ msgid "Options:"
1147
+ msgstr ""
1148
+
1149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1150
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1151
+ msgstr ""
1152
+
1153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1154
+ msgid "ID:"
1155
+ msgstr ""
1156
+
1157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1158
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1159
+ msgstr ""
1160
+
1161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1162
+ #, fuzzy
1163
+ msgid "Required:"
1164
+ msgstr "(påkrevd)"
1165
+
1166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1167
+ msgid "Check this box to make this field required."
1168
+ msgstr ""
1169
+
1170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1171
+ msgid "Cancel"
1172
+ msgstr ""
1173
+
1174
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1175
+ msgid "Save"
1176
+ msgstr ""
1177
+
1178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1180
+ msgid "Register your version of Profile Builder Pro"
1181
+ msgstr ""
1182
+
1183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1184
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1185
+ msgstr ""
1186
+
1187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1188
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1189
+ msgstr ""
1190
+
1191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1192
+ msgid "Serial Number:"
1193
+ msgstr ""
1194
+
1195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1196
+ #, fuzzy
1197
+ msgid "The serial number was successfully validated!"
1198
+ msgstr "Bildet ditt er slettet."
1199
+
1200
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1201
+ msgid "The serial number couldn't be validated or isn't valid!"
1202
+ msgstr ""
1203
+
1204
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1205
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1206
+ msgstr ""
1207
+
1208
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1209
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1210
+ msgstr ""
1211
+
1212
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1213
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1214
+ msgstr ""
1215
+
1216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1217
+ msgid "You can find it in Profile Builder's menu."
1218
+ msgstr ""
1219
+
1220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1221
+ #, fuzzy
1222
+ msgid "You need to be logged in to view the userlisting!"
1223
+ msgstr "Du må være innlogget for å redigere profilen din."
1224
+
1225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1228
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1230
+ msgid "Search Users by All Fields"
1231
+ msgstr ""
1232
+
1233
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1234
+ msgid "Leave Blank and Press Search to List All Users"
1235
+ msgstr ""
1236
+
1237
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1238
+ msgid "Search"
1239
+ msgstr ""
1240
+
1241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1242
+ #, fuzzy
1243
+ msgid "First/Lastname"
1244
+ msgstr "Fornavn"
1245
+
1246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1247
+ #, fuzzy
1248
+ msgid "Email"
1249
+ msgstr "E-post"
1250
+
1251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1252
+ msgid "Sign-up Date"
1253
+ msgstr ""
1254
+
1255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1256
+ #, fuzzy
1257
+ msgid "Firstname"
1258
+ msgstr "Fornavn"
1259
+
1260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1261
+ #, fuzzy
1262
+ msgid "Lastname"
1263
+ msgstr "Etternavn"
1264
+
1265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1266
+ #, fuzzy
1267
+ msgid "Display Name"
1268
+ msgstr "Fornavn"
1269
+
1270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1271
+ msgid "Posts"
1272
+ msgstr ""
1273
+
1274
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1275
+ msgid "Click here to see more information about this user"
1276
+ msgstr ""
1277
+
1278
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1279
+ msgid "More..."
1280
+ msgstr ""
1281
+
1282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1283
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1284
+ #, fuzzy
1285
+ msgid "No uploaded attachment"
1286
+ msgstr "Vedlegget \""
1287
+
1288
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1291
+ msgid "Click to see the current attachment"
1292
+ msgstr ""
1293
+
1294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1295
+ msgid "Click here to go back"
1296
+ msgstr ""
1297
+
1298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1299
+ #, fuzzy
1300
+ msgid "Back"
1301
+ msgstr "Svart"
1302
+
1303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1305
+ msgid "Current file"
1306
+ msgstr ""
1307
+
1308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1309
+ msgid "Avatar"
1310
+ msgstr ""
1311
+
1312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1313
+ msgid "No results found!"
1314
+ msgstr ""
1315
+
1316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1317
+ msgid "&laquo;&laquo; First"
1318
+ msgstr ""
1319
+
1320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1321
+ msgid "&laquo; Prev"
1322
+ msgstr ""
1323
+
1324
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1325
+ #, fuzzy
1326
+ msgid "Next &raquo; "
1327
+ msgstr "Logg ut &raquo;"
1328
+
1329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1330
+ #, fuzzy
1331
+ msgid "Last &raquo;&raquo;"
1332
+ msgstr "Logg ut &raquo;"
1333
+
1334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1335
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1336
+ msgstr ""
1337
+
1338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1340
+ msgid "Activate/Deactivate Addons"
1341
+ msgstr ""
1342
+
1343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1344
+ msgid "Name/Description"
1345
+ msgstr ""
1346
+
1347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1348
+ msgid "Status"
1349
+ msgstr ""
1350
+
1351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1354
+ msgid "User-Listing"
1355
+ msgstr ""
1356
+
1357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1360
+ msgid "Active"
1361
+ msgstr ""
1362
+
1363
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1366
+ msgid "Inactive"
1367
+ msgstr ""
1368
+
1369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1372
+ msgid "Custom Redirects"
1373
+ msgstr ""
1374
+
1375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1378
+ msgid "reCAPTCHA"
1379
+ msgstr ""
1380
+
1381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1382
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1383
+ msgstr ""
1384
+
1385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1386
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1387
+ msgstr ""
1388
+
1389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1390
+ msgid "These settings are applied to the front-end userlisting."
1391
+ msgstr ""
1392
+
1393
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1394
+ msgid "Number of Users/Page: "
1395
+ msgstr ""
1396
+
1397
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1398
+ msgid "Default Sorting Order: "
1399
+ msgstr ""
1400
+
1401
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1402
+ msgid "\"All-Userlisting\" Template"
1403
+ msgstr ""
1404
+
1405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1406
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1407
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1408
+ msgstr ""
1409
+
1410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1411
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1412
+ msgstr ""
1413
+
1414
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1415
+ msgid "Avatar size: "
1416
+ msgstr ""
1417
+
1418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1419
+ msgid "Insert \"Sort By\" Field:"
1420
+ msgstr ""
1421
+
1422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1424
+ msgid "Insert \"User-Meta\" Field:"
1425
+ msgstr ""
1426
+
1427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1428
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1429
+ msgid "Insert Extra Functions:"
1430
+ msgstr ""
1431
+
1432
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1433
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1434
+ msgstr ""
1435
+
1436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1437
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1438
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1439
+ msgstr ""
1440
+
1441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1442
+ msgid "\"Single-Userlisting\" Template"
1443
+ msgstr ""
1444
+
1445
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1446
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1447
+ msgstr ""
1448
+
1449
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1450
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1451
+ msgstr ""
1452
+
1453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1454
+ msgid "Redirects on custom page requests:"
1455
+ msgstr ""
1456
+
1457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1458
+ msgid "Action"
1459
+ msgstr ""
1460
+
1461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1463
+ msgid "Redirect"
1464
+ msgstr ""
1465
+
1466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1468
+ msgid "URL"
1469
+ msgstr ""
1470
+
1471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1472
+ msgid "After Registration:"
1473
+ msgstr ""
1474
+
1475
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1476
+ msgid "After Login:"
1477
+ msgstr ""
1478
+
1479
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1480
+ #, fuzzy
1481
+ msgid "Recover Password (*)"
1482
+ msgstr "Gjenta passord"
1483
+
1484
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1485
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1486
+ msgstr ""
1487
+
1488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1489
+ msgid "Redirects on default WordPress page requests:"
1490
+ msgstr ""
1491
+
1492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1493
+ msgid "Requested WP Page"
1494
+ msgstr ""
1495
+
1496
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1497
+ msgid "Default WP Login Page(*)"
1498
+ msgstr ""
1499
+
1500
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1501
+ msgid "Default WP Logout Page(**)"
1502
+ msgstr ""
1503
+
1504
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1505
+ msgid "Default WP Register Page"
1506
+ msgstr ""
1507
+
1508
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1509
+ msgid "Default WP Dashboard (***)"
1510
+ msgstr ""
1511
+
1512
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1513
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1514
+ msgstr ""
1515
+
1516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1517
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1518
+ msgstr ""
1519
+
1520
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1521
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1522
+ msgstr ""
1523
+
1524
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1525
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1526
+ msgstr ""
1527
+
1528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1529
+ msgid "For this you must get a public and private key from Google:"
1530
+ msgstr ""
1531
+
1532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1533
+ msgid "Key"
1534
+ msgstr ""
1535
+
1536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1537
+ msgid "Code"
1538
+ msgstr ""
1539
+
1540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1541
+ msgid "Public Key:"
1542
+ msgstr ""
1543
+
1544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1545
+ msgid "Private Key:"
1546
+ msgstr ""
1547
+
1548
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1549
+ msgid "Could not open socket!"
1550
+ msgstr ""
1551
+
1552
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1554
+ msgid "To use reCAPTCHA you must get an API key from"
1555
+ msgstr ""
1556
+
1557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1558
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1559
+ msgstr ""
1560
+
1561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1562
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1563
+ msgstr ""
1564
+
1565
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1566
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1567
+ msgstr ""
1568
+
1569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1571
+ #, fuzzy
1572
+ msgid "You must give your option a title."
1573
+ msgstr "Du må være innlogget for å redigere profilen din."
1574
+
1575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1577
+ msgid "You have entered an invalid meta-key format!"
1578
+ msgstr ""
1579
+
1580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1582
+ #, fuzzy
1583
+ msgid "You must enter a valid meta-key."
1584
+ msgstr "Du må skrive inn en gyldig e-postadresse"
1585
+
1586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1590
+ msgid "That meta-key is already in use."
1591
+ msgstr ""
1592
+
1593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1595
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1596
+ msgstr ""
1597
+
1598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1600
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1601
+ msgstr ""
1602
+
1603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1605
+ msgid "The textarea row value must be numeric."
1606
+ msgstr ""
1607
+
1608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1610
+ msgid "The maxlength attribute must be numeric."
1611
+ msgstr ""
1612
+
1613
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1615
+ msgid "The value must be between 20 and 200!"
1616
+ msgstr ""
1617
+
1618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1619
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1620
+ msgid "The width component of the entered value must be numeric!"
1621
+ msgstr ""
1622
+
1623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1625
+ msgid "The height component of the entered value must be numeric!"
1626
+ msgstr ""
1627
+
1628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1630
+ msgid "The width component of the entered value must be between 20 and 200!"
1631
+ msgstr ""
1632
+
1633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1635
+ msgid "The height component of the entered value must be between 20 and 200!"
1636
+ msgstr ""
1637
+
1638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1640
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1641
+ msgstr ""
1642
+
1643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1645
+ msgid "The entered avatar size must be numeric!"
1646
+ msgstr ""
1647
+
1648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1650
+ msgid "There was an error, please try again."
1651
+ msgstr ""
1652
+
1653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1662
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1663
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1664
+ msgstr ""
1665
+
1666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1670
+ msgid "max upload size"
1671
+ msgstr ""
1672
+
1673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1675
+ msgid "Are you sure you want to delete this attachment?"
1676
+ msgstr ""
1677
+
1678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1681
+ msgid "Click to delete the current attachment"
1682
+ msgstr ""
1683
+
1684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1685
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1686
+ msgstr ""
1687
+
1688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1690
+ msgid "Current avatar"
1691
+ msgstr ""
1692
+
1693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1695
+ msgid "No uploaded avatar"
1696
+ msgstr ""
1697
+
1698
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1700
+ msgid "Are you sure you want to delete this avatar?"
1701
+ msgstr ""
1702
+
1703
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1704
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1705
+ msgstr ""
1706
+
1707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1708
+ msgid "Click to see the current avatar"
1709
+ msgstr ""
1710
+
1711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1712
+ msgid "Click to delete the avatar"
1713
+ msgstr ""
1714
+
1715
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1716
+ msgid "The user-validation has failed - the avatar was not deleted!"
1717
+ msgstr ""
1718
+
1719
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1720
+ msgid "The user-validation has failed - the attachment was not deleted!"
1721
+ msgstr ""
1722
+
1723
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1724
+ msgid "Do you want to"
1725
+ msgstr ""
1726
+
1727
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1728
+ msgid "the current user?"
1729
+ msgstr ""
1730
+
1731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1733
+ msgid "Your account on"
1734
+ msgstr ""
1735
+
1736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1737
+ msgid "has been approved!"
1738
+ msgstr ""
1739
+
1740
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1741
+ msgid "An administrator has just approved your account on"
1742
+ msgstr ""
1743
+
1744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1745
+ msgid "has been unapproved!"
1746
+ msgstr ""
1747
+
1748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1749
+ msgid "An administrator has just unapproved your account on"
1750
+ msgstr ""
1751
+
1752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1754
+ msgid "Approve"
1755
+ msgstr ""
1756
+
1757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1759
+ msgid "Unapproved"
1760
+ msgstr ""
1761
+
1762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1763
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1764
+ msgid "Unapprove"
1765
+ msgstr ""
1766
+
1767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1769
+ msgid "Approved"
1770
+ msgstr ""
1771
+
1772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1773
+ msgid "unapprove"
1774
+ msgstr ""
1775
+
1776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1777
+ msgid "approve"
1778
+ msgstr ""
1779
+
1780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1781
+ msgid "Are you sure you want to"
1782
+ msgstr ""
1783
+
1784
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1785
+ msgid "this user?"
1786
+ msgstr ""
1787
+
1788
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1789
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1790
+ msgstr ""
1791
+
1792
+ #~ msgid "Plugin Layout"
1793
+ #~ msgstr "Plugin layout"
1794
+
1795
+ #~ msgid "You didn't complete both password fields. <br/> The password was "
1796
+ #~ msgstr "Du fylte ikke ut begge passordfeltene riktig. <br/> Passordet var "
1797
+
1798
+ #~ msgid ""
1799
+ #~ "There was an error while trying to upload your avatar picture.<br/"
1800
+ #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
1801
+ #~ msgstr ""
1802
+ #~ "Det oppsto en feil når du forsøkte å laste opp bildet ditt. <br/"
1803
+ #~ ">Sannsynligvis på grunn av feil størrelse eller feil filtype.<br/>Bildet "
1804
+ #~ "ble "
1805
+
1806
+ #~ msgid ""
1807
+ #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
1808
+ #~ "need another account."
1809
+ #~ msgstr ""
1810
+ #~ "Du er allerede logget inn som<a href=\"%1$s\" title=\"%2$s\">%2$s</a>. "
1811
+ #~ "Du trenger vel ikke flere kontoer?"
translation/profilebuilder-nl_NL.mo CHANGED
Binary file
translation/profilebuilder-nl_NL.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder v1.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2011-08-11 17:27+0000\n"
7
- "Last-Translator: Pascal Frencken\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,894 +13,1944 @@ msgstr ""
13
  "X-Poedit-Language: Dutch\n"
14
  "X-Poedit-Country: NETHERLANDS\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
- #: front-end/menu.file.php:5
23
- #: front-end/menu.file.php:8
24
- #@ profilebuilder
25
  msgid "Profile Builder"
26
  msgstr "Profile Builder"
27
 
28
- #: front-end/menu.file.php:6
29
- #@ profilebuilder
30
  msgid "Welcome to Profile Builder!"
31
  msgstr "Welkom bij Profile Builder!"
32
 
33
- #: front-end/menu.file.php:8
34
- #@ profilebuilder
35
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
36
  msgstr " stelt je in staat je website aan te passen door een front-end menu voor alle gebruikers toe te voegen, waarmee ze op een flexibele manier hun gebruikersinformatie kunnen wijzigen of zich als nieuwe gebruiker kunnen registreren."
37
 
38
- #: front-end/menu.file.php:9
39
- #@ profilebuilder
40
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
41
  msgstr "Ook geeft het beheerders de mogelijkheid om velden aan te passen of nieuwe toe te voegen."
42
 
43
- #: front-end/menu.file.php:10
44
- #@ profilebuilder
45
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
46
  msgstr "Hiervoor voeg je een nieuwe pagina toe, en geef je deze een duidelijke naam (bijv. Profiel Bewerken)."
47
 
48
- #: front-end/menu.file.php:11
49
- #@ profilebuilder
50
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
51
  msgstr "Nu hoef je alleen de volgende shortcode toe te voegen: "
52
 
53
- #: front-end/menu.file.php:12
54
- #@ profilebuilder
55
  msgid "Publish your page and you are ready to go!"
56
  msgstr "Publiceer je pagina en je kunt aan de slag!"
57
 
58
- #: front-end/menu.file.php:13
59
- #@ profilebuilder
60
  msgid "You can use the following shortcodes:"
61
  msgstr "Je kunt de volgende shortcodes gebruiken:"
62
 
63
- #: front-end/menu.file.php:14
64
- #@ profilebuilder
65
  msgid "for a log-in form."
66
  msgstr "voor een inlog formulier."
67
 
68
- #: front-end/menu.file.php:15
69
- #@ profilebuilder
70
  msgid "to add a registration form."
71
  msgstr "voor het toevoegen van een inschrijfformulier."
72
 
73
- #: front-end/menu.file.php:16
74
- #@ profilebuilder
75
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
76
  msgstr "om gebruikers front-end toegang tot persoonlijke info te geven (gebruiker moet ingelogd zijn)."
77
 
78
- #: front-end/menu.file.php:19
79
- #@ profilebuilder
 
 
 
 
 
80
  msgid "Users with administrator rights have access to the following features:"
81
  msgstr "Gebruikers met beheerdersrechten hebben toegang tot de volgende functies:"
82
 
83
- #: front-end/menu.file.php:20
84
- #@ profilebuilder
85
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
86
  msgstr "voeg een aangepaste stylesheet toe / neem de waarden van het huidige thema over of gebruik een van de volgende stijlen ingebouwd in deze plugin: standaard, wit of zwart."
87
 
88
- #: front-end/menu.file.php:21
89
- #@ profilebuilder
90
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
91
  msgstr "geef aan of de admin balk in de front-end getoond moet worden voor een specifieke gebruikersgroep."
92
 
93
- #: front-end/menu.file.php:22
94
- #@ profilebuilder
95
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
96
  msgstr "geef aan welke informatievelden de gebruikers kunnen zien / wijzigen. De waarden van verborgen velden blijven ongewijzigd."
97
 
98
- #: front-end/menu.file.php:23
99
- #@ profilebuilder
100
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
101
  msgstr "voeg velden toe aan de bestaande, waarbij gekozen kan worden uit de volgende typen: koptekst, tekst, textgebied, selectieveld, meerkeuzeveld, enkel keuzeveld en / of uploadveld."
102
 
103
- #: front-end/menu.file.php:24
104
- #@ profilebuilder
105
  msgid "add an avatar field."
106
  msgstr "voeg een avatar veld toe."
107
 
108
- #: front-end/menu.file.php:27
109
- #@ profilebuilder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  msgid "NOTE:"
111
  msgstr "LET OP:"
112
 
113
- #: front-end/menu.file.php:28
114
- #@ profilebuilder
115
  msgid "this plugin only adds/removes fields in the front-end."
116
  msgstr "deze plugin voegt slechts velden toe aan / verwijdert velden uit de front-end."
117
 
118
- #: front-end/menu.file.php:29
119
- #@ profilebuilder
120
  msgid "The default information-fields will still be visible(and thus modifiable)"
121
  msgstr "De standaard informatievelden zullen nog steeds zichtbaar (en dus aanpasbaar) zijn"
122
 
123
- #: front-end/menu.file.php:30
124
- #@ profilebuilder
125
  msgid "from the back-end, while custom fields will only be visible in the front-end."
126
  msgstr "in de back-end, terwijl de toegevoegde velden alleen zichtbaar zijn in de front-end."
127
 
128
- #: front-end/menu.file.php:44
129
- #: front-end/menu.file.php:45
130
- #: front-end/options.php:58
131
- #@ profilebuilder
132
- msgid "Plugin Layout"
133
- msgstr "Plugin Opmaak"
134
 
135
- #: front-end/menu.file.php:46
136
- #@ profilebuilder
137
- msgid "Stylesheet used:"
 
138
  msgstr "Gebruikte stylesheet:"
139
 
140
- #: front-end/menu.file.php:48
141
- #@ profilebuilder
142
  msgid "Default"
143
  msgstr "Standaard"
144
 
145
- #: front-end/menu.file.php:53
146
- #@ profilebuilder
147
  msgid "White"
148
  msgstr "Wit"
149
 
150
- #: front-end/menu.file.php:54
151
- #@ profilebuilder
152
  msgid "Black"
153
  msgstr "Zwart"
154
 
155
- #: front-end/menu.file.php:58
156
- #@ profilebuilder
157
  msgid "None"
158
  msgstr "Geen"
159
 
160
- #: front-end/menu.file.php:63
161
- #: front-end/menu.file.php:109
162
- #: front-end/menu.file.php:320
163
- #@ default
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid "Save Changes"
165
  msgstr "Wijzigingen Opslaan"
166
 
167
- #: front-end/menu.file.php:81
168
- #: front-end/menu.file.php:82
169
- #@ profilebuilder
170
  msgid "Show/Hide the Admin Bar on Front End"
171
  msgstr "Toon / Verberg de Admin Balk in de Front-end"
172
 
173
- #: front-end/menu.file.php:86
174
- #@ profilebuilder
175
  msgid "User-group"
176
  msgstr "Gebruikersgroep"
177
 
178
- #: front-end/menu.file.php:87
179
- #: front-end/menu.file.php:133
180
- #@ profilebuilder
181
  msgid "Visibility"
182
  msgstr "Zichtbaarheid"
183
 
184
- #: front-end/menu.file.php:98
185
- #: front-end/menu.file.php:148
186
- #: front-end/menu.file.php:161
187
- #: front-end/menu.file.php:174
188
- #: front-end/menu.file.php:187
189
- #: front-end/menu.file.php:200
190
- #: front-end/menu.file.php:219
191
- #: front-end/menu.file.php:232
192
- #: front-end/menu.file.php:248
193
- #: front-end/menu.file.php:261
194
- #: front-end/menu.file.php:274
195
- #: front-end/menu.file.php:293
196
- #: front-end/menu.file.php:307
197
- #@ profilebuilder
198
  msgid "Show"
199
  msgstr "Tonen"
200
 
201
- #: front-end/menu.file.php:99
202
- #: front-end/menu.file.php:149
203
- #: front-end/menu.file.php:162
204
- #: front-end/menu.file.php:175
205
- #: front-end/menu.file.php:188
206
- #: front-end/menu.file.php:201
207
- #: front-end/menu.file.php:220
208
- #: front-end/menu.file.php:233
209
- #: front-end/menu.file.php:249
210
- #: front-end/menu.file.php:262
211
- #: front-end/menu.file.php:275
212
- #: front-end/menu.file.php:294
213
- #: front-end/menu.file.php:308
214
- #@ profilebuilder
215
  msgid "Hide"
216
  msgstr "Verbergen"
217
 
218
- #: front-end/menu.file.php:127
219
- #: front-end/menu.file.php:128
220
- #: front-end/options.php:60
221
- #@ profilebuilder
 
 
 
 
222
  msgid "Default Profile Fields"
223
  msgstr "Standaard Profiel Velden"
224
 
225
- #: front-end/menu.file.php:132
226
- #@ profilebuilder
227
  msgid "Input Field Name"
228
  msgstr "Voer Veldnaam In"
229
 
230
- #: front-end/menu.file.php:139
231
- #@ profilebuilder
 
 
 
 
 
232
  msgid "Name:"
233
  msgstr "Naam:"
234
 
235
- #: front-end/menu.file.php:145
236
- #: front-end/wppb.edit.profile.php:678
237
- #: front-end/wppb.login.php:118
238
- #: front-end/wppb.register.php:460
239
- #: front-end/wppb.register.php:624
240
- #@ profilebuilder
 
241
  msgid "Username"
242
  msgstr "Gebruikersnaam"
243
 
244
- #: front-end/menu.file.php:158
245
- #: front-end/wppb.edit.profile.php:699
246
- #: front-end/wppb.register.php:650
247
- #@ profilebuilder
248
  msgid "First Name"
249
  msgstr "Voornaam"
250
 
251
- #: front-end/menu.file.php:171
252
- #: front-end/wppb.edit.profile.php:720
253
- #: front-end/wppb.register.php:675
254
- #@ profilebuilder
255
  msgid "Last Name"
256
  msgstr "Achternaam"
257
 
258
- #: front-end/menu.file.php:184
259
- #: front-end/wppb.edit.profile.php:741
260
- #: front-end/wppb.register.php:700
261
- #@ profilebuilder
262
  msgid "Nickname"
263
  msgstr "Bijnaam"
264
 
265
- #: front-end/menu.file.php:197
266
- #@ profilebuilder
267
  msgid "Display name publicly as..."
268
  msgstr "Toon naam publiekelijk als..."
269
 
270
- #: front-end/menu.file.php:210
271
- #@ profilebuilder
272
  msgid "Contact Info:"
273
  msgstr "Contact Informatie:"
274
 
275
- #: front-end/menu.file.php:216
276
- #: front-end/wppb.edit.profile.php:808
277
- #: front-end/wppb.register.php:461
278
- #: front-end/wppb.register.php:726
279
- #@ profilebuilder
280
  msgid "E-mail"
281
  msgstr "E-mail"
282
 
283
- #: front-end/menu.file.php:229
284
- #: front-end/wppb.edit.profile.php:828
285
- #: front-end/wppb.register.php:752
286
- #@ profilebuilder
 
287
  msgid "Website"
288
  msgstr "Website"
289
 
290
- #: front-end/menu.file.php:245
291
- #: front-end/wppb.edit.profile.php:847
292
- #: front-end/wppb.register.php:777
293
- #@ profilebuilder
294
  msgid "AIM"
295
  msgstr "AIM"
296
 
297
- #: front-end/menu.file.php:258
298
- #: front-end/wppb.edit.profile.php:866
299
- #: front-end/wppb.register.php:802
300
- #@ profilebuilder
301
  msgid "Yahoo IM"
302
  msgstr "Yahoo IM"
303
 
304
- #: front-end/menu.file.php:271
305
- #: front-end/wppb.edit.profile.php:885
306
- #: front-end/wppb.register.php:827
307
- #@ profilebuilder
308
  msgid "Jabber / Google Talk"
309
  msgstr "Jabber / Google Talk"
310
 
311
- #: front-end/menu.file.php:284
312
- #@ profilebuilder
313
  msgid "About Yourself:"
314
  msgstr "Over Jezelf:"
315
 
316
- #: front-end/menu.file.php:290
317
- #: front-end/wppb.edit.profile.php:908
318
- #: front-end/wppb.register.php:856
319
- #@ profilebuilder
 
320
  msgid "Biographical Info"
321
  msgstr "Biografie"
322
 
323
- #: front-end/menu.file.php:304
324
- #: front-end/wppb.edit.profile.php:919
325
- #@ profilebuilder
326
  msgid "New Password"
327
  msgstr "Nieuw Wachtwoord"
328
 
329
- #: front-end/options.php:57
330
- #@ profilebuilder
331
  msgid "Basic Information"
332
  msgstr "Basis Informatie"
333
 
334
- #: front-end/options.php:59
335
- #@ profilebuilder
336
  msgid "Show/Hide the Admin Bar on Front-end"
337
  msgstr "Toon / Verberg de Admin Balk"
338
 
339
- #: front-end/options.php:66
340
- #@ profilebuilder
 
 
341
  msgid "Extra Profile Fields"
342
  msgstr "Extra Profiel Velden"
343
 
344
- #: front-end/options.php:72
345
- #@ profilebuilder
346
- msgid "Register Your Version"
347
- msgstr "Registreer Je Versie"
348
-
349
- #: front-end/wppb.edit.profile.php:552
350
- #@ profilebuilder
351
- msgid "You must be logged in to edit your profile."
352
- msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
353
-
354
- #: front-end/wppb.edit.profile.php:562
355
- #@ profilebuilder
356
- msgid "The avatar was successfully deleted."
357
- msgstr "De avatar is succesvol verwijderd."
358
-
359
- #: front-end/wppb.edit.profile.php:584
360
- #@ profilebuilder
361
- msgid "The changes have been successfully saved."
362
- msgstr "De wijzigingen zijn succesvol opgeslagen."
363
-
364
- #: front-end/wppb.edit.profile.php:591
365
- #: front-end/wppb.edit.profile.php:601
366
- #: front-end/wppb.edit.profile.php:611
367
- #: front-end/wppb.edit.profile.php:620
368
- #: front-end/wppb.edit.profile.php:646
369
- #: front-end/wppb.edit.profile.php:654
370
- #@ profilebuilder
371
- msgid "NOT"
372
- msgstr "NIET"
373
-
374
- #: front-end/wppb.edit.profile.php:671
375
- #: front-end/wppb.register.php:609
376
- #@ profilebuilder
377
- msgid "Name"
378
- msgstr "Naam"
379
-
380
- #: front-end/wppb.edit.profile.php:743
381
- #: front-end/wppb.edit.profile.php:810
382
- #: front-end/wppb.register.php:626
383
- #: front-end/wppb.register.php:728
384
- #@ profilebuilder
385
- msgid "(required)"
386
- msgstr "(verplicht)"
387
-
388
- #: front-end/wppb.edit.profile.php:763
389
- #@ profilebuilder
390
- msgid "Display name publicly as"
391
- msgstr "Naam publiekelijk tonen als"
392
-
393
- #: front-end/wppb.edit.profile.php:790
394
- #: front-end/wppb.register.php:707
395
- #@ profilebuilder
396
- msgid "Contact Info"
397
- msgstr "Contact Informatie"
398
-
399
- #: front-end/wppb.edit.profile.php:892
400
- #: front-end/wppb.register.php:834
401
- #@ profilebuilder
402
- msgid "About Yourself"
403
- msgstr "Over Jezelf"
404
-
405
- #: front-end/wppb.edit.profile.php:924
406
- #: front-end/wppb.recover.password.php:281
407
- #: front-end/wppb.recover.password.php:312
408
- #: front-end/wppb.register.php:882
409
- #@ profilebuilder
410
- msgid "Repeat Password"
411
- msgstr "Herhaal Wachtwoord"
412
-
413
- #: front-end/wppb.edit.profile.php:941
414
- #@ profilebuilder
415
- msgid "Update"
416
- msgstr "Bijwerken"
417
-
418
- #: front-end/wppb.login.php:54
419
- #@ profilebuilder
420
- msgid "Log out of this account"
421
- msgstr "Gebruiker uitloggen"
422
-
423
- #: front-end/wppb.login.php:128
424
- #: front-end/wppb.recover.password.php:276
425
- #: front-end/wppb.recover.password.php:307
426
- #: front-end/wppb.register.php:877
427
- #@ profilebuilder
428
- msgid "Password"
429
- msgstr "Wachtwoord"
430
-
431
- #: front-end/wppb.login.php:132
432
- #@ profilebuilder
433
- msgid "Log in"
434
- msgstr "Inloggen"
435
-
436
- #: front-end/wppb.login.php:136
437
- #@ profilebuilder
438
- msgid "Remember me"
439
- msgstr "Onthoud gegevens"
440
-
441
- #: front-end/wppb.login.php:146
442
- #@ profilebuilder
443
- msgid "Lost password?"
444
- msgstr "Wachtwoord vergeten?"
445
-
446
- #: front-end/wppb.register.php:297
447
- #@ profilebuilder
448
- msgid "A username is required for registration."
449
- msgstr "Een gebruikersnaam is vereist voor registratie."
450
-
451
- #: front-end/wppb.register.php:299
452
- #@ profilebuilder
453
- msgid "Sorry, that username already exists!"
454
- msgstr "Sorry, die gebruikersnaam bestaat al!"
455
-
456
- #: front-end/wppb.register.php:301
457
- #@ profilebuilder
458
- msgid "You must enter a valid email address."
459
- msgstr "U moet een geldig e-mail adres invullen."
460
-
461
- #: front-end/wppb.register.php:303
462
- #@ profilebuilder
463
- msgid "Sorry, that email address is already used!"
464
- msgstr "Sorry, dat e-mail adres is al in gebruik!"
465
-
466
- #: front-end/wppb.register.php:306
467
- #@ profilebuilder
468
- msgid "You didn't complete one of the password-fields!"
469
- msgstr "Je hebt een van de wachtwoord-velden niet volledig ingevuld!"
470
-
471
- #: front-end/wppb.recover.password.php:243
472
- #: front-end/wppb.register.php:308
473
- #@ profilebuilder
474
- msgid "The entered passwords don't match!"
475
- msgstr "De ingevoerde wachtwoorden komen niet overeen!"
476
-
477
- #: front-end/wppb.register.php:586
478
- #@ profilebuilder
479
- msgid "Users can register themselves or you can manually create users here."
480
- msgstr "Gebruikers kunnen zich registreren of je kunt hier handmatig gebruikers aanmaken."
481
-
482
- #: front-end/wppb.register.php:591
483
- #@ profilebuilder
484
- msgid "Users cannot currently register themselves, but you can manually create users here."
485
- msgstr "Gebruikers kunnen zich op dit moment niet registreren, maar je kunt hier wel handmatig gebruikers aanmaken."
486
-
487
- #: front-end/wppb.register.php:596
488
- #@ profilebuilder
489
- msgid "Only an administrator can add new users."
490
- msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
491
-
492
- #: front-end/wppb.register.php:910
493
- #@ profilebuilder
494
- msgid "Add User"
495
- msgstr "Gebruiker Toevoegen"
496
-
497
- #: front-end/wppb.register.php:910
498
- #@ profilebuilder
499
- msgid "Register"
500
- msgstr "Registreren"
501
-
502
- #: front-end/options.php:69
503
- #@ profilebuilder
504
  msgid "Addons"
505
  msgstr "Addons"
506
 
507
- #: front-end/menu.file.php:17
508
- #@ profilebuilder
509
- msgid "to add a password recovery form."
510
- msgstr "om formulier toe te voegen om wachtwoord te achterhalen."
511
-
512
- #: front-end/menu.file.php:134
513
- #@ profilebuilder
514
- msgid "Required"
515
- msgstr "Verplicht"
516
-
517
- #: front-end/menu.file.php:152
518
- #: front-end/menu.file.php:165
519
- #: front-end/menu.file.php:178
520
- #: front-end/menu.file.php:191
521
- #: front-end/menu.file.php:204
522
- #: front-end/menu.file.php:223
523
- #: front-end/menu.file.php:236
524
- #: front-end/menu.file.php:252
525
- #: front-end/menu.file.php:265
526
- #: front-end/menu.file.php:278
527
- #: front-end/menu.file.php:297
528
- #: front-end/menu.file.php:311
529
- #@ profilebuilder
530
- msgid "Yes"
531
- msgstr "Ja"
532
-
533
- #: front-end/menu.file.php:153
534
- #: front-end/menu.file.php:166
535
- #: front-end/menu.file.php:179
536
- #: front-end/menu.file.php:192
537
- #: front-end/menu.file.php:205
538
- #: front-end/menu.file.php:224
539
- #: front-end/menu.file.php:237
540
- #: front-end/menu.file.php:253
541
- #: front-end/menu.file.php:266
542
- #: front-end/menu.file.php:279
543
- #: front-end/menu.file.php:298
544
- #: front-end/menu.file.php:312
545
- #@ profilebuilder
546
- msgid "No"
547
- msgstr "Nee"
548
 
549
- #: front-end/wppb.edit.profile.php:85
550
- #: front-end/wppb.register.php:41
551
- #@ profilebuilder
552
  msgid "The information size you were trying to submit was larger than"
553
  msgstr "De omvang van gegevens die u probeert te versturen was groter dan"
554
 
555
- #: front-end/wppb.edit.profile.php:86
556
- #: front-end/wppb.register.php:42
557
- #@ profilebuilder
558
  msgid "This is usually caused by a large file(s) trying to be uploaded."
559
  msgstr "Dit gebeurt meestal omdat u een te groot bestand probeert te uploaden."
560
 
561
- #: front-end/wppb.edit.profile.php:87
562
- #: front-end/wppb.register.php:43
563
- #@ profilebuilder
564
  msgid "Since it was also larger than"
565
  msgstr "Omdat het ook groter was dan"
566
 
567
- #: front-end/wppb.edit.profile.php:87
568
- #: front-end/wppb.register.php:43
569
- #@ profilebuilder
570
  msgid "no additional information is available."
571
  msgstr "geen extra informatie beschikbaar."
572
 
573
- #: front-end/wppb.edit.profile.php:569
574
- #@ profilebuilder
 
 
 
 
 
 
 
 
 
 
575
  msgid "The attachment"
576
  msgstr "De bijlage"
577
 
578
- #: front-end/wppb.edit.profile.php:569
579
- #@ profilebuilder
580
  msgid "was successfully deleted."
581
  msgstr "is succesvol verwijderd."
582
 
583
- #: front-end/wppb.edit.profile.php:591
584
- #@ profilebuilder
 
 
 
 
 
585
  msgid "The email address you entered is already registered to a different user."
586
  msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
587
 
588
- #: front-end/wppb.edit.profile.php:591
589
- #: front-end/wppb.edit.profile.php:601
590
- #@ profilebuilder
591
  msgid "The email address was"
592
  msgstr "E-mail adres was"
593
 
594
- #: front-end/wppb.edit.profile.php:591
595
- #: front-end/wppb.edit.profile.php:601
596
- #: front-end/wppb.edit.profile.php:611
597
- #: front-end/wppb.edit.profile.php:620
598
- #: front-end/wppb.edit.profile.php:646
599
- #: front-end/wppb.edit.profile.php:654
600
- #@ profilebuilder
 
 
 
 
 
 
 
 
 
 
 
 
601
  msgid "updated along with the rest of the information."
602
  msgstr "ge-update samen met de rest van de gegevens."
603
 
604
- #: front-end/wppb.edit.profile.php:601
605
- #@ profilebuilder
606
  msgid "The email address you entered is invalid."
607
  msgstr "Het ingetoetste e-mail adres is ongeldig."
608
 
609
- #: front-end/wppb.edit.profile.php:611
610
- #@ profilebuilder
611
  msgid "The passwords you entered do not match."
612
  msgstr "De ingetoetste wachtwoorden zijn niet gelijk."
613
 
614
- #: front-end/wppb.edit.profile.php:611
615
- #: front-end/wppb.edit.profile.php:620
616
- #@ profilebuilder
617
  msgid "The password was"
618
  msgstr "Wachtwoord was"
619
 
620
- #: front-end/wppb.edit.profile.php:620
621
- #@ profilebuilder
622
  msgid "You didn't complete both password fields."
623
  msgstr "U heeft beide wachtwoord velden niet ingevuld."
624
 
625
- #: front-end/wppb.edit.profile.php:627
626
- #@ profilebuilder
627
  msgid "Your profile was NOT updated!"
628
  msgstr "Uw profiel is NIET ge-update!"
629
 
630
- #: front-end/wppb.edit.profile.php:636
631
- #@ profilebuilder
632
  msgid "There was an error while trying to upload the following attachments:"
633
  msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
634
 
635
- #: front-end/wppb.edit.profile.php:646
636
- #@ profilebuilder
637
  msgid "Possible cause: the size was bigger than"
638
  msgstr "Mogelijke oorzaak: de grootte was groter dan"
639
 
640
- #: front-end/wppb.edit.profile.php:646
641
- #@ profilebuilder
642
  msgid "The listed attachements were"
643
  msgstr "De vermelde attachments waren"
644
 
645
- #: front-end/wppb.edit.profile.php:654
646
- #@ profilebuilder
647
  msgid "There was an error while trying to upload your avatar picture."
648
  msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
649
 
650
- #: front-end/wppb.edit.profile.php:654
651
- #@ profilebuilder
652
  msgid "Possible cause: size/incorrect file-type."
653
  msgstr "Mogelijke oorzaak: grootte/verkeerd bestand-type."
654
 
655
- #: front-end/wppb.edit.profile.php:654
656
- #@ profilebuilder
657
  msgid "The avatar was"
658
  msgstr "De avatar is"
659
 
660
- #: front-end/wppb.edit.profile.php:679
661
- #@ profilebuilder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  msgid "Usernames cannot be changed."
663
  msgstr "Gebruikersnaam kan niet gewijzigd worden."
664
 
665
- #: front-end/wppb.login.php:53
666
- #@ profilebuilder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  msgid "You are currently logged in as"
668
  msgstr "U bent momenteel ingelogd als"
669
 
670
- #: front-end/wppb.login.php:54
671
- #@ profilebuilder
 
 
 
 
 
672
  msgid "Log out"
673
  msgstr "Uitloggen"
674
 
675
- #: front-end/wppb.login.php:73
676
- #@ profilebuilder
677
  msgid "You have successfully logged in as"
678
  msgstr "U bent succesvol ingelogd als"
679
 
680
- #: front-end/wppb.login.php:100
681
- #@ profilebuilder
682
  msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
683
  msgstr "U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, klik svp op"
684
 
685
- #: front-end/wppb.login.php:100
686
- #@ profilebuilder
 
687
  msgid "here"
688
  msgstr "hier"
689
 
690
- #: front-end/wppb.login.php:108
691
- #: front-end/wppb.recover.password.php:327
692
- #@ profilebuilder
693
  msgid "ERROR:"
694
  msgstr "FOUT:"
695
 
696
- #: front-end/wppb.login.php:108
697
- #@ profilebuilder
698
  msgid "The username field is empty"
699
  msgstr "Veld voor gebruikersnaam is leeg"
700
 
701
- #: front-end/wppb.recover.password.php:108
702
- #: front-end/wppb.recover.password.php:153
703
- #@ profilebuilder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
704
  msgid "A password reset email has been sent to "
705
  msgstr "E-mail over wachtwoord resetten is gestuurd naar"
706
 
707
- #: front-end/wppb.recover.password.php:108
708
- #: front-end/wppb.recover.password.php:153
709
- #@ profilebuilder
710
  msgid "Following the link sent in the email address will reset the password."
711
  msgstr "Via de link in de gestuurde e-mail wordt uw wachtwoord ge-reset."
712
 
713
- #: front-end/wppb.recover.password.php:120
714
- #: front-end/wppb.recover.password.php:165
715
- #@ profilebuilder
716
  msgid "Someone requested that the password be reset for the following account: "
717
  msgstr "Iemand heeft gevraagd om wachtwoord te resetten voor account:"
718
 
719
- #: front-end/wppb.recover.password.php:122
720
- #: front-end/wppb.recover.password.php:167
721
- #@ profilebuilder
722
  msgid "If this was a mistake, just ignore this email and nothing will happen."
723
  msgstr "Als dit een fout was, kunt u deze e-mail negeren. Er zal niets gebeuren."
724
 
725
- #: front-end/wppb.recover.password.php:123
726
- #: front-end/wppb.recover.password.php:168
727
- #@ profilebuilder
728
  msgid "To reset your password, visit the following link:"
729
  msgstr "Om uw wachtwoord te resetten, ga naar de link:"
730
 
731
- #: front-end/wppb.recover.password.php:127
732
- #: front-end/wppb.recover.password.php:172
733
- #@ profilebuilder
734
  msgid "Password Reset Feature from"
735
  msgstr "Functie om wachtwoord te resetten van"
736
 
737
- #: front-end/wppb.recover.password.php:136
738
- #: front-end/wppb.recover.password.php:181
739
- #@ profilebuilder
740
- msgid "ERROR"
741
- msgstr "FOUT"
742
-
743
- #: front-end/wppb.recover.password.php:136
744
- #: front-end/wppb.recover.password.php:181
745
- #@ profilebuilder
746
  msgid "There was an error while trying to send the activation link to "
747
  msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
748
 
749
- #: front-end/wppb.recover.password.php:146
750
- #@ profilebuilder
751
  msgid "The email address entered wasn't found in the database!"
752
  msgstr "Het ingetoetste e-mail adres is niet in de database gevonden!"
753
 
754
- #: front-end/wppb.recover.password.php:146
755
- #@ profilebuilder
756
  msgid "Please check that you entered the correct email address."
757
  msgstr "Check svp of u het juiste e-mail adres heeft ingetoetst."
758
 
759
- #: front-end/wppb.recover.password.php:188
760
- #@ profilebuilder
761
  msgid "The username entered wasn't found in the database!"
762
  msgstr "De ingetoetste gebruikersnaam is niet in de database gevonden!"
763
 
764
- #: front-end/wppb.recover.password.php:188
765
- #@ profilebuilder
766
  msgid "Please check that you entered the correct username."
767
  msgstr "Check svp of u de juiste gebuikersnaam heeft ingetoetst."
768
 
769
- #: front-end/wppb.recover.password.php:199
770
- #@ profilebuilder
771
  msgid "Your password has been successfully changed!"
772
  msgstr "Uw wachtwoord is succesvol gewijzigd!"
773
 
774
- #: front-end/wppb.recover.password.php:210
775
- #@ profilebuilder
776
- msgid "You have successfully reset your password,"
 
777
  msgstr "U heeft uw wachtwoord succesvol ge-reset"
778
 
779
- #: front-end/wppb.recover.password.php:214
780
- #: front-end/wppb.recover.password.php:228
781
- #@ profilebuilder
782
  msgid "Password Successfully Reset for"
783
  msgstr "Wachtwoord is succesvol ge-reset voor"
784
 
785
- #: front-end/wppb.recover.password.php:214
786
- #: front-end/wppb.recover.password.php:228
787
- #@ profilebuilder
788
  msgid "from"
789
  msgstr "van"
790
 
791
- #: front-end/wppb.recover.password.php:224
792
- #@ default
793
  msgid "has requested a password change via the password reset feature."
794
  msgstr ""
795
 
796
- #: front-end/wppb.recover.password.php:225
797
- #@ profilebuilder
798
  msgid "His/her new password is:"
799
  msgstr "Zijn/haar nieuwe wachtwoord is:"
800
 
801
- #: front-end/wppb.recover.password.php:288
802
- #: front-end/wppb.recover.password.php:319
803
- #@ profilebuilder
 
 
 
 
 
 
804
  msgid "Reset Password"
805
  msgstr "Reset wachtwoord"
806
 
807
- #: front-end/wppb.recover.password.php:327
808
- #@ profilebuilder
809
  msgid "Invalid key!"
810
  msgstr "Ongeldige sleutel!"
811
 
812
- #: front-end/wppb.recover.password.php:341
813
- #@ profilebuilder
814
  msgid "Please enter your username or email address."
815
  msgstr "Svp uw gebruikersnaam of e-mail adres intypen."
816
 
817
- #: front-end/wppb.recover.password.php:341
818
- #@ profilebuilder
819
  msgid "You will receive a link to create a new password via email."
820
  msgstr "U zult een e-mail ontvangen om nieuw wachtwoord aan te maken."
821
 
822
- #: front-end/wppb.recover.password.php:350
823
- #@ profilebuilder
824
  msgid "Username or E-mail"
825
  msgstr "Gebruikersnaam of e-mail adres"
826
 
827
- #: front-end/wppb.recover.password.php:359
828
- #@ profilebuilder
829
  msgid "Get New Password"
830
  msgstr "Nieuw wachtwoord"
831
 
832
- #: front-end/wppb.register.php:44
833
- #@ profilebuilder
834
- msgid "The user was NOT created!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
835
  msgstr "Gebruikers is NIET aangemaakt!"
836
 
837
- #: front-end/wppb.register.php:311
838
- #@ profilebuilder
839
- msgid "You must agree to the terms and conditions before registering!"
840
- msgstr "U moet akkoord gaan met de voorwaarden voordat u registreert!"
841
 
842
- #: front-end/wppb.register.php:313
843
- #@ profilebuilder
844
- msgid "The account was NOT created!"
845
- msgstr "Account is NIET aangemaakt!"
 
846
 
847
- #: front-end/wppb.register.php:313
848
- #@ profilebuilder
849
- msgid "(Several required fields were left uncompleted)"
850
- msgstr "(Diverse verplichte velden zijn onvolledig ingevuld)"
 
 
 
 
 
 
 
851
 
852
- #: front-end/wppb.register.php:459
853
- #@ profilebuilder
854
  msgid "New subscriber on"
855
  msgstr "Nieuwe abonee op"
856
 
857
- #: front-end/wppb.register.php:464
858
- #@ default
 
 
 
 
859
  msgid "A new subscriber has (been) registered!"
860
  msgstr ""
861
 
862
- #: front-end/wppb.register.php:508
863
- #@ profilebuilder
864
- msgid "You are logged in as"
865
- msgstr "U bent ingelogd als"
 
866
 
867
- #: front-end/wppb.register.php:508
868
- #@ profilebuilder
869
- msgid "You don't need another account."
870
- msgstr "U heeft geen ander account nodig"
871
 
872
- #: front-end/wppb.register.php:508
873
- #@ profilebuilder
874
- msgid "Log out of this account."
875
- msgstr "Uitloggen van dit account"
876
 
877
- #: front-end/wppb.register.php:508
878
- #@ profilebuilder
879
- msgid "Logout"
880
- msgstr "Uitloggen"
 
881
 
882
- #: front-end/wppb.register.php:515
883
- #@ profilebuilder
884
- msgid "A user account has been created for"
885
- msgstr "Gebruikers account is gemaakt voor"
886
 
887
- #: front-end/wppb.register.php:540
888
- #@ profilebuilder
889
- msgid "Thank you for registering"
890
- msgstr "Bedankt voor registreren"
891
 
892
- #: front-end/wppb.register.php:567
893
- #@ profilebuilder
894
- msgid "An error occured while trying to send the notification email."
895
- msgstr "Fout opgetreden tijdens verzenden van notificatie e-mail."
896
 
897
- #: front-end/wppb.register.php:571
898
- #@ profilebuilder
899
- msgid "An email containing the username and password was successfully sent."
900
- msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
901
 
902
- #: front-end/wppb.register.php:902
903
- #@ profilebuilder
904
- msgid "Send these credentials via email."
905
- msgstr "Verstuur deze gegevens via e-mail."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
906
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder v1.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:32+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "X-Poedit-Language: Dutch\n"
14
  "X-Poedit-Country: NETHERLANDS\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
+ # @ profilebuilder
22
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
23
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
24
  msgid "Profile Builder"
25
  msgstr "Profile Builder"
26
 
27
+ # @ profilebuilder
28
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
29
  msgid "Welcome to Profile Builder!"
30
  msgstr "Welkom bij Profile Builder!"
31
 
32
+ # @ profilebuilder
33
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
34
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
35
  msgstr " stelt je in staat je website aan te passen door een front-end menu voor alle gebruikers toe te voegen, waarmee ze op een flexibele manier hun gebruikersinformatie kunnen wijzigen of zich als nieuwe gebruiker kunnen registreren."
36
 
37
+ # @ profilebuilder
38
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
39
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
40
  msgstr "Ook geeft het beheerders de mogelijkheid om velden aan te passen of nieuwe toe te voegen."
41
 
42
+ # @ profilebuilder
43
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
44
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
45
  msgstr "Hiervoor voeg je een nieuwe pagina toe, en geef je deze een duidelijke naam (bijv. Profiel Bewerken)."
46
 
47
+ # @ profilebuilder
48
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
49
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
50
  msgstr "Nu hoef je alleen de volgende shortcode toe te voegen: "
51
 
52
+ # @ profilebuilder
53
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
54
  msgid "Publish your page and you are ready to go!"
55
  msgstr "Publiceer je pagina en je kunt aan de slag!"
56
 
57
+ # @ profilebuilder
58
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
59
  msgid "You can use the following shortcodes:"
60
  msgstr "Je kunt de volgende shortcodes gebruiken:"
61
 
62
+ # @ profilebuilder
63
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
64
  msgid "for a log-in form."
65
  msgstr "voor een inlog formulier."
66
 
67
+ # @ profilebuilder
68
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
69
  msgid "to add a registration form."
70
  msgstr "voor het toevoegen van een inschrijfformulier."
71
 
72
+ # @ profilebuilder
73
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
74
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
75
  msgstr "om gebruikers front-end toegang tot persoonlijke info te geven (gebruiker moet ingelogd zijn)."
76
 
77
+ # @ profilebuilder
78
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
79
+ msgid "to add a password recovery form."
80
+ msgstr "om formulier toe te voegen om wachtwoord te achterhalen."
81
+
82
+ # @ profilebuilder
83
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
84
  msgid "Users with administrator rights have access to the following features:"
85
  msgstr "Gebruikers met beheerdersrechten hebben toegang tot de volgende functies:"
86
 
87
+ # @ profilebuilder
88
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
89
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
90
  msgstr "voeg een aangepaste stylesheet toe / neem de waarden van het huidige thema over of gebruik een van de volgende stijlen ingebouwd in deze plugin: standaard, wit of zwart."
91
 
92
+ # @ profilebuilder
93
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
94
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
95
  msgstr "geef aan of de admin balk in de front-end getoond moet worden voor een specifieke gebruikersgroep."
96
 
97
+ # @ profilebuilder
98
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
99
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
100
  msgstr "geef aan welke informatievelden de gebruikers kunnen zien / wijzigen. De waarden van verborgen velden blijven ongewijzigd."
101
 
102
+ # @ profilebuilder
103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
104
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
105
  msgstr "voeg velden toe aan de bestaande, waarbij gekozen kan worden uit de volgende typen: koptekst, tekst, textgebied, selectieveld, meerkeuzeveld, enkel keuzeveld en / of uploadveld."
106
 
107
+ # @ profilebuilder
108
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
109
  msgid "add an avatar field."
110
  msgstr "voeg een avatar veld toe."
111
 
112
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
113
+ msgid "create custom redirects."
114
+ msgstr ""
115
+
116
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
117
+ msgid "front-end userlisting using the"
118
+ msgstr ""
119
+
120
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
121
+ msgid "shortcode."
122
+ msgstr ""
123
+
124
+ # @ profilebuilder
125
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
126
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
127
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
128
  msgid "NOTE:"
129
  msgstr "LET OP:"
130
 
131
+ # @ profilebuilder
132
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
133
  msgid "this plugin only adds/removes fields in the front-end."
134
  msgstr "deze plugin voegt slechts velden toe aan / verwijdert velden uit de front-end."
135
 
136
+ # @ profilebuilder
137
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
138
  msgid "The default information-fields will still be visible(and thus modifiable)"
139
  msgstr "De standaard informatievelden zullen nog steeds zichtbaar (en dus aanpasbaar) zijn"
140
 
141
+ # @ profilebuilder
142
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
143
  msgid "from the back-end, while custom fields will only be visible in the front-end."
144
  msgstr "in de back-end, terwijl de toegevoegde velden alleen zichtbaar zijn in de front-end."
145
 
146
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
147
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
148
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
149
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
150
+ msgid "General Settings"
151
+ msgstr ""
152
 
153
+ # @ profilebuilder
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
155
+ #, fuzzy
156
+ msgid "Stylesheet Used on the Front-End:"
157
  msgstr "Gebruikte stylesheet:"
158
 
159
+ # @ profilebuilder
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
161
  msgid "Default"
162
  msgstr "Standaard"
163
 
164
+ # @ profilebuilder
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
166
  msgid "White"
167
  msgstr "Wit"
168
 
169
+ # @ profilebuilder
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
171
  msgid "Black"
172
  msgstr "Zwart"
173
 
174
+ # @ profilebuilder
175
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
176
  msgid "None"
177
  msgstr "Geen"
178
 
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
180
+ msgid "\"Email Confirmation\" Feature Activated:"
181
+ msgstr ""
182
+
183
+ # @ profilebuilder
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
198
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
199
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
200
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
201
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
202
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
203
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
204
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
205
+ msgid "Yes"
206
+ msgstr "Ja"
207
+
208
+ # @ profilebuilder
209
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
210
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
211
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
212
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
213
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
214
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
215
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
217
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
228
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
230
+ msgid "No"
231
+ msgstr "Nee"
232
+
233
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
234
+ msgid "\"Admin Approval\" Feature Activated:"
235
+ msgstr ""
236
+
237
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
238
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
239
+ msgstr ""
240
+
241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
242
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
243
+ msgstr ""
244
+
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
246
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
247
+ msgstr ""
248
+
249
+ # @ default
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
256
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
258
  msgid "Save Changes"
259
  msgstr "Wijzigingen Opslaan"
260
 
261
+ # @ profilebuilder
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
264
  msgid "Show/Hide the Admin Bar on Front End"
265
  msgstr "Toon / Verberg de Admin Balk in de Front-end"
266
 
267
+ # @ profilebuilder
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
269
  msgid "User-group"
270
  msgstr "Gebruikersgroep"
271
 
272
+ # @ profilebuilder
273
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
274
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
275
  msgid "Visibility"
276
  msgstr "Zichtbaarheid"
277
 
278
+ # @ profilebuilder
279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
283
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
284
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
286
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
287
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
288
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
291
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
292
  msgid "Show"
293
  msgstr "Tonen"
294
 
295
+ # @ profilebuilder
296
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
297
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
305
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
306
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
309
  msgid "Hide"
310
  msgstr "Verbergen"
311
 
312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
313
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
314
+ msgstr ""
315
+
316
+ # @ profilebuilder
317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
318
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
319
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
320
  msgid "Default Profile Fields"
321
  msgstr "Standaard Profiel Velden"
322
 
323
+ # @ profilebuilder
324
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
325
  msgid "Input Field Name"
326
  msgstr "Voer Veldnaam In"
327
 
328
+ # @ profilebuilder
329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
330
+ msgid "Required"
331
+ msgstr "Verplicht"
332
+
333
+ # @ profilebuilder
334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
335
  msgid "Name:"
336
  msgstr "Naam:"
337
 
338
+ # @ profilebuilder
339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
341
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
345
  msgid "Username"
346
  msgstr "Gebruikersnaam"
347
 
348
+ # @ profilebuilder
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
352
  msgid "First Name"
353
  msgstr "Voornaam"
354
 
355
+ # @ profilebuilder
356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
359
  msgid "Last Name"
360
  msgstr "Achternaam"
361
 
362
+ # @ profilebuilder
363
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
366
  msgid "Nickname"
367
  msgstr "Bijnaam"
368
 
369
+ # @ profilebuilder
370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
371
  msgid "Display name publicly as..."
372
  msgstr "Toon naam publiekelijk als..."
373
 
374
+ # @ profilebuilder
375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
376
  msgid "Contact Info:"
377
  msgstr "Contact Informatie:"
378
 
379
+ # @ profilebuilder
380
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
382
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
383
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
384
  msgid "E-mail"
385
  msgstr "E-mail"
386
 
387
+ # @ profilebuilder
388
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
392
  msgid "Website"
393
  msgstr "Website"
394
 
395
+ # @ profilebuilder
396
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
397
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
398
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
399
  msgid "AIM"
400
  msgstr "AIM"
401
 
402
+ # @ profilebuilder
403
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
406
  msgid "Yahoo IM"
407
  msgstr "Yahoo IM"
408
 
409
+ # @ profilebuilder
410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
411
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
412
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
413
  msgid "Jabber / Google Talk"
414
  msgstr "Jabber / Google Talk"
415
 
416
+ # @ profilebuilder
417
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
418
  msgid "About Yourself:"
419
  msgstr "Over Jezelf:"
420
 
421
+ # @ profilebuilder
422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
424
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
425
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
426
  msgid "Biographical Info"
427
  msgstr "Biografie"
428
 
429
+ # @ profilebuilder
430
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
431
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
432
  msgid "New Password"
433
  msgstr "Nieuw Wachtwoord"
434
 
435
+ # @ profilebuilder
436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
437
  msgid "Basic Information"
438
  msgstr "Basis Informatie"
439
 
440
+ # @ profilebuilder
441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
442
  msgid "Show/Hide the Admin Bar on Front-end"
443
  msgstr "Toon / Verberg de Admin Balk"
444
 
445
+ # @ profilebuilder
446
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
447
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
448
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
449
  msgid "Extra Profile Fields"
450
  msgstr "Extra Profiel Velden"
451
 
452
+ # @ profilebuilder
453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid "Addons"
455
  msgstr "Addons"
456
 
457
+ # @ profilebuilder
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
459
+ msgid "Register Your Version"
460
+ msgstr "Registreer Je Versie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
 
462
+ # @ profilebuilder
463
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
464
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
465
  msgid "The information size you were trying to submit was larger than"
466
  msgstr "De omvang van gegevens die u probeert te versturen was groter dan"
467
 
468
+ # @ profilebuilder
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
471
  msgid "This is usually caused by a large file(s) trying to be uploaded."
472
  msgstr "Dit gebeurt meestal omdat u een te groot bestand probeert te uploaden."
473
 
474
+ # @ profilebuilder
475
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
477
  msgid "Since it was also larger than"
478
  msgstr "Omdat het ook groter was dan"
479
 
480
+ # @ profilebuilder
481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
482
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
483
  msgid "no additional information is available."
484
  msgstr "geen extra informatie beschikbaar."
485
 
486
+ # @ profilebuilder
487
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
488
+ msgid "You must be logged in to edit your profile."
489
+ msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
490
+
491
+ # @ profilebuilder
492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
493
+ msgid "The avatar was successfully deleted."
494
+ msgstr "De avatar is succesvol verwijderd."
495
+
496
+ # @ profilebuilder
497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
498
  msgid "The attachment"
499
  msgstr "De bijlage"
500
 
501
+ # @ profilebuilder
502
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
503
  msgid "was successfully deleted."
504
  msgstr "is succesvol verwijderd."
505
 
506
+ # @ profilebuilder
507
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
508
+ msgid "The changes have been successfully saved."
509
+ msgstr "De wijzigingen zijn succesvol opgeslagen."
510
+
511
+ # @ profilebuilder
512
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
513
  msgid "The email address you entered is already registered to a different user."
514
  msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
515
 
516
+ # @ profilebuilder
517
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
518
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
519
  msgid "The email address was"
520
  msgstr "E-mail adres was"
521
 
522
+ # @ profilebuilder
523
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
524
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
526
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
527
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
530
+ msgid "NOT"
531
+ msgstr "NIET"
532
+
533
+ # @ profilebuilder
534
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
535
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
537
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
538
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
539
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
541
  msgid "updated along with the rest of the information."
542
  msgstr "ge-update samen met de rest van de gegevens."
543
 
544
+ # @ profilebuilder
545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
546
  msgid "The email address you entered is invalid."
547
  msgstr "Het ingetoetste e-mail adres is ongeldig."
548
 
549
+ # @ profilebuilder
550
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
551
  msgid "The passwords you entered do not match."
552
  msgstr "De ingetoetste wachtwoorden zijn niet gelijk."
553
 
554
+ # @ profilebuilder
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
557
  msgid "The password was"
558
  msgstr "Wachtwoord was"
559
 
560
+ # @ profilebuilder
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
562
  msgid "You didn't complete both password fields."
563
  msgstr "U heeft beide wachtwoord velden niet ingevuld."
564
 
565
+ # @ profilebuilder
566
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
567
  msgid "Your profile was NOT updated!"
568
  msgstr "Uw profiel is NIET ge-update!"
569
 
570
+ # @ profilebuilder
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
572
  msgid "There was an error while trying to upload the following attachments:"
573
  msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
574
 
575
+ # @ profilebuilder
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
577
  msgid "Possible cause: the size was bigger than"
578
  msgstr "Mogelijke oorzaak: de grootte was groter dan"
579
 
580
+ # @ profilebuilder
581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
582
  msgid "The listed attachements were"
583
  msgstr "De vermelde attachments waren"
584
 
585
+ # @ profilebuilder
586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
587
  msgid "There was an error while trying to upload your avatar picture."
588
  msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
589
 
590
+ # @ profilebuilder
591
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
592
  msgid "Possible cause: size/incorrect file-type."
593
  msgstr "Mogelijke oorzaak: grootte/verkeerd bestand-type."
594
 
595
+ # @ profilebuilder
596
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
597
  msgid "The avatar was"
598
  msgstr "De avatar is"
599
 
600
+ # @ profilebuilder
601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
602
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
603
+ #, fuzzy
604
+ msgid "There was an error while trying to upload the following attachment(s)"
605
+ msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
606
+
607
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
609
+ msgid "Only files with the following extension(s) can be uploaded:"
610
+ msgstr ""
611
+
612
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
613
+ msgid "This file was"
614
+ msgstr ""
615
+
616
+ # @ profilebuilder
617
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
619
+ msgid "Name"
620
+ msgstr "Naam"
621
+
622
+ # @ profilebuilder
623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
624
  msgid "Usernames cannot be changed."
625
  msgstr "Gebruikersnaam kan niet gewijzigd worden."
626
 
627
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
630
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
631
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
635
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
636
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
637
+ msgid "This field is marked as required by the administrator."
638
+ msgstr ""
639
+
640
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
641
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
642
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
645
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
650
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
651
+ msgstr ""
652
+
653
+ # @ profilebuilder
654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
655
+ msgid "Display name publicly as"
656
+ msgstr "Naam publiekelijk tonen als"
657
+
658
+ # @ profilebuilder
659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
661
+ msgid "Contact Info"
662
+ msgstr "Contact Informatie"
663
+
664
+ # @ profilebuilder
665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
666
+ msgid "(required)"
667
+ msgstr "(verplicht)"
668
+
669
+ # @ profilebuilder
670
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
672
+ msgid "About Yourself"
673
+ msgstr "Over Jezelf"
674
+
675
+ # @ profilebuilder
676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
677
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
680
+ msgid "Repeat Password"
681
+ msgstr "Herhaal Wachtwoord"
682
+
683
+ # @ profilebuilder
684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
685
+ msgid "Update"
686
+ msgstr "Bijwerken"
687
+
688
+ # @ profilebuilder
689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
690
  msgid "You are currently logged in as"
691
  msgstr "U bent momenteel ingelogd als"
692
 
693
+ # @ profilebuilder
694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
695
+ msgid "Log out of this account"
696
+ msgstr "Gebruiker uitloggen"
697
+
698
+ # @ profilebuilder
699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
700
  msgid "Log out"
701
  msgstr "Uitloggen"
702
 
703
+ # @ profilebuilder
704
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
705
  msgid "You have successfully logged in as"
706
  msgstr "U bent succesvol ingelogd als"
707
 
708
+ # @ profilebuilder
709
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
710
  msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
711
  msgstr "U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, klik svp op"
712
 
713
+ # @ profilebuilder
714
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
715
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
716
  msgid "here"
717
  msgstr "hier"
718
 
719
+ # @ profilebuilder
720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
721
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
722
  msgid "ERROR:"
723
  msgstr "FOUT:"
724
 
725
+ # @ profilebuilder
726
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
727
  msgid "The username field is empty"
728
  msgstr "Veld voor gebruikersnaam is leeg"
729
 
730
+ # @ profilebuilder
731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
733
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
734
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
735
+ msgid "Password"
736
+ msgstr "Wachtwoord"
737
+
738
+ # @ profilebuilder
739
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
740
+ msgid "Log in"
741
+ msgstr "Inloggen"
742
+
743
+ # @ profilebuilder
744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
745
+ msgid "Remember me"
746
+ msgstr "Onthoud gegevens"
747
+
748
+ # @ profilebuilder
749
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
750
+ msgid "Lost password?"
751
+ msgstr "Wachtwoord vergeten?"
752
+
753
+ # @ profilebuilder
754
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
755
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
757
+ msgid "ERROR"
758
+ msgstr "FOUT"
759
+
760
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
761
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
762
+ msgstr ""
763
+
764
+ # @ profilebuilder
765
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
766
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
767
  msgid "A password reset email has been sent to "
768
  msgstr "E-mail over wachtwoord resetten is gestuurd naar"
769
 
770
+ # @ profilebuilder
771
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
773
  msgid "Following the link sent in the email address will reset the password."
774
  msgstr "Via de link in de gestuurde e-mail wordt uw wachtwoord ge-reset."
775
 
776
+ # @ profilebuilder
777
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
778
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
779
  msgid "Someone requested that the password be reset for the following account: "
780
  msgstr "Iemand heeft gevraagd om wachtwoord te resetten voor account:"
781
 
782
+ # @ profilebuilder
783
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
784
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
785
  msgid "If this was a mistake, just ignore this email and nothing will happen."
786
  msgstr "Als dit een fout was, kunt u deze e-mail negeren. Er zal niets gebeuren."
787
 
788
+ # @ profilebuilder
789
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
790
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
791
  msgid "To reset your password, visit the following link:"
792
  msgstr "Om uw wachtwoord te resetten, ga naar de link:"
793
 
794
+ # @ profilebuilder
795
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
796
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
797
  msgid "Password Reset Feature from"
798
  msgstr "Functie om wachtwoord te resetten van"
799
 
800
+ # @ profilebuilder
801
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
802
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
 
 
 
 
 
 
803
  msgid "There was an error while trying to send the activation link to "
804
  msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
805
 
806
+ # @ profilebuilder
807
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
808
  msgid "The email address entered wasn't found in the database!"
809
  msgstr "Het ingetoetste e-mail adres is niet in de database gevonden!"
810
 
811
+ # @ profilebuilder
812
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
813
  msgid "Please check that you entered the correct email address."
814
  msgstr "Check svp of u het juiste e-mail adres heeft ingetoetst."
815
 
816
+ # @ profilebuilder
817
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
818
  msgid "The username entered wasn't found in the database!"
819
  msgstr "De ingetoetste gebruikersnaam is niet in de database gevonden!"
820
 
821
+ # @ profilebuilder
822
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
823
  msgid "Please check that you entered the correct username."
824
  msgstr "Check svp of u de juiste gebuikersnaam heeft ingetoetst."
825
 
826
+ # @ profilebuilder
827
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
828
  msgid "Your password has been successfully changed!"
829
  msgstr "Uw wachtwoord is succesvol gewijzigd!"
830
 
831
+ # @ profilebuilder
832
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
833
+ #, fuzzy
834
+ msgid "You have successfully reset your password to:"
835
  msgstr "U heeft uw wachtwoord succesvol ge-reset"
836
 
837
+ # @ profilebuilder
838
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
839
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
840
  msgid "Password Successfully Reset for"
841
  msgstr "Wachtwoord is succesvol ge-reset voor"
842
 
843
+ # @ profilebuilder
844
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
845
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
846
  msgid "from"
847
  msgstr "van"
848
 
849
+ # @ default
850
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
851
  msgid "has requested a password change via the password reset feature."
852
  msgstr ""
853
 
854
+ # @ profilebuilder
855
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
856
  msgid "His/her new password is:"
857
  msgstr "Zijn/haar nieuwe wachtwoord is:"
858
 
859
+ # @ profilebuilder
860
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
861
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
862
+ msgid "The entered passwords don't match!"
863
+ msgstr "De ingevoerde wachtwoorden komen niet overeen!"
864
+
865
+ # @ profilebuilder
866
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
867
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
868
  msgid "Reset Password"
869
  msgstr "Reset wachtwoord"
870
 
871
+ # @ profilebuilder
872
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
873
  msgid "Invalid key!"
874
  msgstr "Ongeldige sleutel!"
875
 
876
+ # @ profilebuilder
877
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
878
  msgid "Please enter your username or email address."
879
  msgstr "Svp uw gebruikersnaam of e-mail adres intypen."
880
 
881
+ # @ profilebuilder
882
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
883
  msgid "You will receive a link to create a new password via email."
884
  msgstr "U zult een e-mail ontvangen om nieuw wachtwoord aan te maken."
885
 
886
+ # @ profilebuilder
887
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
888
  msgid "Username or E-mail"
889
  msgstr "Gebruikersnaam of e-mail adres"
890
 
891
+ # @ profilebuilder
892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
893
  msgid "Get New Password"
894
  msgstr "Nieuw wachtwoord"
895
 
896
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
897
+ #, php-format
898
+ msgid ""
899
+ "To activate your user, please click the following link:\n"
900
+ "\n"
901
+ "%s\n"
902
+ "\n"
903
+ "After you activate, you will receive *another email* with your login.\n"
904
+ "\n"
905
+ msgstr ""
906
+
907
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
908
+ #, php-format
909
+ msgid "[%1$s] Activate %2$s"
910
+ msgstr ""
911
+
912
+ # @ profilebuilder
913
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
914
+ #, fuzzy
915
+ msgid "Invalid activation key!"
916
+ msgstr "Ongeldige sleutel!"
917
+
918
+ # @ profilebuilder
919
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
920
+ #, fuzzy
921
+ msgid "The user is already active!"
922
  msgstr "Gebruikers is NIET aangemaakt!"
923
 
924
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
925
+ msgid "Could not create user!"
926
+ msgstr ""
 
927
 
928
+ # @ profilebuilder
929
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
930
+ #, fuzzy
931
+ msgid "That username is already activated!"
932
+ msgstr "Sorry, die gebruikersnaam bestaat al!"
933
 
934
+ # @ profilebuilder
935
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
936
+ #, fuzzy
937
+ msgid "The user was successfully activated."
938
+ msgstr "De avatar is succesvol verwijderd."
939
+
940
+ # @ profilebuilder
941
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
942
+ #, fuzzy
943
+ msgid "There was an error while trying to activate the user."
944
+ msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
945
 
946
+ # @ profilebuilder
947
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
948
  msgid "New subscriber on"
949
  msgstr "Nieuwe abonee op"
950
 
951
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
952
+ msgid "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!"
953
+ msgstr ""
954
+
955
+ # @ default
956
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
957
  msgid "A new subscriber has (been) registered!"
958
  msgstr ""
959
 
960
+ # @ profilebuilder
961
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
962
+ #, fuzzy
963
+ msgid "A new account has been created for you."
964
+ msgstr "Gebruikers account is gemaakt voor"
965
 
966
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
967
+ msgid "Welcome to"
968
+ msgstr ""
 
969
 
970
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
971
+ msgid "Your username is:"
972
+ msgstr ""
 
973
 
974
+ # @ profilebuilder
975
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
976
+ #, fuzzy
977
+ msgid "and password:"
978
+ msgstr "Wachtwoord"
979
 
980
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
981
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
982
+ msgstr ""
 
983
 
984
+ # @ profilebuilder
985
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
986
+ msgid "The user was NOT created!"
987
+ msgstr "Gebruikers is NIET aangemaakt!"
988
 
989
+ # @ profilebuilder
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
991
+ msgid "A username is required for registration."
992
+ msgstr "Een gebruikersnaam is vereist voor registratie."
993
 
994
+ # @ profilebuilder
995
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
996
+ msgid "Sorry, that username already exists!"
997
+ msgstr "Sorry, die gebruikersnaam bestaat al!"
998
 
999
+ # @ profilebuilder
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
1001
+ msgid "You must enter a valid email address."
1002
+ msgstr "U moet een geldig e-mail adres invullen."
1003
+
1004
+ # @ profilebuilder
1005
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
1006
+ msgid "Sorry, that email address is already used!"
1007
+ msgstr "Sorry, dat e-mail adres is al in gebruik!"
1008
+
1009
+ # @ profilebuilder
1010
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
1011
+ msgid "You didn't complete one of the password-fields!"
1012
+ msgstr "Je hebt een van de wachtwoord-velden niet volledig ingevuld!"
1013
+
1014
+ # @ profilebuilder
1015
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
1016
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
1017
+ msgid "The account was NOT created!"
1018
+ msgstr "Account is NIET aangemaakt!"
1019
+
1020
+ # @ profilebuilder
1021
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
1022
+ msgid "You must agree to the terms and conditions before registering!"
1023
+ msgstr "U moet akkoord gaan met de voorwaarden voordat u registreert!"
1024
+
1025
+ # @ profilebuilder
1026
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
1027
+ msgid "(Several required fields were left uncompleted)"
1028
+ msgstr "(Diverse verplichte velden zijn onvolledig ingevuld)"
1029
+
1030
+ # @ profilebuilder
1031
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
1032
+ #, fuzzy
1033
+ msgid "This username is already reserved to be used soon."
1034
+ msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
1035
+
1036
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
1037
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
1038
+ msgid "Please try a different one!"
1039
+ msgstr ""
1040
+
1041
+ # @ profilebuilder
1042
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
1043
+ #, fuzzy
1044
+ msgid "This email address is already reserved to be used soon."
1045
+ msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
1046
+
1047
+ # @ profilebuilder
1048
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
1049
+ msgid "You are logged in as"
1050
+ msgstr "U bent ingelogd als"
1051
+
1052
+ # @ profilebuilder
1053
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
1054
+ msgid "You don't need another account."
1055
+ msgstr "U heeft geen ander account nodig"
1056
+
1057
+ # @ profilebuilder
1058
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
1059
+ msgid "Log out of this account."
1060
+ msgstr "Uitloggen van dit account"
1061
+
1062
+ # @ profilebuilder
1063
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
1064
+ msgid "Logout"
1065
+ msgstr "Uitloggen"
1066
+
1067
+ # @ profilebuilder
1068
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
1069
+ #, fuzzy
1070
+ msgid "An email has been sent to "
1071
+ msgstr "E-mail over wachtwoord resetten is gestuurd naar"
1072
+
1073
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
1074
+ msgid "with information on how to activate his/her account"
1075
+ msgstr ""
1076
+
1077
+ # @ profilebuilder
1078
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
1079
+ msgid "A user account has been created for"
1080
+ msgstr "Gebruikers account is gemaakt voor"
1081
+
1082
+ # @ profilebuilder
1083
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
1084
+ #, fuzzy
1085
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
1086
+ msgstr "U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, klik svp op"
1087
+
1088
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
1089
+ msgid "An email has been sent to you with information on how to activate your account"
1090
+ msgstr ""
1091
+
1092
+ # @ profilebuilder
1093
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
1094
+ msgid "Thank you for registering"
1095
+ msgstr "Bedankt voor registreren"
1096
+
1097
+ # @ profilebuilder
1098
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
1099
+ msgid "An error occured while trying to send the notification email."
1100
+ msgstr "Fout opgetreden tijdens verzenden van notificatie e-mail."
1101
+
1102
+ # @ profilebuilder
1103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
1104
+ #, fuzzy
1105
+ msgid "An email containing activation instructions was successfully sent."
1106
+ msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
1107
+
1108
+ # @ profilebuilder
1109
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
1110
+ msgid "An email containing the username and password was successfully sent."
1111
+ msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
1112
+
1113
+ # @ profilebuilder
1114
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
1115
+ msgid "Users can register themselves or you can manually create users here."
1116
+ msgstr "Gebruikers kunnen zich registreren of je kunt hier handmatig gebruikers aanmaken."
1117
+
1118
+ # @ profilebuilder
1119
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
1120
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1121
+ msgstr "Gebruikers kunnen zich op dit moment niet registreren, maar je kunt hier wel handmatig gebruikers aanmaken."
1122
+
1123
+ # @ profilebuilder
1124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
1125
+ msgid "Only an administrator can add new users."
1126
+ msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
1127
+
1128
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
1129
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
1130
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
1131
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
1132
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
1133
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
1134
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
1135
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
1136
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
1137
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
1138
+ msgstr ""
1139
+
1140
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
1141
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
1142
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
1143
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1144
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1145
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1146
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1147
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1148
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1149
+ msgid "This field is marked as required by the administrator"
1150
+ msgstr ""
1151
+
1152
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1153
+ msgid "Anti-Spam"
1154
+ msgstr ""
1155
+
1156
+ # @ profilebuilder
1157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1158
+ msgid "Send these credentials via email."
1159
+ msgstr "Verstuur deze gegevens via e-mail."
1160
+
1161
+ # @ profilebuilder
1162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1163
+ msgid "Add User"
1164
+ msgstr "Gebruiker Toevoegen"
1165
+
1166
+ # @ profilebuilder
1167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1168
+ msgid "Register"
1169
+ msgstr "Registreren"
1170
+
1171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1172
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1173
+ msgstr ""
1174
+
1175
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1176
+ msgid "heading"
1177
+ msgstr ""
1178
+
1179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1180
+ msgid "\" custom field."
1181
+ msgstr ""
1182
+
1183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1184
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1185
+ msgstr ""
1186
+
1187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1188
+ msgid "Drag"
1189
+ msgstr ""
1190
+
1191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1192
+ msgid "Drop"
1193
+ msgstr ""
1194
+
1195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1196
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1197
+ msgstr ""
1198
+
1199
+ # @ profilebuilder
1200
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1201
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1202
+ #, fuzzy
1203
+ msgid "Title"
1204
+ msgstr "Wit"
1205
+
1206
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1207
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1208
+ msgid "Type"
1209
+ msgstr ""
1210
+
1211
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1212
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1213
+ msgid "Meta-Key"
1214
+ msgstr ""
1215
+
1216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1217
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1218
+ msgid "ID"
1219
+ msgstr ""
1220
+
1221
+ # @ profilebuilder
1222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1224
+ #, fuzzy
1225
+ msgid "Req'd"
1226
+ msgstr "Verplicht"
1227
+
1228
+ # @ profilebuilder
1229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1231
+ #, fuzzy
1232
+ msgid "Add Option"
1233
+ msgstr "Addons"
1234
+
1235
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1236
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1237
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1238
+ msgid "Edit"
1239
+ msgstr ""
1240
+
1241
+ # @ profilebuilder
1242
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1245
+ #, fuzzy
1246
+ msgid "Delete"
1247
+ msgstr "Standaard"
1248
+
1249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1250
+ msgid "Title:"
1251
+ msgstr ""
1252
+
1253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1254
+ msgid "The title of the item."
1255
+ msgstr ""
1256
+
1257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1258
+ msgid "Meta-Key:"
1259
+ msgstr ""
1260
+
1261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1262
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1263
+ msgstr ""
1264
+
1265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1266
+ msgid "Option Type:"
1267
+ msgstr ""
1268
+
1269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1270
+ msgid "Choose one of the supported option types."
1271
+ msgstr ""
1272
+
1273
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1274
+ msgid "Description:"
1275
+ msgstr ""
1276
+
1277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1278
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1279
+ msgstr ""
1280
+
1281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1282
+ msgid "You can only insert links using standard HTML syntax:"
1283
+ msgstr ""
1284
+
1285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1286
+ msgid "address"
1287
+ msgstr ""
1288
+
1289
+ # @ profilebuilder
1290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1291
+ #, fuzzy
1292
+ msgid "name"
1293
+ msgstr "Naam"
1294
+
1295
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1296
+ msgid "Options:"
1297
+ msgstr ""
1298
+
1299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1300
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1301
+ msgstr ""
1302
+
1303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1304
+ msgid "ID:"
1305
+ msgstr ""
1306
+
1307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1308
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1309
+ msgstr ""
1310
+
1311
+ # @ profilebuilder
1312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1313
+ #, fuzzy
1314
+ msgid "Required:"
1315
+ msgstr "Verplicht"
1316
+
1317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1318
+ msgid "Check this box to make this field required."
1319
+ msgstr ""
1320
+
1321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1322
+ msgid "Cancel"
1323
+ msgstr ""
1324
+
1325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1326
+ msgid "Save"
1327
+ msgstr ""
1328
+
1329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1330
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1331
+ msgid "Register your version of Profile Builder Pro"
1332
+ msgstr ""
1333
+
1334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1335
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1336
+ msgstr ""
1337
+
1338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1339
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1340
+ msgstr ""
1341
+
1342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1343
+ msgid "Serial Number:"
1344
+ msgstr ""
1345
+
1346
+ # @ profilebuilder
1347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1348
+ #, fuzzy
1349
+ msgid "The serial number was successfully validated!"
1350
+ msgstr "De avatar is succesvol verwijderd."
1351
+
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1353
+ msgid "The serial number couldn't be validated or isn't valid!"
1354
+ msgstr ""
1355
+
1356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1357
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1358
+ msgstr ""
1359
+
1360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1361
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1362
+ msgstr ""
1363
+
1364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1365
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1366
+ msgstr ""
1367
+
1368
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1369
+ msgid "You can find it in Profile Builder's menu."
1370
+ msgstr ""
1371
+
1372
+ # @ profilebuilder
1373
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1374
+ #, fuzzy
1375
+ msgid "You need to be logged in to view the userlisting!"
1376
+ msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
1377
+
1378
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1379
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1380
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1382
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1383
+ msgid "Search Users by All Fields"
1384
+ msgstr ""
1385
+
1386
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1387
+ msgid "Leave Blank and Press Search to List All Users"
1388
+ msgstr ""
1389
+
1390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1391
+ msgid "Search"
1392
+ msgstr ""
1393
+
1394
+ # @ profilebuilder
1395
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1396
+ #, fuzzy
1397
+ msgid "First/Lastname"
1398
+ msgstr "Voornaam"
1399
+
1400
+ # @ profilebuilder
1401
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1402
+ #, fuzzy
1403
+ msgid "Email"
1404
+ msgstr "E-mail"
1405
+
1406
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1407
+ msgid "Sign-up Date"
1408
+ msgstr ""
1409
+
1410
+ # @ profilebuilder
1411
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1412
+ #, fuzzy
1413
+ msgid "Firstname"
1414
+ msgstr "Voornaam"
1415
+
1416
+ # @ profilebuilder
1417
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1418
+ #, fuzzy
1419
+ msgid "Lastname"
1420
+ msgstr "Achternaam"
1421
+
1422
+ # @ profilebuilder
1423
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1424
+ #, fuzzy
1425
+ msgid "Display Name"
1426
+ msgstr "Voornaam"
1427
+
1428
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1429
+ msgid "Posts"
1430
+ msgstr ""
1431
+
1432
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1433
+ msgid "Click here to see more information about this user"
1434
+ msgstr ""
1435
+
1436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1437
+ msgid "More..."
1438
+ msgstr ""
1439
+
1440
+ # @ profilebuilder
1441
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1442
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1443
+ #, fuzzy
1444
+ msgid "No uploaded attachment"
1445
+ msgstr "De bijlage"
1446
+
1447
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1448
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1449
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1450
+ msgid "Click to see the current attachment"
1451
+ msgstr ""
1452
+
1453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1454
+ msgid "Click here to go back"
1455
+ msgstr ""
1456
+
1457
+ # @ profilebuilder
1458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1459
+ #, fuzzy
1460
+ msgid "Back"
1461
+ msgstr "Zwart"
1462
+
1463
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1464
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1465
+ msgid "Current file"
1466
+ msgstr ""
1467
+
1468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1469
+ msgid "Avatar"
1470
+ msgstr ""
1471
+
1472
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1473
+ msgid "No results found!"
1474
+ msgstr ""
1475
+
1476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1477
+ msgid "&laquo;&laquo; First"
1478
+ msgstr ""
1479
+
1480
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1481
+ msgid "&laquo; Prev"
1482
+ msgstr ""
1483
+
1484
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1485
+ msgid "Next &raquo; "
1486
+ msgstr ""
1487
+
1488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1489
+ msgid "Last &raquo;&raquo;"
1490
+ msgstr ""
1491
+
1492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1493
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1494
+ msgstr ""
1495
+
1496
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1498
+ msgid "Activate/Deactivate Addons"
1499
+ msgstr ""
1500
+
1501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1502
+ msgid "Name/Description"
1503
+ msgstr ""
1504
+
1505
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1506
+ msgid "Status"
1507
+ msgstr ""
1508
+
1509
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1510
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1511
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1512
+ msgid "User-Listing"
1513
+ msgstr ""
1514
+
1515
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1517
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1518
+ msgid "Active"
1519
+ msgstr ""
1520
+
1521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1522
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1523
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1524
+ msgid "Inactive"
1525
+ msgstr ""
1526
+
1527
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1530
+ msgid "Custom Redirects"
1531
+ msgstr ""
1532
+
1533
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1534
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1535
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1536
+ msgid "reCAPTCHA"
1537
+ msgstr ""
1538
+
1539
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1540
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1541
+ msgstr ""
1542
+
1543
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1544
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1545
+ msgstr ""
1546
+
1547
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1548
+ msgid "These settings are applied to the front-end userlisting."
1549
+ msgstr ""
1550
+
1551
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1552
+ msgid "Number of Users/Page: "
1553
+ msgstr ""
1554
+
1555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1556
+ msgid "Default Sorting Order: "
1557
+ msgstr ""
1558
+
1559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1560
+ msgid "\"All-Userlisting\" Template"
1561
+ msgstr ""
1562
+
1563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1564
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1565
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1566
+ msgstr ""
1567
+
1568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1569
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1570
+ msgstr ""
1571
+
1572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1573
+ msgid "Avatar size: "
1574
+ msgstr ""
1575
+
1576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1577
+ msgid "Insert \"Sort By\" Field:"
1578
+ msgstr ""
1579
+
1580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1582
+ msgid "Insert \"User-Meta\" Field:"
1583
+ msgstr ""
1584
+
1585
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1587
+ msgid "Insert Extra Functions:"
1588
+ msgstr ""
1589
+
1590
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1591
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1592
+ msgstr ""
1593
+
1594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1595
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1596
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1597
+ msgstr ""
1598
+
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1600
+ msgid "\"Single-Userlisting\" Template"
1601
+ msgstr ""
1602
+
1603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1604
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1605
+ msgstr ""
1606
+
1607
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1608
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1609
+ msgstr ""
1610
+
1611
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1612
+ msgid "Redirects on custom page requests:"
1613
+ msgstr ""
1614
+
1615
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1616
+ msgid "Action"
1617
+ msgstr ""
1618
+
1619
+ # @ profilebuilder
1620
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1621
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1622
+ #, fuzzy
1623
+ msgid "Redirect"
1624
+ msgstr "Verplicht"
1625
+
1626
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1627
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1628
+ msgid "URL"
1629
+ msgstr ""
1630
+
1631
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1632
+ msgid "After Registration:"
1633
+ msgstr ""
1634
+
1635
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1636
+ msgid "After Login:"
1637
+ msgstr ""
1638
+
1639
+ # @ profilebuilder
1640
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1641
+ #, fuzzy
1642
+ msgid "Recover Password (*)"
1643
+ msgstr "Reset wachtwoord"
1644
+
1645
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1646
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1647
+ msgstr ""
1648
+
1649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1650
+ msgid "Redirects on default WordPress page requests:"
1651
+ msgstr ""
1652
+
1653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1654
+ msgid "Requested WP Page"
1655
+ msgstr ""
1656
+
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1658
+ msgid "Default WP Login Page(*)"
1659
+ msgstr ""
1660
+
1661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1662
+ msgid "Default WP Logout Page(**)"
1663
+ msgstr ""
1664
+
1665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1666
+ msgid "Default WP Register Page"
1667
+ msgstr ""
1668
+
1669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1670
+ msgid "Default WP Dashboard (***)"
1671
+ msgstr ""
1672
+
1673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1674
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1675
+ msgstr ""
1676
+
1677
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1678
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1679
+ msgstr ""
1680
+
1681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1682
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1683
+ msgstr ""
1684
+
1685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1686
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1687
+ msgstr ""
1688
+
1689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1690
+ msgid "For this you must get a public and private key from Google:"
1691
+ msgstr ""
1692
+
1693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1694
+ msgid "Key"
1695
+ msgstr ""
1696
+
1697
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1698
+ msgid "Code"
1699
+ msgstr ""
1700
+
1701
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1702
+ msgid "Public Key:"
1703
+ msgstr ""
1704
+
1705
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1706
+ msgid "Private Key:"
1707
+ msgstr ""
1708
+
1709
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1710
+ msgid "Could not open socket!"
1711
+ msgstr ""
1712
+
1713
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1714
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1715
+ msgid "To use reCAPTCHA you must get an API key from"
1716
+ msgstr ""
1717
+
1718
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1719
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1720
+ msgstr ""
1721
+
1722
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1723
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1724
+ msgstr ""
1725
+
1726
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1727
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1728
+ msgstr ""
1729
+
1730
+ # @ profilebuilder
1731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1733
+ #, fuzzy
1734
+ msgid "You must give your option a title."
1735
+ msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
1736
+
1737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1738
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1739
+ msgid "You have entered an invalid meta-key format!"
1740
+ msgstr ""
1741
+
1742
+ # @ profilebuilder
1743
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1745
+ #, fuzzy
1746
+ msgid "You must enter a valid meta-key."
1747
+ msgstr "U moet een geldig e-mail adres invullen."
1748
+
1749
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1750
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1751
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1753
+ msgid "That meta-key is already in use."
1754
+ msgstr ""
1755
+
1756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1758
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1759
+ msgstr ""
1760
+
1761
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1763
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1764
+ msgstr ""
1765
+
1766
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1768
+ msgid "The textarea row value must be numeric."
1769
+ msgstr ""
1770
+
1771
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1773
+ msgid "The maxlength attribute must be numeric."
1774
+ msgstr ""
1775
+
1776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1777
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1778
+ msgid "The value must be between 20 and 200!"
1779
+ msgstr ""
1780
+
1781
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1782
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1783
+ msgid "The width component of the entered value must be numeric!"
1784
+ msgstr ""
1785
+
1786
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1787
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1788
+ msgid "The height component of the entered value must be numeric!"
1789
+ msgstr ""
1790
+
1791
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1792
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1793
+ msgid "The width component of the entered value must be between 20 and 200!"
1794
+ msgstr ""
1795
+
1796
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1797
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1798
+ msgid "The height component of the entered value must be between 20 and 200!"
1799
+ msgstr ""
1800
+
1801
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1802
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1803
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1804
+ msgstr ""
1805
+
1806
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1807
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1808
+ msgid "The entered avatar size must be numeric!"
1809
+ msgstr ""
1810
+
1811
+ # @ profilebuilder
1812
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1813
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1814
+ #, fuzzy
1815
+ msgid "There was an error, please try again."
1816
+ msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
1817
+
1818
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1819
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1820
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1821
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1822
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1823
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1824
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1825
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1826
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1827
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1828
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1829
+ msgstr ""
1830
+
1831
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1832
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1833
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1834
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1835
+ msgid "max upload size"
1836
+ msgstr ""
1837
+
1838
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1839
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1840
+ msgid "Are you sure you want to delete this attachment?"
1841
+ msgstr ""
1842
+
1843
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1844
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1845
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1846
+ msgid "Click to delete the current attachment"
1847
+ msgstr ""
1848
+
1849
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1850
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1851
+ msgstr ""
1852
+
1853
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1854
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1855
+ msgid "Current avatar"
1856
+ msgstr ""
1857
+
1858
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1859
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1860
+ msgid "No uploaded avatar"
1861
+ msgstr ""
1862
+
1863
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1864
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1865
+ msgid "Are you sure you want to delete this avatar?"
1866
+ msgstr ""
1867
+
1868
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1869
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1870
+ msgstr ""
1871
+
1872
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1873
+ msgid "Click to see the current avatar"
1874
+ msgstr ""
1875
+
1876
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1877
+ msgid "Click to delete the avatar"
1878
+ msgstr ""
1879
+
1880
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1881
+ msgid "The user-validation has failed - the avatar was not deleted!"
1882
+ msgstr ""
1883
+
1884
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1885
+ msgid "The user-validation has failed - the attachment was not deleted!"
1886
+ msgstr ""
1887
+
1888
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1889
+ msgid "Do you want to"
1890
+ msgstr ""
1891
+
1892
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1893
+ msgid "the current user?"
1894
+ msgstr ""
1895
+
1896
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1897
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1898
+ msgid "Your account on"
1899
+ msgstr ""
1900
+
1901
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1902
+ msgid "has been approved!"
1903
+ msgstr ""
1904
+
1905
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1906
+ msgid "An administrator has just approved your account on"
1907
+ msgstr ""
1908
+
1909
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1910
+ msgid "has been unapproved!"
1911
+ msgstr ""
1912
+
1913
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1914
+ msgid "An administrator has just unapproved your account on"
1915
+ msgstr ""
1916
+
1917
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1918
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1919
+ msgid "Approve"
1920
+ msgstr ""
1921
+
1922
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1923
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1924
+ msgid "Unapproved"
1925
+ msgstr ""
1926
+
1927
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1928
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1929
+ msgid "Unapprove"
1930
+ msgstr ""
1931
+
1932
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1933
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1934
+ msgid "Approved"
1935
+ msgstr ""
1936
+
1937
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1938
+ msgid "unapprove"
1939
+ msgstr ""
1940
+
1941
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1942
+ msgid "approve"
1943
+ msgstr ""
1944
+
1945
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1946
+ msgid "Are you sure you want to"
1947
+ msgstr ""
1948
+
1949
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1950
+ msgid "this user?"
1951
+ msgstr ""
1952
+
1953
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1954
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1955
+ msgstr ""
1956
 
translation/profilebuilder-pl_PL.mo CHANGED
Binary file
translation/profilebuilder-pl_PL.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2011-12-26 12:01+0100\n"
7
- "Last-Translator: Mateusz Adamus <mateusz.adamus@gmail.com>\n"
8
  "Language-Team: Mateusz Adamus <mateusz.adamus@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,495 +15,1796 @@ msgstr ""
15
  "X-Poedit-Country: POLAND\n"
16
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
17
 
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
19
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
20
  msgid "Profile Builder"
21
  msgstr "Profile Builder "
22
 
23
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
24
  msgid "Welcome to Profile Builder!"
25
  msgstr "Witamy w Profile Builder!"
26
 
27
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
28
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
29
  msgstr "pozwala Ci dostosować twoją stronę dodając menu dla wszystkich użytkowników, dając im większe możliwości edycji informacji oraz umożliwiając rejestrację nowych użytkowników."
30
 
31
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
32
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
33
  msgstr "Pozwala również, użytkownikom z uprawnieniami administratorów, na wybranie podstawowych lub dodawanie nowych pól."
34
 
35
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
36
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
37
  msgstr "Aby to osiągnąć, utwórz nową stronę i nadaj jej intuicyjną nazwę (np.: Edit Profile)."
38
 
39
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
40
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
41
  msgstr "Teraz wszystko co musisz zrobić, to dodać następujący kod (dla poprzedniego przykładu): "
42
 
43
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
44
  msgid "Publish your page and you are ready to go!"
45
  msgstr "Opublikuj stronę i to wszystko!"
46
 
47
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
48
  msgid "You can use the following shortcodes:"
49
  msgstr "Możesz użyć następujących kodów:"
50
 
51
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
52
  msgid "for a log-in form."
53
  msgstr "dla formularza logowania."
54
 
55
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
56
  msgid "to add a registration form."
57
  msgstr "aby dodać formularz rejestracji."
58
 
59
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
60
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
61
  msgstr "aby udostępnić użytkownikom dostęp do ich informacji z poziomu strony (wymaga aby użytkownik był zalogowany)."
62
 
63
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
 
64
  msgid "Users with administrator rights have access to the following features:"
65
  msgstr "Użytkownicy, z uprawnieniami administratorów, mają dostęp do następujących funkcjonalności:"
66
 
67
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
68
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
69
  msgstr "dodanie niestandardowych stylów/odziedziczenie z aktualnego motywu lub użycie jednego z predefiniowanych stylów: domyślny, biały lub czarny."
70
 
71
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
72
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
73
  msgstr "wybranie czy pasek administratora ma być widoczny/ukryty na stronie dla poszczególnych grup użytkowników."
74
 
75
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
76
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
77
  msgstr "wybranie, które pola mają być widoczne/edytowalne dla użytkowników. Ukryte pola będą nieedytowalne."
78
 
79
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
80
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
81
  msgstr "dodanie niestandardowych pól do standardowych, z możliwością wybrania typu pola: nagłówek, tekst, długi tekst, pole wyboru, pole wielokrotnego wyboru, pole pojedynczego wyboru i/lub upload."
82
 
83
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
84
  msgid "add an avatar field."
85
  msgstr "dodanie pola na avatar"
86
 
87
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  msgid "NOTE:"
89
  msgstr "UWAGA:"
90
 
91
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
92
  msgid "this plugin only adds/removes fields in the front-end."
93
  msgstr "ten plugin dodaje/usuwa pola wyłącznie na stronie."
94
 
95
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
96
  msgid "The default information-fields will still be visible(and thus modifiable)"
97
  msgstr "Domyślne pola nadal będą widoczne (i przez to edytowalne) "
98
 
99
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
100
  msgid "from the back-end, while custom fields will only be visible in the front-end."
101
  msgstr "z poziomu panelu administratora, podczas gdy nowo utworzone pola będą widoczne tylko z poziomu strony."
102
 
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
104
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
105
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
106
- msgid "Plugin Layout"
107
- msgstr "Układ pluginu"
 
108
 
109
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
110
- msgid "Stylesheet used:"
 
111
  msgstr "Używane style:"
112
 
113
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
114
  msgid "Default"
115
  msgstr "Domyślny"
116
 
117
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
118
  msgid "White"
119
  msgstr "Biały"
120
 
121
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
122
  msgid "Black"
123
  msgstr "Czarny"
124
 
125
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
126
  msgid "None"
127
  msgstr "Żaden"
128
 
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
131
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  msgid "Save Changes"
133
  msgstr "Zachowaj zmiany"
134
 
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
136
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
137
  msgid "Show/Hide the Admin Bar on Front End"
138
  msgstr "Pokaż/ukryj pasek administratora na stronie"
139
 
140
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
141
  msgid "User-group"
142
  msgstr "Grupa użytkowników"
143
 
144
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
145
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
146
  msgid "Visibility"
147
  msgstr "Widoczność"
148
 
149
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
161
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
162
  msgid "Show"
163
  msgstr "Pokaż"
164
 
165
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
177
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
178
  msgid "Hide"
179
  msgstr "Ukryj"
180
 
181
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
182
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
183
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
184
  msgid "Default Profile Fields"
185
  msgstr "Domyślne pola profilu"
186
 
187
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
188
  msgid "Input Field Name"
189
  msgstr "Nazwa pola"
190
 
191
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
192
  msgid "Name:"
193
  msgstr "Imię:"
194
 
195
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
196
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
198
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
199
  msgid "Username"
200
  msgstr "Nazwa użytkownika"
201
 
202
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
203
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
204
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
205
  msgid "First Name"
206
  msgstr "Imię"
207
 
208
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
209
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
210
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
211
  msgid "Last Name"
212
  msgstr "Nazwisko"
213
 
214
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
215
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
216
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
217
  msgid "Nickname"
218
  msgstr "Ksywa"
219
 
220
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
221
  msgid "Display name publicly as..."
222
  msgstr "Pokaż wszystkim jako..."
223
 
224
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
225
  msgid "Contact Info:"
226
  msgstr "Dane kontaktowe:"
227
 
228
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
229
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
230
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
231
  msgid "E-mail"
232
  msgstr "E-mail"
233
 
234
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
235
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
236
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
237
  msgid "Website"
238
  msgstr "Strona www"
239
 
240
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
241
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
242
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
243
  msgid "AIM"
244
  msgstr "AIM"
245
 
246
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
247
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
248
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
249
  msgid "Yahoo IM"
250
  msgstr "Komunikator Yahoo"
251
 
252
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
253
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
254
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
255
  msgid "Jabber / Google Talk"
256
  msgstr "Jabber / GTalk"
257
 
258
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
259
  msgid "About Yourself:"
260
  msgstr "O sobie:"
261
 
262
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
263
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
264
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
265
  msgid "Biographical Info"
266
  msgstr "Informacje biograficzne"
267
 
268
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
269
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
270
  msgid "New Password"
271
  msgstr "Nowe hasło"
272
 
273
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
274
  msgid "Basic Information"
275
  msgstr "Informacje podstawowe"
276
 
277
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
278
  msgid "Show/Hide the Admin Bar on Front-end"
279
  msgstr "Pokaż/ukryj pasek administratora na stronie"
280
 
281
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
282
  msgid "Extra Profile Fields"
283
  msgstr "Dodatkowe pola profilu"
284
 
285
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
286
  msgid "Register Your Version"
287
  msgstr "Zarejestruj swoją wersję"
288
 
289
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "You must be logged in to edit your profile."
291
  msgstr "Musisz być zalogowany żeby edytować swój profil."
292
 
293
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
294
  msgid "The avatar was successfully deleted."
295
  msgstr "Avatar został poprawnie usunięty."
296
 
297
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
298
- msgid "The attachment \""
 
299
  msgstr "Załącznik \""
300
 
301
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
302
- msgid "\" was successfully deleted."
 
303
  msgstr "\" został poprawnie usunięty."
304
 
305
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
306
  msgid "The changes have been successfully saved."
307
  msgstr "Zmiany zostały zachowane"
308
 
309
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
310
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
311
  msgstr "Podany adres email jest już wykorzystywany przez innego użytkownika.<br/>Adres email to "
312
 
313
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
318
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
319
  msgid "NOT"
320
  msgstr "NIE "
321
 
322
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
327
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
328
- msgid " updated along with the rest of the information."
 
 
329
  msgstr " zaktualizowane razem z pozostałymi informacjami."
330
 
331
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
332
- msgid "The email address you entered is invalid. <br/> The email address was "
 
333
  msgstr "Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
334
 
335
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
336
- msgid "The passwords you entered do not match. <br/> The password was "
 
337
  msgstr "Hasła, które wprowadziłeś, nie są jednakowe. <br/> Hasło to "
338
 
339
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
340
- msgid "You didn't complete both password fields. <br/> The password was "
341
- msgstr "Nie wypełniłeś oby pól z hasłem. <br/> Hasło to "
 
 
 
 
 
 
 
 
 
 
 
342
 
343
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
344
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
345
  msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
346
 
347
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
348
- msgid "<br/>Possible cause: the size was bigger than "
 
349
  msgstr "<br/>Prawdopodobna przyczyna: rozmiar był większy niż "
350
 
351
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
352
- msgid "b.<br/>The listed attachements were "
 
353
  msgstr "b.<br/>Wskazane załaczniki zostały "
354
 
355
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
356
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
357
- msgstr "Wystąpił błąd podczas wgrywania twojego avatara.<br/>Możliwe przyczyny to: rozmiar/niepoprawny typ pliku.<br/>Avatar to"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
 
359
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
360
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
361
  msgid "Name"
362
  msgstr "Imię"
363
 
364
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
365
- msgid " Usernames cannot be changed."
 
366
  msgstr "Nazwa użytkownika nie może zostać zmieniona."
367
 
368
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
371
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
372
- msgid "(required)"
373
- msgstr "(wymagane)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
 
375
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
376
  msgid "Display name publicly as"
377
  msgstr "Pokaż publicznie jako"
378
 
379
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
380
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
381
  msgid "Contact Info"
382
  msgstr "Dane kontaktowe"
383
 
384
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
385
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
386
  msgid "About Yourself"
387
  msgstr "O sobie"
388
 
389
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
390
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
391
  msgid "Repeat Password"
392
  msgstr "Powtórz hasło"
393
 
394
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
395
  msgid "Update"
396
  msgstr "Aktualizuj"
397
 
398
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
399
- #, php-format
400
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
401
  msgstr "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
402
 
403
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
404
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
405
  msgid "Log out of this account"
406
  msgstr "Wyloguj się z konta"
407
 
408
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
409
- msgid "Log out &raquo;"
 
410
  msgstr "Wyloguj się &raguo;"
411
 
412
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
413
- #, php-format
414
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
415
  msgstr "Zalogowałeś się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
416
 
417
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
418
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  msgid "Password"
420
  msgstr "Hasło"
421
 
422
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
423
  msgid "Log in"
424
  msgstr "Zaloguj się"
425
 
426
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
427
  msgid "Remember me"
428
  msgstr "Zapamiętaj mnie"
429
 
430
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
431
  msgid "Lost password?"
432
  msgstr "Zapomniałeś hasła?"
433
 
434
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
435
  msgid "A username is required for registration."
436
  msgstr "Nazwa użytkownika jest wymagana do rejestracji."
437
 
438
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
439
  msgid "Sorry, that username already exists!"
440
  msgstr "Podany użytkownik już istnieje!"
441
 
442
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
443
  msgid "You must enter a valid email address."
444
  msgstr "Musisz podać poprawny adres email."
445
 
446
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
447
  msgid "Sorry, that email address is already used!"
448
  msgstr "Podany adres email został już wykorzystany!"
449
 
450
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
451
  msgid "You didn't complete one of the password-fields!"
452
  msgstr "Nie wypełniłeś jednego z pól z hasłem!"
453
 
454
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
455
- msgid "The entered passwords don't match!"
456
- msgstr "Wprowadzone hasła nie zgadzają się!"
 
 
457
 
458
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
459
- #, php-format
460
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
461
- msgstr "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Nie potrzebujesz dodatkowego konta."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
 
463
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
464
- msgid "Logout &raquo;"
 
465
  msgstr "Wyloguj się &raquo;"
466
 
467
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
468
- #, php-format
469
- msgid "A user account for %1$s has been created."
 
 
 
 
 
 
 
 
470
  msgstr "Konto dla %1$s zostało założone."
471
 
472
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
473
- #, php-format
474
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
475
  msgstr "Dziękujemy za rejestrację, %1$s."
476
 
477
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
478
  msgid "Users can register themselves or you can manually create users here."
479
  msgstr "Użytkownicy mogą zarejestrować się sami albo możesz dodać ich tutaj."
480
 
481
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
482
  msgid "Users cannot currently register themselves, but you can manually create users here."
483
  msgstr "Aktualnie użytkownicy nie mogą zarejestrować się sami, ale możesz dodać ich tutaj."
484
 
485
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
486
  msgid "Only an administrator can add new users."
487
  msgstr "Tylko administrator może dodać nowych użytkowników."
488
 
489
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
490
  msgid "Send these credentials via email."
491
  msgstr "Wyślij hasło i login emailem."
492
 
493
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
494
  msgid "Add User"
495
  msgstr "Dodaj użytkownika"
496
 
497
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
498
  msgid "Register"
499
  msgstr "Zarejestruj się"
500
 
501
- msgid "Required"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  msgstr "Wymagane"
503
 
504
- msgid "Yes"
505
- msgstr "Tak"
 
 
506
 
507
- msgid "No"
508
- msgstr "Nie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
509
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:32+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: Mateusz Adamus <mateusz.adamus@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "X-Poedit-Country: POLAND\n"
16
  "X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
17
 
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
19
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
20
  msgid "Profile Builder"
21
  msgstr "Profile Builder "
22
 
23
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
24
  msgid "Welcome to Profile Builder!"
25
  msgstr "Witamy w Profile Builder!"
26
 
27
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
28
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
29
  msgstr "pozwala Ci dostosować twoją stronę dodając menu dla wszystkich użytkowników, dając im większe możliwości edycji informacji oraz umożliwiając rejestrację nowych użytkowników."
30
 
31
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
32
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
33
  msgstr "Pozwala również, użytkownikom z uprawnieniami administratorów, na wybranie podstawowych lub dodawanie nowych pól."
34
 
35
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
36
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
37
  msgstr "Aby to osiągnąć, utwórz nową stronę i nadaj jej intuicyjną nazwę (np.: Edit Profile)."
38
 
39
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
40
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
41
  msgstr "Teraz wszystko co musisz zrobić, to dodać następujący kod (dla poprzedniego przykładu): "
42
 
43
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
44
  msgid "Publish your page and you are ready to go!"
45
  msgstr "Opublikuj stronę i to wszystko!"
46
 
47
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
48
  msgid "You can use the following shortcodes:"
49
  msgstr "Możesz użyć następujących kodów:"
50
 
51
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
52
  msgid "for a log-in form."
53
  msgstr "dla formularza logowania."
54
 
55
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
56
  msgid "to add a registration form."
57
  msgstr "aby dodać formularz rejestracji."
58
 
59
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
60
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
61
  msgstr "aby udostępnić użytkownikom dostęp do ich informacji z poziomu strony (wymaga aby użytkownik był zalogowany)."
62
 
63
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
64
+ #, fuzzy
65
+ msgid "to add a password recovery form."
66
+ msgstr "aby dodać formularz rejestracji."
67
+
68
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
69
  msgid "Users with administrator rights have access to the following features:"
70
  msgstr "Użytkownicy, z uprawnieniami administratorów, mają dostęp do następujących funkcjonalności:"
71
 
72
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
73
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
74
  msgstr "dodanie niestandardowych stylów/odziedziczenie z aktualnego motywu lub użycie jednego z predefiniowanych stylów: domyślny, biały lub czarny."
75
 
76
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
77
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
78
  msgstr "wybranie czy pasek administratora ma być widoczny/ukryty na stronie dla poszczególnych grup użytkowników."
79
 
80
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
81
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
82
  msgstr "wybranie, które pola mają być widoczne/edytowalne dla użytkowników. Ukryte pola będą nieedytowalne."
83
 
84
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
85
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
86
  msgstr "dodanie niestandardowych pól do standardowych, z możliwością wybrania typu pola: nagłówek, tekst, długi tekst, pole wyboru, pole wielokrotnego wyboru, pole pojedynczego wyboru i/lub upload."
87
 
88
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
89
  msgid "add an avatar field."
90
  msgstr "dodanie pola na avatar"
91
 
92
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
93
+ msgid "create custom redirects."
94
+ msgstr ""
95
+
96
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
97
+ msgid "front-end userlisting using the"
98
+ msgstr ""
99
+
100
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
101
+ msgid "shortcode."
102
+ msgstr ""
103
+
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
106
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
107
  msgid "NOTE:"
108
  msgstr "UWAGA:"
109
 
110
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
111
  msgid "this plugin only adds/removes fields in the front-end."
112
  msgstr "ten plugin dodaje/usuwa pola wyłącznie na stronie."
113
 
114
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
115
  msgid "The default information-fields will still be visible(and thus modifiable)"
116
  msgstr "Domyślne pola nadal będą widoczne (i przez to edytowalne) "
117
 
118
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
119
  msgid "from the back-end, while custom fields will only be visible in the front-end."
120
  msgstr "z poziomu panelu administratora, podczas gdy nowo utworzone pola będą widoczne tylko z poziomu strony."
121
 
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
125
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
126
+ msgid "General Settings"
127
+ msgstr ""
128
 
129
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
130
+ #, fuzzy
131
+ msgid "Stylesheet Used on the Front-End:"
132
  msgstr "Używane style:"
133
 
134
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
135
  msgid "Default"
136
  msgstr "Domyślny"
137
 
138
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
139
  msgid "White"
140
  msgstr "Biały"
141
 
142
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
143
  msgid "Black"
144
  msgstr "Czarny"
145
 
146
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
147
  msgid "None"
148
  msgstr "Żaden"
149
 
150
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
151
+ msgid "\"Email Confirmation\" Feature Activated:"
152
+ msgstr ""
153
+
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
174
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
175
+ msgid "Yes"
176
+ msgstr "Tak"
177
+
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
198
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
199
+ msgid "No"
200
+ msgstr "Nie"
201
+
202
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
203
+ msgid "\"Admin Approval\" Feature Activated:"
204
+ msgstr ""
205
+
206
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
207
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
208
+ msgstr ""
209
+
210
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
211
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
212
+ msgstr ""
213
+
214
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
215
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
216
+ msgstr ""
217
+
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
226
  msgid "Save Changes"
227
  msgstr "Zachowaj zmiany"
228
 
229
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
231
  msgid "Show/Hide the Admin Bar on Front End"
232
  msgstr "Pokaż/ukryj pasek administratora na stronie"
233
 
234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
235
  msgid "User-group"
236
  msgstr "Grupa użytkowników"
237
 
238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
239
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
240
  msgid "Visibility"
241
  msgstr "Widoczność"
242
 
243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
256
  msgid "Show"
257
  msgstr "Pokaż"
258
 
259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
272
  msgid "Hide"
273
  msgstr "Ukryj"
274
 
275
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
276
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
277
+ msgstr ""
278
+
279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
282
  msgid "Default Profile Fields"
283
  msgstr "Domyślne pola profilu"
284
 
285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
286
  msgid "Input Field Name"
287
  msgstr "Nazwa pola"
288
 
289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
290
+ msgid "Required"
291
+ msgstr "Wymagane"
292
+
293
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
294
  msgid "Name:"
295
  msgstr "Imię:"
296
 
297
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
303
  msgid "Username"
304
  msgstr "Nazwa użytkownika"
305
 
306
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
308
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
309
  msgid "First Name"
310
  msgstr "Imię"
311
 
312
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
313
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
314
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
315
  msgid "Last Name"
316
  msgstr "Nazwisko"
317
 
318
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
319
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
320
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
321
  msgid "Nickname"
322
  msgstr "Ksywa"
323
 
324
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
325
  msgid "Display name publicly as..."
326
  msgstr "Pokaż wszystkim jako..."
327
 
328
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
329
  msgid "Contact Info:"
330
  msgstr "Dane kontaktowe:"
331
 
332
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
333
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
334
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
336
  msgid "E-mail"
337
  msgstr "E-mail"
338
 
339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
341
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
343
  msgid "Website"
344
  msgstr "Strona www"
345
 
346
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
347
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
349
  msgid "AIM"
350
  msgstr "AIM"
351
 
352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
353
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
355
  msgid "Yahoo IM"
356
  msgstr "Komunikator Yahoo"
357
 
358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
359
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
361
  msgid "Jabber / Google Talk"
362
  msgstr "Jabber / GTalk"
363
 
364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
365
  msgid "About Yourself:"
366
  msgstr "O sobie:"
367
 
368
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
372
  msgid "Biographical Info"
373
  msgstr "Informacje biograficzne"
374
 
375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
377
  msgid "New Password"
378
  msgstr "Nowe hasło"
379
 
380
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
381
  msgid "Basic Information"
382
  msgstr "Informacje podstawowe"
383
 
384
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
385
  msgid "Show/Hide the Admin Bar on Front-end"
386
  msgstr "Pokaż/ukryj pasek administratora na stronie"
387
 
388
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
389
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
391
  msgid "Extra Profile Fields"
392
  msgstr "Dodatkowe pola profilu"
393
 
394
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
395
+ msgid "Addons"
396
+ msgstr ""
397
+
398
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
399
  msgid "Register Your Version"
400
  msgstr "Zarejestruj swoją wersję"
401
 
402
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
403
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
404
+ msgid "The information size you were trying to submit was larger than"
405
+ msgstr ""
406
+
407
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
408
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
409
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
410
+ msgstr ""
411
+
412
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
413
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
414
+ msgid "Since it was also larger than"
415
+ msgstr ""
416
+
417
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
418
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
419
+ msgid "no additional information is available."
420
+ msgstr ""
421
+
422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
423
  msgid "You must be logged in to edit your profile."
424
  msgstr "Musisz być zalogowany żeby edytować swój profil."
425
 
426
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
427
  msgid "The avatar was successfully deleted."
428
  msgstr "Avatar został poprawnie usunięty."
429
 
430
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
431
+ #, fuzzy
432
+ msgid "The attachment"
433
  msgstr "Załącznik \""
434
 
435
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
436
+ #, fuzzy
437
+ msgid "was successfully deleted."
438
  msgstr "\" został poprawnie usunięty."
439
 
440
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
441
  msgid "The changes have been successfully saved."
442
  msgstr "Zmiany zostały zachowane"
443
 
444
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
445
+ #, fuzzy
446
+ msgid "The email address you entered is already registered to a different user."
447
  msgstr "Podany adres email jest już wykorzystywany przez innego użytkownika.<br/>Adres email to "
448
 
449
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
451
+ msgid "The email address was"
452
+ msgstr ""
453
+
454
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
455
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
456
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
461
  msgid "NOT"
462
  msgstr "NIE "
463
 
464
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
465
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
471
+ #, fuzzy
472
+ msgid "updated along with the rest of the information."
473
  msgstr " zaktualizowane razem z pozostałymi informacjami."
474
 
475
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
476
+ #, fuzzy
477
+ msgid "The email address you entered is invalid."
478
  msgstr "Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
479
 
480
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
481
+ #, fuzzy
482
+ msgid "The passwords you entered do not match."
483
  msgstr "Hasła, które wprowadziłeś, nie są jednakowe. <br/> Hasło to "
484
 
485
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
486
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
487
+ #, fuzzy
488
+ msgid "The password was"
489
+ msgstr "Nowe hasło"
490
+
491
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
492
+ #, fuzzy
493
+ msgid "You didn't complete both password fields."
494
+ msgstr "Nie wypełniłeś jednego z pól z hasłem!"
495
+
496
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
497
+ msgid "Your profile was NOT updated!"
498
+ msgstr ""
499
 
500
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
501
+ #, fuzzy
502
+ msgid "There was an error while trying to upload the following attachments:"
503
  msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
504
 
505
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
506
+ #, fuzzy
507
+ msgid "Possible cause: the size was bigger than"
508
  msgstr "<br/>Prawdopodobna przyczyna: rozmiar był większy niż "
509
 
510
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
511
+ #, fuzzy
512
+ msgid "The listed attachements were"
513
  msgstr "b.<br/>Wskazane załaczniki zostały "
514
 
515
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
516
+ #, fuzzy
517
+ msgid "There was an error while trying to upload your avatar picture."
518
+ msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
519
+
520
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
521
+ msgid "Possible cause: size/incorrect file-type."
522
+ msgstr ""
523
+
524
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
525
+ msgid "The avatar was"
526
+ msgstr ""
527
+
528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
530
+ #, fuzzy
531
+ msgid "There was an error while trying to upload the following attachment(s)"
532
+ msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
533
+
534
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
535
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
536
+ msgid "Only files with the following extension(s) can be uploaded:"
537
+ msgstr ""
538
+
539
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
540
+ msgid "This file was"
541
+ msgstr ""
542
 
543
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
545
  msgid "Name"
546
  msgstr "Imię"
547
 
548
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
549
+ #, fuzzy
550
+ msgid "Usernames cannot be changed."
551
  msgstr "Nazwa użytkownika nie może zostać zmieniona."
552
 
553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
555
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
560
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
563
+ msgid "This field is marked as required by the administrator."
564
+ msgstr ""
565
+
566
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
568
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
574
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
576
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
577
+ msgstr ""
578
 
579
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
580
  msgid "Display name publicly as"
581
  msgstr "Pokaż publicznie jako"
582
 
583
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
584
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
585
  msgid "Contact Info"
586
  msgstr "Dane kontaktowe"
587
 
588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
589
+ msgid "(required)"
590
+ msgstr "(wymagane)"
591
+
592
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
594
  msgid "About Yourself"
595
  msgstr "O sobie"
596
 
597
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:332
599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:362
600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
601
  msgid "Repeat Password"
602
  msgstr "Powtórz hasło"
603
 
604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
605
  msgid "Update"
606
  msgstr "Aktualizuj"
607
 
608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
609
+ #, fuzzy
610
+ msgid "You are currently logged in as"
611
  msgstr "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
612
 
613
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
614
  msgid "Log out of this account"
615
  msgstr "Wyloguj się z konta"
616
 
617
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
618
+ #, fuzzy
619
+ msgid "Log out"
620
  msgstr "Wyloguj się &raguo;"
621
 
622
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
623
+ #, fuzzy
624
+ msgid "You have successfully logged in as"
625
  msgstr "Zalogowałeś się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
626
 
627
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
628
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
629
+ msgstr ""
630
+
631
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
632
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
633
+ msgid "here"
634
+ msgstr ""
635
+
636
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
637
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
638
+ msgid "ERROR:"
639
+ msgstr ""
640
+
641
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
642
+ msgid "The username field is empty"
643
+ msgstr ""
644
+
645
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
647
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:357
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
649
  msgid "Password"
650
  msgstr "Hasło"
651
 
652
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
653
  msgid "Log in"
654
  msgstr "Zaloguj się"
655
 
656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
657
  msgid "Remember me"
658
  msgstr "Zapamiętaj mnie"
659
 
660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
661
  msgid "Lost password?"
662
  msgstr "Zapomniałeś hasła?"
663
 
664
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
667
+ msgid "ERROR"
668
+ msgstr ""
669
+
670
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:108
671
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
672
+ msgstr ""
673
+
674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
676
+ msgid "A password reset email has been sent to "
677
+ msgstr ""
678
+
679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:198
681
+ msgid "Following the link sent in the email address will reset the password."
682
+ msgstr ""
683
+
684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:159
685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
686
+ msgid "Someone requested that the password be reset for the following account: "
687
+ msgstr ""
688
+
689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:161
690
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
691
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
692
+ msgstr ""
693
+
694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:162
695
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:213
696
+ msgid "To reset your password, visit the following link:"
697
+ msgstr ""
698
+
699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
701
+ msgid "Password Reset Feature from"
702
+ msgstr ""
703
+
704
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:175
705
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:226
706
+ #, fuzzy
707
+ msgid "There was an error while trying to send the activation link to "
708
+ msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
709
+
710
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
711
+ #, fuzzy
712
+ msgid "The email address entered wasn't found in the database!"
713
+ msgstr "Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
714
+
715
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:185
716
+ msgid "Please check that you entered the correct email address."
717
+ msgstr ""
718
+
719
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
720
+ msgid "The username entered wasn't found in the database!"
721
+ msgstr ""
722
+
723
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:234
724
+ msgid "Please check that you entered the correct username."
725
+ msgstr ""
726
+
727
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:245
728
+ #, fuzzy
729
+ msgid "Your password has been successfully changed!"
730
+ msgstr "Zmiany zostały zachowane"
731
+
732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:259
733
+ msgid "You have successfully reset your password to:"
734
+ msgstr ""
735
+
736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
738
+ #, fuzzy
739
+ msgid "Password Successfully Reset for"
740
+ msgstr "\" został poprawnie usunięty."
741
+
742
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
743
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
744
+ msgid "from"
745
+ msgstr ""
746
+
747
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
748
+ msgid "has requested a password change via the password reset feature."
749
+ msgstr ""
750
+
751
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:274
752
+ msgid "His/her new password is:"
753
+ msgstr ""
754
+
755
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
756
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
757
+ msgid "The entered passwords don't match!"
758
+ msgstr "Wprowadzone hasła nie zgadzają się!"
759
+
760
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:339
761
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:369
762
+ #, fuzzy
763
+ msgid "Reset Password"
764
+ msgstr "Powtórz hasło"
765
+
766
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:386
767
+ msgid "Invalid key!"
768
+ msgstr ""
769
+
770
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
771
+ #, fuzzy
772
+ msgid "Please enter your username or email address."
773
+ msgstr "Musisz podać poprawny adres email."
774
+
775
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:401
776
+ msgid "You will receive a link to create a new password via email."
777
+ msgstr ""
778
+
779
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:410
780
+ #, fuzzy
781
+ msgid "Username or E-mail"
782
+ msgstr "Nazwa użytkownika"
783
+
784
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:419
785
+ #, fuzzy
786
+ msgid "Get New Password"
787
+ msgstr "Nowe hasło"
788
+
789
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
790
+ #, php-format
791
+ msgid ""
792
+ "To activate your user, please click the following link:\n"
793
+ "\n"
794
+ "%s\n"
795
+ "\n"
796
+ "After you activate, you will receive *another email* with your login.\n"
797
+ "\n"
798
+ msgstr ""
799
+
800
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
801
+ #, php-format
802
+ msgid "[%1$s] Activate %2$s"
803
+ msgstr ""
804
+
805
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
806
+ msgid "Invalid activation key!"
807
+ msgstr ""
808
+
809
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
810
+ msgid "The user is already active!"
811
+ msgstr ""
812
+
813
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
814
+ msgid "Could not create user!"
815
+ msgstr ""
816
+
817
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
818
+ #, fuzzy
819
+ msgid "That username is already activated!"
820
+ msgstr "Podany użytkownik już istnieje!"
821
+
822
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
823
+ #, fuzzy
824
+ msgid "The user was successfully activated."
825
+ msgstr "Avatar został poprawnie usunięty."
826
+
827
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
828
+ #, fuzzy
829
+ msgid "There was an error while trying to activate the user."
830
+ msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
831
+
832
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
833
+ msgid "New subscriber on"
834
+ msgstr ""
835
+
836
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
837
+ msgid "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!"
838
+ msgstr ""
839
+
840
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
841
+ msgid "A new subscriber has (been) registered!"
842
+ msgstr ""
843
+
844
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
845
+ #, fuzzy
846
+ msgid "A new account has been created for you."
847
+ msgstr "Konto dla %1$s zostało założone."
848
+
849
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
850
+ msgid "Welcome to"
851
+ msgstr ""
852
+
853
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
854
+ msgid "Your username is:"
855
+ msgstr ""
856
+
857
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
858
+ #, fuzzy
859
+ msgid "and password:"
860
+ msgstr "Hasło"
861
+
862
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
863
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
864
+ msgstr ""
865
+
866
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
867
+ msgid "The user was NOT created!"
868
+ msgstr ""
869
+
870
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
871
  msgid "A username is required for registration."
872
  msgstr "Nazwa użytkownika jest wymagana do rejestracji."
873
 
874
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
875
  msgid "Sorry, that username already exists!"
876
  msgstr "Podany użytkownik już istnieje!"
877
 
878
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
879
  msgid "You must enter a valid email address."
880
  msgstr "Musisz podać poprawny adres email."
881
 
882
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
883
  msgid "Sorry, that email address is already used!"
884
  msgstr "Podany adres email został już wykorzystany!"
885
 
886
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
887
  msgid "You didn't complete one of the password-fields!"
888
  msgstr "Nie wypełniłeś jednego z pól z hasłem!"
889
 
890
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
891
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
892
+ #, fuzzy
893
+ msgid "The account was NOT created!"
894
+ msgstr "Konto dla %1$s zostało założone."
895
 
896
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
897
+ msgid "You must agree to the terms and conditions before registering!"
898
+ msgstr ""
899
+
900
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
901
+ msgid "(Several required fields were left uncompleted)"
902
+ msgstr ""
903
+
904
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
905
+ msgid "This username is already reserved to be used soon."
906
+ msgstr ""
907
+
908
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
909
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
910
+ msgid "Please try a different one!"
911
+ msgstr ""
912
+
913
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
914
+ #, fuzzy
915
+ msgid "This email address is already reserved to be used soon."
916
+ msgstr "Podany adres email został już wykorzystany!"
917
+
918
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
919
+ msgid "You are logged in as"
920
+ msgstr ""
921
+
922
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
923
+ msgid "You don't need another account."
924
+ msgstr ""
925
+
926
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
927
+ #, fuzzy
928
+ msgid "Log out of this account."
929
+ msgstr "Wyloguj się z konta"
930
 
931
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
932
+ #, fuzzy
933
+ msgid "Logout"
934
  msgstr "Wyloguj się &raquo;"
935
 
936
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
937
+ msgid "An email has been sent to "
938
+ msgstr ""
939
+
940
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
941
+ msgid "with information on how to activate his/her account"
942
+ msgstr ""
943
+
944
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
945
+ #, fuzzy
946
+ msgid "A user account has been created for"
947
  msgstr "Konto dla %1$s zostało założone."
948
 
949
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
950
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
951
+ msgstr ""
952
+
953
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
954
+ msgid "An email has been sent to you with information on how to activate your account"
955
+ msgstr ""
956
+
957
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
958
+ #, fuzzy
959
+ msgid "Thank you for registering"
960
  msgstr "Dziękujemy za rejestrację, %1$s."
961
 
962
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
963
+ msgid "An error occured while trying to send the notification email."
964
+ msgstr ""
965
+
966
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
967
+ msgid "An email containing activation instructions was successfully sent."
968
+ msgstr ""
969
+
970
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
971
+ msgid "An email containing the username and password was successfully sent."
972
+ msgstr ""
973
+
974
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
975
  msgid "Users can register themselves or you can manually create users here."
976
  msgstr "Użytkownicy mogą zarejestrować się sami albo możesz dodać ich tutaj."
977
 
978
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
979
  msgid "Users cannot currently register themselves, but you can manually create users here."
980
  msgstr "Aktualnie użytkownicy nie mogą zarejestrować się sami, ale możesz dodać ich tutaj."
981
 
982
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
983
  msgid "Only an administrator can add new users."
984
  msgstr "Tylko administrator może dodać nowych użytkowników."
985
 
986
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
987
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
989
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
991
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
993
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
994
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
995
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
996
+ msgstr ""
997
+
998
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
999
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
1001
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1002
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1003
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1005
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1006
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1007
+ msgid "This field is marked as required by the administrator"
1008
+ msgstr ""
1009
+
1010
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1011
+ msgid "Anti-Spam"
1012
+ msgstr ""
1013
+
1014
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1015
  msgid "Send these credentials via email."
1016
  msgstr "Wyślij hasło i login emailem."
1017
 
1018
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1019
  msgid "Add User"
1020
  msgstr "Dodaj użytkownika"
1021
 
1022
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1023
  msgid "Register"
1024
  msgstr "Zarejestruj się"
1025
 
1026
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1027
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1028
+ msgstr ""
1029
+
1030
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1031
+ msgid "heading"
1032
+ msgstr ""
1033
+
1034
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1035
+ msgid "\" custom field."
1036
+ msgstr ""
1037
+
1038
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1039
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1040
+ msgstr ""
1041
+
1042
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1043
+ msgid "Drag"
1044
+ msgstr ""
1045
+
1046
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1047
+ msgid "Drop"
1048
+ msgstr ""
1049
+
1050
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1051
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1052
+ msgstr ""
1053
+
1054
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1055
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1056
+ #, fuzzy
1057
+ msgid "Title"
1058
+ msgstr "Biały"
1059
+
1060
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1061
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1062
+ msgid "Type"
1063
+ msgstr ""
1064
+
1065
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1066
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1067
+ msgid "Meta-Key"
1068
+ msgstr ""
1069
+
1070
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1071
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1072
+ msgid "ID"
1073
+ msgstr ""
1074
+
1075
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1076
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1077
+ #, fuzzy
1078
+ msgid "Req'd"
1079
  msgstr "Wymagane"
1080
 
1081
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1082
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1083
+ msgid "Add Option"
1084
+ msgstr ""
1085
 
1086
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1087
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1088
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1089
+ msgid "Edit"
1090
+ msgstr ""
1091
+
1092
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1093
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1094
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1095
+ #, fuzzy
1096
+ msgid "Delete"
1097
+ msgstr "Domyślny"
1098
+
1099
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1100
+ msgid "Title:"
1101
+ msgstr ""
1102
+
1103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1104
+ msgid "The title of the item."
1105
+ msgstr ""
1106
+
1107
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1108
+ msgid "Meta-Key:"
1109
+ msgstr ""
1110
+
1111
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1112
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1113
+ msgstr ""
1114
+
1115
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1116
+ msgid "Option Type:"
1117
+ msgstr ""
1118
+
1119
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1120
+ msgid "Choose one of the supported option types."
1121
+ msgstr ""
1122
+
1123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1124
+ msgid "Description:"
1125
+ msgstr ""
1126
+
1127
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1128
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1129
+ msgstr ""
1130
+
1131
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1132
+ msgid "You can only insert links using standard HTML syntax:"
1133
+ msgstr ""
1134
+
1135
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1136
+ msgid "address"
1137
+ msgstr ""
1138
+
1139
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1140
+ #, fuzzy
1141
+ msgid "name"
1142
+ msgstr "Imię"
1143
+
1144
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1145
+ msgid "Options:"
1146
+ msgstr ""
1147
+
1148
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1149
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1150
+ msgstr ""
1151
+
1152
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1153
+ msgid "ID:"
1154
+ msgstr ""
1155
+
1156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1157
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1158
+ msgstr ""
1159
+
1160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1161
+ #, fuzzy
1162
+ msgid "Required:"
1163
+ msgstr "Wymagane"
1164
+
1165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1166
+ msgid "Check this box to make this field required."
1167
+ msgstr ""
1168
+
1169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1170
+ msgid "Cancel"
1171
+ msgstr ""
1172
+
1173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1174
+ msgid "Save"
1175
+ msgstr ""
1176
+
1177
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1179
+ msgid "Register your version of Profile Builder Pro"
1180
+ msgstr ""
1181
+
1182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1183
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1184
+ msgstr ""
1185
+
1186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1187
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1188
+ msgstr ""
1189
+
1190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1191
+ msgid "Serial Number:"
1192
+ msgstr ""
1193
+
1194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1195
+ #, fuzzy
1196
+ msgid "The serial number was successfully validated!"
1197
+ msgstr "Avatar został poprawnie usunięty."
1198
+
1199
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1200
+ msgid "The serial number couldn't be validated or isn't valid!"
1201
+ msgstr ""
1202
+
1203
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1204
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1205
+ msgstr ""
1206
+
1207
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1208
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1209
+ msgstr ""
1210
+
1211
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1212
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1213
+ msgstr ""
1214
+
1215
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1216
+ msgid "You can find it in Profile Builder's menu."
1217
+ msgstr ""
1218
+
1219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1220
+ #, fuzzy
1221
+ msgid "You need to be logged in to view the userlisting!"
1222
+ msgstr "Musisz być zalogowany żeby edytować swój profil."
1223
+
1224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1228
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1229
+ msgid "Search Users by All Fields"
1230
+ msgstr ""
1231
+
1232
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1233
+ msgid "Leave Blank and Press Search to List All Users"
1234
+ msgstr ""
1235
+
1236
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1237
+ msgid "Search"
1238
+ msgstr ""
1239
+
1240
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1241
+ #, fuzzy
1242
+ msgid "First/Lastname"
1243
+ msgstr "Imię"
1244
+
1245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1246
+ #, fuzzy
1247
+ msgid "Email"
1248
+ msgstr "E-mail"
1249
+
1250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1251
+ msgid "Sign-up Date"
1252
+ msgstr ""
1253
+
1254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1255
+ #, fuzzy
1256
+ msgid "Firstname"
1257
+ msgstr "Imię"
1258
+
1259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1260
+ #, fuzzy
1261
+ msgid "Lastname"
1262
+ msgstr "Nazwisko"
1263
+
1264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1265
+ #, fuzzy
1266
+ msgid "Display Name"
1267
+ msgstr "Imię"
1268
+
1269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1270
+ msgid "Posts"
1271
+ msgstr ""
1272
+
1273
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1274
+ msgid "Click here to see more information about this user"
1275
+ msgstr ""
1276
+
1277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1278
+ msgid "More..."
1279
+ msgstr ""
1280
+
1281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1283
+ #, fuzzy
1284
+ msgid "No uploaded attachment"
1285
+ msgstr "Załącznik \""
1286
+
1287
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1288
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1289
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1290
+ msgid "Click to see the current attachment"
1291
+ msgstr ""
1292
+
1293
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1294
+ msgid "Click here to go back"
1295
+ msgstr ""
1296
+
1297
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1298
+ #, fuzzy
1299
+ msgid "Back"
1300
+ msgstr "Czarny"
1301
+
1302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1304
+ msgid "Current file"
1305
+ msgstr ""
1306
+
1307
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1308
+ msgid "Avatar"
1309
+ msgstr ""
1310
+
1311
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1312
+ msgid "No results found!"
1313
+ msgstr ""
1314
+
1315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1316
+ msgid "&laquo;&laquo; First"
1317
+ msgstr ""
1318
+
1319
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1320
+ msgid "&laquo; Prev"
1321
+ msgstr ""
1322
+
1323
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1324
+ #, fuzzy
1325
+ msgid "Next &raquo; "
1326
+ msgstr "Wyloguj się &raquo;"
1327
+
1328
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1329
+ #, fuzzy
1330
+ msgid "Last &raquo;&raquo;"
1331
+ msgstr "Wyloguj się &raquo;"
1332
+
1333
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1334
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1335
+ msgstr ""
1336
+
1337
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1339
+ msgid "Activate/Deactivate Addons"
1340
+ msgstr ""
1341
+
1342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1343
+ msgid "Name/Description"
1344
+ msgstr ""
1345
+
1346
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1347
+ msgid "Status"
1348
+ msgstr ""
1349
+
1350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1352
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1353
+ msgid "User-Listing"
1354
+ msgstr ""
1355
+
1356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1358
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1359
+ msgid "Active"
1360
+ msgstr ""
1361
+
1362
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1363
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1364
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1365
+ msgid "Inactive"
1366
+ msgstr ""
1367
+
1368
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1369
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1370
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1371
+ msgid "Custom Redirects"
1372
+ msgstr ""
1373
+
1374
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1375
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1376
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1377
+ msgid "reCAPTCHA"
1378
+ msgstr ""
1379
+
1380
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1381
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1382
+ msgstr ""
1383
+
1384
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1385
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1386
+ msgstr ""
1387
+
1388
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1389
+ msgid "These settings are applied to the front-end userlisting."
1390
+ msgstr ""
1391
+
1392
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1393
+ msgid "Number of Users/Page: "
1394
+ msgstr ""
1395
+
1396
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1397
+ msgid "Default Sorting Order: "
1398
+ msgstr ""
1399
+
1400
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1401
+ msgid "\"All-Userlisting\" Template"
1402
+ msgstr ""
1403
+
1404
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1406
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1407
+ msgstr ""
1408
+
1409
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1410
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1411
+ msgstr ""
1412
+
1413
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1414
+ msgid "Avatar size: "
1415
+ msgstr ""
1416
+
1417
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1418
+ msgid "Insert \"Sort By\" Field:"
1419
+ msgstr ""
1420
+
1421
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1422
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1423
+ msgid "Insert \"User-Meta\" Field:"
1424
+ msgstr ""
1425
+
1426
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1427
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1428
+ msgid "Insert Extra Functions:"
1429
+ msgstr ""
1430
+
1431
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1432
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1433
+ msgstr ""
1434
+
1435
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1436
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1437
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1438
+ msgstr ""
1439
+
1440
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1441
+ msgid "\"Single-Userlisting\" Template"
1442
+ msgstr ""
1443
+
1444
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1445
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1446
+ msgstr ""
1447
+
1448
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1449
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1450
+ msgstr ""
1451
+
1452
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1453
+ msgid "Redirects on custom page requests:"
1454
+ msgstr ""
1455
+
1456
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1457
+ msgid "Action"
1458
+ msgstr ""
1459
+
1460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1462
+ #, fuzzy
1463
+ msgid "Redirect"
1464
+ msgstr "Wymagane"
1465
+
1466
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1468
+ msgid "URL"
1469
+ msgstr ""
1470
+
1471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1472
+ msgid "After Registration:"
1473
+ msgstr ""
1474
+
1475
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1476
+ msgid "After Login:"
1477
+ msgstr ""
1478
+
1479
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1480
+ #, fuzzy
1481
+ msgid "Recover Password (*)"
1482
+ msgstr "Powtórz hasło"
1483
+
1484
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1485
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1486
+ msgstr ""
1487
+
1488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1489
+ msgid "Redirects on default WordPress page requests:"
1490
+ msgstr ""
1491
+
1492
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1493
+ msgid "Requested WP Page"
1494
+ msgstr ""
1495
+
1496
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1497
+ msgid "Default WP Login Page(*)"
1498
+ msgstr ""
1499
+
1500
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1501
+ msgid "Default WP Logout Page(**)"
1502
+ msgstr ""
1503
+
1504
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1505
+ msgid "Default WP Register Page"
1506
+ msgstr ""
1507
+
1508
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1509
+ msgid "Default WP Dashboard (***)"
1510
+ msgstr ""
1511
+
1512
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1513
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1514
+ msgstr ""
1515
+
1516
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1517
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1518
+ msgstr ""
1519
+
1520
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1521
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1522
+ msgstr ""
1523
+
1524
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1525
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1526
+ msgstr ""
1527
+
1528
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1529
+ msgid "For this you must get a public and private key from Google:"
1530
+ msgstr ""
1531
+
1532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1533
+ msgid "Key"
1534
+ msgstr ""
1535
+
1536
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1537
+ msgid "Code"
1538
+ msgstr ""
1539
+
1540
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1541
+ msgid "Public Key:"
1542
+ msgstr ""
1543
+
1544
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1545
+ msgid "Private Key:"
1546
+ msgstr ""
1547
+
1548
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1549
+ msgid "Could not open socket!"
1550
+ msgstr ""
1551
+
1552
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1553
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1554
+ msgid "To use reCAPTCHA you must get an API key from"
1555
+ msgstr ""
1556
+
1557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1558
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1559
+ msgstr ""
1560
+
1561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1562
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1563
+ msgstr ""
1564
+
1565
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1566
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1567
+ msgstr ""
1568
+
1569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1571
+ #, fuzzy
1572
+ msgid "You must give your option a title."
1573
+ msgstr "Musisz być zalogowany żeby edytować swój profil."
1574
+
1575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1577
+ msgid "You have entered an invalid meta-key format!"
1578
+ msgstr ""
1579
+
1580
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1581
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1582
+ #, fuzzy
1583
+ msgid "You must enter a valid meta-key."
1584
+ msgstr "Musisz podać poprawny adres email."
1585
+
1586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1588
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1589
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1590
+ msgid "That meta-key is already in use."
1591
+ msgstr ""
1592
+
1593
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1594
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1595
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1596
+ msgstr ""
1597
+
1598
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1599
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1600
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1601
+ msgstr ""
1602
+
1603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1604
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1605
+ msgid "The textarea row value must be numeric."
1606
+ msgstr ""
1607
+
1608
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1609
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1610
+ msgid "The maxlength attribute must be numeric."
1611
+ msgstr ""
1612
+
1613
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1614
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1615
+ msgid "The value must be between 20 and 200!"
1616
+ msgstr ""
1617
+
1618
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1619
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1620
+ msgid "The width component of the entered value must be numeric!"
1621
+ msgstr ""
1622
+
1623
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1624
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1625
+ msgid "The height component of the entered value must be numeric!"
1626
+ msgstr ""
1627
+
1628
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1629
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1630
+ msgid "The width component of the entered value must be between 20 and 200!"
1631
+ msgstr ""
1632
+
1633
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1635
+ msgid "The height component of the entered value must be between 20 and 200!"
1636
+ msgstr ""
1637
+
1638
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1640
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1641
+ msgstr ""
1642
+
1643
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1645
+ msgid "The entered avatar size must be numeric!"
1646
+ msgstr ""
1647
+
1648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1650
+ msgid "There was an error, please try again."
1651
+ msgstr ""
1652
+
1653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1660
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1661
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1662
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1663
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1664
+ msgstr ""
1665
+
1666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1669
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1670
+ msgid "max upload size"
1671
+ msgstr ""
1672
+
1673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1674
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1675
+ msgid "Are you sure you want to delete this attachment?"
1676
+ msgstr ""
1677
+
1678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1679
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1680
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1681
+ msgid "Click to delete the current attachment"
1682
+ msgstr ""
1683
+
1684
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1685
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1686
+ msgstr ""
1687
+
1688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1689
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1690
+ msgid "Current avatar"
1691
+ msgstr ""
1692
+
1693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1694
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1695
+ msgid "No uploaded avatar"
1696
+ msgstr ""
1697
+
1698
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1699
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1700
+ msgid "Are you sure you want to delete this avatar?"
1701
+ msgstr ""
1702
+
1703
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1704
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1705
+ msgstr ""
1706
+
1707
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1708
+ msgid "Click to see the current avatar"
1709
+ msgstr ""
1710
+
1711
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1712
+ msgid "Click to delete the avatar"
1713
+ msgstr ""
1714
+
1715
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1716
+ msgid "The user-validation has failed - the avatar was not deleted!"
1717
+ msgstr ""
1718
+
1719
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1720
+ msgid "The user-validation has failed - the attachment was not deleted!"
1721
+ msgstr ""
1722
+
1723
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1724
+ msgid "Do you want to"
1725
+ msgstr ""
1726
+
1727
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1728
+ msgid "the current user?"
1729
+ msgstr ""
1730
+
1731
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1732
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1733
+ msgid "Your account on"
1734
+ msgstr ""
1735
+
1736
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1737
+ msgid "has been approved!"
1738
+ msgstr ""
1739
+
1740
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1741
+ msgid "An administrator has just approved your account on"
1742
+ msgstr ""
1743
+
1744
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1745
+ msgid "has been unapproved!"
1746
+ msgstr ""
1747
+
1748
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1749
+ msgid "An administrator has just unapproved your account on"
1750
+ msgstr ""
1751
+
1752
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1754
+ msgid "Approve"
1755
+ msgstr ""
1756
+
1757
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1759
+ msgid "Unapproved"
1760
+ msgstr ""
1761
+
1762
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1763
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1764
+ msgid "Unapprove"
1765
+ msgstr ""
1766
+
1767
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1769
+ msgid "Approved"
1770
+ msgstr ""
1771
+
1772
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1773
+ msgid "unapprove"
1774
+ msgstr ""
1775
+
1776
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1777
+ msgid "approve"
1778
+ msgstr ""
1779
+
1780
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1781
+ msgid "Are you sure you want to"
1782
+ msgstr ""
1783
+
1784
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1785
+ msgid "this user?"
1786
+ msgstr ""
1787
+
1788
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1789
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1790
+ msgstr ""
1791
 
1792
+ #~ msgid "Plugin Layout"
1793
+ #~ msgstr "Układ pluginu"
1794
+
1795
+ #~ msgid "You didn't complete both password fields. <br/> The password was "
1796
+ #~ msgstr "Nie wypełniłeś oby pól z hasłem. <br/> Hasło to "
1797
+
1798
+ #~ msgid ""
1799
+ #~ "There was an error while trying to upload your avatar picture.<br/"
1800
+ #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
1801
+ #~ msgstr ""
1802
+ #~ "Wystąpił błąd podczas wgrywania twojego avatara.<br/>Możliwe przyczyny "
1803
+ #~ "to: rozmiar/niepoprawny typ pliku.<br/>Avatar to"
1804
+
1805
+ #~ msgid ""
1806
+ #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
1807
+ #~ "need another account."
1808
+ #~ msgstr ""
1809
+ #~ "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Nie "
1810
+ #~ "potrzebujesz dodatkowego konta."
translation/profilebuilder-pt_BR.mo CHANGED
Binary file
translation/profilebuilder-pt_BR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder PT_br\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-06 14:23+0200\n"
6
- "PO-Revision-Date: 2012-05-04 17:54+0100\n"
7
- "Last-Translator: Paulo Ramalho <info@pauloramalho.com>\n"
8
  "Language-Team: Paulo Ramalho <info@pauloramalho.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,488 +15,1793 @@ msgstr ""
15
  "X-Poedit-Country: BRAZIL\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
 
18
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:5
19
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
20
  msgid "Profile Builder"
21
  msgstr "Gerador de Perfis"
22
 
23
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:6
24
  msgid "Welcome to Profile Builder!"
25
  msgstr "Seja bem vindo ao Profile Builder"
26
 
27
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:8
28
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
29
  msgstr "permite personalizar o seu web site adicionando campos de preenchimento para usuários do front-end. Uma forma mais flexível para registrar ou modificar novos usuários."
30
 
31
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:9
32
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
33
  msgstr "Além do mais, permite a usuários com direitos de administrador, a personalização de campos básicos bem como adicionar novos campos."
34
 
35
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:10
36
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
37
- msgstr "Para conseguir isso apenas crie uma nova página com um nome intuitivo (por exemplo, Editar perfil)."
38
 
39
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:11
40
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
41
  msgstr "Agora tudo o que necessitas fazer é adicionar o shortcode seguinte (para o exemplo anterior):"
42
 
43
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:12
44
  msgid "Publish your page and you are ready to go!"
45
  msgstr "Publique seu site e já estará pronto para usar"
46
 
47
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:13
48
  msgid "You can use the following shortcodes:"
49
  msgstr "Você poderá usar os seguintes shortcodes:"
50
 
51
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:14
52
  msgid "for a log-in form."
53
  msgstr "para un formulario de acceso."
54
 
55
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:15
56
  msgid "to add a registration form."
57
  msgstr "para adicionar um formulário de inscrição."
58
 
59
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:16
60
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
61
  msgstr "para permitir aos usuários acesso a sua informação desde a parte pública (front-end) do site (é necessário que o usuário esteja conectado)"
62
 
63
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:18
 
 
 
 
 
64
  msgid "Users with administrator rights have access to the following features:"
65
  msgstr "Os usuários com direitos de administrador tem acesso as seguintes características:"
66
 
67
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:19
68
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
69
  msgstr "adicionar uma folha de estilos (CSS) personalizada/herdar os valores do tema atual ou usar uma das seguintes: padrão, branco ou preto."
70
 
71
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:20
72
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
73
  msgstr "escolher se deseja ou não mostrar a barra de administração no site para um determinado grupo de usuários registrados no site."
74
 
75
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:21
76
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
77
  msgstr "selecionar quais campos podem ser vistos/modificados pelos usuários. Os valores de campos ocultos não de modificarão."
78
 
79
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:22
80
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
81
  msgstr "adicionar campos personalizados aos já existentes com vários tipos de escolha: título, texto, textarea, select, checkbox, radio, e/ou subir arquivo."
82
 
83
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:23
84
  msgid "add an avatar field."
85
  msgstr "adicionar um campo de avatar."
86
 
87
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  msgid "NOTE:"
89
  msgstr "OBS:"
90
 
91
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:27
92
  msgid "this plugin only adds/removes fields in the front-end."
93
  msgstr "este plugin somente adiciona/elimina campos da parte pública do site."
94
 
95
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:28
96
  msgid "The default information-fields will still be visible(and thus modifiable)"
97
  msgstr "Os campos de informação por padrão seguirão sendo visíveis (e portanto editáveis)"
98
 
99
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:29
100
  msgid "from the back-end, while custom fields will only be visible in the front-end."
101
  msgstr "através da administração, enquanto os campos personalizados somente serão visíveis na parte pública (front end)."
102
 
103
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:43
104
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:44
105
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:58
106
- msgid "Plugin Layout"
107
- msgstr "Design do plugin"
 
108
 
109
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:50
110
- msgid "Stylesheet used:"
 
111
  msgstr "Folha de estilos usada:"
112
 
113
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:53
114
  msgid "Default"
115
  msgstr "Padrão"
116
 
117
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:58
118
  msgid "White"
119
  msgstr "Branco"
120
 
121
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:59
122
  msgid "Black"
123
  msgstr "Preto"
124
 
125
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:63
126
  msgid "None"
127
  msgstr "Nenhum"
128
 
129
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:72
130
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:119
131
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  msgid "Save Changes"
133
  msgstr "Salvar modificações"
134
 
135
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:90
136
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:91
137
  #, fuzzy
138
  msgid "Show/Hide the Admin Bar on Front End"
139
  msgstr "Mostrar/Ocultar a bara de admin no front-end"
140
 
141
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:95
142
  msgid "User-group"
143
  msgstr "Grupo do usuário"
144
 
145
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:96
146
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:143
147
  msgid "Visibility"
148
  msgstr "Visibilidade"
149
 
150
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:108
151
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:159
152
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:168
153
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:177
154
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:186
155
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:195
156
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:212
157
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:221
158
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:233
159
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:242
160
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:251
161
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:268
162
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:278
163
  msgid "Show"
164
  msgstr "Mostrar"
165
 
166
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:109
167
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:160
168
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:169
169
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:178
170
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:187
171
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:196
172
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:213
173
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:222
174
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:234
175
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:243
176
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:252
177
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:269
178
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:279
179
  msgid "Hide"
180
  msgstr "Ocultar"
181
 
182
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:137
183
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:138
184
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:60
 
 
 
 
185
  msgid "Default Profile Fields"
186
  msgstr "Campos predeterminados"
187
 
188
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:142
189
  msgid "Input Field Name"
190
  msgstr "Etiqueta do campo"
191
 
192
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:149
 
 
 
 
 
193
  msgid "Name:"
194
  msgstr "Nome"
195
 
196
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:156
197
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:385
198
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:76
199
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:244
 
 
200
  msgid "Username"
201
  msgstr "Usuário"
202
 
203
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:165
204
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:394
205
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:259
206
  msgid "First Name"
207
  msgstr "Nome:"
208
 
209
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:174
210
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:403
211
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:273
212
  msgid "Last Name"
213
  msgstr "Sobrenomes"
214
 
215
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:183
216
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:412
217
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:287
218
  msgid "Nickname"
219
  msgstr "Nickname (usuário)"
220
 
221
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:192
222
  msgid "Display name publicly as..."
223
  msgstr "Mostrar publicamente como..."
224
 
225
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:202
226
  msgid "Contact Info:"
227
  msgstr "Informação de contato:"
228
 
229
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:209
230
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:457
231
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:305
 
232
  msgid "E-mail"
233
  msgstr "Email"
234
 
235
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:218
236
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:467
237
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:320
 
238
  msgid "Website"
239
  msgstr "Página Web"
240
 
241
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:230
242
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:476
243
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:334
244
  msgid "AIM"
245
  msgstr "AIM"
246
 
247
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:239
248
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:485
249
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:348
250
  msgid "Yahoo IM"
251
  msgstr "Yahoo IM"
252
 
253
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:248
254
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:494
255
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:362
256
  msgid "Jabber / Google Talk"
257
  msgstr "Jabber/Google Talk"
258
 
259
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:258
260
  msgid "About Yourself:"
261
  msgstr "Sobre você:"
262
 
263
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:265
264
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:507
265
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:380
 
266
  msgid "Biographical Info"
267
  msgstr "Informação Biográfica"
268
 
269
- #: C:\Users\Cristi\Desktop\free/front-end/menu.file.php:275
270
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:516
271
  msgid "New Password"
272
  msgstr "Nova senha"
273
 
274
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:57
275
  msgid "Basic Information"
276
  msgstr "Informação Básica"
277
 
278
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:59
279
  msgid "Show/Hide the Admin Bar on Front-end"
280
- msgstr "Mostrar/ocultara barra de administração no Front-end"
281
 
282
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:63
 
 
283
  msgid "Extra Profile Fields"
284
  msgstr "Campos customizáveis"
285
 
286
- #: C:\Users\Cristi\Desktop\free/front-end/options.php:64
 
 
 
 
287
  msgid "Register Your Version"
288
  msgstr "Registrar minha versão"
289
 
290
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  msgid "You must be logged in to edit your profile."
292
  msgstr "Você deve estar conectado para editar seu perfil."
293
 
294
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:278
295
  msgid "The avatar was successfully deleted."
296
  msgstr "Sua foto foi eliminada."
297
 
298
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:283
299
- msgid "The attachment \""
 
300
  msgstr "O arquivo anexo \""
301
 
302
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:285
303
- msgid "\" was successfully deleted."
 
304
  msgstr "\" foi deletado com sucesso."
305
 
306
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:298
307
  msgid "The changes have been successfully saved."
308
  msgstr "As modificações foram salvas corretamente."
309
 
310
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:303
311
- msgid "The email address you entered is already registered to a different user.<br/>The email address was "
 
312
  msgstr "O endereço de email que você introduziu já está sendo usado por outro usuário. .<br/>O email era"
313
 
314
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:304
315
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:314
316
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:324
317
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:333
318
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:355
319
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:363
 
 
 
 
 
 
320
  msgid "NOT"
321
  msgstr "NÃO"
322
 
323
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:305
324
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:315
325
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:325
326
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:334
327
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:356
328
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:364
329
- msgid " updated along with the rest of the information."
 
 
330
  msgstr "atualizado junto com o resto da informação."
331
 
332
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:313
333
- msgid "The email address you entered is invalid. <br/> The email address was "
 
334
  msgstr "O endereço de email não é válido.<br/>O email era"
335
 
336
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:323
337
- msgid "The passwords you entered do not match. <br/> The password was "
 
338
  msgstr "As senhas introduzidas não coincidem.<br/>A senha era"
339
 
340
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:332
341
- msgid "You didn't complete both password fields. <br/> The password was "
342
- msgstr "Ambos os campos da senha não foram completados.<br/>A senha era"
 
 
 
 
 
 
 
 
 
 
 
343
 
344
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:344
345
- msgid "There was an error while trying to upload the following attachments:<br/>"
 
346
  msgstr "Ocorreu um erro ao subir os seguintes arquivos:<br/>"
347
 
348
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:352
349
- msgid "<br/>Possible cause: the size was bigger than "
 
350
  msgstr "<br/>Causa possível: o tamanho é maior que"
351
 
352
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:354
353
- msgid "b.<br/>The listed attachements were "
 
354
  msgstr "b.<br/>Os arquivos anexados eram"
355
 
356
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:362
357
- msgid "There was an error while trying to upload your avatar picture.<br/>Possible cause: size/incorrect file-type.<br/>The avatar was "
358
- msgstr "Ocorreu um erro ao tentar subir a imagem de avatar.<br/>Possível causa: tamanho/tipo de arquivo incorreto.<br/>O avatar era"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
 
360
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:380
361
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:233
362
  msgid "Name"
363
  msgstr "Nome"
364
 
365
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:386
366
- msgid " Usernames cannot be changed."
 
367
  msgstr "Os nomes de usuários não podem ser modificados"
368
 
369
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:414
370
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:459
371
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:246
372
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:307
373
- msgid "(required)"
374
- msgstr "(obrigatorio)"
 
 
 
 
 
 
375
 
376
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  msgid "Display name publicly as"
378
  msgstr "Mostrar nome público como"
379
 
380
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:451
381
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:294
382
  msgid "Contact Info"
383
  msgstr "Informação de contato"
384
 
385
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:501
386
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:369
 
 
 
 
387
  msgid "About Yourself"
388
  msgstr "Sobre você"
389
 
390
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:521
391
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:403
 
 
392
  msgid "Repeat Password"
393
  msgstr "Repetir a senha"
394
 
395
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.edit.profile.php:537
396
  msgid "Update"
397
  msgstr "Atualizar"
398
 
399
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
400
- #, fuzzy, php-format
401
- msgid "You are currently logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
402
  msgstr "Você já está conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
403
 
404
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
405
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
406
  msgid "Log out of this account"
407
  msgstr "Fechar a sessão"
408
 
409
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:47
410
- msgid "Log out &raquo;"
 
411
  msgstr "Sair &raquo;"
412
 
413
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:60
414
- #, php-format
415
- msgid "You have successfully logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
416
- msgstr "Você efetuou login como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
 
418
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:86
419
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:398
 
 
420
  msgid "Password"
421
  msgstr "Senha"
422
 
423
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:90
424
  msgid "Log in"
425
  msgstr "Acessar"
426
 
427
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:92
428
  msgid "Remember me"
429
  msgstr "Lembrar-me"
430
 
431
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.login.php:96
432
  msgid "Lost password?"
433
  msgstr "Esqueceu a sua senha?"
434
 
435
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
436
  msgid "A username is required for registration."
437
  msgstr "O nome de usuário é obrigatório para a inscrição."
438
 
439
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:41
440
  msgid "Sorry, that username already exists!"
441
  msgstr "Desculpe, este nome de usuário já existe!"
442
 
443
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:44
444
  msgid "You must enter a valid email address."
445
  msgstr "Você precisa introduzir um endereço de email válido."
446
 
447
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:46
448
  msgid "Sorry, that email address is already used!"
449
  msgstr "Desculpe, este email já está em uo!"
450
 
451
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:49
452
  msgid "You didn't complete one of the password-fields!"
453
  msgstr "Você não completou os campos da senha!"
454
 
455
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:51
456
- msgid "The entered passwords don't match!"
457
- msgstr "As senham não coincidem"
 
 
458
 
459
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
460
- #, php-format
461
- msgid "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't need another account."
462
- msgstr "Você está conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Não é necessária outra conta de usuário."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463
 
464
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:171
465
- msgid "Logout &raquo;"
 
466
  msgstr "Sair &raquo;"
467
 
468
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:181
469
- #, php-format
470
- msgid "A user account for %1$s has been created."
 
 
 
 
 
 
 
 
471
  msgstr "Foi criada a conta de usuário para %1$s."
472
 
473
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:183
474
- #, php-format
475
- msgid "Thank you for registering, %1$s."
 
 
 
 
 
 
 
 
476
  msgstr "Obrigado por registrar-se no nosso site, %1$s."
477
 
478
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:211
 
 
 
 
 
 
 
 
 
 
 
 
479
  msgid "Users can register themselves or you can manually create users here."
480
  msgstr "Os usuários podem se registrar ou podes criar manualmente os usuários por aqui."
481
 
482
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:215
483
  msgid "Users cannot currently register themselves, but you can manually create users here."
484
  msgstr "Os usuários não podem se registrar ou podes criar manualmente os usuários por aqui."
485
 
486
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:219
487
  msgid "Only an administrator can add new users."
488
  msgstr "Somente o administrador pode criar novos usuários."
489
 
490
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
  #, fuzzy
492
- msgid " Send these credentials via email."
493
  msgstr "Enviar estas informações por email."
494
 
495
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
496
  msgid "Add User"
497
  msgstr "Adicionar usuario"
498
 
499
- #: C:\Users\Cristi\Desktop\free/front-end/wppb.register.php:428
500
  msgid "Register"
501
  msgstr "Registrar"
502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Profile Builder PT_br\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 10:45+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 10:48+0200\n"
7
+ "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: Paulo Ramalho <info@pauloramalho.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "X-Poedit-Country: BRAZIL\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
 
18
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
19
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
20
  msgid "Profile Builder"
21
  msgstr "Gerador de Perfis"
22
 
23
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
24
  msgid "Welcome to Profile Builder!"
25
  msgstr "Seja bem vindo ao Profile Builder"
26
 
27
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
28
  msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
29
  msgstr "permite personalizar o seu web site adicionando campos de preenchimento para usuários do front-end. Uma forma mais flexível para registrar ou modificar novos usuários."
30
 
31
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
32
  msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
33
  msgstr "Além do mais, permite a usuários com direitos de administrador, a personalização de campos básicos bem como adicionar novos campos."
34
 
35
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
36
  msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
37
+ msgstr "Para conseguir isso apenas crie uma nova página com um nome intuitivo (por exemplo, Editar perfil).\v"
38
 
39
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
40
  msgid "Now all you need to do is add the following shortcode(for the previous example): "
41
  msgstr "Agora tudo o que necessitas fazer é adicionar o shortcode seguinte (para o exemplo anterior):"
42
 
43
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
44
  msgid "Publish your page and you are ready to go!"
45
  msgstr "Publique seu site e já estará pronto para usar"
46
 
47
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
48
  msgid "You can use the following shortcodes:"
49
  msgstr "Você poderá usar os seguintes shortcodes:"
50
 
51
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
52
  msgid "for a log-in form."
53
  msgstr "para un formulario de acceso."
54
 
55
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
56
  msgid "to add a registration form."
57
  msgstr "para adicionar um formulário de inscrição."
58
 
59
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
60
  msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
61
  msgstr "para permitir aos usuários acesso a sua informação desde a parte pública (front-end) do site (é necessário que o usuário esteja conectado)"
62
 
63
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
64
+ #, fuzzy
65
+ msgid "to add a password recovery form."
66
+ msgstr "para adicionar um formulário de inscrição."
67
+
68
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
69
  msgid "Users with administrator rights have access to the following features:"
70
  msgstr "Os usuários com direitos de administrador tem acesso as seguintes características:"
71
 
72
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
73
  msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
74
  msgstr "adicionar uma folha de estilos (CSS) personalizada/herdar os valores do tema atual ou usar uma das seguintes: padrão, branco ou preto."
75
 
76
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
77
  msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
78
  msgstr "escolher se deseja ou não mostrar a barra de administração no site para um determinado grupo de usuários registrados no site."
79
 
80
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
81
  msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
82
  msgstr "selecionar quais campos podem ser vistos/modificados pelos usuários. Os valores de campos ocultos não de modificarão."
83
 
84
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
85
  msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
86
  msgstr "adicionar campos personalizados aos já existentes com vários tipos de escolha: título, texto, textarea, select, checkbox, radio, e/ou subir arquivo."
87
 
88
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
89
  msgid "add an avatar field."
90
  msgstr "adicionar um campo de avatar."
91
 
92
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
93
+ msgid "create custom redirects."
94
+ msgstr ""
95
+
96
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
97
+ msgid "front-end userlisting using the"
98
+ msgstr ""
99
+
100
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
101
+ msgid "shortcode."
102
+ msgstr ""
103
+
104
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
106
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
107
  msgid "NOTE:"
108
  msgstr "OBS:"
109
 
110
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
111
  msgid "this plugin only adds/removes fields in the front-end."
112
  msgstr "este plugin somente adiciona/elimina campos da parte pública do site."
113
 
114
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
115
  msgid "The default information-fields will still be visible(and thus modifiable)"
116
  msgstr "Os campos de informação por padrão seguirão sendo visíveis (e portanto editáveis)"
117
 
118
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
119
  msgid "from the back-end, while custom fields will only be visible in the front-end."
120
  msgstr "através da administração, enquanto os campos personalizados somente serão visíveis na parte pública (front end)."
121
 
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
123
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
124
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
125
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
126
+ msgid "General Settings"
127
+ msgstr ""
128
 
129
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
130
+ #, fuzzy
131
+ msgid "Stylesheet Used on the Front-End:"
132
  msgstr "Folha de estilos usada:"
133
 
134
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
135
  msgid "Default"
136
  msgstr "Padrão"
137
 
138
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:75
139
  msgid "White"
140
  msgstr "Branco"
141
 
142
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
143
  msgid "Black"
144
  msgstr "Preto"
145
 
146
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:80
147
  msgid "None"
148
  msgstr "Nenhum"
149
 
150
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
151
+ msgid "\"Email Confirmation\" Feature Activated:"
152
+ msgstr ""
153
+
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
172
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
173
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
174
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
175
+ msgid "Yes"
176
+ msgstr ""
177
+
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
196
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
198
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
199
+ #, fuzzy
200
+ msgid "No"
201
+ msgstr "Nenhum"
202
+
203
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
204
+ msgid "\"Admin Approval\" Feature Activated:"
205
+ msgstr ""
206
+
207
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
208
+ msgid "The black stylesheet is intended for sites/blogs with a dark background."
209
+ msgstr ""
210
+
211
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
212
+ msgid "The white stylesheet is intended for a sites/blogs with a light background color."
213
+ msgstr ""
214
+
215
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
216
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
217
+ msgstr ""
218
+
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
227
  msgid "Save Changes"
228
  msgstr "Salvar modificações"
229
 
230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
231
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
232
  #, fuzzy
233
  msgid "Show/Hide the Admin Bar on Front End"
234
  msgstr "Mostrar/Ocultar a bara de admin no front-end"
235
 
236
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
237
  msgid "User-group"
238
  msgstr "Grupo do usuário"
239
 
240
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
242
  msgid "Visibility"
243
  msgstr "Visibilidade"
244
 
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
253
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
254
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
255
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
256
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
258
  msgid "Show"
259
  msgstr "Mostrar"
260
 
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
269
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
270
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
272
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
273
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
274
  msgid "Hide"
275
  msgstr "Ocultar"
276
 
277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
278
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
279
+ msgstr ""
280
+
281
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
283
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
284
  msgid "Default Profile Fields"
285
  msgstr "Campos predeterminados"
286
 
287
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
288
  msgid "Input Field Name"
289
  msgstr "Etiqueta do campo"
290
 
291
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
292
+ #, fuzzy
293
+ msgid "Required"
294
+ msgstr "(obrigatorio)"
295
+
296
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
297
  msgid "Name:"
298
  msgstr "Nome"
299
 
300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
302
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
303
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
305
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
306
  msgid "Username"
307
  msgstr "Usuário"
308
 
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
310
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
311
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
312
  msgid "First Name"
313
  msgstr "Nome:"
314
 
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
318
  msgid "Last Name"
319
  msgstr "Sobrenomes"
320
 
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
322
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
323
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
324
  msgid "Nickname"
325
  msgstr "Nickname (usuário)"
326
 
327
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
328
  msgid "Display name publicly as..."
329
  msgstr "Mostrar publicamente como..."
330
 
331
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
332
  msgid "Contact Info:"
333
  msgstr "Informação de contato:"
334
 
335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
337
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
339
  msgid "E-mail"
340
  msgstr "Email"
341
 
342
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
345
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
346
  msgid "Website"
347
  msgstr "Página Web"
348
 
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
352
  msgid "AIM"
353
  msgstr "AIM"
354
 
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
358
  msgid "Yahoo IM"
359
  msgstr "Yahoo IM"
360
 
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
362
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
363
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
364
  msgid "Jabber / Google Talk"
365
  msgstr "Jabber/Google Talk"
366
 
367
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
368
  msgid "About Yourself:"
369
  msgstr "Sobre você:"
370
 
371
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
373
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
374
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
375
  msgid "Biographical Info"
376
  msgstr "Informação Biográfica"
377
 
378
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
379
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
380
  msgid "New Password"
381
  msgstr "Nova senha"
382
 
383
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
384
  msgid "Basic Information"
385
  msgstr "Informação Básica"
386
 
387
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
388
  msgid "Show/Hide the Admin Bar on Front-end"
389
+ msgstr "Mostrar/ocultara barra de administração no Front-end\v"
390
 
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
392
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
393
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
394
  msgid "Extra Profile Fields"
395
  msgstr "Campos customizáveis"
396
 
397
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
398
+ msgid "Addons"
399
+ msgstr ""
400
+
401
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
402
  msgid "Register Your Version"
403
  msgstr "Registrar minha versão"
404
 
405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
406
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
407
+ msgid "The information size you were trying to submit was larger than"
408
+ msgstr ""
409
+
410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
411
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
412
+ msgid "This is usually caused by a large file(s) trying to be uploaded."
413
+ msgstr ""
414
+
415
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
416
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
417
+ msgid "Since it was also larger than"
418
+ msgstr ""
419
+
420
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
421
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
422
+ msgid "no additional information is available."
423
+ msgstr ""
424
+
425
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
426
  msgid "You must be logged in to edit your profile."
427
  msgstr "Você deve estar conectado para editar seu perfil."
428
 
429
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
430
  msgid "The avatar was successfully deleted."
431
  msgstr "Sua foto foi eliminada."
432
 
433
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
434
+ #, fuzzy
435
+ msgid "The attachment"
436
  msgstr "O arquivo anexo \""
437
 
438
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
439
+ #, fuzzy
440
+ msgid "was successfully deleted."
441
  msgstr "\" foi deletado com sucesso."
442
 
443
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
444
  msgid "The changes have been successfully saved."
445
  msgstr "As modificações foram salvas corretamente."
446
 
447
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
448
+ #, fuzzy
449
+ msgid "The email address you entered is already registered to a different user."
450
  msgstr "O endereço de email que você introduziu já está sendo usado por outro usuário. .<br/>O email era"
451
 
452
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
454
+ msgid "The email address was"
455
+ msgstr ""
456
+
457
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
463
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
464
  msgid "NOT"
465
  msgstr "NÃO"
466
 
467
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
469
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
470
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
471
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
472
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
473
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
474
+ #, fuzzy
475
+ msgid "updated along with the rest of the information."
476
  msgstr "atualizado junto com o resto da informação."
477
 
478
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
479
+ #, fuzzy
480
+ msgid "The email address you entered is invalid."
481
  msgstr "O endereço de email não é válido.<br/>O email era"
482
 
483
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
484
+ #, fuzzy
485
+ msgid "The passwords you entered do not match."
486
  msgstr "As senhas introduzidas não coincidem.<br/>A senha era"
487
 
488
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
489
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
490
+ #, fuzzy
491
+ msgid "The password was"
492
+ msgstr "Nova senha"
493
+
494
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
495
+ #, fuzzy
496
+ msgid "You didn't complete both password fields."
497
+ msgstr "Você não completou os campos da senha!"
498
+
499
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
500
+ msgid "Your profile was NOT updated!"
501
+ msgstr ""
502
 
503
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
504
+ #, fuzzy
505
+ msgid "There was an error while trying to upload the following attachments:"
506
  msgstr "Ocorreu um erro ao subir os seguintes arquivos:<br/>"
507
 
508
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
509
+ #, fuzzy
510
+ msgid "Possible cause: the size was bigger than"
511
  msgstr "<br/>Causa possível: o tamanho é maior que"
512
 
513
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
514
+ #, fuzzy
515
+ msgid "The listed attachements were"
516
  msgstr "b.<br/>Os arquivos anexados eram"
517
 
518
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
519
+ #, fuzzy
520
+ msgid "There was an error while trying to upload your avatar picture."
521
+ msgstr "Ocorreu um erro ao subir os seguintes arquivos:<br/>"
522
+
523
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
524
+ msgid "Possible cause: size/incorrect file-type."
525
+ msgstr ""
526
+
527
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
528
+ msgid "The avatar was"
529
+ msgstr ""
530
+
531
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
532
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
533
+ #, fuzzy
534
+ msgid "There was an error while trying to upload the following attachment(s)"
535
+ msgstr "Ocorreu um erro ao subir os seguintes arquivos:<br/>"
536
+
537
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
538
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
539
+ msgid "Only files with the following extension(s) can be uploaded:"
540
+ msgstr ""
541
+
542
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
543
+ msgid "This file was"
544
+ msgstr ""
545
 
546
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
547
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
548
  msgid "Name"
549
  msgstr "Nome"
550
 
551
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
552
+ #, fuzzy
553
+ msgid "Usernames cannot be changed."
554
  msgstr "Os nomes de usuários não podem ser modificados"
555
 
556
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
557
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
559
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
560
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
561
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
563
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
564
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
565
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
566
+ msgid "This field is marked as required by the administrator."
567
+ msgstr ""
568
 
569
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
570
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
571
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
574
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
575
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
576
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
577
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
578
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
579
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
580
+ msgstr ""
581
+
582
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
583
  msgid "Display name publicly as"
584
  msgstr "Mostrar nome público como"
585
 
586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
587
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1368
588
  msgid "Contact Info"
589
  msgstr "Informação de contato"
590
 
591
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
592
+ msgid "(required)"
593
+ msgstr "(obrigatorio)"
594
+
595
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
596
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1491
597
  msgid "About Yourself"
598
  msgstr "Sobre você"
599
 
600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:297
602
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:327
603
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1550
604
  msgid "Repeat Password"
605
  msgstr "Repetir a senha"
606
 
607
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
608
  msgid "Update"
609
  msgstr "Atualizar"
610
 
611
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:59
612
+ #, fuzzy
613
+ msgid "You are currently logged in as"
614
  msgstr "Você já está conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
615
 
616
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
 
617
  msgid "Log out of this account"
618
  msgstr "Fechar a sessão"
619
 
620
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:60
621
+ #, fuzzy
622
+ msgid "Log out"
623
  msgstr "Sair &raquo;"
624
 
625
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
626
+ #, fuzzy
627
+ msgid "You have successfully logged in as"
628
+ msgstr "Você efetuou login como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>.\v"
629
+
630
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
631
+ msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
632
+ msgstr ""
633
+
634
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:104
635
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
636
+ msgid "here"
637
+ msgstr ""
638
+
639
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
640
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:351
641
+ msgid "ERROR:"
642
+ msgstr ""
643
+
644
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:114
645
+ msgid "The username field is empty"
646
+ msgstr ""
647
 
648
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:146
649
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:292
650
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:322
651
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1545
652
  msgid "Password"
653
  msgstr "Senha"
654
 
655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:154
656
  msgid "Log in"
657
  msgstr "Acessar"
658
 
659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
660
  msgid "Remember me"
661
  msgstr "Lembrar-me"
662
 
663
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
664
  msgid "Lost password?"
665
  msgstr "Esqueceu a sua senha?"
666
 
667
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:119
668
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:164
669
+ msgid "A password reset email has been sent to "
670
+ msgstr ""
671
+
672
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:119
673
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:164
674
+ msgid "Following the link sent in the email address will reset the password."
675
+ msgstr ""
676
+
677
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:131
678
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:176
679
+ msgid "Someone requested that the password be reset for the following account: "
680
+ msgstr ""
681
+
682
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:133
683
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:178
684
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
685
+ msgstr ""
686
+
687
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:134
688
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
689
+ msgid "To reset your password, visit the following link:"
690
+ msgstr ""
691
+
692
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:138
693
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:183
694
+ msgid "Password Reset Feature from"
695
+ msgstr ""
696
+
697
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
698
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:192
699
+ msgid "ERROR"
700
+ msgstr ""
701
+
702
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:147
703
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:192
704
+ #, fuzzy
705
+ msgid "There was an error while trying to send the activation link to "
706
+ msgstr "Ocorreu um erro ao subir os seguintes arquivos:<br/>"
707
+
708
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:157
709
+ #, fuzzy
710
+ msgid "The email address entered wasn't found in the database!"
711
+ msgstr "O endereço de email não é válido.<br/>O email era"
712
+
713
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:157
714
+ msgid "Please check that you entered the correct email address."
715
+ msgstr ""
716
+
717
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:199
718
+ msgid "The username entered wasn't found in the database!"
719
+ msgstr ""
720
+
721
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:199
722
+ msgid "Please check that you entered the correct username."
723
+ msgstr ""
724
+
725
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:210
726
+ #, fuzzy
727
+ msgid "Your password has been successfully changed!"
728
+ msgstr "As modificações foram salvas corretamente."
729
+
730
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
731
+ msgid "You have successfully reset your password to:"
732
+ msgstr ""
733
+
734
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:228
735
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:242
736
+ #, fuzzy
737
+ msgid "Password Successfully Reset for"
738
+ msgstr "\" foi deletado com sucesso."
739
+
740
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:228
741
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:242
742
+ msgid "from"
743
+ msgstr ""
744
+
745
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
746
+ msgid "has requested a password change via the password reset feature."
747
+ msgstr ""
748
+
749
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:239
750
+ msgid "His/her new password is:"
751
+ msgstr ""
752
+
753
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
754
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:882
755
+ msgid "The entered passwords don't match!"
756
+ msgstr "As senham não coincidem"
757
+
758
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:304
759
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:334
760
+ #, fuzzy
761
+ msgid "Reset Password"
762
+ msgstr "Repetir a senha"
763
+
764
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:351
765
+ msgid "Invalid key!"
766
+ msgstr ""
767
+
768
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
769
+ #, fuzzy
770
+ msgid "Please enter your username or email address."
771
+ msgstr "Você precisa introduzir um endereço de email válido."
772
+
773
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
774
+ msgid "You will receive a link to create a new password via email."
775
+ msgstr ""
776
+
777
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:375
778
+ #, fuzzy
779
+ msgid "Username or E-mail"
780
+ msgstr "Usuário"
781
+
782
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:384
783
+ #, fuzzy
784
+ msgid "Get New Password"
785
+ msgstr "Nova senha"
786
+
787
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:373
788
+ #, php-format
789
+ msgid ""
790
+ "To activate your user, please click the following link:\n"
791
+ "\n"
792
+ "%s\n"
793
+ "\n"
794
+ "After you activate, you will receive *another email* with your login.\n"
795
+ "\n"
796
+ msgstr ""
797
+
798
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:375
799
+ #, php-format
800
+ msgid "[%1$s] Activate %2$s"
801
+ msgstr ""
802
+
803
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:405
804
+ msgid "Invalid activation key!"
805
+ msgstr ""
806
+
807
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:409
808
+ msgid "The user is already active!"
809
+ msgstr ""
810
+
811
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:424
812
+ msgid "Could not create user!"
813
+ msgstr ""
814
+
815
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:434
816
+ #, fuzzy
817
+ msgid "That username is already activated!"
818
+ msgstr "Desculpe, este nome de usuário já existe!"
819
+
820
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:450
821
+ #, fuzzy
822
+ msgid "The user was successfully activated."
823
+ msgstr "Sua foto foi eliminada."
824
+
825
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:452
826
+ #, fuzzy
827
+ msgid "There was an error while trying to activate the user."
828
+ msgstr "Ocorreu um erro ao subir os seguintes arquivos:<br/>"
829
+
830
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:487
831
+ msgid "New subscriber on"
832
+ msgstr ""
833
+
834
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:491
835
+ msgid "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!"
836
+ msgstr ""
837
+
838
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:494
839
+ msgid "A new subscriber has (been) registered!"
840
+ msgstr ""
841
+
842
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:512
843
+ #, fuzzy
844
+ msgid "A new account has been created for you."
845
+ msgstr "Foi criada a conta de usuário para %1$s."
846
+
847
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
848
+ msgid "Welcome to"
849
+ msgstr ""
850
+
851
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
852
+ msgid "Your username is:"
853
+ msgstr ""
854
+
855
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:515
856
+ #, fuzzy
857
+ msgid "and password:"
858
+ msgstr "Senha"
859
+
860
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:517
861
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
862
+ msgstr ""
863
+
864
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:580
865
+ msgid "The user was NOT created!"
866
+ msgstr ""
867
+
868
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:871
869
  msgid "A username is required for registration."
870
  msgstr "O nome de usuário é obrigatório para a inscrição."
871
 
872
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:873
873
  msgid "Sorry, that username already exists!"
874
  msgstr "Desculpe, este nome de usuário já existe!"
875
 
876
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:875
877
  msgid "You must enter a valid email address."
878
  msgstr "Você precisa introduzir um endereço de email válido."
879
 
880
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:877
881
  msgid "Sorry, that email address is already used!"
882
  msgstr "Desculpe, este email já está em uo!"
883
 
884
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
885
  msgid "You didn't complete one of the password-fields!"
886
  msgstr "Você não completou os campos da senha!"
887
 
888
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
889
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
890
+ #, fuzzy
891
+ msgid "The account was NOT created!"
892
+ msgstr "Foi criada a conta de usuário para %1$s."
893
 
894
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:896
895
+ msgid "You must agree to the terms and conditions before registering!"
896
+ msgstr ""
897
+
898
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
899
+ msgid "(Several required fields were left uncompleted)"
900
+ msgstr ""
901
+
902
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
903
+ msgid "This username is already reserved to be used soon."
904
+ msgstr ""
905
+
906
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:916
907
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
908
+ msgid "Please try a different one!"
909
+ msgstr ""
910
+
911
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:920
912
+ #, fuzzy
913
+ msgid "This email address is already reserved to be used soon."
914
+ msgstr "Desculpe, este email já está em uo!"
915
+
916
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
917
+ msgid "You are logged in as"
918
+ msgstr ""
919
+
920
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
921
+ msgid "You don't need another account."
922
+ msgstr ""
923
+
924
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
925
+ #, fuzzy
926
+ msgid "Log out of this account."
927
+ msgstr "Fechar a sessão"
928
 
929
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1147
930
+ #, fuzzy
931
+ msgid "Logout"
932
  msgstr "Sair &raquo;"
933
 
934
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
935
+ msgid "An email has been sent to "
936
+ msgstr ""
937
+
938
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
939
+ msgid "with information on how to activate his/her account"
940
+ msgstr ""
941
+
942
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
943
+ #, fuzzy
944
+ msgid "A user account has been created for"
945
  msgstr "Foi criada a conta de usuário para %1$s."
946
 
947
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1180
948
+ msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
949
+ msgstr ""
950
+
951
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1187
952
+ msgid "An email has been sent to you with information on how to activate your account"
953
+ msgstr ""
954
+
955
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
956
+ #, fuzzy
957
+ msgid "Thank you for registering"
958
  msgstr "Obrigado por registrar-se no nosso site, %1$s."
959
 
960
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1220
961
+ msgid "An error occured while trying to send the notification email."
962
+ msgstr ""
963
+
964
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
965
+ msgid "An email containing activation instructions was successfully sent."
966
+ msgstr ""
967
+
968
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
969
+ msgid "An email containing the username and password was successfully sent."
970
+ msgstr ""
971
+
972
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1246
973
  msgid "Users can register themselves or you can manually create users here."
974
  msgstr "Os usuários podem se registrar ou podes criar manualmente os usuários por aqui."
975
 
976
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
977
  msgid "Users cannot currently register themselves, but you can manually create users here."
978
  msgstr "Os usuários não podem se registrar ou podes criar manualmente os usuários por aqui."
979
 
980
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1256
981
  msgid "Only an administrator can add new users."
982
  msgstr "Somente o administrador pode criar novos usuários."
983
 
984
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1279
985
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
986
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
987
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
988
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
989
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
990
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
991
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
992
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1501
993
+ msgid "This field must be filled out before registering (It was marked as required by the administrator)"
994
+ msgstr ""
995
+
996
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1300
997
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1324
998
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1348
999
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
1000
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
1001
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1423
1002
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1447
1003
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1471
1004
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
1005
+ msgid "This field is marked as required by the administrator"
1006
+ msgstr ""
1007
+
1008
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
1009
+ msgid "Anti-Spam"
1010
+ msgstr ""
1011
+
1012
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
1013
  #, fuzzy
1014
+ msgid "Send these credentials via email."
1015
  msgstr "Enviar estas informações por email."
1016
 
1017
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1018
  msgid "Add User"
1019
  msgstr "Adicionar usuario"
1020
 
1021
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
1022
  msgid "Register"
1023
  msgstr "Registrar"
1024
 
1025
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1026
+ msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
1027
+ msgstr ""
1028
+
1029
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1030
+ msgid "heading"
1031
+ msgstr ""
1032
+
1033
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
1034
+ msgid "\" custom field."
1035
+ msgstr ""
1036
+
1037
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1038
+ msgid "All of the fields can be sorted and rearranged to your liking with"
1039
+ msgstr ""
1040
+
1041
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1042
+ msgid "Drag"
1043
+ msgstr ""
1044
+
1045
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1046
+ msgid "Drop"
1047
+ msgstr ""
1048
+
1049
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
1050
+ msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
1051
+ msgstr ""
1052
+
1053
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
1054
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
1055
+ #, fuzzy
1056
+ msgid "Title"
1057
+ msgstr "Branco"
1058
+
1059
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
1060
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
1061
+ msgid "Type"
1062
+ msgstr ""
1063
+
1064
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
1065
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
1066
+ msgid "Meta-Key"
1067
+ msgstr ""
1068
+
1069
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
1070
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
1071
+ msgid "ID"
1072
+ msgstr ""
1073
+
1074
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
1075
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
1076
+ msgid "Req'd"
1077
+ msgstr ""
1078
+
1079
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
1080
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
1081
+ msgid "Add Option"
1082
+ msgstr ""
1083
+
1084
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
1085
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
1086
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
1087
+ msgid "Edit"
1088
+ msgstr ""
1089
+
1090
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
1091
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
1092
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
1093
+ #, fuzzy
1094
+ msgid "Delete"
1095
+ msgstr "Padrão"
1096
+
1097
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1098
+ msgid "Title:"
1099
+ msgstr ""
1100
+
1101
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
1102
+ msgid "The title of the item."
1103
+ msgstr ""
1104
+
1105
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1106
+ msgid "Meta-Key:"
1107
+ msgstr ""
1108
+
1109
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
1110
+ msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
1111
+ msgstr ""
1112
+
1113
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1114
+ msgid "Option Type:"
1115
+ msgstr ""
1116
+
1117
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
1118
+ msgid "Choose one of the supported option types."
1119
+ msgstr ""
1120
+
1121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1122
+ msgid "Description:"
1123
+ msgstr ""
1124
+
1125
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
1126
+ msgid "Enter a detailed description of the option for end users to read(optional)."
1127
+ msgstr ""
1128
+
1129
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1130
+ msgid "You can only insert links using standard HTML syntax:"
1131
+ msgstr ""
1132
+
1133
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1134
+ msgid "address"
1135
+ msgstr ""
1136
+
1137
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
1138
+ #, fuzzy
1139
+ msgid "name"
1140
+ msgstr "Nome"
1141
+
1142
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1143
+ msgid "Options:"
1144
+ msgstr ""
1145
+
1146
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
1147
+ msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
1148
+ msgstr ""
1149
+
1150
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1151
+ msgid "ID:"
1152
+ msgstr ""
1153
+
1154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
1155
+ msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
1156
+ msgstr ""
1157
+
1158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1159
+ #, fuzzy
1160
+ msgid "Required:"
1161
+ msgstr "(obrigatorio)"
1162
+
1163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
1164
+ msgid "Check this box to make this field required."
1165
+ msgstr ""
1166
+
1167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
1168
+ msgid "Cancel"
1169
+ msgstr ""
1170
+
1171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
1172
+ msgid "Save"
1173
+ msgstr ""
1174
+
1175
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
1176
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
1177
+ msgid "Register your version of Profile Builder Pro"
1178
+ msgstr ""
1179
+
1180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
1181
+ msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
1182
+ msgstr ""
1183
+
1184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
1185
+ msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
1186
+ msgstr ""
1187
+
1188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
1189
+ msgid "Serial Number:"
1190
+ msgstr ""
1191
+
1192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:239
1193
+ #, fuzzy
1194
+ msgid "The serial number was successfully validated!"
1195
+ msgstr "Sua foto foi eliminada."
1196
+
1197
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:241
1198
+ msgid "The serial number couldn't be validated or isn't valid!"
1199
+ msgstr ""
1200
+
1201
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:243
1202
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
1203
+ msgstr ""
1204
+
1205
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:247
1206
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1207
+ msgstr ""
1208
+
1209
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1210
+ msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1211
+ msgstr ""
1212
+
1213
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
1214
+ msgid "You can find it in Profile Builder's menu."
1215
+ msgstr ""
1216
+
1217
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
1218
+ #, fuzzy
1219
+ msgid "You need to be logged in to view the userlisting!"
1220
+ msgstr "Você deve estar conectado para editar seu perfil."
1221
+
1222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:80
1223
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:106
1224
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1225
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:912
1226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:999
1227
+ msgid "Search Users by All Fields"
1228
+ msgstr ""
1229
+
1230
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:124
1231
+ msgid "Leave Blank and Press Search to List All Users"
1232
+ msgstr ""
1233
+
1234
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
1235
+ msgid "Search"
1236
+ msgstr ""
1237
+
1238
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:141
1239
+ #, fuzzy
1240
+ msgid "First/Lastname"
1241
+ msgstr "Nome:"
1242
+
1243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:147
1244
+ #, fuzzy
1245
+ msgid "Email"
1246
+ msgstr "Email"
1247
+
1248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:153
1249
+ msgid "Sign-up Date"
1250
+ msgstr ""
1251
+
1252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:159
1253
+ #, fuzzy
1254
+ msgid "Firstname"
1255
+ msgstr "Nome:"
1256
+
1257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:165
1258
+ #, fuzzy
1259
+ msgid "Lastname"
1260
+ msgstr "Sobrenomes"
1261
+
1262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:171
1263
+ #, fuzzy
1264
+ msgid "Display Name"
1265
+ msgstr "Nome:"
1266
+
1267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:189
1268
+ msgid "Posts"
1269
+ msgstr ""
1270
+
1271
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1272
+ msgid "Click here to see more information about this user"
1273
+ msgstr ""
1274
+
1275
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:231
1276
+ msgid "More..."
1277
+ msgstr ""
1278
+
1279
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:415
1280
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1281
+ #, fuzzy
1282
+ msgid "No uploaded attachment"
1283
+ msgstr "O arquivo anexo \""
1284
+
1285
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:417
1286
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1287
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:747
1288
+ msgid "Click to see the current attachment"
1289
+ msgstr ""
1290
+
1291
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1292
+ msgid "Click here to go back"
1293
+ msgstr ""
1294
+
1295
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:533
1296
+ #, fuzzy
1297
+ msgid "Back"
1298
+ msgstr "Preto"
1299
+
1300
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:691
1301
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:693
1302
+ msgid "Current file"
1303
+ msgstr ""
1304
+
1305
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:745
1306
+ msgid "Avatar"
1307
+ msgstr ""
1308
+
1309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:802
1310
+ msgid "No results found!"
1311
+ msgstr ""
1312
+
1313
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
1314
+ msgid "&laquo;&laquo; First"
1315
+ msgstr ""
1316
+
1317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:896
1318
+ msgid "&laquo; Prev"
1319
+ msgstr ""
1320
+
1321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:897
1322
+ #, fuzzy
1323
+ msgid "Next &raquo; "
1324
+ msgstr "Sair &raquo;"
1325
+
1326
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:898
1327
+ #, fuzzy
1328
+ msgid "Last &raquo;&raquo;"
1329
+ msgstr "Sair &raquo;"
1330
+
1331
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1250
1332
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1333
+ msgstr ""
1334
+
1335
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
1336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
1337
+ msgid "Activate/Deactivate Addons"
1338
+ msgstr ""
1339
+
1340
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
1341
+ msgid "Name/Description"
1342
+ msgstr ""
1343
+
1344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
1345
+ msgid "Status"
1346
+ msgstr ""
1347
+
1348
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
1349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
1350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
1351
+ msgid "User-Listing"
1352
+ msgstr ""
1353
+
1354
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
1355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
1356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
1357
+ msgid "Active"
1358
+ msgstr ""
1359
+
1360
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
1361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
1362
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
1363
+ msgid "Inactive"
1364
+ msgstr ""
1365
+
1366
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
1367
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
1368
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
1369
+ msgid "Custom Redirects"
1370
+ msgstr ""
1371
+
1372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
1373
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
1374
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
1375
+ msgid "reCAPTCHA"
1376
+ msgstr ""
1377
+
1378
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
1379
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
1380
+ msgstr ""
1381
+
1382
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
1383
+ msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
1384
+ msgstr ""
1385
+
1386
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
1387
+ msgid "These settings are applied to the front-end userlisting."
1388
+ msgstr ""
1389
+
1390
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
1391
+ msgid "Number of Users/Page: "
1392
+ msgstr ""
1393
+
1394
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
1395
+ msgid "Default Sorting Order: "
1396
+ msgstr ""
1397
+
1398
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
1399
+ msgid "\"All-Userlisting\" Template"
1400
+ msgstr ""
1401
+
1402
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
1403
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
1404
+ msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
1405
+ msgstr ""
1406
+
1407
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
1408
+ msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
1409
+ msgstr ""
1410
+
1411
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
1412
+ msgid "Avatar size: "
1413
+ msgstr ""
1414
+
1415
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
1416
+ msgid "Insert \"Sort By\" Field:"
1417
+ msgstr ""
1418
+
1419
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
1420
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
1421
+ msgid "Insert \"User-Meta\" Field:"
1422
+ msgstr ""
1423
+
1424
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
1425
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
1426
+ msgid "Insert Extra Functions:"
1427
+ msgstr ""
1428
+
1429
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
1430
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
1431
+ msgstr ""
1432
+
1433
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
1434
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
1435
+ msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
1436
+ msgstr ""
1437
+
1438
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
1439
+ msgid "\"Single-Userlisting\" Template"
1440
+ msgstr ""
1441
+
1442
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
1443
+ msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
1444
+ msgstr ""
1445
+
1446
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
1447
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
1448
+ msgstr ""
1449
+
1450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
1451
+ msgid "Redirects on custom page requests:"
1452
+ msgstr ""
1453
+
1454
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
1455
+ msgid "Action"
1456
+ msgstr ""
1457
+
1458
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
1459
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
1460
+ msgid "Redirect"
1461
+ msgstr ""
1462
+
1463
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
1464
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
1465
+ msgid "URL"
1466
+ msgstr ""
1467
+
1468
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
1469
+ msgid "After Registration:"
1470
+ msgstr ""
1471
+
1472
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
1473
+ msgid "After Login:"
1474
+ msgstr ""
1475
+
1476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
1477
+ #, fuzzy
1478
+ msgid "Recover Password (*)"
1479
+ msgstr "Repetir a senha"
1480
+
1481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
1482
+ msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
1483
+ msgstr ""
1484
+
1485
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:508
1486
+ msgid "Redirects on default WordPress page requests:"
1487
+ msgstr ""
1488
+
1489
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:514
1490
+ msgid "Requested WP Page"
1491
+ msgstr ""
1492
+
1493
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:521
1494
+ msgid "Default WP Login Page(*)"
1495
+ msgstr ""
1496
+
1497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:533
1498
+ msgid "Default WP Logout Page(**)"
1499
+ msgstr ""
1500
+
1501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:545
1502
+ msgid "Default WP Register Page"
1503
+ msgstr ""
1504
+
1505
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:557
1506
+ msgid "Default WP Dashboard (***)"
1507
+ msgstr ""
1508
+
1509
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:568
1510
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1511
+ msgstr ""
1512
+
1513
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
1514
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1515
+ msgstr ""
1516
+
1517
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
1518
+ msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
1519
+ msgstr ""
1520
+
1521
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:605
1522
+ msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
1523
+ msgstr ""
1524
+
1525
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
1526
+ msgid "For this you must get a public and private key from Google:"
1527
+ msgstr ""
1528
+
1529
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:612
1530
+ msgid "Key"
1531
+ msgstr ""
1532
+
1533
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
1534
+ msgid "Code"
1535
+ msgstr ""
1536
+
1537
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:617
1538
+ msgid "Public Key:"
1539
+ msgstr ""
1540
+
1541
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:621
1542
+ msgid "Private Key:"
1543
+ msgstr ""
1544
+
1545
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
1546
+ msgid "Could not open socket!"
1547
+ msgstr ""
1548
+
1549
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
1550
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
1551
+ msgid "To use reCAPTCHA you must get an API key from"
1552
+ msgstr ""
1553
+
1554
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
1555
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1556
+ msgstr ""
1557
+
1558
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
1559
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1560
+ msgstr ""
1561
+
1562
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
1563
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1564
+ msgstr ""
1565
+
1566
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
1567
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
1568
+ #, fuzzy
1569
+ msgid "You must give your option a title."
1570
+ msgstr "Você deve estar conectado para editar seu perfil."
1571
+
1572
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
1573
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
1574
+ msgid "You have entered an invalid meta-key format!"
1575
+ msgstr ""
1576
+
1577
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:291
1578
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:434
1579
+ #, fuzzy
1580
+ msgid "You must enter a valid meta-key."
1581
+ msgstr "Você precisa introduzir um endereço de email válido."
1582
+
1583
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:297
1584
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
1585
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:444
1586
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:456
1587
+ msgid "That meta-key is already in use."
1588
+ msgstr ""
1589
+
1590
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:314
1591
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:464
1592
+ msgid "There is already an avatar input-type. You can only have one avatar present."
1593
+ msgstr ""
1594
+
1595
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:321
1596
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:471
1597
+ msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
1598
+ msgstr ""
1599
+
1600
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1601
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
1602
+ msgid "The textarea row value must be numeric."
1603
+ msgstr ""
1604
+
1605
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:330
1606
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:480
1607
+ msgid "The maxlength attribute must be numeric."
1608
+ msgstr ""
1609
+
1610
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:337
1611
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:487
1612
+ msgid "The value must be between 20 and 200!"
1613
+ msgstr ""
1614
+
1615
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
1616
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
1617
+ msgid "The width component of the entered value must be numeric!"
1618
+ msgstr ""
1619
+
1620
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
1621
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
1622
+ msgid "The height component of the entered value must be numeric!"
1623
+ msgstr ""
1624
+
1625
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
1626
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
1627
+ msgid "The width component of the entered value must be between 20 and 200!"
1628
+ msgstr ""
1629
+
1630
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:348
1631
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:498
1632
+ msgid "The height component of the entered value must be between 20 and 200!"
1633
+ msgstr ""
1634
+
1635
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
1636
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1637
+ msgid "The pair of values entered didn't have the right format (width,height)!"
1638
+ msgstr ""
1639
+
1640
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
1641
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
1642
+ msgid "The entered avatar size must be numeric!"
1643
+ msgstr ""
1644
+
1645
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:387
1646
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:563
1647
+ msgid "There was an error, please try again."
1648
+ msgstr ""
1649
+
1650
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1651
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1652
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
1653
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
1654
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
1655
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
1656
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
1657
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
1658
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
1659
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
1660
+ msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
1661
+ msgstr ""
1662
+
1663
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
1664
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
1665
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
1666
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
1667
+ msgid "max upload size"
1668
+ msgstr ""
1669
+
1670
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
1671
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
1672
+ msgid "Are you sure you want to delete this attachment?"
1673
+ msgstr ""
1674
+
1675
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
1676
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1677
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
1678
+ msgid "Click to delete the current attachment"
1679
+ msgstr ""
1680
+
1681
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1682
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1683
+ msgstr ""
1684
+
1685
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1686
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1687
+ msgid "Current avatar"
1688
+ msgstr ""
1689
+
1690
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1691
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1692
+ msgid "No uploaded avatar"
1693
+ msgstr ""
1694
+
1695
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1696
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1697
+ msgid "Are you sure you want to delete this avatar?"
1698
+ msgstr ""
1699
+
1700
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1701
+ msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
1702
+ msgstr ""
1703
+
1704
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1705
+ msgid "Click to see the current avatar"
1706
+ msgstr ""
1707
+
1708
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1709
+ msgid "Click to delete the avatar"
1710
+ msgstr ""
1711
+
1712
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
1713
+ msgid "The user-validation has failed - the avatar was not deleted!"
1714
+ msgstr ""
1715
+
1716
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
1717
+ msgid "The user-validation has failed - the attachment was not deleted!"
1718
+ msgstr ""
1719
+
1720
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1721
+ msgid "Do you want to"
1722
+ msgstr ""
1723
+
1724
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:511
1725
+ msgid "the current user?"
1726
+ msgstr ""
1727
+
1728
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1729
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1730
+ msgid "Your account on"
1731
+ msgstr ""
1732
+
1733
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:539
1734
+ msgid "has been approved!"
1735
+ msgstr ""
1736
+
1737
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:540
1738
+ msgid "An administrator has just approved your account on"
1739
+ msgstr ""
1740
+
1741
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:543
1742
+ msgid "has been unapproved!"
1743
+ msgstr ""
1744
+
1745
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:544
1746
+ msgid "An administrator has just unapproved your account on"
1747
+ msgstr ""
1748
+
1749
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:608
1750
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:654
1751
+ msgid "Approve"
1752
+ msgstr ""
1753
+
1754
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:609
1755
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:699
1756
+ msgid "Unapproved"
1757
+ msgstr ""
1758
+
1759
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:620
1760
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:650
1761
+ msgid "Unapprove"
1762
+ msgstr ""
1763
+
1764
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:621
1765
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:696
1766
+ msgid "Approved"
1767
+ msgstr ""
1768
+
1769
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:649
1770
+ msgid "unapprove"
1771
+ msgstr ""
1772
+
1773
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:653
1774
+ msgid "approve"
1775
+ msgstr ""
1776
+
1777
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1778
+ msgid "Are you sure you want to"
1779
+ msgstr ""
1780
+
1781
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:657
1782
+ msgid "this user?"
1783
+ msgstr ""
1784
+
1785
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:718
1786
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1787
+ msgstr ""
1788
+
1789
+ #~ msgid "Plugin Layout"
1790
+ #~ msgstr "Design do plugin"
1791
+
1792
+ #~ msgid "You didn't complete both password fields. <br/> The password was "
1793
+ #~ msgstr "Ambos os campos da senha não foram completados.<br/>A senha era"
1794
+
1795
+ #~ msgid ""
1796
+ #~ "There was an error while trying to upload your avatar picture.<br/"
1797
+ #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
1798
+ #~ msgstr ""
1799
+ #~ "Ocorreu um erro ao tentar subir a imagem de avatar.<br/>Possível causa: "
1800
+ #~ "tamanho/tipo de arquivo incorreto.<br/>O avatar era"
1801
+
1802
+ #~ msgid ""
1803
+ #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
1804
+ #~ "need another account."
1805
+ #~ msgstr ""
1806
+ #~ "Você está conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Não é "
1807
+ #~ "necessária outra conta de usuário."
translation/profilebuilder-ro_RO.mo CHANGED
Binary file
translation/profilebuilder-ro_RO.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: 2012-03-05 12:20+0200\n"
6
- "PO-Revision-Date: 2012-03-08 11:48+0200\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Reflection Media, Gabriel Barina\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -99,7 +99,8 @@ msgid "shortcode."
99
  msgstr "cod."
100
 
101
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
102
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:84
 
103
  msgid "NOTE:"
104
  msgstr "NOTA:"
105
 
@@ -117,12 +118,14 @@ msgstr "din panoul de administrare, pe cand campurile vor fi vizibile doar in fr
117
 
118
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
119
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
120
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
121
- msgid "Plugin Layout"
122
- msgstr "Layout Plugin"
 
123
 
124
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
125
- msgid "Stylesheet used:"
 
126
  msgstr "Styleshhet-uri folosite:"
127
 
128
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
@@ -141,251 +144,275 @@ msgstr "Negru"
141
  msgid "None"
142
  msgstr "Nimic"
143
 
144
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
145
  msgid "The black stylesheet is intended for sites/blogs with a dark background."
146
  msgstr "Stylesheet-ul negru este destinat siteurilor/blogurilor cu un fundal negru."
147
 
148
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:84
149
  msgid "The white stylesheet is intended for a sites/blogs with a light background color."
150
  msgstr "Stylesheet-ul alb este destinat site-urilor/blogurilor cu un fundal deschis."
151
 
152
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
153
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
154
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
155
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:248
156
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:38
157
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:412
158
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:566
 
 
 
 
 
159
  msgid "Save Changes"
160
  msgstr "Salveaza modificari"
161
 
162
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
163
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
164
  msgid "Show/Hide the Admin Bar on Front End"
165
  msgstr "Arata/Ascunde Bara de Admin in Front End"
166
 
167
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:112
168
  msgid "User-group"
169
  msgstr "Grup utilizatori"
170
 
171
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:113
172
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:157
173
  msgid "Visibility"
174
  msgstr "Vizibilitate"
175
 
176
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:122
177
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:172
178
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
179
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:198
180
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
181
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
182
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:243
183
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:256
184
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:272
185
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:285
186
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:298
187
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:317
188
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
189
  msgid "Show"
190
  msgstr "Arata"
191
 
192
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:123
193
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:173
194
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
195
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
196
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
197
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
198
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
199
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
200
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:273
201
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:286
202
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:299
203
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
204
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
205
  msgid "Hide"
206
  msgstr "Ascunde"
207
 
208
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:151
209
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:152
210
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
 
 
 
 
211
  msgid "Default Profile Fields"
212
  msgstr "Campuri standard de profil"
213
 
214
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:156
215
  msgid "Input Field Name"
216
  msgstr "Nume camp"
217
 
218
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:158
219
  msgid "Required"
220
  msgstr "Necesar"
221
 
222
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:163
223
  msgid "Name:"
224
  msgstr "Nume:"
225
 
226
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
227
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
228
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
229
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
230
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:668
 
231
  msgid "Username"
232
  msgstr "Utilizator"
233
 
234
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:176
235
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:189
236
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:202
237
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:215
238
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:228
239
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
240
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
241
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
242
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
243
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:302
244
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
245
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
246
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:468
247
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:476
248
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
249
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
250
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:527
251
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:539
252
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:551
253
- msgid "Yes"
254
- msgstr "Da"
255
-
256
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:177
257
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
258
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
259
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
260
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
261
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
262
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
263
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
264
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
265
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
266
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
267
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
268
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
269
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
270
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:487
271
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
272
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:528
273
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:540
274
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:552
275
- msgid "No"
276
- msgstr "Nu"
277
-
278
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:182
279
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:719
280
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:692
281
  msgid "First Name"
282
  msgstr "Prenume"
283
 
284
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:195
285
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:739
286
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:716
287
  msgid "Last Name"
288
  msgstr "Nume"
289
 
290
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
291
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:759
292
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:740
293
  msgid "Nickname"
294
  msgstr "Porecla"
295
 
296
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
297
  msgid "Display name publicly as..."
298
  msgstr "Afiseaza nume ca..."
299
 
300
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
301
  msgid "Contact Info:"
302
  msgstr "Informatii contact:"
303
 
304
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:240
305
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:829
306
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
307
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:767
308
  msgid "E-mail"
309
  msgstr "E-mail"
310
 
311
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:253
312
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:848
313
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:791
 
314
  msgid "Website"
315
  msgstr "Website"
316
 
317
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:269
318
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:866
319
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:815
320
  msgid "AIM"
321
  msgstr "AIM"
322
 
323
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
324
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:884
325
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:839
326
  msgid "Yahoo IM"
327
  msgstr "Yahoo IM"
328
 
329
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
330
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:902
331
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:863
332
  msgid "Jabber / Google Talk"
333
  msgstr "Jabber / Google Talk"
334
 
335
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
336
  msgid "About Yourself:"
337
  msgstr "Despre tine:"
338
 
339
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:314
340
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:923
341
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
 
342
  msgid "Biographical Info"
343
  msgstr "Informatii biografice"
344
 
345
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:328
346
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:933
347
  msgid "New Password"
348
  msgstr "Parola noua"
349
 
350
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:57
351
  msgid "Basic Information"
352
  msgstr "Informatii standard"
353
 
354
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
355
  msgid "Show/Hide the Admin Bar on Front-end"
356
  msgstr "Arata/Ascunde bara de administrare in front-end"
357
 
358
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:66
359
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
360
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
361
  msgid "Extra Profile Fields"
362
  msgstr "Campuri extra de profil"
363
 
364
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:69
365
  msgid "Addons"
366
  msgstr "Addon-uri"
367
 
368
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:72
369
  msgid "Register Your Version"
370
  msgstr "Inregistreaza versiunea ta"
371
 
372
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
373
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:45
374
  msgid "The information size you were trying to submit was larger than"
375
  msgstr "Dimeniusnea informatiei pe care incerci sa o trimiti depaseste"
376
 
377
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
378
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:46
379
  msgid "This is usually caused by a large file(s) trying to be uploaded."
380
  msgstr "Acest lucru se datoreaza in mod normal incercarii de incarcare a unor fisiere mari."
381
 
382
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
383
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:47
384
  msgid "Since it was also larger than"
385
  msgstr "Deoarece a fost mai mare decat"
386
 
387
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
388
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:47
389
  msgid "no additional information is available."
390
  msgstr "nicio informatie aditionala nu e disponibila."
391
 
@@ -420,21 +447,21 @@ msgstr "Adresa de email a fost"
420
 
421
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
422
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
423
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:618
424
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:627
425
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:653
426
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:661
427
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
428
  msgid "NOT"
429
  msgstr "NU"
430
 
431
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
432
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
433
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:618
434
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:627
435
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:653
436
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:661
437
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
438
  msgid "updated along with the rest of the information."
439
  msgstr "actualizat odata cu restul informatiei."
440
 
@@ -442,96 +469,123 @@ msgstr "actualizat odata cu restul informatiei."
442
  msgid "The email address you entered is invalid."
443
  msgstr "Adresa de email introdusa este invalida."
444
 
445
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:618
446
  msgid "The passwords you entered do not match."
447
  msgstr "Parolele introduse nu se potrivesc."
448
 
449
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:618
450
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:627
451
  msgid "The password was"
452
  msgstr "Parola a fost"
453
 
454
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:627
455
  msgid "You didn't complete both password fields."
456
  msgstr "Nu ai completat ambele campuri ale parolei."
457
 
458
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:634
459
  msgid "Your profile was NOT updated!"
460
  msgstr "Profilul tau NU a fost actualizat!"
461
 
462
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:643
463
  msgid "There was an error while trying to upload the following attachments:"
464
  msgstr "A intervenit o eroare in timpul incarcarii urmatoarelor atasamente:"
465
 
466
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:653
467
  msgid "Possible cause: the size was bigger than"
468
  msgstr "Posibila cauza: dimensiune mai mare de "
469
 
470
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:653
471
  msgid "The listed attachements were"
472
  msgstr "Atasamentele listate au fost"
473
 
474
- #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:661
475
  msgid "There was an error while trying to upload your avatar picture."
476
  msgstr "S-a inregistrat o eroare in timpul incarc
2
  msgstr ""
3
  "Project-Id-Version: ProfileBuilder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-03 14:30+0200\n"
6
+ "PO-Revision-Date: 2012-09-03 14:32+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"
99
  msgstr "cod."
100
 
101
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
102
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:104
103
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:159
104
  msgid "NOTE:"
105
  msgstr "NOTA:"
106
 
118
 
119
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:66
120
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:67
121
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:51
122
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
123
+ msgid "General Settings"
124
+ msgstr "Setari Generale"
125
 
126
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
127
+ #, fuzzy
128
+ msgid "Stylesheet Used on the Front-End:"
129
  msgstr "Styleshhet-uri folosite:"
130
 
131
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
144
  msgid "None"
145
  msgstr "Nimic"
146
 
147
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:86
148
+ msgid "\"Email Confirmation\" Feature Activated:"
149
+ msgstr ""
150
+
151
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:88
152
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
153
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:210
154
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:223
155
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:236
156
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:249
157
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:262
158
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:281
159
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:294
160
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:310
161
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:323
162
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:336
163
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:355
164
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:369
165
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
166
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
167
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
168
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:524
169
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:536
170
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:548
171
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:560
172
+ msgid "Yes"
173
+ msgstr "Da"
174
+
175
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
176
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:98
177
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:211
178
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:224
179
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:237
180
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:250
181
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:263
182
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:282
183
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:295
184
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:311
185
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:324
186
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:337
187
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:356
188
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:370
189
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
190
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
191
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
192
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
193
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
194
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
195
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
196
+ msgid "No"
197
+ msgstr "Nu"
198
+
199
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:95
200
+ msgid "\"Admin Approval\" Feature Activated:"
201
+ msgstr ""
202
+
203
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
204
  msgid "The black stylesheet is intended for sites/blogs with a dark background."
205
  msgstr "Stylesheet-ul negru este destinat siteurilor/blogurilor cu un fundal negru."
206
 
207
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
208
  msgid "The white stylesheet is intended for a sites/blogs with a light background color."
209
  msgstr "Stylesheet-ul alb este destinat site-urilor/blogurilor cu un fundal deschis."
210
 
211
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
212
+ msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
213
+ msgstr ""
214
+
215
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:114
216
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:167
217
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:378
218
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:252
219
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
220
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
221
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:575
222
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:629
223
  msgid "Save Changes"
224
  msgstr "Salveaza modificari"
225
 
226
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:132
227
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:133
228
  msgid "Show/Hide the Admin Bar on Front End"
229
  msgstr "Arata/Ascunde Bara de Admin in Front End"
230
 
231
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:137
232
  msgid "User-group"
233
  msgstr "Grup utilizatori"
234
 
235
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:138
236
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:191
237
  msgid "Visibility"
238
  msgstr "Vizibilitate"
239
 
240
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:147
241
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:206
242
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:219
243
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:232
244
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:245
245
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:258
246
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:277
247
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:290
248
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:306
249
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:319
250
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:332
251
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:351
252
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:365
253
  msgid "Show"
254
  msgstr "Arata"
255
 
256
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:148
257
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:207
258
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:220
259
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
260
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
261
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
262
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
263
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
264
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
265
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
266
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
267
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
268
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
269
  msgid "Hide"
270
  msgstr "Ascunde"
271
 
272
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:160
273
+ msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
274
+ msgstr ""
275
+
276
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:185
277
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:186
278
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:53
279
  msgid "Default Profile Fields"
280
  msgstr "Campuri standard de profil"
281
 
282
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:190
283
  msgid "Input Field Name"
284
  msgstr "Nume camp"
285
 
286
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
287
  msgid "Required"
288
  msgstr "Necesar"
289
 
290
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:197
291
  msgid "Name:"
292
  msgstr "Nume:"
293
 
294
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:203
295
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
296
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
297
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:488
298
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
299
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:135
300
  msgid "Username"
301
  msgstr "Utilizator"
302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
303
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:216
304
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
305
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1314
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  msgid "First Name"
307
  msgstr "Prenume"
308
 
309
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:229
310
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
311
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1338
312
  msgid "Last Name"
313
  msgstr "Nume"
314
 
315
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:242
316
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
317
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1362
318
  msgid "Nickname"
319
  msgstr "Porecla"
320
 
321
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:255
322
  msgid "Display name publicly as..."
323
  msgstr "Afiseaza nume ca..."
324
 
325
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:268
326
  msgid "Contact Info:"
327
  msgstr "Informatii contact:"
328
 
329
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:274
330
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
331
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:489
332
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1389
333
  msgid "E-mail"
334
  msgstr "E-mail"
335
 
336
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:287
337
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
338
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1413
339
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:177
340
  msgid "Website"
341
  msgstr "Website"
342
 
343
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:303
344
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
345
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1437
346
  msgid "AIM"
347
  msgstr "AIM"
348
 
349
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:316
350
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
351
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1461
352
  msgid "Yahoo IM"
353
  msgstr "Yahoo IM"
354
 
355
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:329
356
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
357
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1485
358
  msgid "Jabber / Google Talk"
359
  msgstr "Jabber / Google Talk"
360
 
361
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:342
362
  msgid "About Yourself:"
363
  msgstr "Despre tine:"
364
 
365
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:348
366
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
367
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1512
368
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:183
369
  msgid "Biographical Info"
370
  msgstr "Informatii biografice"
371
 
372
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:362
373
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
374
  msgid "New Password"
375
  msgstr "Parola noua"
376
 
377
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:50
378
  msgid "Basic Information"
379
  msgstr "Informatii standard"
380
 
381
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:52
382
  msgid "Show/Hide the Admin Bar on Front-end"
383
  msgstr "Arata/Ascunde bara de administrare in front-end"
384
 
385
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
386
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
387
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
388
  msgid "Extra Profile Fields"
389
  msgstr "Campuri extra de profil"
390
 
391
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:62
392
  msgid "Addons"
393
  msgstr "Addon-uri"
394
 
395
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:65
396
  msgid "Register Your Version"
397
  msgstr "Inregistreaza versiunea ta"
398
 
399
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
400
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:577
401
  msgid "The information size you were trying to submit was larger than"
402
  msgstr "Dimeniusnea informatiei pe care incerci sa o trimiti depaseste"
403
 
404
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
405
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:578
406
  msgid "This is usually caused by a large file(s) trying to be uploaded."
407
  msgstr "Acest lucru se datoreaza in mod normal incercarii de incarcare a unor fisiere mari."
408
 
409
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
410
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
411
  msgid "Since it was also larger than"
412
  msgstr "Deoarece a fost mai mare decat"
413
 
414
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
415
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:579
416
  msgid "no additional information is available."
417
  msgstr "nicio informatie aditionala nu e disponibila."
418
 
447
 
448
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
449
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
450
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
451
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
452
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
453
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
454
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
455
  msgid "NOT"
456
  msgstr "NU"
457
 
458
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
459
  #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
460
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
461
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
462
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
463
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
464
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
465
  msgid "updated along with the rest of the information."
466
  msgstr "actualizat odata cu restul informatiei."
467
 
469
  msgid "The email address you entered is invalid."
470
  msgstr "Adresa de email introdusa este invalida."
471
 
472
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
473
  msgid "The passwords you entered do not match."
474
  msgstr "Parolele introduse nu se potrivesc."
475
 
476
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
477
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
478
  msgid "The password was"
479
  msgstr "Parola a fost"
480
 
481
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
482
  msgid "You didn't complete both password fields."
483
  msgstr "Nu ai completat ambele campuri ale parolei."
484
 
485
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
486
  msgid "Your profile was NOT updated!"
487
  msgstr "Profilul tau NU a fost actualizat!"
488
 
489
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
490
  msgid "There was an error while trying to upload the following attachments:"
491
  msgstr "A intervenit o eroare in timpul incarcarii urmatoarelor atasamente:"
492
 
493
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
494
  msgid "Possible cause: the size was bigger than"
495
  msgstr "Posibila cauza: dimensiune mai mare de "
496
 
497
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
498
  msgid "The listed attachements were"
499
  msgstr "Atasamentele listate au fost"
500
 
501
+ #: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
502
  msgid "There was an error while trying to upload your avatar picture."
503
  msgstr "S-a inregistrat o eroare in timpul incarc