User registration & user profile – Profile Builder - Version 1.1.56

Version Description

Added activation_url and activation_link to the "Email Customizer" feature (pro). Also, once the "Email Confirmation" feature is activated, an option will appear to select the registration page for the "Resend confirmation email" feature, which was also added to the back-end userlisting.

Download this release

Release Info

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

Code changes from version 1.1.55 to 1.1.56

assets/css/back.end.css CHANGED
@@ -3,4 +3,8 @@
3
  }
4
  .users_page_admin_approval #separatorID2, .users_page_admin_approval .bulkActionUsers, .users_page_admin_approval #bulkUsersNo{
5
  display:none;
 
 
 
 
6
  }
3
  }
4
  .users_page_admin_approval #separatorID2, .users_page_admin_approval .bulkActionUsers, .users_page_admin_approval #bulkUsersNo{
5
  display:none;
6
+ }
7
+ .col-metaName {
8
+ max-width: 170px;
9
+ overflow: hidden;
10
  }
assets/css/premium.style.css CHANGED
@@ -1033,6 +1033,34 @@ div.file_wrap {
1033
  *display:inline !important;
1034
  zoom:1;
1035
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1036
  #framework_wrap #content #generalSettingFont{
1037
  font-size:11px;
1038
  }
@@ -1279,4 +1307,24 @@ span .selectable{
1279
  cursor: text;
1280
  }
1281
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1282
  /*END STYLE EMAIL CUSTOMIZER*/
1033
  *display:inline !important;
1034
  zoom:1;
1035
  }
1036
+ #framework_wrap #content .wppb_general_settings5{
1037
+ position:relative;
1038
+ left:20px;
1039
+ vertical-align:middle;
1040
+ display:inline-block !important;
1041
+ margin-bottom:0 !important;
1042
+ width: 176px;
1043
+ height: 25px;
1044
+ font-size:11px;
1045
+ *display:inline !important;
1046
+ zoom:1;
1047
+ }
1048
+ #framework_wrap #content #general_settings_registration_section{
1049
+ border-top: 1px solid #CCCCCC;
1050
+ border-bottom: 1px solid #CCCCCC;
1051
+ margin-bottom: 14px;
1052
+ margin-top: 14px;
1053
+ padding-top: 14px;
1054
+ }
1055
+ #framework_wrap #content #general_settings_login_with_section{
1056
+ border-top: 1px solid #CCCCCC;
1057
+ margin-top: 14px;
1058
+ padding-top: 14px;
1059
+ }
1060
+ #framework_wrap #content #registration_note{
1061
+ color: grey;
1062
+ font-size:10px;
1063
+ }
1064
  #framework_wrap #content #generalSettingFont{
1065
  font-size:11px;
1066
  }
1307
  cursor: text;
1308
  }
1309
 
1310
+ .email_customizer_grey{
1311
+ color:grey;
1312
+ }
1313
+
1314
+ .email_customizer_red{
1315
+ color:red;
1316
+ }
1317
+
1318
+ .email_customizer_dark{
1319
+ color:black;
1320
+ }
1321
+
1322
+ .email_customizer_bold{
1323
+ font-weight:bold;
1324
+ }
1325
+
1326
+ .email_customizer_fs11{
1327
+ font-size:11px;
1328
+ }
1329
+
1330
  /*END STYLE EMAIL CUSTOMIZER*/
assets/css/style.css CHANGED
@@ -989,10 +989,37 @@ div.file_wrap {
989
  *display:inline !important;
990
  zoom:1;
991
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
992
  #framework_wrap #content #generalSettingFont{
993
  font-size:11px;
994
  }
995
-
 
 
 
996
  #content_wrap #wppb_buyNowButton{
997
  position: relative;
998
  left: -34px;
989
  *display:inline !important;
990
  zoom:1;
991
  }
992
+ #framework_wrap #content .wppb_general_settings5{
993
+ position:relative;
994
+ left:20px;
995
+ vertical-align:middle;
996
+ display:inline-block !important;
997
+ margin-bottom:0 !important;
998
+ width: 176px;
999
+ height: 25px;
1000
+ font-size:11px;
1001
+ *display:inline !important;
1002
+ zoom:1;
1003
+ }
1004
+ #framework_wrap #content #general_settings_registration_section{
1005
+ border-top: 1px solid #CCCCCC;
1006
+ border-bottom: 1px solid #CCCCCC;
1007
+ margin-bottom: 14px;
1008
+ margin-top: 14px;
1009
+ padding-top: 14px;
1010
+ }
1011
+ #framework_wrap #content #general_settings_login_with_section{
1012
+ border-top: 1px solid #CCCCCC;
1013
+ margin-top: 14px;
1014
+ padding-top: 14px;
1015
+ }
1016
  #framework_wrap #content #generalSettingFont{
1017
  font-size:11px;
1018
  }
1019
+ #framework_wrap #content #registration_note{
1020
+ color: grey;
1021
+ font-size:10px;
1022
+ }
1023
  #content_wrap #wppb_buyNowButton{
1024
  position: relative;
1025
  left: -34px;
assets/js/back.end.js ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ function wppb_display_page_select( value ) {
2
+ if ( value == 'yes' )
3
+ jQuery ( '#framework_wrap #content #general_settings_registration_page_div' ).show();
4
+ else
5
+ jQuery ( '#framework_wrap #content #general_settings_registration_page_div' ).hide();
6
+ }
7
+
8
+
9
+
10
+ jQuery(function() {
11
+ if ( ( jQuery( '#framework_wrap #content .wppb_general_settings2' ).val() == 'yes' ) || ( jQuery( '#framework_wrap #content #wppb_general_settings_hidden' ).val() == 'multisite' ) )
12
+ jQuery ( '#framework_wrap #content #general_settings_registration_page_div' ).show();
13
+ else
14
+ jQuery ( '#framework_wrap #content #general_settings_registration_page_div' ).hide();
15
+ });
assets/misc/wppb.fallback.page.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ //load WP if needed
4
+ $path_to_wp_install_dir = '';
5
+ include_once ( $path_to_wp_install_dir.'wp-load.php' );
6
+ */
7
+
8
+ $activation_key = ( isset( $_GET['activation_key'] ) ? urldecode( $_GET['activation_key'] ) : '' );
9
+ $site_name = ( isset( $_GET['site_name'] ) ? urldecode( $_GET['site_name'] ) : '' );
10
+ $site_url = ( isset( $_GET['site_url'] ) ? urldecode( $_GET['site_url'] ) : '' );
11
+ $message = ( isset( $_GET['message'] ) ? urldecode( $_GET['message'] ) : '' );
12
+ ?>
13
+
14
+ <html>
15
+ <head>
16
+ <style type="text/css">
17
+ body {font-family:Arial; padding: 5px; margin-top:100px; text-align: center;}
18
+ </style>
19
+
20
+ <title><?php echo $site_name; ?></title>
21
+ </head>
22
+
23
+ <body id="wppb_content">
24
+ <h1><?php echo $site_name; ?></h1>
25
+
26
+ <?php echo $message; ?>
27
+
28
+ <?php echo 'Click <a href="'.$site_url.'">here</a> to return to the main site'; ?>
29
+ </body>
30
+ </html>
classes/class.admin.php CHANGED
@@ -161,11 +161,11 @@ class PB_Admin{
161
  */
162
  function profile_builder_load(){
163
  // enqueue styles
164
- wp_enqueue_style( 'profile-builder-style', WPPB_PLUGIN_URL.'/assets/css/style.css', false, $this->version, 'screen');
165
 
166
  // enqueue scripts
167
  add_thickbox();
168
- wp_enqueue_script( 'jquery-extra-profile-fields', WPPB_PLUGIN_URL.'/assets/js/jquery.extra.fields.js', array('jquery','media-upload','thickbox','jquery-ui-core','jquery-ui-tabs', 'jquery-ui-sortable'), $this->version );
169
 
170
  // remove GD star rating conflicts
171
  wp_deregister_style( 'gdsr-jquery-ui-core' );
161
  */
162
  function profile_builder_load(){
163
  // enqueue styles
164
+ wp_enqueue_style( 'profile-builder-style', WPPB_PLUGIN_URL.'assets/css/style.css', false, $this->version, 'screen');
165
 
166
  // enqueue scripts
167
  add_thickbox();
168
+ wp_enqueue_script( 'jquery-extra-profile-fields', WPPB_PLUGIN_URL.'assets/js/jquery.extra.fields.js', array('jquery','media-upload','thickbox','jquery-ui-core','jquery-ui-tabs', 'jquery-ui-sortable'), $this->version );
169
 
170
  // remove GD star rating conflicts
171
  wp_deregister_style( 'gdsr-jquery-ui-core' );
classes/class.bulk.approve.unapprove.php CHANGED
@@ -72,7 +72,11 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
72
  **************************************************************************/
73
  function column_default($item, $column_name){
74
  switch($column_name){
75
- case 'email':
 
 
 
 
76
  return $item[$column_name];
77
  case 'role':
78
  return $item[$column_name];
@@ -110,16 +114,23 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
110
  $currentUser = wp_get_current_user();
111
  $wppb_nonce = wp_create_nonce( '_nonce_'.$current_user->ID.$user->ID);
112
 
 
 
 
 
113
  //Build row actions (approve/unapprove), but only for the users different from the currently logged in one
114
  if ($current_user->ID != $user->ID){
 
 
 
115
  if (!wp_get_object_terms( $user->ID, 'user_status' ))
116
- $actions = array('unapproved' => sprintf('<a href="javascript:confirmAUAction(\'%s\',\'%s\',\'%s\',\'%s\',\''.__('unapprove this user?', 'profilebuilder').'\')">'. __('Unapprove', 'profilebuilder') .'</a>', wppb_curpageurl(), 'unapprove', $user->ID, $wppb_nonce));
117
  else
118
- $actions = array('approved' => sprintf('<a href="javascript:confirmAUAction(\'%s\',\'%s\',\'%s\',\'%s\',\''.__('approve this user?', 'profilebuilder').'\')">'. __('Approve', 'profilebuilder') .'</a>', wppb_curpageurl(), 'approve', $user->ID, $wppb_nonce));
119
- }else
120
- $actions = array();
121
 
122
- $edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( stripslashes( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user->ID ) ) );
123
 
124
  //Return the user row
125
  return sprintf('%1$s <strong>%2$s</strong> %3$s',
@@ -164,6 +175,8 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
164
  $columns = array(
165
  'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
166
  'username' => __('Username', 'profilebuilder'),
 
 
167
  'email' => __('E-mail', 'profilebuilder'),
168
  'role' => __('Role', 'profilebuilder'),
169
  'registered' => __('Registered', 'profilebuilder'),
@@ -189,11 +202,14 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
189
  function get_sortable_columns() {
190
  $sortable_columns = array(
191
  'username' => array('username',false), //true means it's already sorted
 
 
192
  'email' => array('email',false),
193
  'role' => array('role',false),
194
  'registered' => array('registered',false),
195
  'user_status' => array('user_status',false)
196
  );
 
197
  return $sortable_columns;
198
  }
199
 
@@ -214,8 +230,9 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
214
  **************************************************************************/
215
  function get_bulk_actions() {
216
  $actions = array(
217
- 'approved' => __('Approve', 'profilebuilder'),
218
- 'unapproved' => __('Unapprove', 'profilebuilder')
 
219
  );
220
  return $actions;
221
  }
@@ -237,11 +254,13 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
237
  if (isset($_GET['user']))
238
  $users = implode(',', $_GET['user']);
239
 
 
 
240
  //Detect when a bulk action is being triggered...
241
  if( 'approved'===$this->current_action() ) {
242
  ?>
243
  <script type="text/javascript">
244
- confirmAUActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=admin_approval';?>', '<?php _e("Do you want to bulk approve the selected users?", "profilebuilder");?>', '<?php echo $wppb_nonce;?>', '<?php echo $users;?>', 'bulkApporve');
245
  </script>
246
  <?php
247
 
@@ -249,7 +268,13 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
249
  }elseif( 'unapproved'===$this->current_action() ) {
250
  ?>
251
  <script type="text/javascript">
252
- confirmAUActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=admin_approval';?>', '<?php _e("Do you want to bulk unapprove the selected users?", "profilebuilder");?>', '<?php echo $wppb_nonce;?>', '<?php echo $users;?>', 'bulkUnapporve');
 
 
 
 
 
 
253
  </script>
254
  <?php
255
  }
@@ -286,32 +311,34 @@ class wpp_list_approved_unapproved_users extends WP_List_Table {
286
  $this->dataArray = array();
287
  $iterator = 0;
288
 
289
- $result = mysql_query("SELECT * FROM $wpdb->users");
290
- if($result)
291
- while ($row=mysql_fetch_row($result)){
292
- if (!wp_get_object_terms( $row[0], 'user_status' ))
293
- $status = __('Approved', 'profilebuilder');
294
- else
295
- $status = __('Unapproved', 'profilebuilder');
296
-
297
-
298
- $user = get_userdata( $row[0] );
299
- $capabilities = $user->{$wpdb->prefix . 'capabilities'};
300
 
301
- if ( !isset( $wp_roles ) )
302
- $wp_roles = new WP_Roles();
303
 
304
- foreach ( $wp_roles->role_names as $thisRole => $name ){
305
- if (is_array($capabilities) && ( array_key_exists( $thisRole, $capabilities ) ))
306
- $role = $name;
307
- }
308
-
309
-
310
- $tempArray = array('ID' => $iterator, 'username' => $row[3], 'email' => $row[4], 'role' => print_r($role,true), 'registered' => $row[6], 'user_status' => $status);
 
 
311
 
312
- array_push($this->dataArray, $tempArray);
313
- $iterator++;
314
- }
315
 
316
  /**
317
  * First, lets decide how many records per page to show
72
  **************************************************************************/
73
  function column_default($item, $column_name){
74
  switch($column_name){
75
+ case 'first_name':
76
+ return $item[$column_name];
77
+ case 'last_name':
78
+ return $item[$column_name];
79
+ case 'email':
80
  return $item[$column_name];
81
  case 'role':
82
  return $item[$column_name];
114
  $currentUser = wp_get_current_user();
115
  $wppb_nonce = wp_create_nonce( '_nonce_'.$current_user->ID.$user->ID);
116
 
117
+ $edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( stripslashes( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user->ID ) ) );
118
+
119
+ $actions['remove'] = sprintf('<a class=\'edit_view\' href="%s">'. __('View or Edit', 'profilebuilder') .'</a>', $edit_link);
120
+
121
  //Build row actions (approve/unapprove), but only for the users different from the currently logged in one
122
  if ($current_user->ID != $user->ID){
123
+ if ( user_can( $current_user->ID, 'delete_user' ) )
124
+ $actions['delete'] = sprintf('<a class=\'submitdelete\' href="javascript:confirmAUAction(\'%s\',\'%s\',\'%s\',\'%s\',\''.__('delete this user?', 'profilebuilder').'\')">'. __('Delete', 'profilebuilder') .'</a>', wppb_curpageurl(), 'delete', $user->ID, $wppb_nonce);
125
+
126
  if (!wp_get_object_terms( $user->ID, 'user_status' ))
127
+ $actions['unapproved'] = sprintf('<a href="javascript:confirmAUAction(\'%s\',\'%s\',\'%s\',\'%s\',\''.__('unapprove this user?', 'profilebuilder').'\')">'. __('Unapprove', 'profilebuilder') .'</a>', wppb_curpageurl(), 'unapprove', $user->ID, $wppb_nonce);
128
  else
129
+ $actions['approved'] = sprintf('<a href="javascript:confirmAUAction(\'%s\',\'%s\',\'%s\',\'%s\',\''.__('approve this user?', 'profilebuilder').'\')">'. __('Approve', 'profilebuilder') .'</a>', wppb_curpageurl(), 'approve', $user->ID, $wppb_nonce);
130
+ }
131
+
132
 
133
+
134
 
135
  //Return the user row
136
  return sprintf('%1$s <strong>%2$s</strong> %3$s',
175
  $columns = array(
176
  'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
177
  'username' => __('Username', 'profilebuilder'),
178
+ 'first_name' => __('Firstname', 'profilebuilder'),
179
+ 'last_name' => __('Lastname', 'profilebuilder'),
180
  'email' => __('E-mail', 'profilebuilder'),
181
  'role' => __('Role', 'profilebuilder'),
182
  'registered' => __('Registered', 'profilebuilder'),
202
  function get_sortable_columns() {
203
  $sortable_columns = array(
204
  'username' => array('username',false), //true means it's already sorted
205
+ 'first_name' => array('first_name',false),
206
+ 'last_name' => array('last_name',false),
207
  'email' => array('email',false),
208
  'role' => array('role',false),
209
  'registered' => array('registered',false),
210
  'user_status' => array('user_status',false)
211
  );
212
+
213
  return $sortable_columns;
214
  }
215
 
230
  **************************************************************************/
231
  function get_bulk_actions() {
232
  $actions = array(
233
+ 'approved' => __( 'Approve', 'profilebuilder' ),
234
+ 'unapproved' => __( 'Unapprove', 'profilebuilder' ),
235
+ 'delete' => __( 'Delete' )
236
  );
237
  return $actions;
238
  }
254
  if (isset($_GET['user']))
255
  $users = implode(',', $_GET['user']);
256
 
257
+ $extra_args = apply_filters('wppb_conditional_redirect', '&orderby=registered&order=desc');
258
+
259
  //Detect when a bulk action is being triggered...
260
  if( 'approved'===$this->current_action() ) {
261
  ?>
262
  <script type="text/javascript">
263
+ confirmAUActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=admin_approval'.$extra_args;?>', '<?php _e("Do you want to bulk approve the selected users?", "profilebuilder");?>', '<?php echo $wppb_nonce;?>', '<?php echo $users;?>', 'bulkApporve');
264
  </script>
265
  <?php
266
 
268
  }elseif( 'unapproved'===$this->current_action() ) {
269
  ?>
270
  <script type="text/javascript">
271
+ confirmAUActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=admin_approval'.$extra_args;?>', '<?php _e("Do you want to bulk unapprove the selected users?", "profilebuilder");?>', '<?php echo $wppb_nonce;?>', '<?php echo $users;?>', 'bulkUnapporve');
272
+ </script>
273
+ <?php
274
+ }elseif( 'delete'===$this->current_action() ) {
275
+ ?>
276
+ <script type="text/javascript">
277
+ confirmAUActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=admin_approval'.$extra_args;?>', '<?php _e("Do you want to bulk delete the selected users?", "profilebuilder");?>', '<?php echo $wppb_nonce;?>', '<?php echo $users;?>', 'bulkDelete');
278
  </script>
279
  <?php
280
  }
311
  $this->dataArray = array();
312
  $iterator = 0;
313
 
314
+ $results = $wpdb->get_results("SELECT * FROM $wpdb->users ORDER BY ID");
315
+
316
+ foreach ($results as $result){
317
+ if ( !wp_get_object_terms( $result->ID, 'user_status' ) )
318
+ $status = __( 'Approved', 'profilebuilder' );
319
+ else
320
+ $status = __( 'Unapproved', 'profilebuilder' );
321
+
322
+
323
+ $user = get_userdata( $result->ID );
324
+ $capabilities = $user->{$wpdb->prefix . 'capabilities'};
325
 
326
+ if ( !isset( $wp_roles ) )
327
+ $wp_roles = new WP_Roles();
328
 
329
+ foreach ( $wp_roles->role_names as $thisRole => $name ){
330
+ if (is_array($capabilities) && ( array_key_exists( $thisRole, $capabilities ) ))
331
+ $role = $name;
332
+ }
333
+
334
+ $first_name = get_user_meta ( $result->ID, 'first_name', true );
335
+ $last_name = get_user_meta ( $result->ID, 'last_name', true );
336
+
337
+ $tempArray = array('ID' => $iterator, 'username' => $result->user_login, 'first_name' => trim( $first_name ), 'last_name' => trim( $last_name ), 'email' => $result->user_email, 'role' => print_r($role,true), 'registered' => $result->user_registered, 'user_status' => $status);
338
 
339
+ array_push( $this->dataArray, $tempArray );
340
+ $iterator++;
341
+ }
342
 
343
  /**
344
  * First, lets decide how many records per page to show
classes/class.email.confirmation.php CHANGED
@@ -103,9 +103,9 @@ class wpp_list_unfonfirmed_email_table extends WP_List_Table {
103
 
104
  //Build row actions
105
  $actions = array(
106
- 'delete' => sprintf('<a href="javascript:confirmECAction(\'%s\',\'%s\',\'%s\',\''.__('delete this user from the _signups table?', 'profilebuilder').'\')">'. __('Delete', 'profilebuilder') .'</a>',wppb_curpageurl(),'delete',$item['ID']),
107
- 'confirm' => sprintf('<a href="javascript:confirmECAction(\'%s\',\'%s\',\'%s\',\''.__('confirm this email yourself?', 'profilebuilder').'\')">'. __('Confirm Email', 'profilebuilder') .'</a>',wppb_curpageurl(),'confirm',$item['ID'])/* ,
108
- 'resend' => sprintf('<a href="javascript:confirmECAction(\'%s\',\'%s\',\'%s\',\''.__('resend the activation link?', 'profilebuilder').'\')">'. __('Resend Activation Email', 'profilebuilder') .'</a>',wppb_curpageurl(),'resend',$item['ID']) */
109
  );
110
 
111
  //Return the user row
@@ -150,10 +150,11 @@ class wpp_list_unfonfirmed_email_table extends WP_List_Table {
150
  function get_columns(){
151
  $columns = array(
152
  'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
153
- 'username' => __('Username', 'profilebuilder'),
154
- 'email' => __('E-mail', 'profilebuilder'),
155
- 'registered' => __('Registered', 'profilebuilder')
156
  );
 
157
  return $columns;
158
  }
159
 
@@ -177,6 +178,7 @@ class wpp_list_unfonfirmed_email_table extends WP_List_Table {
177
  'email' => array('email',false),
178
  'registered' => array('registered',false)
179
  );
 
180
  return $sortable_columns;
181
  }
182
 
@@ -197,9 +199,11 @@ class wpp_list_unfonfirmed_email_table extends WP_List_Table {
197
  **************************************************************************/
198
  function get_bulk_actions() {
199
  $actions = array(
200
- 'delete' => __('Delete', 'profilebuilder'),
201
- 'confirm' => __('Confirm Email', 'profilebuilder')
 
202
  );
 
203
  return $actions;
204
  }
205
 
@@ -211,63 +215,62 @@ class wpp_list_unfonfirmed_email_table extends WP_List_Table {
211
  *
212
  * @see $this->prepare_items()
213
  **************************************************************************/
214
- function process_bulk_action() {
 
 
 
 
 
 
 
 
215
  global $current_user;
216
  global $wpdb;
217
 
218
- if (current_user_can('delete_users')){
219
  $iterator = 0;
220
- $bulkResult = mysql_query("SELECT * FROM ".$wpdb->prefix."signups WHERE active=0");
221
 
222
  //Detect when a bulk action is being triggered...
223
- if( 'delete'===$this->current_action() ) {
224
- while ($bulkRow=mysql_fetch_row($bulkResult)){
225
- if (in_array((string)$iterator, $_GET['user'])){
226
- $bulkResult1 = mysql_query("DELETE FROM ".$wpdb->prefix."signups WHERE user_login='".$bulkRow[3]."' AND user_email='".$bulkRow[4]."'");
227
- if (!$bulkResult1){
228
- $message = $bulkRow[3] . __("couldn't be deleted.", "profilebuilder");
229
- ?>
230
- <script type="text/javascript">
231
- confirmECActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails';?>', '<?php echo $message;?>');
232
- </script>
233
- <?php
234
- }
235
  }
236
  $iterator++;
237
  }
238
 
239
- $message = __("All users have been successfully deleted.", "profilebuilder");
240
- ?>
241
- <script type="text/javascript">
242
- confirmECActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails';?>', '<?php echo $message;?>');
243
- </script>
244
- <?php
245
 
246
- }elseif( 'confirm'===$this->current_action() ) {
247
- while ($bulkRow=mysql_fetch_row($bulkResult)){
 
 
 
 
 
 
 
 
 
 
248
  if (in_array((string)$iterator, $_GET['user'])){
249
- $ret = wppb_manual_activate_signup($bulkRow[8]);
 
 
 
250
  }
 
251
  $iterator++;
252
  }
253
-
254
- $message = __("The selected users have been activated.", "profilebuilder");
255
- ?>
256
- <script type="text/javascript">
257
- confirmECActionBulk('<?php echo get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails';?>', '<?php echo $message;?>');
258
- </script>
259
- <?php
260
  }
261
 
262
- }else{
263
- $message = __("Sorry, but you don't have permission to do that!", "profilebuilder");
264
- ?>
265
- <script type="text/javascript">
266
- confirmECActionBulk('<?php echo get_bloginfo('url').'/wp-admin/';?>', '<?php echo $message;?>');
267
- </script>
268
- <?php
269
- }
270
-
271
  }
272
 
273
 
@@ -292,14 +295,13 @@ class wpp_list_unfonfirmed_email_table extends WP_List_Table {
292
  $this->dataArray = array();
293
  $iterator = 0;
294
 
295
- $result = mysql_query("SELECT * FROM ".$wpdb->prefix."signups WHERE active=0");
296
- if($result)
297
- while ($row=mysql_fetch_row($result)){
298
- $tempArray = array('ID' => $iterator, 'username' => $row[3], 'email' => $row[4], 'registered' => $row[5]);
299
 
300
- array_push($this->dataArray, $tempArray);
301
- $iterator++;
302
- }
303
 
304
  /**
305
  * First, lets decide how many records per page to show
@@ -332,7 +334,7 @@ class wpp_list_unfonfirmed_email_table extends WP_List_Table {
332
  * Optional. You can handle your bulk actions however you see fit. In this
333
  * case, we'll handle them within our package just to keep things clean.
334
  */
335
- $this->process_bulk_action();
336
 
337
 
338
  /**
103
 
104
  //Build row actions
105
  $actions = array(
106
+ 'delete' => sprintf( '<a href="javascript:confirmECAction( \'%s\', \'%s\', \'%s\', \'' . __( 'delete this user from the _signups table?', 'profilebuilder' ) . '\' )">' . __( 'Delete', 'profilebuilder' ) . '</a>', wppb_curpageurl(), 'delete', $item['ID'] ),
107
+ 'confirm' => sprintf( '<a href="javascript:confirmECAction( \'%s\', \'%s\', \'%s\', \'' . __( 'confirm this email yourself?', 'profilebuilder' ) . '\' )">' . __( 'Confirm Email', 'profilebuilder' ) . '</a>', wppb_curpageurl(), 'confirm', $item['ID'] ),
108
+ 'resend' => sprintf( '<a href="javascript:confirmECAction( \'%s\', \'%s\', \'%s\', \'' . __( 'resend the activation link?', 'profilebuilder' ) . '\' )">' . __( 'Resend Activation Email', 'profilebuilder' ) . '</a>', wppb_curpageurl(), 'resend', $item['ID'] )
109
  );
110
 
111
  //Return the user row
150
  function get_columns(){
151
  $columns = array(
152
  'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
153
+ 'username' => __( 'Username', 'profilebuilder' ),
154
+ 'email' => __( 'E-mail', 'profilebuilder' ),
155
+ 'registered' => __( 'Registered', 'profilebuilder' )
156
  );
157
+
158
  return $columns;
159
  }
160
 
178
  'email' => array('email',false),
179
  'registered' => array('registered',false)
180
  );
181
+
182
  return $sortable_columns;
183
  }
184
 
199
  **************************************************************************/
200
  function get_bulk_actions() {
201
  $actions = array(
202
+ 'delete' => __( 'Delete', 'profilebuilder' ),
203
+ 'confirm' => __( 'Confirm Email', 'profilebuilder' ),
204
+ 'resend' => __( 'Resend Activation Email', 'profilebuilder' )
205
  );
206
+
207
  return $actions;
208
  }
209
 
215
  *
216
  * @see $this->prepare_items()
217
  **************************************************************************/
218
+
219
+ function wppb_process_bulk_action_message( $message, $url ){
220
+
221
+ echo "<script type=\"text/javascript\">confirmECActionBulk( '".$url."', '".$message."' )</script>";
222
+ }
223
+
224
+
225
+
226
+ function wppb_process_bulk_action() {
227
  global $current_user;
228
  global $wpdb;
229
 
230
+ if ( current_user_can( 'delete_users' ) ){
231
  $iterator = 0;
232
+ $results = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."signups WHERE active = 0");
233
 
234
  //Detect when a bulk action is being triggered...
235
+ if( 'delete' === $this->current_action() ) {
236
+ foreach ( $results as $result ){
237
+ if ( in_array( (string)$iterator, $_GET['user'] ) ){
238
+ $sql_result = $wpdb->delete( $wpdb->prefix.'signups', array( 'user_login' => $result->user_login, 'user_email' => $result->user_email ) );
239
+ if ( !$sql_result )
240
+ $this->wppb_process_bulk_action_message( sprintf( __( "%s couldn't be deleted", "profilebuilder" ), $result->user_login ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' );
 
 
 
 
 
 
241
  }
242
  $iterator++;
243
  }
244
 
245
+ $this->wppb_process_bulk_action_message( __( 'All users have been successfully deleted', 'profilebuilder' ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' );
 
 
 
 
 
246
 
247
+ }elseif( 'confirm' === $this->current_action() ) {
248
+ foreach ( $results as $result ){
249
+ if ( in_array( (string)$iterator, $_GET['user'] ) )
250
+ wppb_manual_activate_signup( $result->activation_key );
251
+
252
+ $iterator++;
253
+ }
254
+
255
+ $this->wppb_process_bulk_action_message( __( 'The selected users have been activated', 'profilebuilder' ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' );
256
+
257
+ }elseif( 'resend' === $this->current_action() ) {
258
+ foreach ( $results as $result ){
259
  if (in_array((string)$iterator, $_GET['user'])){
260
+ $sql_result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "signups WHERE user_login = %s AND user_email = %s", $result->user_login, $result->user_email ), ARRAY_A );
261
+
262
+ if ( $sql_result )
263
+ wppb_signup_user_notification( esc_sql( $sql_result['user_login'] ), esc_sql( $sql_result['user_email'] ), $sql_result['activation_key'], esc_sql( $sql_result['meta'] ) );
264
  }
265
+
266
  $iterator++;
267
  }
268
+
269
+ $this->wppb_process_bulk_action_message( __( 'The selected users have had their activation emails resent', 'profilebuilder' ), get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails' );
 
 
 
 
 
270
  }
271
 
272
+ }else
273
+ $this->wppb_process_bulk_action_message( __( "Sorry, but you don't have permission to do that!", "profilebuilder" ), get_bloginfo('url').'/wp-admin/' );
 
 
 
 
 
 
 
274
  }
275
 
276
 
295
  $this->dataArray = array();
296
  $iterator = 0;
297
 
298
+ $results = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."signups WHERE active = 0");
299
+ foreach ($results as $result){
300
+ $tempArray = array('ID' => $iterator, 'username' => $result->user_login, 'email' => $result->user_email, 'registered' => $result->registered);
 
301
 
302
+ array_push($this->dataArray, $tempArray);
303
+ $iterator++;
304
+ }
305
 
306
  /**
307
  * First, lets decide how many records per page to show
334
  * Optional. You can handle your bulk actions however you see fit. In this
335
  * case, we'll handle them within our package just to keep things clean.
336
  */
337
+ $this->wppb_process_bulk_action();
338
 
339
 
340
  /**
front-end/wppb.edit.profile.php CHANGED
@@ -22,7 +22,7 @@ function wppb_save_the_password(){
22
  /* Update user password. */
23
  if ( !empty($_POST['pass1'] ) && !empty( $_POST['pass2'] ) ){
24
  if ( $_POST['pass1'] == $_POST['pass2'] ){
25
- wp_update_user( array( 'ID' => $current_user->id, 'user_pass' => esc_attr( $_POST['pass1'] ) ) );
26
  $changesSaved = 'yes';
27
  } else {
28
  $changesSavedNoMatchingPass = 'yes';
@@ -36,14 +36,12 @@ add_action('init', 'wppb_save_the_password');
36
 
37
  function wppb_front_end_profile_info() {
38
 
39
- global $changesSaved;
40
- global $changesSavedNoMatchingPass;
41
- global $changesSavedNoPass;
42
  $editProfileFilterArray = array();
43
  $editProfileFilterArray2 = array();
44
  $extraFieldsErrorHolder = array(); //we will use this array to store the ID's of the extra-fields left uncompleted
45
-
46
- global $wppb_shortcode_on_front;
47
 
48
  //get "login with" setting
49
  $wppb_generalSettings = get_option('wppb_general_settings');
@@ -57,16 +55,13 @@ function wppb_front_end_profile_info() {
57
  $previousError = 'no';
58
  $pictureUpload = 'no';
59
  $avatarUpload = 'yes';
 
60
  $allRequiredCompleted = 'yes';
61
  $uploadName = array();
62
  $uploadExt = array();
63
  $uploadSize = array();
64
  $editFilterArray = array();
65
  $error = null;
66
-
67
-
68
- /* Get user info. */
69
- global $current_user;
70
 
71
  /* delete the attachment if set */
72
  if (isset($_GET['userID']) && isset($_GET['field'])){
@@ -285,7 +280,10 @@ function wppb_front_end_profile_info() {
285
  if (isset($value['item_required'])){
286
  if ($value['item_required'] == 'yes'){
287
  $uploadedfile = $value['item_type'].$value['id'];
288
- if ( (basename( $_FILES[$uploadedfile]['name']) == '')){
 
 
 
289
  array_push($extraFieldsErrorHolder, $value['id']);
290
  $allRequiredCompleted = 'no';
291
  }
@@ -297,9 +295,16 @@ function wppb_front_end_profile_info() {
297
  if (isset($value['item_required'])){
298
  if ($value['item_required'] == 'yes'){
299
  $uploadedfile = $value['item_type'].$value['id'];
300
- if ( (basename( $_FILES[$uploadedfile]['name']) == '')){
 
 
 
301
  array_push($extraFieldsErrorHolder, $value['id']);
302
  $allRequiredCompleted = 'no';
 
 
 
 
303
  }
304
  }
305
  }
@@ -311,10 +316,14 @@ function wppb_front_end_profile_info() {
311
 
312
 
313
  $allRequiredCompleted = apply_filters('wppb_edit_profile_all_required_completed_after_check', $allRequiredCompleted);
 
 
 
 
314
  }
315
 
316
  /* If profile was saved, update profile. */
317
- if ( ('POST' == $_SERVER['REQUEST_METHOD']) && (!empty( $_POST['action'] )) && ($_POST['action'] == 'update-user') && (wp_verify_nonce($_POST['edit_nonce_field'],'verify_edit_user')) && ($allRequiredCompleted == 'yes') ) {
318
 
319
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
320
  }else{
@@ -323,11 +332,11 @@ function wppb_front_end_profile_info() {
323
  if ((trim($_POST['email']) != '') && isset($_POST['email'])){
324
  if (email_exists( $_POST['email'] ) != FALSE)
325
  $thisEmail = email_exists( $_POST['email'] );
326
- else $thisEmail = $current_user->id;
327
 
328
  if ( !empty( $_POST['email'] ) && is_email( $_POST['email'] )){ // if the user entered a valid email address
329
- if (($thisEmail == $current_user->id)){ // if the entered email address is not already registered to some other user
330
- wp_update_user( array( 'ID' => $current_user->id, 'user_email' => esc_attr( $_POST['email'] )));
331
  $changesSaved = 'yes';
332
  }else{
333
  $changesSavedNoEmailExist = 'yes';
@@ -339,11 +348,11 @@ function wppb_front_end_profile_info() {
339
  }else{
340
  if (email_exists( $_POST['email'] ) != FALSE)
341
  $thisEmail = email_exists( $_POST['email'] );
342
- else $thisEmail = $current_user->id;
343
 
344
  if ( !empty( $_POST['email'] ) && is_email( $_POST['email'] )){ // if the user entered a valid email address
345
- if (($thisEmail == $current_user->id)){ // if the entered email address is not already registered to some other user
346
- wp_update_user( array( 'ID' => $current_user->id, 'user_email' => esc_attr( $_POST['email'] )));
347
  $changesSaved = 'yes';
348
  }else{
349
  $changesSavedNoEmailExist = 'yes';
@@ -359,11 +368,11 @@ function wppb_front_end_profile_info() {
359
  $_POST['first_name'] = apply_filters('wppb_edit_profile_posted_first_name', $_POST['first_name']);
360
  if ($wppb_defaultOptions['firstnameRequired'] == 'yes'){
361
  if (isset($_POST['first_name']) && (trim($_POST['first_name']) != '')){
362
- wp_update_user( array( 'ID' => $current_user->id, 'first_name' => esc_attr( $_POST['first_name'] )));
363
  $changesSaved = 'yes';
364
  }
365
  }else{
366
- wp_update_user( array( 'ID' => $current_user->id, 'first_name' => esc_attr( $_POST['first_name'] )));
367
  $changesSaved = 'yes';
368
  }
369
  }
@@ -372,11 +381,11 @@ function wppb_front_end_profile_info() {
372
  $_POST['last_name'] = apply_filters('wppb_edit_profile_posted_last_name', $_POST['last_name']);
373
  if ($wppb_defaultOptions['lastnameRequired'] == 'yes'){
374
  if (isset($_POST['last_name']) && (trim($_POST['last_name']) != '')){
375
- wp_update_user( array( 'ID' => $current_user->id, 'last_name' => esc_attr( $_POST['last_name'] )));
376
  $changesSaved = 'yes';
377
  }
378
  }else{
379
- wp_update_user( array( 'ID' => $current_user->id, 'last_name' => esc_attr( $_POST['last_name'] )));
380
  $changesSaved = 'yes';
381
  }
382
  }
@@ -385,11 +394,11 @@ function wppb_front_end_profile_info() {
385
  $_POST['nickname'] = apply_filters('wppb_edit_profile_posted_nickname', $_POST['nickname']);
386
  if ($wppb_defaultOptions['nicknameRequired'] == 'yes'){
387
  if (isset($_POST['nickname']) && (trim($_POST['nickname']) != '')){
388
- wp_update_user( array( 'ID' => $current_user->id, 'nickname' => esc_attr( $_POST['nickname'] )));
389
  $changesSaved = 'yes';
390
  }
391
  }else{
392
- wp_update_user( array( 'ID' => $current_user->id, 'nickname' => esc_attr( $_POST['nickname'] )));
393
  $changesSaved = 'yes';
394
  }
395
 
@@ -399,11 +408,11 @@ function wppb_front_end_profile_info() {
399
  $_POST['display_name'] = apply_filters('wppb_edit_profile_posted_display_name', $_POST['display_name']);
400
  if ($wppb_defaultOptions['dispnameRequired'] == 'yes'){
401
  if (isset($_POST['display_name']) && (trim($_POST['display_name']) != '')){
402
- wp_update_user( array( 'ID' => $current_user->id, 'display_name' => esc_attr( $_POST['display_name'] )));
403
  $changesSaved = 'yes';
404
  }
405
  }else{
406
- wp_update_user( array( 'ID' => $current_user->id, 'display_name' => esc_attr( $_POST['display_name'] )));
407
  $changesSaved = 'yes';
408
  }
409
  }
@@ -414,10 +423,10 @@ function wppb_front_end_profile_info() {
414
  if (isset($_POST['website']) && (trim($_POST['website']) != '')){
415
  $wppbPos = strpos( (string)$_POST['website'], 'http://' );
416
  if($wppbPos !== FALSE){
417
- wp_update_user( array( 'ID' => $current_user->id, 'user_url' => esc_attr( $_POST['website'] )));
418
  $changesSaved = 'yes';
419
  }else{
420
- wp_update_user( array( 'ID' => $current_user->id, 'user_url' => 'http://'.esc_attr( $_POST['website'] )));
421
  $changesSaved = 'yes';
422
  }
423
  }
@@ -427,12 +436,12 @@ function wppb_front_end_profile_info() {
427
  if($wppbPos !== FALSE){
428
  if ($website == 'http://')
429
  $website = '';
430
- wp_update_user( array( 'ID' => $current_user->id, 'user_url' => $website));
431
  $changesSaved = 'yes';
432
  }else{
433
  if ($website != '')
434
  $website = 'http://'.$website;
435
- wp_update_user( array( 'ID' => $current_user->id, 'user_url' => $website));
436
  $changesSaved = 'yes';
437
  }
438
  }
@@ -442,11 +451,11 @@ function wppb_front_end_profile_info() {
442
  $_POST['aim'] = apply_filters('wppb_edit_profile_posted_aim', $_POST['aim']);
443
  if ($wppb_defaultOptions['aimRequired'] == 'yes'){
444
  if (isset($_POST['aim']) && (trim($_POST['aim']) != '')){
445
- update_user_meta( $current_user->id, 'aim', esc_attr( $_POST['aim'] ) );
446
  $changesSaved = 'yes';
447
  }
448
  }else{
449
- update_user_meta( $current_user->id, 'aim', esc_attr( $_POST['aim'] ) );
450
  $changesSaved = 'yes';
451
  }
452
  }
@@ -455,11 +464,11 @@ function wppb_front_end_profile_info() {
455
  $_POST['yim'] = apply_filters('wppb_edit_profile_posted_yahoo', $_POST['yim']);
456
  if ($wppb_defaultOptions['yahooRequired'] == 'yes'){
457
  if (isset($_POST['yim']) && (trim($_POST['yim']) != '')){
458
- update_user_meta( $current_user->id, 'yim', esc_attr( $_POST['yim'] ) );
459
  $changesSaved = 'yes';
460
  }
461
  }else{
462
- update_user_meta( $current_user->id, 'yim', esc_attr( $_POST['yim'] ) );
463
  $changesSaved = 'yes';
464
  }
465
  }
@@ -468,11 +477,11 @@ function wppb_front_end_profile_info() {
468
  $_POST['jabber'] = apply_filters('wppb_edit_profile_posted_jabber', $_POST['jabber']);
469
  if ($wppb_defaultOptions['jabberRequired'] == 'yes'){
470
  if (isset($_POST['jabber']) && (trim($_POST['jabber']) != '')){
471
- update_user_meta( $current_user->id, 'jabber', esc_attr( $_POST['jabber'] ) );
472
  $changesSaved = 'yes';
473
  }
474
  }else{
475
- update_user_meta( $current_user->id, 'jabber', esc_attr( $_POST['jabber'] ) );
476
  $changesSaved = 'yes';
477
  }
478
  }
@@ -481,11 +490,11 @@ function wppb_front_end_profile_info() {
481
  $_POST['description'] = apply_filters('wppb_edit_profile_posted_bio', $_POST['description']);
482
  if ($wppb_defaultOptions['bioRequired'] == 'yes'){
483
  if (isset($_POST['description']) && (trim($_POST['description']) != '')){
484
- update_user_meta( $current_user->id, 'description', esc_attr( $_POST['description'] ) );
485
  $changesSaved = 'yes';
486
  }
487
  }else{
488
- update_user_meta( $current_user->id, 'description', esc_attr( $_POST['description'] ) );
489
  $changesSaved = 'yes';
490
  }
491
  }
@@ -501,24 +510,23 @@ function wppb_front_end_profile_info() {
501
  if (isset($value['item_required'])){
502
  if ($value['item_required'] == 'yes'){
503
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
504
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
505
  else
506
  array_push($extraFieldsErrorHolder, $value['id']);
507
  }else
508
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
509
  }else
510
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
511
 
512
  break;
513
  }
514
  case "hiddenInput":{
515
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
516
 
517
  break;
518
  }
519
  case "checkbox":{
520
  $checkboxOption = '';
521
- $value['item_options'] = wppb_icl_t('plugin profile-builder-pro', 'custom_field_'.$id.'_options_translation', $value['item_options']);
522
  $checkboxValue = explode(',', $value['item_options']);
523
  foreach($checkboxValue as $thisValue){
524
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
@@ -531,13 +539,13 @@ function wppb_front_end_profile_info() {
531
  if (isset($value['item_required'])){
532
  if ($value['item_required'] == 'yes'){
533
  if (trim($checkboxOption) != '')
534
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $checkboxOption ) );
535
  else
536
  array_push($extraFieldsErrorHolder, $value['id']);
537
  }else
538
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $checkboxOption ) );
539
  }else
540
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $checkboxOption ) );
541
 
542
  break;
543
  }
@@ -545,39 +553,39 @@ function wppb_front_end_profile_info() {
545
  if (isset($value['item_required'])){
546
  if ($value['item_required'] == 'yes'){
547
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
548
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
549
  else
550
  array_push($extraFieldsErrorHolder, $value['id']);
551
  }else
552
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
553
  }else
554
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
555
  break;
556
  }
557
  case "select":{
558
  if (isset($value['item_required'])){
559
  if ($value['item_required'] == 'yes'){
560
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
561
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
562
  else
563
  array_push($extraFieldsErrorHolder, $value['id']);
564
  }else
565
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
566
  }else
567
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
568
  break;
569
  }
570
  case "countrySelect":{
571
  if (isset($value['item_required'])){
572
  if ($value['item_required'] == 'yes'){
573
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
574
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
575
  else
576
  array_push($extraFieldsErrorHolder, $value['id']);
577
  }else
578
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
579
  }else
580
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
581
 
582
  break;
583
  }
@@ -585,13 +593,13 @@ function wppb_front_end_profile_info() {
585
  if (isset($value['item_required'])){
586
  if ($value['item_required'] == 'yes'){
587
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
588
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
589
  else
590
  array_push($extraFieldsErrorHolder, $value['id']);
591
  }else
592
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
593
  }else
594
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
595
 
596
  break;
597
  }
@@ -599,13 +607,13 @@ function wppb_front_end_profile_info() {
599
  if (isset($value['item_required'])){
600
  if ($value['item_required'] == 'yes'){
601
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
602
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
603
  else
604
  array_push($extraFieldsErrorHolder, $value['id']);
605
  }else
606
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
607
  }else
608
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
609
 
610
  break;
611
  }
@@ -613,18 +621,18 @@ function wppb_front_end_profile_info() {
613
  if (isset($value['item_required'])){
614
  if ($value['item_required'] == 'yes'){
615
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
616
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
617
  else
618
  array_push($extraFieldsErrorHolder, $value['id']);
619
  }else
620
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
621
  }else
622
- update_user_meta( $current_user->id, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
623
 
624
  break;
625
  }
626
  case "upload":{
627
- $uploadedfile = $value['item_type'].$value['id'];
628
 
629
  //get allowed file types
630
  if (($value['item_options'] != NULL) || ($value['item_options'] != '')){
@@ -635,44 +643,37 @@ function wppb_front_end_profile_info() {
635
  }else
636
  $allFiles = true;
637
  //first we need to verify if we don't try to upload a 0b or 0 length file
638
- if ( (basename( $_FILES[$uploadedfile]['name']) != '')){
639
  //get this attachments extension
640
- $thisFileExtStart = strrpos($_FILES[$uploadedfile]['name'], '.');
641
- $thisFileExt = substr($_FILES[$uploadedfile]['name'], $thisFileExtStart);
642
 
643
  if ($allFiles === false){
644
  if (in_array($thisFileExt, $extensions)){
645
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
646
- if (($_FILES[$uploadedfile]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploadedfile]['size'] !=0)){
647
  //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
648
- $fileName = basename( $_FILES[$uploadedfile]['name']);
649
- $finalFileName = '';
650
-
651
- for ($i=0; $i < strlen($fileName); $i++){
652
- if ($fileName[$i] == "'")
653
- $finalFileName .= '`';
654
- else $finalFileName .= $fileName[$i];
655
- }
656
 
657
  //create the target path for uploading
658
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
659
- $target_path = $wpUploadPath['basedir']."/profile_builder/attachments/";
660
- $target_path = $target_path . 'userID_'.$current_user->id.'_attachment_'. $finalFileName;
661
 
662
- if (move_uploaded_file($_FILES[$uploadedfile]['tmp_name'], $target_path)){
663
- $upFile = $wpUploadPath['baseurl'].'/profile_builder/attachments/userID_'.$current_user->id.'_attachment_'. $finalFileName;
664
- update_user_meta( $current_user->id, $value['item_metaName'], $upFile);
665
  $pictureUpload = 'yes';
666
  }else{
667
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
668
- array_push($uploadName, basename( $_FILES[$uploadedfile]['name']));
669
  }
670
  }else{
671
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
672
- array_push($uploadName, basename( $_FILES[$uploadedfile]['name']));
673
  }
674
  }else{
675
- array_push($uploadExt, basename( $_FILES[$uploadedfile]['name']));
676
  $allowedExtensions = '';
677
  (int)$nrOfExt = count($extensions)-2;
678
  foreach($extensions as $key4 => $value4){
@@ -684,9 +685,9 @@ function wppb_front_end_profile_info() {
684
  }
685
  }else{
686
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
687
- if (($_FILES[$uploadedfile]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploadedfile]['size'] !=0)){
688
  //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
689
- $fileName = basename( $_FILES[$uploadedfile]['name']);
690
  $finalFileName = '';
691
 
692
  for ($i=0; $i < strlen($fileName); $i++){
@@ -696,21 +697,21 @@ function wppb_front_end_profile_info() {
696
  }
697
 
698
  //create the target path for uploading
699
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
700
- $target_path = $wpUploadPath['basedir']."/profile_builder/attachments/";
701
- $target_path = $target_path . 'userID_'.$current_user->id.'_attachment_'. $finalFileName;
702
 
703
- if (move_uploaded_file($_FILES[$uploadedfile]['tmp_name'], $target_path)){
704
- $upFile = $wpUploadPath['baseurl'].'/profile_builder/attachments/userID_'.$current_user->id.'_attachment_'. $finalFileName;
705
- update_user_meta( $current_user->id, $value['item_metaName'], $upFile);
706
  $pictureUpload = 'yes';
707
  }else{
708
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
709
- array_push($uploadName, basename( $_FILES[$uploadedfile]['name']));
710
  }
711
  }else{
712
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
713
- array_push($uploadName, basename( $_FILES[$uploadedfile]['name']));
714
  }
715
  }
716
  }
@@ -718,57 +719,55 @@ function wppb_front_end_profile_info() {
718
  }
719
  case "avatar":{
720
  $avatarUpload = 'no';
721
- $uploadedfile = $value['item_type'].$value['id'];
722
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
723
- $target_path_original = $wpUploadPath['basedir']."/profile_builder/avatars/";
724
- $fileName = $_FILES[$uploadedfile]['name'];
725
- $finalFileName = '';
726
-
727
- for ($i=0; $i < strlen($fileName); $i++){
728
- if ($fileName[$i] == "'")
729
- $finalFileName .= '`';
730
- elseif ($fileName[$i] == ' ')
731
- $finalFileName .= '_';
732
- else $finalFileName .= $fileName[$i];
733
- }
734
-
735
- $fileName = $finalFileName;
736
 
737
- $target_path = $target_path_original . 'userID_'.$current_user->id.'_originalAvatar_'. $fileName;
738
-
739
- /* when trying to upload file, be sure it's one of the accepted image file-types */
740
- if ( (($_FILES[$uploadedfile]['type'] == 'image/jpeg') || ($_FILES[$uploadedfile]['type'] == 'image/jpg') || ($_FILES[$uploadedfile]['type'] == 'image/png') || ($_FILES[$uploadedfile]['type'] == 'image/bmp') || ($_FILES[$uploadedfile]['type'] == 'image/pjpeg') || ($_FILES[$uploadedfile]['type'] == 'image/x-png')) && (($_FILES[$uploadedfile]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploadedfile]['size'] !=0)) ){
741
- $avatarUpload = 'yes';
742
- $wp_filetype = wp_check_filetype(basename( $_FILES[$uploadedfile]['name']), null );
743
- $attachment = array(
744
- 'post_mime_type' => $wp_filetype['type'],
745
- 'post_title' => $fileName,
746
- 'post_content' => '',
747
- 'post_status' => 'inherit'
748
- );
749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
750
 
751
- $attach_id = wp_insert_attachment( $attachment, $target_path);
752
-
753
- $upFile = image_downsize( $attach_id, 'thumbnail' );
754
- $upFile = $upFile[0];
755
 
756
- //if file upload succeded
757
- if (move_uploaded_file($_FILES[$uploadedfile]['tmp_name'], $target_path)){
758
- update_user_meta( $current_user->id, $value['item_metaName'], $upFile);
759
- update_user_meta( $current_user->id, 'resized_avatar_'.$value['id'], '');
 
 
760
 
761
- }else $avatarUpload = 'no';
762
- }elseif ( (($_FILES[$uploadedfile]['size'] > WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) || ($_FILES[$uploadedfile]['size'] == 0)) && ($fileName != '') )
763
- $avatarUpload = 'no';
764
- elseif ($fileName == '')
765
  $avatarUpload = 'yes';
 
766
  break;
767
  }
768
  }
769
  }
770
  }
771
 
 
 
 
772
  }
773
 
774
  ?>
@@ -779,23 +778,7 @@ function wppb_front_end_profile_info() {
779
  <p class="warning">'. __('You must be logged in to edit your profile.', 'profilebuilder') .'</p><!-- .warning -->';
780
  echo $editProfileFilterArray['notLoggedIn'] = apply_filters('wppb_edit_profile_user_not_logged_in', $editProfileFilterArray['notLoggedIn']);
781
 
782
- }else{
783
- /* messages for the the delete avatar/attachment */
784
- if (isset($_GET['fileType'])){
785
- if ($_GET['fileType'] == 'avatar'){
786
- $editProfileFilterArray['avatarChangesSaved'] = '
787
- <p class="changes-saved">'. __('The avatar was successfully deleted.', 'profilebuilder') .'</p><!-- .changes-saved -->';
788
- echo $editProfileFilterArray['avatarChangesSaved'] = apply_filters('wppb_edit_profile_avatar_changes_saved', $editProfileFilterArray['avatarChangesSaved']);
789
- unset($_GET['fileType']);
790
-
791
- }elseif ($_GET['fileType'] == 'attachment'){
792
- $editProfileFilterArray['attachmentChangesSaved'] = '<p class="changes-saved">' . sprintf(__( 'The attachment "%1$s" was successfully deleted.', 'profilebuilder'), $_GET['fileName']) . '</p><!-- .changes-saved -->';
793
- echo $editProfileFilterArray['attachmentChangesSaved'] = apply_filters('wppb_edit_profile_attachment_changes_saved', $editProfileFilterArray['attachmentChangesSaved']);
794
- unset($_GET['fileType']);
795
- unset($_GET['fileName']);
796
- }
797
- }
798
-
799
  /* all the other messages/errors */
800
  $nrOfBadUploads = 0;
801
  $nrOfBadUploads = count($uploadName);
@@ -826,9 +809,10 @@ function wppb_front_end_profile_info() {
826
  $previousError = 'yes';
827
 
828
  }elseif ($allRequiredCompleted == 'no'){
829
- $editProfileFilterArray['errorSavingChanges'] = '<p class="error">'.$errorMessage.'<br/>'. __('Your profile was NOT updated, since not all required fields were completed!', 'profilebuilder').'</p><!-- .error -->';
830
- echo $editProfileFilterArray['errorSavingChanges'] = apply_filters('wppb_edit_profile_error_saving_changes', $editProfileFilterArray['errorSavingChanges']);
831
- }
 
832
 
833
  $wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
834
  if (file_exists ( $wppb_premium.'extra.fields.php' )){
@@ -876,8 +860,8 @@ function wppb_front_end_profile_info() {
876
 
877
  ?>
878
 
879
- <form enctype="multipart/form-data" method="post" id="edituser" class="user-forms" action="<?php the_permalink(); ?>">
880
- <?php
881
  echo '<input type="hidden" name="MAX_FILE_SIZE" value="'.WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE.'" /><!-- set the MAX_FILE_SIZE to the server\'s current max upload size in bytes -->';
882
 
883
  $editProfileFilterArray2['contentName1'] = '<p class="nameHeader"><strong>'. __('Name', 'profilebuilder') .'</strong></p>';
@@ -888,18 +872,18 @@ function wppb_front_end_profile_info() {
888
  $editProfileFilterArray2['contentName2'] = '
889
  <p class="email">
890
  <label for="email">'. __('Email', 'profilebuilder') .'</label>
891
- <input class="text-input" name="email" type="text" id="email" value="'. get_the_author_meta( 'user_email', $current_user->id ) .'" disabled="disabled"/> <span class="wppb-description-delimiter"> '. __('The email cannot be changed.', 'profilebuilder') .'</span>
892
  </p><!-- .first_name -->';
893
- $editProfileFilterArray2['contentName2'] = apply_filters('wppb_edit_profile_content_name2_with_email', $editProfileFilterArray2['contentName2'], $current_user->id);
894
  }
895
  }else{
896
  if ($wppb_defaultOptions['username'] == 'show'){
897
  $editProfileFilterArray2['contentName2'] = '
898
  <p class="username">
899
  <label for="user_login">'. __('Username', 'profilebuilder') .'</label>
900
- <input class="text-input" name="user_login" type="text" id="user_login" value="'. get_the_author_meta( 'user_login', $current_user->id ) .'" disabled="disabled"/> <span class="wppb-description-delimiter"> '. __('The usernames cannot be changed.', 'profilebuilder') .'</span>
901
  </p><!-- .first_name -->';
902
- $editProfileFilterArray2['contentName2'] = apply_filters('wppb_edit_profile_content_name2', $editProfileFilterArray2['contentName2'], $current_user->id);
903
  }
904
  }
905
 
@@ -910,7 +894,7 @@ function wppb_front_end_profile_info() {
910
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
911
  if (isset($_POST['first_name'])){
912
  if (trim($_POST['first_name']) == ''){
913
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
914
  $errorVar = ' errorHolder';
915
  }
916
  }
@@ -918,9 +902,9 @@ function wppb_front_end_profile_info() {
918
  $editProfileFilterArray2['contentName3'] = '
919
  <p class="first_name'.$errorVar.'">
920
  <label for="first_name">'. __('First Name', 'profilebuilder') .$errorMark.'</label>
921
- <input class="text-input" name="first_name" type="text" id="first_name" value="'. get_the_author_meta( 'first_name', $current_user->id ) .'" />
922
  </p><!-- .first_name -->';
923
- $editProfileFilterArray2['contentName3'] = apply_filters('wppb_edit_profile_content_name3', $editProfileFilterArray2['contentName3'], $current_user->id, $errorVar, $errorMark);
924
  }
925
 
926
  if ($wppb_defaultOptions['lastname'] == 'show'){
@@ -930,7 +914,7 @@ function wppb_front_end_profile_info() {
930
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
931
  if (isset($_POST['last_name'])){
932
  if (trim($_POST['last_name']) == ''){
933
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
934
  $errorVar = ' errorHolder';
935
  }
936
  }
@@ -938,9 +922,9 @@ function wppb_front_end_profile_info() {
938
  $editProfileFilterArray2['contentName4'] = '
939
  <p class="last_name'.$errorVar.'">
940
  <label for="last_name">'. __('Last Name', 'profilebuilder') .$errorMark.'</label>
941
- <input class="text-input" name="last_name" type="text" id="last_name" value="'. get_the_author_meta( 'last_name', $current_user->id ) .'" />
942
  </p><!-- .last_name -->';
943
- $editProfileFilterArray2['contentName4'] = apply_filters('wppb_edit_profile_content_name4', $editProfileFilterArray2['contentName4'], $current_user->id);
944
  }
945
 
946
  if ($wppb_defaultOptions['nickname'] == 'show'){
@@ -950,7 +934,7 @@ function wppb_front_end_profile_info() {
950
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
951
  if (isset($_POST['nickname'])){
952
  if (trim($_POST['nickname']) == ''){
953
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
954
  $errorVar = ' errorHolder';
955
  }
956
  }
@@ -958,9 +942,9 @@ function wppb_front_end_profile_info() {
958
  $editProfileFilterArray2['contentName5'] = '
959
  <p class="nickname'.$errorVar.'">
960
  <label for="nickname">'. __('Nickname', 'profilebuilder') .$errorMark.'</label>
961
- <input class="text-input" name="nickname" type="text" id="nickname" value="'. get_the_author_meta( 'nickname', $current_user->id ) .'" />
962
  </p><!-- .nickname -->';
963
- $editProfileFilterArray2['contentName5'] = apply_filters('wppb_edit_profile_content_name5', $editProfileFilterArray2['contentName5'], $current_user->id, $errorVar, $errorMark);
964
  }
965
 
966
  if ($wppb_defaultOptions['dispname'] == 'show'){
@@ -970,7 +954,7 @@ function wppb_front_end_profile_info() {
970
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
971
  if (isset($_POST['display_name'])){
972
  if (trim($_POST['display_name']) == ''){
973
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
974
  $errorVar = ' errorHolder';
975
  }
976
  }
@@ -981,19 +965,19 @@ function wppb_front_end_profile_info() {
981
  <label for="display_name">'. __('Display name publicly as', 'profilebuilder') .$errorMark.'</label>
982
  <select name="display_name" id="display_name">';
983
  $public_display = array();
984
- $public_display['display_username'] = get_the_author_meta('user_login', $current_user->id);
985
- $thisFirstName = get_the_author_meta('first_name', $current_user->id);
986
  if ( !empty($thisFirstName))
987
- $public_display['display_firstname'] = get_the_author_meta('first_name', $current_user->id);
988
- $thisLastName = get_the_author_meta('last_name', $current_user->id);
989
  if ( !empty($thisLastName))
990
- $public_display['display_lastname'] = get_the_author_meta('last_name', $current_user->id);
991
- $public_display['display_nickname'] = get_the_author_meta('nickname', $current_user->id);
992
  if ( !empty($thisFirstName) && !empty($thisLastName) ) {
993
  $public_display['display_firstlast'] = $thisFirstName . ' ' . $thisLastName;
994
  $public_display['display_lastfirst'] = $thisLastName . ' ' . $thisFirstName;
995
  }
996
- $thisDisplayName = get_the_author_meta('display_name', $current_user->id);
997
  if ( !in_array( $thisDisplayName, $public_display ) ) // Only add this if it isn't duplicated elsewhere
998
  $public_display = array( 'display_displayname' => $thisDisplayName ) + $public_display;
999
  $public_display = array_map( 'trim', $public_display );
@@ -1007,7 +991,7 @@ function wppb_front_end_profile_info() {
1007
  </select>
1008
  </p><!-- .display_name -->';
1009
 
1010
- $editProfileFilterArray2['displayName'] = apply_filters('wppb_edit_profile_display_name', $editProfileFilterArray2['displayName'], $current_user->id, $errorVar, $errorMark);
1011
  }
1012
 
1013
  $editProfileFilterArray2['contentInfo1'] = '<p class="contactInfoHeader"><strong>'. __('Contact Info', 'profilebuilder') .'</strong></p>';
@@ -1022,7 +1006,7 @@ function wppb_front_end_profile_info() {
1022
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1023
  if (isset($_POST['email'])){
1024
  if (trim($_POST['email']) == ''){
1025
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1026
  $errorVar = ' errorHolder';
1027
  }
1028
  }
@@ -1030,10 +1014,10 @@ function wppb_front_end_profile_info() {
1030
  $editProfileFilterArray2['contentInfo2'] = '
1031
  <p class="form-email'.$errorVar.'">
1032
  <label for="email">'. __('E-mail', 'profilebuilder') .$errorMark.'</label>
1033
- <input class="text-input" name="email" type="text" id="email" value="'. get_the_author_meta( 'user_email', $current_user->id ) .'" />
1034
  <span class="wppb-description-delimiter">'. __('(required)', 'profilebuilder') .'</span>
1035
  </p><!-- .form-email -->';
1036
- $editProfileFilterArray2['contentInfo2'] = apply_filters('wppb_edit_profile_content_info2', $editProfileFilterArray2['contentInfo2'], $current_user->id, $errorVar, $errorMark);
1037
  }
1038
  }
1039
 
@@ -1043,16 +1027,16 @@ function wppb_front_end_profile_info() {
1043
  if ($wppb_defaultOptions['websiteRequired'] == 'yes'){
1044
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1045
  if (isset($_POST['website']) && (trim($_POST['website']) == '')){
1046
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1047
  $errorVar = ' errorHolder';
1048
  }
1049
  }
1050
  $editProfileFilterArray2['contentInfo3'] = '
1051
  <p class="form-website'.$errorVar.'">
1052
  <label for="website">'. __('Website', 'profilebuilder') .$errorMark.'</label>
1053
- <input class="text-input" name="website" type="text" id="website" value="'. get_the_author_meta( 'user_url', $current_user->id ) .'" />
1054
  </p><!-- .form-website -->';
1055
- $editProfileFilterArray2['contentInfo3'] = apply_filters('wppb_edit_profile_content_info3', $editProfileFilterArray2['contentInfo3'], $current_user->id, $errorVar, $errorMark);
1056
  }
1057
 
1058
  if ($wppb_defaultOptions['aim'] == 'show'){
@@ -1061,16 +1045,16 @@ function wppb_front_end_profile_info() {
1061
  if ($wppb_defaultOptions['aimRequired'] == 'yes'){
1062
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1063
  if (isset($_POST['aim']) && (trim($_POST['aim']) == '')){
1064
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1065
  $errorVar = ' errorHolder';
1066
  }
1067
  }
1068
  $editProfileFilterArray2['contentInfo4'] = '
1069
  <p class="form-aim'.$errorVar.'">
1070
  <label for="aim">'. __('AIM', 'profilebuilder') .'</label>
1071
- <input class="text-input" name="aim" type="text" id="aim" value="'. get_the_author_meta( 'aim', $current_user->id ) .'" />
1072
  </p><!-- .form-aim -->';
1073
- $editProfileFilterArray2['contentInfo4'] = apply_filters('wppb_edit_profile_content_info4', $editProfileFilterArray2['contentInfo4'], $current_user->id, $errorVar, $errorMark);
1074
  }
1075
 
1076
  if ($wppb_defaultOptions['yahoo'] == 'show'){
@@ -1079,16 +1063,16 @@ function wppb_front_end_profile_info() {
1079
  if ($wppb_defaultOptions['yahooRequired'] == 'yes'){
1080
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1081
  if (isset($_POST['yim']) && (trim($_POST['yim']) == '')){
1082
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1083
  $errorVar = ' errorHolder';
1084
  }
1085
  }
1086
  $editProfileFilterArray2['contentInfo5'] = '
1087
  <p class="form-yim'.$errorVar.'">
1088
  <label for="yim">'. __('Yahoo IM', 'profilebuilder') .$errorMark.'</label>
1089
- <input class="text-input" name="yim" type="text" id="yim" value="'. get_the_author_meta( 'yim', $current_user->id ) .'" />
1090
  </p><!-- .form-yim -->';
1091
- $editProfileFilterArray2['contentInfo5'] = apply_filters('wppb_edit_profile_content_info5', $editProfileFilterArray2['contentInfo5'], $current_user->id, $errorVar, $errorMark);
1092
  }
1093
 
1094
  if ($wppb_defaultOptions['jabber'] == 'show'){
@@ -1097,16 +1081,16 @@ function wppb_front_end_profile_info() {
1097
  if ($wppb_defaultOptions['jabberRequired'] == 'yes'){
1098
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1099
  if (isset($_POST['jabber']) && (trim($_POST['jabber']) == '')){
1100
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1101
  $errorVar = ' errorHolder';
1102
  }
1103
  }
1104
  $editProfileFilterArray2['contentInfo6'] = '
1105
  <p class="form-jabber'.$errorVar.'">
1106
  <label for="jabber">'. __('Jabber / Google Talk', 'profilebuilder') .$errorMark.'</label>
1107
- <input class="text-input" name="jabber" type="text" id="jabber" value="'. get_the_author_meta( 'jabber', $current_user->id ) .'" />
1108
  </p><!-- .form-jabber -->';
1109
- $editProfileFilterArray2['contentInfo6'] = apply_filters('wppb_edit_profile_content_info6', $editProfileFilterArray2['contentInfo6'], $current_user->id, $errorVar, $errorMark);
1110
  }
1111
 
1112
  $editProfileFilterArray2['aboutYourself1'] = '<p class="aboutYourselfHeader"><strong>'. __('About Yourself', 'profilebuilder') .'</strong></p>';
@@ -1118,16 +1102,16 @@ function wppb_front_end_profile_info() {
1118
  if ($wppb_defaultOptions['bioRequired'] == 'yes'){
1119
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1120
  if (isset($_POST['description']) && (trim($_POST['description']) == '')){
1121
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1122
  $errorVar = ' errorHolder';
1123
  }
1124
  }
1125
  $editProfileFilterArray2['aboutYourself2'] = '
1126
  <p class="form-description'.$errorVar.'">
1127
  <label for="description">'. __('Biographical Info', 'profilebuilder') .$errorMark.'</label>
1128
- <textarea class="text-input" name="description" id="description" rows="5" cols="30">'. get_the_author_meta( 'description', $current_user->id ) .'</textarea>
1129
  </p><!-- .form-description -->';
1130
- $editProfileFilterArray2['aboutYourself2'] = apply_filters('wppb_edit_profile_content_about_yourself2', $editProfileFilterArray2['aboutYourself2'], $current_user->id, $errorVar, $errorMark);
1131
  }
1132
 
1133
  if ($wppb_defaultOptions['password'] == 'show'){
@@ -1151,7 +1135,7 @@ function wppb_front_end_profile_info() {
1151
  require_once($wppb_premium.'extra.fields.php');
1152
 
1153
  $page = 'edit_profile';
1154
- $returnedValue = wppb_extra_fields($current_user->id, $extraFieldsErrorHolder, $editProfileFilterArray2, $page, $error, $_POST);
1155
 
1156
  //copy over extra fields to the rest of the fieldso on the edit profile
1157
  foreach($returnedValue as $key => $value)
@@ -1170,7 +1154,8 @@ function wppb_front_end_profile_info() {
1170
  ?>
1171
 
1172
  <p class="form-submit">
1173
- <input name="updateuser" type="submit" id="updateuser" class="submit button" value="<?php _e('Update', 'profilebuilder'); ?>" />
 
1174
  <?php // wp_nonce_field( 'update-user' ) ?>
1175
  <input name="action" type="hidden" id="action" value="update-user" />
1176
  </p><!-- .form-submit -->
22
  /* Update user password. */
23
  if ( !empty($_POST['pass1'] ) && !empty( $_POST['pass2'] ) ){
24
  if ( $_POST['pass1'] == $_POST['pass2'] ){
25
+ wp_update_user( array( 'ID' => $current_user->ID, 'user_pass' => $_POST['pass1'] ) );
26
  $changesSaved = 'yes';
27
  } else {
28
  $changesSavedNoMatchingPass = 'yes';
36
 
37
  function wppb_front_end_profile_info() {
38
 
39
+ global $changesSaved, $changesSavedNoMatchingPass, $changesSavedNoPass, $wppb_shortcode_on_front, $current_user;
40
+
 
41
  $editProfileFilterArray = array();
42
  $editProfileFilterArray2 = array();
43
  $extraFieldsErrorHolder = array(); //we will use this array to store the ID's of the extra-fields left uncompleted
44
+
 
45
 
46
  //get "login with" setting
47
  $wppb_generalSettings = get_option('wppb_general_settings');
55
  $previousError = 'no';
56
  $pictureUpload = 'no';
57
  $avatarUpload = 'yes';
58
+ $failReason = '';
59
  $allRequiredCompleted = 'yes';
60
  $uploadName = array();
61
  $uploadExt = array();
62
  $uploadSize = array();
63
  $editFilterArray = array();
64
  $error = null;
 
 
 
 
65
 
66
  /* delete the attachment if set */
67
  if (isset($_GET['userID']) && isset($_GET['field'])){
280
  if (isset($value['item_required'])){
281
  if ($value['item_required'] == 'yes'){
282
  $uploadedfile = $value['item_type'].$value['id'];
283
+ $wp_upload_array = wp_upload_dir();
284
+ $userData = get_user_meta($current_user->ID, $value['item_metaName'], true);
285
+
286
+ if ( (basename( $_FILES[$uploadedfile]['name']) == '') && (($userData == '') || ($userData == $wp_upload_array['baseurl'].'/profile_builder/attachments/'))){
287
  array_push($extraFieldsErrorHolder, $value['id']);
288
  $allRequiredCompleted = 'no';
289
  }
295
  if (isset($value['item_required'])){
296
  if ($value['item_required'] == 'yes'){
297
  $uploadedfile = $value['item_type'].$value['id'];
298
+ $wp_upload_array = wp_upload_dir();
299
+ $userData = get_user_meta( $current_user->ID, $value['item_metaName'], true );
300
+
301
+ if ( ( basename( $_FILES[$uploadedfile]['name'] ) == '') && ( trim ($userData) == '' ) ){
302
  array_push($extraFieldsErrorHolder, $value['id']);
303
  $allRequiredCompleted = 'no';
304
+ }elseif ( $_FILES[$uploadedfile]['type'] == 'image/bmp' ){
305
+ array_push( $extraFieldsErrorHolder, $value['id'] );
306
+ $allRequiredCompleted = 'no';
307
+ $failReason = apply_filters('wppb_avatar_upload_bad_filetype', '<br/>'.__('The following image extensions are NOT supported: bmp', 'profilebuilder'));
308
  }
309
  }
310
  }
316
 
317
 
318
  $allRequiredCompleted = apply_filters('wppb_edit_profile_all_required_completed_after_check', $allRequiredCompleted);
319
+
320
+ $editProfileFilterArray['extraError'] = ''; //this is for creating extra error message and bypassing save
321
+ $editProfileFilterArray['extraError'] = apply_filters('wppb_edit_profile_extra_error', $editProfileFilterArray['extraError']);
322
+
323
  }
324
 
325
  /* If profile was saved, update profile. */
326
+ if ( ('POST' == $_SERVER['REQUEST_METHOD']) && (!empty( $_POST['action'] )) && ($_POST['action'] == 'update-user') && (wp_verify_nonce($_POST['edit_nonce_field'],'verify_edit_user')) && ($allRequiredCompleted == 'yes') ) {
327
 
328
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
329
  }else{
332
  if ((trim($_POST['email']) != '') && isset($_POST['email'])){
333
  if (email_exists( $_POST['email'] ) != FALSE)
334
  $thisEmail = email_exists( $_POST['email'] );
335
+ else $thisEmail = $current_user->ID;
336
 
337
  if ( !empty( $_POST['email'] ) && is_email( $_POST['email'] )){ // if the user entered a valid email address
338
+ if (($thisEmail == $current_user->ID)){ // if the entered email address is not already registered to some other user
339
+ wp_update_user( array( 'ID' => $current_user->ID, 'user_email' => esc_attr( $_POST['email'] )));
340
  $changesSaved = 'yes';
341
  }else{
342
  $changesSavedNoEmailExist = 'yes';
348
  }else{
349
  if (email_exists( $_POST['email'] ) != FALSE)
350
  $thisEmail = email_exists( $_POST['email'] );
351
+ else $thisEmail = $current_user->ID;
352
 
353
  if ( !empty( $_POST['email'] ) && is_email( $_POST['email'] )){ // if the user entered a valid email address
354
+ if (($thisEmail == $current_user->ID)){ // if the entered email address is not already registered to some other user
355
+ wp_update_user( array( 'ID' => $current_user->ID, 'user_email' => esc_attr( $_POST['email'] )));
356
  $changesSaved = 'yes';
357
  }else{
358
  $changesSavedNoEmailExist = 'yes';
368
  $_POST['first_name'] = apply_filters('wppb_edit_profile_posted_first_name', $_POST['first_name']);
369
  if ($wppb_defaultOptions['firstnameRequired'] == 'yes'){
370
  if (isset($_POST['first_name']) && (trim($_POST['first_name']) != '')){
371
+ wp_update_user( array( 'ID' => $current_user->ID, 'first_name' => esc_attr( $_POST['first_name'] )));
372
  $changesSaved = 'yes';
373
  }
374
  }else{
375
+ wp_update_user( array( 'ID' => $current_user->ID, 'first_name' => esc_attr( $_POST['first_name'] )));
376
  $changesSaved = 'yes';
377
  }
378
  }
381
  $_POST['last_name'] = apply_filters('wppb_edit_profile_posted_last_name', $_POST['last_name']);
382
  if ($wppb_defaultOptions['lastnameRequired'] == 'yes'){
383
  if (isset($_POST['last_name']) && (trim($_POST['last_name']) != '')){
384
+ wp_update_user( array( 'ID' => $current_user->ID, 'last_name' => esc_attr( $_POST['last_name'] )));
385
  $changesSaved = 'yes';
386
  }
387
  }else{
388
+ wp_update_user( array( 'ID' => $current_user->ID, 'last_name' => esc_attr( $_POST['last_name'] )));
389
  $changesSaved = 'yes';
390
  }
391
  }
394
  $_POST['nickname'] = apply_filters('wppb_edit_profile_posted_nickname', $_POST['nickname']);
395
  if ($wppb_defaultOptions['nicknameRequired'] == 'yes'){
396
  if (isset($_POST['nickname']) && (trim($_POST['nickname']) != '')){
397
+ wp_update_user( array( 'ID' => $current_user->ID, 'nickname' => esc_attr( $_POST['nickname'] )));
398
  $changesSaved = 'yes';
399
  }
400
  }else{
401
+ wp_update_user( array( 'ID' => $current_user->ID, 'nickname' => esc_attr( $_POST['nickname'] )));
402
  $changesSaved = 'yes';
403
  }
404
 
408
  $_POST['display_name'] = apply_filters('wppb_edit_profile_posted_display_name', $_POST['display_name']);
409
  if ($wppb_defaultOptions['dispnameRequired'] == 'yes'){
410
  if (isset($_POST['display_name']) && (trim($_POST['display_name']) != '')){
411
+ wp_update_user( array( 'ID' => $current_user->ID, 'display_name' => esc_attr( $_POST['display_name'] )));
412
  $changesSaved = 'yes';
413
  }
414
  }else{
415
+ wp_update_user( array( 'ID' => $current_user->ID, 'display_name' => esc_attr( $_POST['display_name'] )));
416
  $changesSaved = 'yes';
417
  }
418
  }
423
  if (isset($_POST['website']) && (trim($_POST['website']) != '')){
424
  $wppbPos = strpos( (string)$_POST['website'], 'http://' );
425
  if($wppbPos !== FALSE){
426
+ wp_update_user( array( 'ID' => $current_user->ID, 'user_url' => esc_attr( $_POST['website'] )));
427
  $changesSaved = 'yes';
428
  }else{
429
+ wp_update_user( array( 'ID' => $current_user->ID, 'user_url' => 'http://'.esc_attr( $_POST['website'] )));
430
  $changesSaved = 'yes';
431
  }
432
  }
436
  if($wppbPos !== FALSE){
437
  if ($website == 'http://')
438
  $website = '';
439
+ wp_update_user( array( 'ID' => $current_user->ID, 'user_url' => $website));
440
  $changesSaved = 'yes';
441
  }else{
442
  if ($website != '')
443
  $website = 'http://'.$website;
444
+ wp_update_user( array( 'ID' => $current_user->ID, 'user_url' => $website));
445
  $changesSaved = 'yes';
446
  }
447
  }
451
  $_POST['aim'] = apply_filters('wppb_edit_profile_posted_aim', $_POST['aim']);
452
  if ($wppb_defaultOptions['aimRequired'] == 'yes'){
453
  if (isset($_POST['aim']) && (trim($_POST['aim']) != '')){
454
+ update_user_meta( $current_user->ID, 'aim', esc_attr( $_POST['aim'] ) );
455
  $changesSaved = 'yes';
456
  }
457
  }else{
458
+ update_user_meta( $current_user->ID, 'aim', esc_attr( $_POST['aim'] ) );
459
  $changesSaved = 'yes';
460
  }
461
  }
464
  $_POST['yim'] = apply_filters('wppb_edit_profile_posted_yahoo', $_POST['yim']);
465
  if ($wppb_defaultOptions['yahooRequired'] == 'yes'){
466
  if (isset($_POST['yim']) && (trim($_POST['yim']) != '')){
467
+ update_user_meta( $current_user->ID, 'yim', esc_attr( $_POST['yim'] ) );
468
  $changesSaved = 'yes';
469
  }
470
  }else{
471
+ update_user_meta( $current_user->ID, 'yim', esc_attr( $_POST['yim'] ) );
472
  $changesSaved = 'yes';
473
  }
474
  }
477
  $_POST['jabber'] = apply_filters('wppb_edit_profile_posted_jabber', $_POST['jabber']);
478
  if ($wppb_defaultOptions['jabberRequired'] == 'yes'){
479
  if (isset($_POST['jabber']) && (trim($_POST['jabber']) != '')){
480
+ update_user_meta( $current_user->ID, 'jabber', esc_attr( $_POST['jabber'] ) );
481
  $changesSaved = 'yes';
482
  }
483
  }else{
484
+ update_user_meta( $current_user->ID, 'jabber', esc_attr( $_POST['jabber'] ) );
485
  $changesSaved = 'yes';
486
  }
487
  }
490
  $_POST['description'] = apply_filters('wppb_edit_profile_posted_bio', $_POST['description']);
491
  if ($wppb_defaultOptions['bioRequired'] == 'yes'){
492
  if (isset($_POST['description']) && (trim($_POST['description']) != '')){
493
+ update_user_meta( $current_user->ID, 'description', esc_attr( $_POST['description'] ) );
494
  $changesSaved = 'yes';
495
  }
496
  }else{
497
+ update_user_meta( $current_user->ID, 'description', esc_attr( $_POST['description'] ) );
498
  $changesSaved = 'yes';
499
  }
500
  }
510
  if (isset($value['item_required'])){
511
  if ($value['item_required'] == 'yes'){
512
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
513
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
514
  else
515
  array_push($extraFieldsErrorHolder, $value['id']);
516
  }else
517
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
518
  }else
519
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
520
 
521
  break;
522
  }
523
  case "hiddenInput":{
524
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
525
 
526
  break;
527
  }
528
  case "checkbox":{
529
  $checkboxOption = '';
 
530
  $checkboxValue = explode(',', $value['item_options']);
531
  foreach($checkboxValue as $thisValue){
532
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
539
  if (isset($value['item_required'])){
540
  if ($value['item_required'] == 'yes'){
541
  if (trim($checkboxOption) != '')
542
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $checkboxOption ) );
543
  else
544
  array_push($extraFieldsErrorHolder, $value['id']);
545
  }else
546
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $checkboxOption ) );
547
  }else
548
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $checkboxOption ) );
549
 
550
  break;
551
  }
553
  if (isset($value['item_required'])){
554
  if ($value['item_required'] == 'yes'){
555
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
556
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
557
  else
558
  array_push($extraFieldsErrorHolder, $value['id']);
559
  }else
560
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
561
  }else
562
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
563
  break;
564
  }
565
  case "select":{
566
  if (isset($value['item_required'])){
567
  if ($value['item_required'] == 'yes'){
568
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
569
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
570
  else
571
  array_push($extraFieldsErrorHolder, $value['id']);
572
  }else
573
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
574
  }else
575
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
576
  break;
577
  }
578
  case "countrySelect":{
579
  if (isset($value['item_required'])){
580
  if ($value['item_required'] == 'yes'){
581
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
582
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
583
  else
584
  array_push($extraFieldsErrorHolder, $value['id']);
585
  }else
586
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
587
  }else
588
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
589
 
590
  break;
591
  }
593
  if (isset($value['item_required'])){
594
  if ($value['item_required'] == 'yes'){
595
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
596
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
597
  else
598
  array_push($extraFieldsErrorHolder, $value['id']);
599
  }else
600
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
601
  }else
602
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
603
 
604
  break;
605
  }
607
  if (isset($value['item_required'])){
608
  if ($value['item_required'] == 'yes'){
609
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
610
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
611
  else
612
  array_push($extraFieldsErrorHolder, $value['id']);
613
  }else
614
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
615
  }else
616
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
617
 
618
  break;
619
  }
621
  if (isset($value['item_required'])){
622
  if ($value['item_required'] == 'yes'){
623
  if (trim($_POST[$value['item_type'].$value['id']]) != '')
624
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
625
  else
626
  array_push($extraFieldsErrorHolder, $value['id']);
627
  }else
628
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
629
  }else
630
+ update_user_meta( $current_user->ID, $value['item_metaName'], esc_attr( $_POST[$value['item_type'].$value['id']] ) );
631
 
632
  break;
633
  }
634
  case "upload":{
635
+ $uploaded_file = $value['item_type'].$value['id'];
636
 
637
  //get allowed file types
638
  if (($value['item_options'] != NULL) || ($value['item_options'] != '')){
643
  }else
644
  $allFiles = true;
645
  //first we need to verify if we don't try to upload a 0b or 0 length file
646
+ if ( (basename( $_FILES[$uploaded_file]['name']) != '')){
647
  //get this attachments extension
648
+ $thisFileExtStart = strrpos($_FILES[$uploaded_file]['name'], '.');
649
+ $thisFileExt = substr($_FILES[$uploaded_file]['name'], $thisFileExtStart);
650
 
651
  if ($allFiles === false){
652
  if (in_array($thisFileExt, $extensions)){
653
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
654
+ if (($_FILES[$uploaded_file]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploaded_file]['size'] !=0)){
655
  //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
656
+ $safe_filename = preg_replace( array( "/\s+/", "/[^-\.\w]+/" ), array( "_", "" ), trim( $_FILES[$uploaded_file]['name'] ) );
 
 
 
 
 
 
 
657
 
658
  //create the target path for uploading
659
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
660
+ $target_path = $wp_upload_array['basedir']."/profile_builder/attachments/";
661
+ $target_path = $target_path . 'userID_'.$current_user->ID.'_attachment_'. $safe_filename;
662
 
663
+ if (move_uploaded_file($_FILES[$uploaded_file]['tmp_name'], $target_path)){
664
+ $upFile = $wp_upload_array['baseurl'].'/profile_builder/attachments/userID_'.$current_user->ID.'_attachment_'. $safe_filename;
665
+ update_user_meta( $current_user->ID, $value['item_metaName'], $upFile);
666
  $pictureUpload = 'yes';
667
  }else{
668
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
669
+ array_push($uploadName, basename( $_FILES[$uploaded_file]['name']));
670
  }
671
  }else{
672
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
673
+ array_push($uploadName, basename( $_FILES[$uploaded_file]['name']));
674
  }
675
  }else{
676
+ array_push($uploadExt, basename( $_FILES[$uploaded_file]['name']));
677
  $allowedExtensions = '';
678
  (int)$nrOfExt = count($extensions)-2;
679
  foreach($extensions as $key4 => $value4){
685
  }
686
  }else{
687
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
688
+ if (($_FILES[$uploaded_file]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploaded_file]['size'] !=0)){
689
  //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
690
+ $fileName = basename( $_FILES[$uploaded_file]['name']);
691
  $finalFileName = '';
692
 
693
  for ($i=0; $i < strlen($fileName); $i++){
697
  }
698
 
699
  //create the target path for uploading
700
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
701
+ $target_path = $wp_upload_array['basedir']."/profile_builder/attachments/";
702
+ $target_path = $target_path . 'userID_'.$current_user->ID.'_attachment_'. $finalFileName;
703
 
704
+ if (move_uploaded_file($_FILES[$uploaded_file]['tmp_name'], $target_path)){
705
+ $upFile = $wp_upload_array['baseurl'].'/profile_builder/attachments/userID_'.$current_user->ID.'_attachment_'. $finalFileName;
706
+ update_user_meta( $current_user->ID, $value['item_metaName'], $upFile);
707
  $pictureUpload = 'yes';
708
  }else{
709
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
710
+ array_push($uploadName, basename( $_FILES[$uploaded_file]['name']));
711
  }
712
  }else{
713
  //insert the name of the file in an array so that in case an error comes up, we know which files we just uploaded
714
+ array_push($uploadName, basename( $_FILES[$uploaded_file]['name']));
715
  }
716
  }
717
  }
719
  }
720
  case "avatar":{
721
  $avatarUpload = 'no';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
 
723
+ $uploaded_file = $value['item_type'].$value['id'];
724
+ // If we have a file then: sanatize file name, remove extra spaces/convert to _, remove non 0-9a-Z._- characters, remove leading/trailing spaces check if under allowed upload size, check file extension for legal file types
725
+ if ( is_uploaded_file( $_FILES[$uploaded_file]['tmp_name'] ) ){
726
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
727
+ $safe_filename = preg_replace( array( "/\s+/", "/[^-\.\w]+/" ), array( "_", "" ), trim( $_FILES[$uploaded_file]['name'] ) );
728
+ $target_path = $wp_upload_array['basedir'].'/profile_builder/avatars/userID_'.$current_user->ID.'_originalAvatar_'. $safe_filename;
 
 
 
 
 
 
729
 
730
+ if ( PHP_OS == "WIN32" || PHP_OS == "WINNT" )
731
+ $target_path = str_replace( '\\', '/', $target_path );
732
+
733
+ $allowed_filetypes = "/^\.(jpg|jpeg|gif|png){1}$/i"; //"/^\.(jpg|jpeg|gif|png|doc|docx|txt|rtf|pdf|xls|xlsx|ppt|pptx){1}$/i";
734
+
735
+ if ( $_FILES[$uploaded_file]['size'] <= WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE && preg_match( $allowed_filetypes, strrchr( $safe_filename, '.' ) ) ){
736
+ if ( move_uploaded_file( $_FILES[$uploaded_file]['tmp_name'], $target_path ) ){
737
+ $avatarUpload = 'yes';
738
+
739
+ $wp_filetype = wp_check_filetype(basename( $_FILES[$uploaded_file]['name']), null );
740
+ $attachment = array(
741
+ 'post_mime_type' => $wp_filetype['type'],
742
+ 'post_title' => $safe_filename,
743
+ 'post_content' => '',
744
+ 'post_status' => 'inherit'
745
+ );
746
 
747
+ $attach_id = wp_insert_attachment( $attachment, $target_path );
 
 
 
748
 
749
+ $upFile = image_downsize( $attach_id, 'thumbnail' );
750
+ $upFile = $upFile[0];
751
+
752
+ update_user_meta( $current_user->ID, $value['item_metaName'], $upFile );
753
+ update_user_meta( $current_user->ID, 'avatar_directory_path_'.$value['id'], $target_path );
754
+ update_user_meta( $current_user->ID, 'resized_avatar_'.$value['id'], '' );
755
 
756
+ }
757
+ }
758
+
759
+ }else
760
  $avatarUpload = 'yes';
761
+
762
  break;
763
  }
764
  }
765
  }
766
  }
767
 
768
+ $editProfileFilterArray['extraError'] = ''; //this is for creating extra error message and bypassing save
769
+ $editProfileFilterArray['extraError'] = apply_filters('wppb_edit_profile_extra_error', $editProfileFilterArray['extraError']);
770
+
771
  }
772
 
773
  ?>
778
  <p class="warning">'. __('You must be logged in to edit your profile.', 'profilebuilder') .'</p><!-- .warning -->';
779
  echo $editProfileFilterArray['notLoggedIn'] = apply_filters('wppb_edit_profile_user_not_logged_in', $editProfileFilterArray['notLoggedIn']);
780
 
781
+ }else{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
782
  /* all the other messages/errors */
783
  $nrOfBadUploads = 0;
784
  $nrOfBadUploads = count($uploadName);
809
  $previousError = 'yes';
810
 
811
  }elseif ($allRequiredCompleted == 'no'){
812
+ $editProfileFilterArray['errorSavingChanges'] = '<p class="error">'.$errorMessage.'<br/>'. __('Your profile was NOT updated, since not all required fields were completed!', 'profilebuilder').$failReason.'</p><!-- .error -->';
813
+ echo $editProfileFilterArray['errorSavingChanges'] = apply_filters('wppb_edit_profile_error_saving_changes', $editProfileFilterArray['errorSavingChanges'], $failReason);
814
+ }elseif (isset($editProfileFilterArray['extraError']) && ($editProfileFilterArray['extraError'] != ''))
815
+ echo $editProfileFilterArray['extraError'] = apply_filters('wppb_edit_profile_extra_error_message', $editProfileFilterArray['extraError']);
816
 
817
  $wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
818
  if (file_exists ( $wppb_premium.'extra.fields.php' )){
860
 
861
  ?>
862
 
863
+ <form enctype="multipart/form-data" method="post" id="edituser" class="user-forms" action="<?php wppb_curpageurl(); ?>">
864
+ <?php
865
  echo '<input type="hidden" name="MAX_FILE_SIZE" value="'.WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE.'" /><!-- set the MAX_FILE_SIZE to the server\'s current max upload size in bytes -->';
866
 
867
  $editProfileFilterArray2['contentName1'] = '<p class="nameHeader"><strong>'. __('Name', 'profilebuilder') .'</strong></p>';
872
  $editProfileFilterArray2['contentName2'] = '
873
  <p class="email">
874
  <label for="email">'. __('Email', 'profilebuilder') .'</label>
875
+ <input class="text-input" name="email" type="text" id="email" value="'. get_the_author_meta( 'user_email', $current_user->ID ) .'" disabled="disabled"/> <span class="wppb-description-delimiter"> '. __('The email cannot be changed.', 'profilebuilder') .'</span>
876
  </p><!-- .first_name -->';
877
+ $editProfileFilterArray2['contentName2'] = apply_filters('wppb_edit_profile_content_name2_with_email', $editProfileFilterArray2['contentName2'], $current_user->ID);
878
  }
879
  }else{
880
  if ($wppb_defaultOptions['username'] == 'show'){
881
  $editProfileFilterArray2['contentName2'] = '
882
  <p class="username">
883
  <label for="user_login">'. __('Username', 'profilebuilder') .'</label>
884
+ <input class="text-input" name="user_login" type="text" id="user_login" value="'. get_the_author_meta( 'user_login', $current_user->ID ) .'" disabled="disabled"/> <span class="wppb-description-delimiter"> '. __('The usernames cannot be changed.', 'profilebuilder') .'</span>
885
  </p><!-- .first_name -->';
886
+ $editProfileFilterArray2['contentName2'] = apply_filters('wppb_edit_profile_content_name2', $editProfileFilterArray2['contentName2'], $current_user->ID);
887
  }
888
  }
889
 
894
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
895
  if (isset($_POST['first_name'])){
896
  if (trim($_POST['first_name']) == ''){
897
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
898
  $errorVar = ' errorHolder';
899
  }
900
  }
902
  $editProfileFilterArray2['contentName3'] = '
903
  <p class="first_name'.$errorVar.'">
904
  <label for="first_name">'. __('First Name', 'profilebuilder') .$errorMark.'</label>
905
+ <input class="text-input" name="first_name" type="text" id="first_name" value="'. get_the_author_meta( 'first_name', $current_user->ID ) .'" />
906
  </p><!-- .first_name -->';
907
+ $editProfileFilterArray2['contentName3'] = apply_filters('wppb_edit_profile_content_name3', $editProfileFilterArray2['contentName3'], $current_user->ID, $errorVar, $errorMark);
908
  }
909
 
910
  if ($wppb_defaultOptions['lastname'] == 'show'){
914
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
915
  if (isset($_POST['last_name'])){
916
  if (trim($_POST['last_name']) == ''){
917
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
918
  $errorVar = ' errorHolder';
919
  }
920
  }
922
  $editProfileFilterArray2['contentName4'] = '
923
  <p class="last_name'.$errorVar.'">
924
  <label for="last_name">'. __('Last Name', 'profilebuilder') .$errorMark.'</label>
925
+ <input class="text-input" name="last_name" type="text" id="last_name" value="'. get_the_author_meta( 'last_name', $current_user->ID ) .'" />
926
  </p><!-- .last_name -->';
927
+ $editProfileFilterArray2['contentName4'] = apply_filters('wppb_edit_profile_content_name4', $editProfileFilterArray2['contentName4'], $current_user->ID);
928
  }
929
 
930
  if ($wppb_defaultOptions['nickname'] == 'show'){
934
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
935
  if (isset($_POST['nickname'])){
936
  if (trim($_POST['nickname']) == ''){
937
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
938
  $errorVar = ' errorHolder';
939
  }
940
  }
942
  $editProfileFilterArray2['contentName5'] = '
943
  <p class="nickname'.$errorVar.'">
944
  <label for="nickname">'. __('Nickname', 'profilebuilder') .$errorMark.'</label>
945
+ <input class="text-input" name="nickname" type="text" id="nickname" value="'. get_the_author_meta( 'nickname', $current_user->ID ) .'" />
946
  </p><!-- .nickname -->';
947
+ $editProfileFilterArray2['contentName5'] = apply_filters('wppb_edit_profile_content_name5', $editProfileFilterArray2['contentName5'], $current_user->ID, $errorVar, $errorMark);
948
  }
949
 
950
  if ($wppb_defaultOptions['dispname'] == 'show'){
954
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
955
  if (isset($_POST['display_name'])){
956
  if (trim($_POST['display_name']) == ''){
957
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
958
  $errorVar = ' errorHolder';
959
  }
960
  }
965
  <label for="display_name">'. __('Display name publicly as', 'profilebuilder') .$errorMark.'</label>
966
  <select name="display_name" id="display_name">';
967
  $public_display = array();
968
+ $public_display['display_username'] = get_the_author_meta('user_login', $current_user->ID);
969
+ $thisFirstName = get_the_author_meta('first_name', $current_user->ID);
970
  if ( !empty($thisFirstName))
971
+ $public_display['display_firstname'] = get_the_author_meta('first_name', $current_user->ID);
972
+ $thisLastName = get_the_author_meta('last_name', $current_user->ID);
973
  if ( !empty($thisLastName))
974
+ $public_display['display_lastname'] = get_the_author_meta('last_name', $current_user->ID);
975
+ $public_display['display_nickname'] = get_the_author_meta('nickname', $current_user->ID);
976
  if ( !empty($thisFirstName) && !empty($thisLastName) ) {
977
  $public_display['display_firstlast'] = $thisFirstName . ' ' . $thisLastName;
978
  $public_display['display_lastfirst'] = $thisLastName . ' ' . $thisFirstName;
979
  }
980
+ $thisDisplayName = get_the_author_meta('display_name', $current_user->ID);
981
  if ( !in_array( $thisDisplayName, $public_display ) ) // Only add this if it isn't duplicated elsewhere
982
  $public_display = array( 'display_displayname' => $thisDisplayName ) + $public_display;
983
  $public_display = array_map( 'trim', $public_display );
991
  </select>
992
  </p><!-- .display_name -->';
993
 
994
+ $editProfileFilterArray2['displayName'] = apply_filters('wppb_edit_profile_display_name', $editProfileFilterArray2['displayName'], $current_user->ID, $errorVar, $errorMark);
995
  }
996
 
997
  $editProfileFilterArray2['contentInfo1'] = '<p class="contactInfoHeader"><strong>'. __('Contact Info', 'profilebuilder') .'</strong></p>';
1006
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1007
  if (isset($_POST['email'])){
1008
  if (trim($_POST['email']) == ''){
1009
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1010
  $errorVar = ' errorHolder';
1011
  }
1012
  }
1014
  $editProfileFilterArray2['contentInfo2'] = '
1015
  <p class="form-email'.$errorVar.'">
1016
  <label for="email">'. __('E-mail', 'profilebuilder') .$errorMark.'</label>
1017
+ <input class="text-input" name="email" type="text" id="email" value="'. get_the_author_meta( 'user_email', $current_user->ID ) .'" />
1018
  <span class="wppb-description-delimiter">'. __('(required)', 'profilebuilder') .'</span>
1019
  </p><!-- .form-email -->';
1020
+ $editProfileFilterArray2['contentInfo2'] = apply_filters('wppb_edit_profile_content_info2', $editProfileFilterArray2['contentInfo2'], $current_user->ID, $errorVar, $errorMark);
1021
  }
1022
  }
1023
 
1027
  if ($wppb_defaultOptions['websiteRequired'] == 'yes'){
1028
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1029
  if (isset($_POST['website']) && (trim($_POST['website']) == '')){
1030
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1031
  $errorVar = ' errorHolder';
1032
  }
1033
  }
1034
  $editProfileFilterArray2['contentInfo3'] = '
1035
  <p class="form-website'.$errorVar.'">
1036
  <label for="website">'. __('Website', 'profilebuilder') .$errorMark.'</label>
1037
+ <input class="text-input" name="website" type="text" id="website" value="'. get_the_author_meta( 'user_url', $current_user->ID ) .'" />
1038
  </p><!-- .form-website -->';
1039
+ $editProfileFilterArray2['contentInfo3'] = apply_filters('wppb_edit_profile_content_info3', $editProfileFilterArray2['contentInfo3'], $current_user->ID, $errorVar, $errorMark);
1040
  }
1041
 
1042
  if ($wppb_defaultOptions['aim'] == 'show'){
1045
  if ($wppb_defaultOptions['aimRequired'] == 'yes'){
1046
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1047
  if (isset($_POST['aim']) && (trim($_POST['aim']) == '')){
1048
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1049
  $errorVar = ' errorHolder';
1050
  }
1051
  }
1052
  $editProfileFilterArray2['contentInfo4'] = '
1053
  <p class="form-aim'.$errorVar.'">
1054
  <label for="aim">'. __('AIM', 'profilebuilder') .'</label>
1055
+ <input class="text-input" name="aim" type="text" id="aim" value="'. get_the_author_meta( 'aim', $current_user->ID ) .'" />
1056
  </p><!-- .form-aim -->';
1057
+ $editProfileFilterArray2['contentInfo4'] = apply_filters('wppb_edit_profile_content_info4', $editProfileFilterArray2['contentInfo4'], $current_user->ID, $errorVar, $errorMark);
1058
  }
1059
 
1060
  if ($wppb_defaultOptions['yahoo'] == 'show'){
1063
  if ($wppb_defaultOptions['yahooRequired'] == 'yes'){
1064
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1065
  if (isset($_POST['yim']) && (trim($_POST['yim']) == '')){
1066
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1067
  $errorVar = ' errorHolder';
1068
  }
1069
  }
1070
  $editProfileFilterArray2['contentInfo5'] = '
1071
  <p class="form-yim'.$errorVar.'">
1072
  <label for="yim">'. __('Yahoo IM', 'profilebuilder') .$errorMark.'</label>
1073
+ <input class="text-input" name="yim" type="text" id="yim" value="'. get_the_author_meta( 'yim', $current_user->ID ) .'" />
1074
  </p><!-- .form-yim -->';
1075
+ $editProfileFilterArray2['contentInfo5'] = apply_filters('wppb_edit_profile_content_info5', $editProfileFilterArray2['contentInfo5'], $current_user->ID, $errorVar, $errorMark);
1076
  }
1077
 
1078
  if ($wppb_defaultOptions['jabber'] == 'show'){
1081
  if ($wppb_defaultOptions['jabberRequired'] == 'yes'){
1082
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1083
  if (isset($_POST['jabber']) && (trim($_POST['jabber']) == '')){
1084
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1085
  $errorVar = ' errorHolder';
1086
  }
1087
  }
1088
  $editProfileFilterArray2['contentInfo6'] = '
1089
  <p class="form-jabber'.$errorVar.'">
1090
  <label for="jabber">'. __('Jabber / Google Talk', 'profilebuilder') .$errorMark.'</label>
1091
+ <input class="text-input" name="jabber" type="text" id="jabber" value="'. get_the_author_meta( 'jabber', $current_user->ID ) .'" />
1092
  </p><!-- .form-jabber -->';
1093
+ $editProfileFilterArray2['contentInfo6'] = apply_filters('wppb_edit_profile_content_info6', $editProfileFilterArray2['contentInfo6'], $current_user->ID, $errorVar, $errorMark);
1094
  }
1095
 
1096
  $editProfileFilterArray2['aboutYourself1'] = '<p class="aboutYourselfHeader"><strong>'. __('About Yourself', 'profilebuilder') .'</strong></p>';
1102
  if ($wppb_defaultOptions['bioRequired'] == 'yes'){
1103
  $errorMark = '<font color="red" title="'. __('This field is marked as required by the administrator.', 'profilebuilder') .'">*</font>';
1104
  if (isset($_POST['description']) && (trim($_POST['description']) == '')){
1105
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'. __('This field wasn\'t updated because you entered and empty string (It was marked as required by the administrator.', 'profilebuilder') .'"/>';
1106
  $errorVar = ' errorHolder';
1107
  }
1108
  }
1109
  $editProfileFilterArray2['aboutYourself2'] = '
1110
  <p class="form-description'.$errorVar.'">
1111
  <label for="description">'. __('Biographical Info', 'profilebuilder') .$errorMark.'</label>
1112
+ <textarea class="text-input" name="description" id="description" rows="5" cols="30">'. get_the_author_meta( 'description', $current_user->ID ) .'</textarea>
1113
  </p><!-- .form-description -->';
1114
+ $editProfileFilterArray2['aboutYourself2'] = apply_filters('wppb_edit_profile_content_about_yourself2', $editProfileFilterArray2['aboutYourself2'], $current_user->ID, $errorVar, $errorMark);
1115
  }
1116
 
1117
  if ($wppb_defaultOptions['password'] == 'show'){
1135
  require_once($wppb_premium.'extra.fields.php');
1136
 
1137
  $page = 'edit_profile';
1138
+ $returnedValue = wppb_extra_fields($current_user->ID, $extraFieldsErrorHolder, $editProfileFilterArray2, $page, $error, $_POST);
1139
 
1140
  //copy over extra fields to the rest of the fieldso on the edit profile
1141
  foreach($returnedValue as $key => $value)
1154
  ?>
1155
 
1156
  <p class="form-submit">
1157
+ <?php $button_name = __('Update', 'profilebuilder'); ?>
1158
+ <input name="updateuser" type="submit" id="updateuser" class="submit button" value="<?php echo apply_filters('wppb_edit_profile_button_name', $button_name, $current_user); ?>" />
1159
  <?php // wp_nonce_field( 'update-user' ) ?>
1160
  <input name="action" type="hidden" id="action" value="update-user" />
1161
  </p><!-- .form-submit -->
front-end/wppb.login.php CHANGED
@@ -18,9 +18,7 @@ function wppb_signon(){
18
  $username = trim($_POST['user-name']);
19
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
20
  // if this setting is active, the posted username is, in fact the user's email
21
- $result = mysql_query("SELECT user_login FROM $wpdb->users WHERE user_email='".$username."' LIMIT 1");
22
- $result=mysql_fetch_row($result);
23
- $username = $result[0];
24
  }
25
 
26
  $wppb_login = wp_signon( array( 'user_login' => $username, 'user_password' => trim($_POST['password']), 'remember' => trim($_POST['remember-me']) ), false );
@@ -32,9 +30,7 @@ function wppb_signon(){
32
 
33
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
34
  // if this setting is active, the posted username is, in fact the user's email
35
- $result = mysql_query("SELECT user_login FROM $wpdb->users WHERE user_email='".$username."' LIMIT 1");
36
- $result=mysql_fetch_row($result);
37
- $username = $result[0];
38
  }
39
 
40
  $wppb_login = wp_signon( array( 'user_login' => $username, 'user_password' => $password, 'remember' => $remember ), false );
@@ -59,7 +55,7 @@ function wppb_front_end_login( $atts ){
59
 
60
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email'))
61
  $display_name = $wppb_user->user_email;
62
- elseif($wppb_user->display_name == '')
63
  $display_name = $wppb_user->user_login;
64
  else
65
  $display_name = $wppb_user->display_name;
@@ -70,7 +66,7 @@ function wppb_front_end_login( $atts ){
70
  }elseif ( isset($wppb_login->ID) ){ // Successful login
71
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email'))
72
  $display_name = $wppb_login->user_email;
73
- elseif($wppb_login->display_name == '')
74
  $display_name = $wppb_login->user_login;
75
  else
76
  $display_name = $wppb_login->display_name;
@@ -117,7 +113,7 @@ function wppb_front_end_login( $atts ){
117
  ?>
118
  <p class="error">
119
  <?php
120
- if ( trim($_POST['user-name']) == ''){
121
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
122
  $loginFilterArray['emptyUsernameError'] = '<strong>'. __('ERROR:','profilebuilder').'</strong> '. __('The email field is empty', 'profilebuilder').'.';
123
  $loginFilterArray['emptyUsernameError'] = apply_filters('wppb_login_empty_email_as_username_error_message', $loginFilterArray['emptyUsernameError']);
@@ -128,7 +124,14 @@ function wppb_front_end_login( $atts ){
128
  }
129
 
130
  echo $loginFilterArray['emptyUsernameError'];
131
- }
 
 
 
 
 
 
 
132
  if ( is_wp_error($wppb_login) ){
133
  $loginFilterArray['wpError'] = $wppb_login->get_error_message();
134
  $loginFilterArray['wpError'] = apply_filters('wppb_login_wp_error_message', $loginFilterArray['wpError'],$wppb_login);
@@ -172,7 +175,8 @@ function wppb_front_end_login( $atts ){
172
 
173
  ?>
174
  <p class="login-form-submit">
175
- <input type="submit" name="submit" class="submit button" value="<?php _e('Log in', 'profilebuilder'); ?>" />
 
176
  <?php
177
  $loginFilterArray['rememberMe'] = '
178
  <input class="remember-me checkbox" name="remember-me" id="remember-me" type="checkbox" checked="checked" value="forever" />
@@ -182,7 +186,7 @@ function wppb_front_end_login( $atts ){
182
  ?>
183
 
184
  <input type="hidden" name="action" value="log-in" />
185
- <input type="hidden" name="button" value="<?php echo $submit;?>" />
186
  <input type="hidden" name="formName" value="login" />
187
  </p><!-- .form-submit -->
188
  <?php
18
  $username = trim($_POST['user-name']);
19
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
20
  // if this setting is active, the posted username is, in fact the user's email
21
+ $username = $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM $wpdb->users WHERE user_email= %s LIMIT 1", $username ) );
 
 
22
  }
23
 
24
  $wppb_login = wp_signon( array( 'user_login' => $username, 'user_password' => trim($_POST['password']), 'remember' => trim($_POST['remember-me']) ), false );
30
 
31
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
32
  // if this setting is active, the posted username is, in fact the user's email
33
+ $username = $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM $wpdb->users WHERE user_email= %s LIMIT 1", $username ) );
 
 
34
  }
35
 
36
  $wppb_login = wp_signon( array( 'user_login' => $username, 'user_password' => $password, 'remember' => $remember ), false );
55
 
56
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email'))
57
  $display_name = $wppb_user->user_email;
58
+ elseif($wppb_user->display_name !== '')
59
  $display_name = $wppb_user->user_login;
60
  else
61
  $display_name = $wppb_user->display_name;
66
  }elseif ( isset($wppb_login->ID) ){ // Successful login
67
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email'))
68
  $display_name = $wppb_login->user_email;
69
+ elseif($wppb_login->display_name !== '')
70
  $display_name = $wppb_login->user_login;
71
  else
72
  $display_name = $wppb_login->display_name;
113
  ?>
114
  <p class="error">
115
  <?php
116
+ if (trim($_POST['user-name']) == ''){
117
  if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email')){
118
  $loginFilterArray['emptyUsernameError'] = '<strong>'. __('ERROR:','profilebuilder').'</strong> '. __('The email field is empty', 'profilebuilder').'.';
119
  $loginFilterArray['emptyUsernameError'] = apply_filters('wppb_login_empty_email_as_username_error_message', $loginFilterArray['emptyUsernameError']);
124
  }
125
 
126
  echo $loginFilterArray['emptyUsernameError'];
127
+
128
+ }elseif (trim($_POST['password']) == ''){
129
+ $loginFilterArray['emptyPasswordError'] = '<strong>'. __('ERROR:','profilebuilder').'</strong> '. __('The password field is empty', 'profilebuilder').'.';
130
+ $loginFilterArray['emptyPasswordError'] = apply_filters('wppb_login_empty_password_error_message', $loginFilterArray['emptyPasswordError']);
131
+
132
+ echo $loginFilterArray['emptyPasswordError'];
133
+ }
134
+
135
  if ( is_wp_error($wppb_login) ){
136
  $loginFilterArray['wpError'] = $wppb_login->get_error_message();
137
  $loginFilterArray['wpError'] = apply_filters('wppb_login_wp_error_message', $loginFilterArray['wpError'],$wppb_login);
175
 
176
  ?>
177
  <p class="login-form-submit">
178
+ <?php $button_name = __('Log in', 'profilebuilder'); ?>
179
+ <input type="submit" name="submit" class="submit button" value="<?php echo apply_filters('wppb_login_button_name1', $button_name); ?>" />
180
  <?php
181
  $loginFilterArray['rememberMe'] = '
182
  <input class="remember-me checkbox" name="remember-me" id="remember-me" type="checkbox" checked="checked" value="forever" />
186
  ?>
187
 
188
  <input type="hidden" name="action" value="log-in" />
189
+ <input type="hidden" name="button" value="<?php echo apply_filters('wppb_login_button_name2', $submit); ?>" />
190
  <input type="hidden" name="formName" value="login" />
191
  </p><!-- .form-submit -->
192
  <?php
front-end/wppb.recover.password.php CHANGED
@@ -1,95 +1,4 @@
1
  <?php
2
- //function needed to check if the current page already has a ? sign in the address bar
3
- if(!function_exists('wppb_curpageurl_password_recovery')){
4
- function wppb_curpageurl_password_recovery() {
5
- $pageURL = 'http';
6
- if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on")) {
7
- $pageURL .= "s";
8
- }
9
- $pageURL .= "://";
10
- if ($_SERVER["SERVER_PORT"] != "80") {
11
- $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
12
- }else{
13
- $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
14
- }
15
-
16
- $questionPos = strpos( (string)$pageURL, '?' );
17
- $submittedPos = strpos( (string)$pageURL, 'submitted=yes' );
18
-
19
- if ($submittedPos !== false)
20
- return $pageURL;
21
- elseif($questionPos !== false)
22
- return $pageURL.'&submitted=yes';
23
- else
24
- return $pageURL.'?submitted=yes';
25
- }
26
- }
27
-
28
- if(!function_exists('wppb_curpageurl_password_recovery2')){
29
- function wppb_curpageurl_password_recovery2($user_login, $id) {
30
-
31
- global $wpdb;
32
- $pageURL = 'http';
33
-
34
- if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on")) {
35
- $pageURL .= "s";
36
- }
37
- $pageURL .= "://";
38
- if ($_SERVER["SERVER_PORT"] != "80") {
39
- $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
40
- }else{
41
- $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
42
- }
43
-
44
- $questionPos = strpos( (string)$pageURL, '?' );
45
-
46
-
47
- $key = $wpdb->get_var($wpdb->prepare("SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $user_login));
48
- if ( empty($key) ) {
49
- // Generate something random for a key...
50
- $key = wp_generate_password(20, false);
51
- do_action('wppb_retrieve_password_key', $user_login, $key);
52
- // Now insert the new md5 key into the db
53
- $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
54
- }
55
-
56
- //$key = md5($user_login.'RMPBP'.$id.'PWRCVR');
57
-
58
- if($questionPos !== false){
59
- //$wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
60
- return $pageURL.'&loginName='.$user_login.'&key='.$key;
61
- }else{
62
- //$wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
63
- return $pageURL.'?loginName='.$user_login.'&key='.$key;
64
- }
65
- }
66
- }
67
-
68
- if(!function_exists('wppb_curpageurl_password_recovery3')){
69
- function wppb_curpageurl_password_recovery3() {
70
- $pageURL = 'http';
71
- if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on")) {
72
- $pageURL .= "s";
73
- }
74
- $pageURL .= "://";
75
- if ($_SERVER["SERVER_PORT"] != "80") {
76
- $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
77
- }else{
78
- $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
79
- }
80
-
81
- $questionPos = strpos( (string)$pageURL, '?' );
82
- $finalActionPos = strpos( (string)$pageURL, 'finalAction=yes' );
83
-
84
- if ($finalActionPos !== false)
85
- return $pageURL;
86
- elseif($questionPos !== false)
87
- return $pageURL.'&finalAction=yes';
88
- else
89
- return $pageURL.'?finalAction=yes';
90
- }
91
- }
92
-
93
  function wppb_check_for_unapproved_user($data, $what){
94
  $retArray = array( 0 => '', 1 => '');
95
  $retMessage = '';
@@ -156,13 +65,13 @@ function wppb_front_end_password_recovery(){
156
  $messageNo = '1';
157
 
158
  //verify e-mail validity
159
- $query = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE user_email='".$postedData."'");
160
  $requestedUserID = $query[0]->ID;
161
  $requestedUserLogin = $query[0]->user_login;
162
  $requestedUserEmail = $query[0]->user_email;
163
 
164
  //send primary email message
165
- $recoverPasswordFilterArray['userMailMessage1'] = sprintf(__('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profilebuilder'), $requestedUserLogin, '<a href="'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'">'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'</a>');
166
  $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
167
 
168
  $recoverPasswordFilterArray['userMailMessageTitle1'] = sprintf(__('Password Reset Feature from "%1$s"', 'profilebuilder'), $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES));
@@ -196,20 +105,32 @@ function wppb_front_end_password_recovery(){
196
  $message = $retVal[0];
197
  $messageNo = $retVal [1];
198
 
199
- }else{
200
  $recoverPasswordFilterArray['sentMessage3'] = sprintf(__('A password reset email has been sent to %1$s.<br/>Following the link sent in the email address will reset the password.', 'profilebuilder'), $postedData);
201
  $recoverPasswordFilterArray['sentMessage3'] = apply_filters('wppb_recover_password_sent_message3', $recoverPasswordFilterArray['sentMessage3']);
202
  $messageNo = '3';
203
  $message = $recoverPasswordFilterArray['sentMessage3'];
204
 
205
  //verify username validity
206
- $query = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE user_login='".$postedData."'");
207
  $requestedUserID = $query[0]->ID;
208
  $requestedUserLogin = $query[0]->user_login;
209
  $requestedUserEmail = $query[0]->user_email;
 
 
 
 
 
 
 
 
 
 
 
 
210
 
211
  //send primary email message
212
- $recoverPasswordFilterArray['userMailMessage1'] = sprintf(__('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profilebuilder'), $requestedUserLogin, '<a href="'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'">'.wppb_curpageurl_password_recovery2($requestedUserLogin, $requestedUserID).'</a>');
213
  $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
214
 
215
  $recoverPasswordFilterArray['userMailMessageTitle1'] = sprintf(__('Password Reset Feature from "%1$s"', 'profilebuilder'), $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES));
@@ -316,7 +237,7 @@ function wppb_front_end_password_recovery(){
316
  $recoverPasswordFilterArray['passwordChangedMessage2'] = apply_filters ('wppb_recover_password_password_changed_message2', $recoverPasswordFilterArray['passwordChangedMessage2'], $message2);
317
  echo $recoverPasswordFilterArray['passwordChangedMessage2'];
318
  ?>
319
- <form enctype="multipart/form-data" method="post" id="recover_password2" class="user-forms" action="<?php echo $url=wppb_curpageurl_password_recovery3();?>">
320
  <?php
321
  $recoverPasswordFilterArray['inputPassword'] = '
322
  <p class="passw1">
@@ -332,7 +253,8 @@ function wppb_front_end_password_recovery(){
332
  echo $recoverPasswordFilterArray['inputPassword'];
333
  ?>
334
  <p class="form-submit">
335
- <input name="recover_password2" type="submit" id="recover_password2" class="submit button" value="<?php _e('Reset Password', 'profilebuilder'); ?>" />
 
336
  <input name="action2" type="hidden" id="action2" value="recover_password2" />
337
  </p><!-- .form-submit -->
338
  <?php wp_nonce_field('verify_true_password_recovery2', 'password_recovery_nonce_field2'); ?>
@@ -346,7 +268,7 @@ function wppb_front_end_password_recovery(){
346
 
347
  }else{
348
  ?>
349
- <form enctype="multipart/form-data" method="post" id="recover_password2" class="user-forms" action="<?php echo $url=wppb_curpageurl_password_recovery3();?>">
350
  <?php
351
  $recoverPasswordFilterArray['inputPassword'] = '
352
  <p class="passw1">
@@ -362,7 +284,8 @@ function wppb_front_end_password_recovery(){
362
  echo $recoverPasswordFilterArray['inputPassword'];
363
  ?>
364
  <p class="form-submit">
365
- <input name="recover_password2" type="submit" id="recover_password2" class="submit button" value="<?php _e('Reset Password', 'profilebuilder'); ?>" />
 
366
  <input name="action2" type="hidden" id="action2" value="recover_password2" />
367
  </p><!-- .form-submit -->
368
  <?php wp_nonce_field('verify_true_password_recovery2', 'password_recovery_nonce_field2'); ?>
@@ -392,7 +315,7 @@ function wppb_front_end_password_recovery(){
392
  $recoverPasswordFilterArray['messageDisplay1'] = apply_filters('wppb_recover_password_displayed_message1', $recoverPasswordFilterArray['messageDisplay1']);
393
  echo $recoverPasswordFilterArray['messageDisplay1'];
394
 
395
- echo '<form enctype="multipart/form-data" method="post" id="recover_password" class="user-forms" action="'.$address = wppb_curpageurl_password_recovery().'">';
396
 
397
  $recoverPasswordFilterArray['notification'] = __('Please enter your username or email address.', 'profilebuilder').'<br/>'.__('You will receive a link to create a new password via email.', 'profilebuilder').'<br/><br/>';
398
  echo $recoverPasswordFilterArray['notification'] = apply_filters('wppb_recover_password_message1', $recoverPasswordFilterArray['notification']);
@@ -411,7 +334,8 @@ function wppb_front_end_password_recovery(){
411
 
412
  ?>
413
  <p class="form-submit">
414
- <input name="recover_password" type="submit" id="recover_password" class="submit button" value="<?php _e('Get New Password', 'profilebuilder'); ?>" />
 
415
  <input name="action" type="hidden" id="action" value="recover_password" />
416
  </p><!-- .form-submit -->
417
  <?php wp_nonce_field('verify_true_password_recovery', 'password_recovery_nonce_field'); ?>
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  function wppb_check_for_unapproved_user($data, $what){
3
  $retArray = array( 0 => '', 1 => '');
4
  $retMessage = '';
65
  $messageNo = '1';
66
 
67
  //verify e-mail validity
68
+ $query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_email= %s", $postedData ) );
69
  $requestedUserID = $query[0]->ID;
70
  $requestedUserLogin = $query[0]->user_login;
71
  $requestedUserEmail = $query[0]->user_email;
72
 
73
  //send primary email message
74
+ $recoverPasswordFilterArray['userMailMessage1'] = sprintf(__('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profilebuilder'), $requestedUserLogin, '<a href="'.add_query_arg( array( 'loginName' => $user_login, 'key' => $key ), wppb_curpageurl() ).'">'.add_query_arg( array( 'loginName' => $user_login, 'key' => $key ), wppb_curpageurl() ).'</a>');
75
  $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
76
 
77
  $recoverPasswordFilterArray['userMailMessageTitle1'] = sprintf(__('Password Reset Feature from "%1$s"', 'profilebuilder'), $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES));
105
  $message = $retVal[0];
106
  $messageNo = $retVal [1];
107
 
108
+ }else{
109
  $recoverPasswordFilterArray['sentMessage3'] = sprintf(__('A password reset email has been sent to %1$s.<br/>Following the link sent in the email address will reset the password.', 'profilebuilder'), $postedData);
110
  $recoverPasswordFilterArray['sentMessage3'] = apply_filters('wppb_recover_password_sent_message3', $recoverPasswordFilterArray['sentMessage3']);
111
  $messageNo = '3';
112
  $message = $recoverPasswordFilterArray['sentMessage3'];
113
 
114
  //verify username validity
115
+ $query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_login= %s", $postedData ) );
116
  $requestedUserID = $query[0]->ID;
117
  $requestedUserLogin = $query[0]->user_login;
118
  $requestedUserEmail = $query[0]->user_email;
119
+
120
+ //search if there is already an activation key present, if not create one
121
+ $key = $wpdb->get_var( $wpdb->prepare( "SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $requestedUserLogin ) );
122
+ if ( empty($key) ) {
123
+
124
+ // Generate something random for a key...
125
+ $key = wp_generate_password( 20, false );
126
+ do_action('wppb_retrieve_password_key', $requestedUserLogin, $key);
127
+
128
+ // Now insert the new md5 key into the db
129
+ $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $requestedUserLogin));
130
+ }
131
 
132
  //send primary email message
133
+ $recoverPasswordFilterArray['userMailMessage1'] = sprintf(__('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profilebuilder'), $requestedUserLogin, '<a href="'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'">'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'</a>');
134
  $recoverPasswordFilterArray['userMailMessage1'] = apply_filters('wppb_recover_password_message_content_sent_to_user1', $recoverPasswordFilterArray['userMailMessage1'], $requestedUserID, $requestedUserLogin);
135
 
136
  $recoverPasswordFilterArray['userMailMessageTitle1'] = sprintf(__('Password Reset Feature from "%1$s"', 'profilebuilder'), $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES));
237
  $recoverPasswordFilterArray['passwordChangedMessage2'] = apply_filters ('wppb_recover_password_password_changed_message2', $recoverPasswordFilterArray['passwordChangedMessage2'], $message2);
238
  echo $recoverPasswordFilterArray['passwordChangedMessage2'];
239
  ?>
240
+ <form enctype="multipart/form-data" method="post" id="recover_password2" class="user-forms" action="<?php echo add_query_arg( 'finalAction', 'yes', wppb_curpageurl() ); ?>">
241
  <?php
242
  $recoverPasswordFilterArray['inputPassword'] = '
243
  <p class="passw1">
253
  echo $recoverPasswordFilterArray['inputPassword'];
254
  ?>
255
  <p class="form-submit">
256
+ <?php $button_name = __('Reset Password', 'profilebuilder'); ?>
257
+ <input name="recover_password2" type="submit" id="recover_password2" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
258
  <input name="action2" type="hidden" id="action2" value="recover_password2" />
259
  </p><!-- .form-submit -->
260
  <?php wp_nonce_field('verify_true_password_recovery2', 'password_recovery_nonce_field2'); ?>
268
 
269
  }else{
270
  ?>
271
+ <form enctype="multipart/form-data" method="post" id="recover_password2" class="user-forms" action="<?php echo add_query_arg( 'finalAction', 'yes', wppb_curpageurl() ); ?>">
272
  <?php
273
  $recoverPasswordFilterArray['inputPassword'] = '
274
  <p class="passw1">
284
  echo $recoverPasswordFilterArray['inputPassword'];
285
  ?>
286
  <p class="form-submit">
287
+ <?php $button_name = __('Reset Password', 'profilebuilder'); ?>
288
+ <input name="recover_password2" type="submit" id="recover_password2" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name2', $button_name); ?>" />
289
  <input name="action2" type="hidden" id="action2" value="recover_password2" />
290
  </p><!-- .form-submit -->
291
  <?php wp_nonce_field('verify_true_password_recovery2', 'password_recovery_nonce_field2'); ?>
315
  $recoverPasswordFilterArray['messageDisplay1'] = apply_filters('wppb_recover_password_displayed_message1', $recoverPasswordFilterArray['messageDisplay1']);
316
  echo $recoverPasswordFilterArray['messageDisplay1'];
317
 
318
+ echo '<form enctype="multipart/form-data" method="post" id="recover_password" class="user-forms" action="'.add_query_arg( 'submitted', 'yes', wppb_curpageurl() ).'">';
319
 
320
  $recoverPasswordFilterArray['notification'] = __('Please enter your username or email address.', 'profilebuilder').'<br/>'.__('You will receive a link to create a new password via email.', 'profilebuilder').'<br/><br/>';
321
  echo $recoverPasswordFilterArray['notification'] = apply_filters('wppb_recover_password_message1', $recoverPasswordFilterArray['notification']);
334
 
335
  ?>
336
  <p class="form-submit">
337
+ <?php $button_name = __('Get New Password', 'profilebuilder'); ?>
338
+ <input name="recover_password" type="submit" id="recover_password" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name3', $button_name); ?>" />
339
  <input name="action" type="hidden" id="action" value="recover_password" />
340
  </p><!-- .form-submit -->
341
  <?php wp_nonce_field('verify_true_password_recovery', 'password_recovery_nonce_field'); ?>
front-end/wppb.register.php CHANGED
@@ -1,52 +1,46 @@
1
  <?php
2
- /* Hook to change auto generated password */
3
- add_filter('random_password', 'signup_password_random_password_filter');
4
  /**
5
  * Function that changes the auto generated password with the one selected by the user.
6
  */
7
- function signup_password_random_password_filter($password) {
8
  global $wpdb;
9
 
10
- if ( ! empty($_GET['key']) ) {
11
- $key = $_GET['key'];
12
- } else {
13
- $key = $_POST['key'];
14
- }
15
- if ( !empty($_POST['user_pass']) ) {
16
  $password = $_POST['user_pass'];
17
- } else if ( !empty( $key ) ) {
18
-
19
- if ( is_multisite() )
20
- $signup = $wpdb->get_row("SELECT * FROM " . $wpdb->signups . " WHERE activation_key = '" . $key . "'");
21
- else
22
- $signup = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "signups WHERE activation_key = '" . $key . "'");
23
 
24
- if ( empty($signup) || $signup->active ) {
 
 
 
25
  //bad key or already active
26
  } else {
27
  //check for password in signup meta
28
- $meta = unserialize($signup->meta);
29
 
30
  $password = $meta['user_pass'];
31
  }
32
  }
33
  return $password;
34
  }
 
35
 
36
  function wppb_generate_random_username($sentEmail){
37
  $email = '';
38
 
39
- for($i=0;$i<strlen($sentEmail);$i++){
40
- if ($sentEmail[$i] == '@')
41
  break;
42
  else
43
  $email .= $sentEmail[$i];
44
  }
45
 
46
- $username = 'pb_user_'.$email.mktime(date("H"), date("i"), date("s"), date("n"), date("j"), date("Y"));
47
 
48
  while (username_exists($username)){
49
- $username = 'pb_user_'.$email.mktime(date("H"), date("i"), date("s"), date("n"), date("j"), date("Y"));
50
  }
51
 
52
  return $username;
@@ -70,7 +64,6 @@ function wppb_add_custom_field_values($POST, $meta){
70
  }
71
  case "checkbox":{
72
  $checkboxOption = '';
73
- $value['item_options'] = wppb_icl_t('plugin profile-builder-pro', 'custom_field_'.$id.'_options_translation', $value['item_options']);
74
  $checkboxValue = explode(',', $value['item_options']);
75
  foreach($checkboxValue as $thisValue){
76
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
@@ -107,33 +100,26 @@ function wppb_add_custom_field_values($POST, $meta){
107
  $meta[$value['item_type'].$value['id']] = apply_filters('wppb_register_wpmu_textarea', esc_attr($POST[$value['item_type'].$value['id']]));
108
  break;
109
  }
110
- case "upload":{
111
- $uploadedfile = $value['item_type'].$value['id'];
112
 
113
  //first we need to verify if we don't try to upload a 0b or 0 length file
114
- if ( (basename( $_FILES[$uploadedfile]['name']) != '')){
115
 
116
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
117
- if (($_FILES[$uploadedfile]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploadedfile]['size'] !=0)){
118
- //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
119
- $fileName = basename( $_FILES[$uploadedfile]['name']);
120
- $finalFileName = '';
121
 
122
- for ($i=0; $i < strlen($fileName); $i++){
123
- if ($fileName[$i] == "'")
124
- $finalFileName .= '`';
125
- else $finalFileName .= $fileName[$i];
126
- }
127
-
128
  //create the target path for uploading
129
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
130
- $target_path = $wpUploadPath['basedir']."/profile_builder/attachments/";
131
- $target_path = $target_path . 'wpmuRandomID_'.$randomUserNumber.'_attachment_'. $finalFileName;
132
 
133
- if (move_uploaded_file($_FILES[$uploadedfile]['tmp_name'], $target_path)){
134
- $upFile = 'wpmuRandomID_'.$randomUserNumber.'_attachment_'. $finalFileName;
135
- $meta[$value['item_type'].$value['id']] = apply_filters('wppb_register_wpmu_upload', $upFile);
136
- $meta[$value['item_type'].$value['id'].'_radomUserNumber'] = apply_filters('wppb_register_wpmu_upload_random_user_number', $randomUserNumber);
137
  $pictureUpload = 'yes';
138
  }
139
  }
@@ -141,59 +127,36 @@ function wppb_add_custom_field_values($POST, $meta){
141
  break;
142
  }
143
  case "avatar":{
144
- $uploadedfile = $value['item_type'].$value['id'];
145
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
146
- $target_path_original = $wpUploadPath['basedir']."/profile_builder/avatars/";
147
- $fileName = $_FILES[$uploadedfile]['name'];
148
- $finalFileName = '';
149
-
150
- for ($i=0; $i < strlen($fileName); $i++){
151
- if ($fileName[$i] == "'")
152
- $finalFileName .= '`';
153
- elseif ($fileName[$i] == ' ')
154
- $finalFileName .= '_';
155
- else $finalFileName .= $fileName[$i];
156
- }
157
-
158
- $fileName = $finalFileName;
159
-
160
- $target_path = $target_path_original . 'wpmuRandomID_'.$randomUserNumber.'_originalAvatar_'. $fileName;
161
-
162
- /* when trying to upload file, be sure it's one of the accepted image file-types */
163
- if ( (($_FILES[$uploadedfile]['type'] == 'image/jpeg') || ($_FILES[$uploadedfile]['type'] == 'image/jpg') || ($_FILES[$uploadedfile]['type'] == 'image/png') || ($_FILES[$uploadedfile]['type'] == 'image/bmp') || ($_FILES[$uploadedfile]['type'] == 'image/pjpeg') || ($_FILES[$uploadedfile]['type'] == 'image/x-png')) && (($_FILES[$uploadedfile]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploadedfile]['size'] !=0)) ){
164
- $wp_filetype = wp_check_filetype(basename( $_FILES[$uploadedfile]['name']), null );
165
- $attachment = array('post_mime_type' => $wp_filetype['type'],
166
- 'post_title' => $fileName, //preg_replace('/\.[^.]+$/', '', basename($_FILES[$uploadedfile]['name'])),
167
- 'post_content' => '',
168
- 'post_status' => 'inherit'
169
- );
170
 
171
-
172
- $attach_id = wp_insert_attachment( $attachment, $target_path);
173
-
174
- $upFile = image_downsize( $attach_id, 'thumbnail' );
175
- $upFile = $upFile[0];
 
176
 
177
- //if file upload succeded
178
- if (move_uploaded_file($_FILES[$uploadedfile]['tmp_name'], $target_path)){
179
- $meta[$value['item_type'].$value['id']] = apply_filters('wppb_register_wpmu_avatar', $upFile);
180
- $meta[$value['item_type'].$value['id'].'_radomUserNumber'] = apply_filters('wppb_register_wpmu_avatar_random_user_number', $randomUserNumber);
181
- //will need to call the wppb_resize_avatar once email has been verified
182
- $avatarUpload = 'yes';
 
 
 
 
 
 
183
  }
184
- else $avatarUpload = 'no';
185
  }
186
- if (($_FILES[$uploadedfile]['type'] == ''))
187
- $avatarUpload = 'yes';
188
-
189
  break;
190
  }
191
  }
192
  }
193
  }
194
-
195
  return $meta;
196
-
197
  }
198
 
199
  /**
@@ -203,16 +166,13 @@ function wppb_add_custom_field_values($POST, $meta){
203
  * @param string $key The activation key provided to the user.
204
  * @return array An array containing information about the activated user and/or blog
205
  */
206
- function wppb_activate_signup($key) {
207
  global $wpdb;
208
  $bloginfo = get_bloginfo( 'name' );
209
  $wppb_generalSettings = get_option('wppb_general_settings');
210
 
211
- if ( is_multisite() )
212
- $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->signups WHERE activation_key = %s", $key) );
213
- else
214
- $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE activation_key = %s", $key) );
215
-
216
  if ( empty( $signup ) )
217
  return $activateUserErrorMessage1 = apply_filters('wppb_register_activate_user_error_message1', '<p class="error">'. __('Invalid activation key!', 'profilebuilder') .'</p>');
218
 
@@ -220,12 +180,11 @@ function wppb_activate_signup($key) {
220
  if ( empty( $signup->domain ) )
221
  return $activateUserErrorMessage2 = apply_filters('wppb_register_activate_user_error_message2', '<p class="error">'. __('The user is already active!', 'profilebuilder') .'</p>');
222
 
223
- $meta = unserialize($signup->meta);
224
- if (isset($wppb_generalSettings['loginWith']) && ($wppb_generalSettings['loginWith'] == 'email'))
225
- $user_login = $wpdb->escape($signup->user_email);
226
- else
227
- $user_login = $wpdb->escape($signup->user_login);
228
- $user_email = $wpdb->escape($signup->user_email);
229
  $password = base64_decode($meta['user_pass']);
230
 
231
  $user_id = username_exists($user_login);
@@ -249,8 +208,6 @@ function wppb_activate_signup($key) {
249
  else
250
  $retVal = $wpdb->update( $wpdb->prefix.'signups', array('active' => 1, 'activated' => $now), array('activation_key' => $key) );
251
 
252
-
253
-
254
  wppb_add_meta_to_user_on_activation($user_id, '', $meta);
255
 
256
  // if admin approval is activated, then block the user untill he gets approved
@@ -335,7 +292,7 @@ function wppb_front_end_register($atts){
335
  /* preset the values in case some are not submitted */
336
  $user_pass = '';
337
  if (isset($_POST['passw1']))
338
- $user_pass = esc_attr( $_POST['passw1'] );
339
  $email = '';
340
  if (isset($_POST['email']))
341
  $email = trim ($_POST['email']);
@@ -489,7 +446,6 @@ function wppb_front_end_register($atts){
489
  }
490
  case "checkbox":{
491
  $checkboxOption = '';
492
- $value['item_options'] = wppb_icl_t('plugin profile-builder-pro', 'custom_field_'.$id.'_options_translation', $value['item_options']);
493
  $checkboxValue = explode(',', $value['item_options']);
494
  foreach($checkboxValue as $thisValue){
495
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
@@ -597,14 +553,18 @@ function wppb_front_end_register($atts){
597
  break;
598
  }
599
  case "avatar":{
600
- $uploadedfile = $value['item_type'].$value['id'];
601
-
602
- if ( (basename( $_FILES[$uploadedfile]['name']) == '')){
603
- if (($_FILES[$uploadedfile]['type'] != 'image/jpeg') || ($_FILES[$uploadedfile]['type'] != 'image/jpg') || ($_FILES[$uploadedfile]['type'] != 'image/png') || ($_FILES[$uploadedfile]['type'] != 'image/bmp') || ($_FILES[$uploadedfile]['type'] != 'image/pjpeg') || ($_FILES[$uploadedfile]['type'] != 'image/x-png'))
604
- if (isset($value['item_required'])){
605
- if ($value['item_required'] == 'yes')
606
- array_push($extraFieldsErrorHolder, $value['id']);
 
 
607
  }
 
 
608
  }
609
  break;
610
  }
@@ -655,6 +615,8 @@ function wppb_front_end_register($atts){
655
  }
656
  elseif ( $agreed == false )
657
  $error = __('You must agree to the terms and conditions before registering!', 'profilebuilder');
 
 
658
  elseif(($firstnameComplete == 'no' || $lastnameComplete == 'no' || $nicknameComplete == 'no' || $websiteComplete == 'no' || $aimComplete == 'no' || $yahooComplete == 'no' || $jabberComplete == 'no' || $bioComplete == 'no' ) || !empty($extraFieldsErrorHolder))
659
  $error = __('The account was NOT created!', 'profilebuilder') .'<br/>'. __('(Several required fields were left uncompleted)', 'profilebuilder');
660
  else{
@@ -668,9 +630,9 @@ function wppb_front_end_register($atts){
668
  $foundError = false;
669
 
670
  if ( is_multisite() )
671
- $userSignup = $wpdb->get_results("SELECT * FROM $wpdb->signups WHERE user_login='".$userdata['user_login']."' OR user_email='".$userdata['user_email']."'");
672
  else
673
- $userSignup = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."signups WHERE user_login='".$userdata['user_login']."' OR user_email='".$userdata['user_email']."'");
674
 
675
  if (trim($userSignup[0]->user_login) == $userdata['user_login']){
676
  $foundError = true;
@@ -728,8 +690,7 @@ function wppb_front_end_register($atts){
728
  }
729
  case "checkbox":{
730
  $checkboxOption = '';
731
- $value['item_options'] = wppb_icl_t('plugin profile-builder-pro', 'custom_field_'.$id.'_options_translation', $value['item_options']);
732
- $checkboxValue = explode(',', $value['item_options']);
733
  foreach($checkboxValue as $thisValue){
734
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
735
  if (isset($_POST[$thisValue.$value['id']])){
@@ -766,31 +727,24 @@ function wppb_front_end_register($atts){
766
  break;
767
  }
768
  case "upload":{
769
- $uploadedfile = $value['item_type'].$value['id'];
770
 
771
  //first we need to verify if we don't try to upload a 0b or 0 length file
772
- if ( (basename( $_FILES[$uploadedfile]['name']) != '')){
773
 
774
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
775
- if (($_FILES[$uploadedfile]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploadedfile]['size'] !=0)){
776
  //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
777
- $fileName = basename( $_FILES[$uploadedfile]['name']);
778
- $finalFileName = '';
779
 
780
- for ($i=0; $i < strlen($fileName); $i++){
781
- if ($fileName[$i] == "'")
782
- $finalFileName .= '`';
783
- else $finalFileName .= $fileName[$i];
784
- }
785
-
786
  //create the target path for uploading
787
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
788
- $target_path = $wpUploadPath['basedir']."/profile_builder/attachments/";
789
- $target_path = $target_path . 'userID_'.$new_user.'_attachment_'. $finalFileName;
790
 
791
- if (move_uploaded_file($_FILES[$uploadedfile]['tmp_name'], $target_path)){
792
  //$upFile = get_bloginfo('home').'/'.$target_path;
793
- $upFile = $wpUploadPath['baseurl'].'/profile_builder/attachments/userID_'.$new_user.'_attachment_'. $finalFileName;
794
  add_user_meta( $new_user, $value['item_metaName'], $upFile );
795
  $pictureUpload = 'yes';
796
  }
@@ -799,51 +753,47 @@ function wppb_front_end_register($atts){
799
  break;
800
  }
801
  case "avatar":{
 
802
 
803
- $uploadedfile = $value['item_type'].$value['id'];
804
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
805
- $target_path_original = $wpUploadPath['basedir']."/profile_builder/avatars/";
806
- $fileName = $_FILES[$uploadedfile]['name'];
807
- $finalFileName = '';
808
-
809
- for ($i=0; $i < strlen($fileName); $i++){
810
- if ($fileName[$i] == "'")
811
- $finalFileName .= '`';
812
- elseif ($fileName[$i] == ' ')
813
- $finalFileName .= '_';
814
- else $finalFileName .= $fileName[$i];
815
- }
816
-
817
- $fileName = $finalFileName;
818
-
819
- $target_path = $target_path_original . 'userID_'.$new_user.'_originalAvatar_'. $fileName;
820
-
821
- /* when trying to upload file, be sure it's one of the accepted image file-types */
822
- if ( (($_FILES[$uploadedfile]['type'] == 'image/jpeg') || ($_FILES[$uploadedfile]['type'] == 'image/jpg') || ($_FILES[$uploadedfile]['type'] == 'image/png') || ($_FILES[$uploadedfile]['type'] == 'image/bmp') || ($_FILES[$uploadedfile]['type'] == 'image/pjpeg') || ($_FILES[$uploadedfile]['type'] == 'image/x-png')) && (($_FILES[$uploadedfile]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploadedfile]['size'] !=0)) ){
823
- $wp_filetype = wp_check_filetype(basename( $_FILES[$uploadedfile]['name']), null );
824
- $attachment = array('post_mime_type' => $wp_filetype['type'],
825
- 'post_title' => $fileName, //preg_replace('/\.[^.]+$/', '', basename($_FILES[$uploadedfile]['name'])),
826
- 'post_content' => '',
827
- 'post_status' => 'inherit'
828
- );
829
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830
 
831
- $attach_id = wp_insert_attachment( $attachment, $target_path);
832
-
833
- $upFile = image_downsize( $attach_id, 'thumbnail' );
834
- $upFile = $upFile[0];
835
 
836
- //if file upload succeded
837
- if (move_uploaded_file($_FILES[$uploadedfile]['tmp_name'], $target_path)){
838
- add_user_meta( $new_user, $value['item_metaName'], $upFile );
839
- wppb_resize_avatar($new_user);
840
- $avatarUpload = 'yes';
 
 
 
841
  }
842
- else $avatarUpload = 'no';
843
- }
844
- if (($_FILES[$uploadedfile]['type'] == ''))
845
  $avatarUpload = 'yes';
846
-
847
  break;
848
  }
849
  }
@@ -898,8 +848,7 @@ function wppb_front_end_register($atts){
898
 
899
  ?>
900
  <div class="wppb_holder" id="wppb_register">
901
- <?php
902
-
903
  if ( is_user_logged_in() && !current_user_can( 'create_users' ) ) :
904
 
905
  global $user_ID;
@@ -1022,7 +971,7 @@ function wppb_front_end_register($atts){
1022
  /* use this action hook to add extra content before the register form. */
1023
  do_action( 'wppb_before_register_fields' );
1024
  ?>
1025
- <form enctype="multipart/form-data" method="post" id="adduser" class="user-forms" action="http://<?php echo $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>">
1026
  <?php
1027
  echo '<input type="hidden" name="MAX_FILE_SIZE" value="'.WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE.'" /><!-- set the MAX_FILE_SIZE to the server\'s current max upload size in bytes -->';
1028
 
@@ -1036,7 +985,7 @@ function wppb_front_end_register($atts){
1036
  $errorMark = '<font color="red" title="This field is required for registration.">*</font>';
1037
  if (isset($_POST['user_name'])){
1038
  if (trim($_POST['user_name']) == ''){
1039
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1040
  $errorVar = ' errorHolder';
1041
  }
1042
  }
@@ -1050,7 +999,7 @@ function wppb_front_end_register($atts){
1050
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1051
  if (isset($_POST['email'])){
1052
  if ( (trim($_POST['email']) == '') || (!is_email(trim($_POST['email']))) ){
1053
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="This field is required for registration."/>';
1054
  $errorVar = ' errorHolder';
1055
  }
1056
  }
@@ -1087,7 +1036,7 @@ function wppb_front_end_register($atts){
1087
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1088
  if (isset($_POST['first_name'])){
1089
  if (trim($_POST['first_name']) == ''){
1090
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1091
  $errorVar = ' errorHolder';
1092
  }
1093
  }
@@ -1111,7 +1060,7 @@ function wppb_front_end_register($atts){
1111
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1112
  if (isset($_POST['last_name'])){
1113
  if (trim($_POST['last_name']) == ''){
1114
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1115
  $errorVar = ' errorHolder';
1116
  }
1117
  }
@@ -1135,7 +1084,7 @@ function wppb_front_end_register($atts){
1135
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1136
  if (isset($_POST['nickname'])){
1137
  if (trim($_POST['nickname']) == ''){
1138
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1139
  $errorVar = ' errorHolder';
1140
  }
1141
  }
@@ -1164,7 +1113,7 @@ function wppb_front_end_register($atts){
1164
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1165
  if (isset($_POST['email'])){
1166
  if ( (trim($_POST['email']) == '') || (!is_email(trim($_POST['email']))) ){
1167
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="This field is required for registration."/>';
1168
  $errorVar = ' errorHolder';
1169
  }
1170
  }
@@ -1189,7 +1138,7 @@ function wppb_front_end_register($atts){
1189
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1190
  if (isset($_POST['website'])){
1191
  if (trim($_POST['website']) == ''){
1192
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1193
  $errorVar = ' errorHolder';
1194
  }
1195
  }
@@ -1213,7 +1162,7 @@ function wppb_front_end_register($atts){
1213
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1214
  if (isset($_POST['aim'])){
1215
  if (trim($_POST['aim']) == ''){
1216
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1217
  $errorVar = ' errorHolder';
1218
  }
1219
  }
@@ -1237,7 +1186,7 @@ function wppb_front_end_register($atts){
1237
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1238
  if (isset($_POST['yim'])){
1239
  if (trim($_POST['yim']) == ''){
1240
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1241
  $errorVar = ' errorHolder';
1242
  }
1243
  }
@@ -1261,7 +1210,7 @@ function wppb_front_end_register($atts){
1261
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1262
  if (isset($_POST['jabber'])){
1263
  if (trim($_POST['jabber']) == ''){
1264
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1265
  $errorVar = ' errorHolder';
1266
  }
1267
  }
@@ -1288,7 +1237,7 @@ function wppb_front_end_register($atts){
1288
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1289
  if (isset($_POST['description'])){
1290
  if (trim($_POST['description']) == ''){
1291
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1292
  $errorVar = ' errorHolder';
1293
  }
1294
  }
@@ -1315,12 +1264,12 @@ function wppb_front_end_register($atts){
1315
  $errorMark2 = '<font color="red" title="This field is required for registration.">*</font>';
1316
  if (isset ($_POST['passw1']))
1317
  if (trim($_POST['passw1']) == ''){
1318
- $errorMark = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="This field is required for registration."/>';
1319
  $errorVar = ' errorHolder';
1320
  }
1321
  if (isset ($_POST['passw2']))
1322
  if (trim($_POST['passw2']) == ''){
1323
- $errorMark2 = '<img src="'.WPPB_PLUGIN_URL . '/assets/images/pencil_delete.png" title="This field is required for registration."/>';
1324
  $errorVar2 = ' errorHolder';
1325
  }
1326
  }
@@ -1350,7 +1299,7 @@ function wppb_front_end_register($atts){
1350
 
1351
  //register_user_extra_fields($error, $_POST, $extraFieldsErrorHolder);
1352
  $page = 'register';
1353
- $returnedValue = wppb_extra_fields($current_user->id, $extraFieldsErrorHolder, $registerFilterArray, $page, $error, $_POST);
1354
 
1355
  //copy over extra fields to the rest of the fieldso on the edit profile
1356
  foreach($returnedValue as $key => $value)
@@ -1359,7 +1308,7 @@ function wppb_front_end_register($atts){
1359
 
1360
  if(function_exists('wppb_add_recaptcha_to_registration_form')){
1361
  $wppb_addon_settings = get_option('wppb_addon_settings');
1362
- if ($wppb_addon_settings['wppb_reCaptcha'] == 'show'){
1363
  $reCAPTCHAForm = wppb_add_recaptcha_to_registration_form();
1364
  $labelName = apply_filters('wppb_register_anti_spam_title', __('Anti-Spam', 'profilebuilder'));
1365
  $registerFilterArray2['reCAPTCHAForm'] = '<div class="form-reCAPTCHA"><label class="form-reCAPTCHA-label" for="'.$labelName.'">'.$labelName.'</label>'.$reCAPTCHAForm.'</div><!-- .form-reCAPTCHA -->';
@@ -1396,7 +1345,13 @@ function wppb_front_end_register($atts){
1396
  ?>
1397
 
1398
  <p class="form-submit">
1399
- <input name="adduser" type="submit" id="addusersub" class="submit button" value="<?php if ( current_user_can( 'create_users' ) ) _e('Add User', 'profilebuilder'); else _e('Register', 'profilebuilder'); ?>" />
 
 
 
 
 
 
1400
  <input name="action" type="hidden" id="action" value="adduser" />
1401
  <input type="hidden" name="formName" value="register" />
1402
  </p><!-- .form-submit -->
@@ -1423,15 +1378,10 @@ function wppb_front_end_register($atts){
1423
 
1424
 
1425
 
1426
- // function to choose whether to display the registration page or the key-validating function
1427
  function wppb_front_end_register_handler($atts){
1428
 
1429
- if (isset($_GET['key'])){
1430
- $res = wppb_activate_signup ($_GET['key']);
1431
- }else
1432
- $res = wppb_front_end_register($atts);
1433
-
1434
- return $res;
1435
  }
1436
 
1437
  ?>
1
  <?php
2
+
 
3
  /**
4
  * Function that changes the auto generated password with the one selected by the user.
5
  */
6
+ function signup_password_random_password_filter( $password ) {
7
  global $wpdb;
8
 
9
+ $key = ( !empty( $_GET['key'] ) ? $_GET['key'] : $_POST['key'] );
10
+
11
+ if ( !empty($_POST['user_pass']) )
 
 
 
12
  $password = $_POST['user_pass'];
 
 
 
 
 
 
13
 
14
+ elseif ( !empty( $key ) ) {
15
+ $signup = ( is_multisite() ? $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->signups . " WHERE activation_key = %s", $key ) ) : $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "signups WHERE activation_key = %s", $key ) ) );
16
+
17
+ if ( empty( $signup ) || $signup->active ) {
18
  //bad key or already active
19
  } else {
20
  //check for password in signup meta
21
+ $meta = unserialize( $signup->meta );
22
 
23
  $password = $meta['user_pass'];
24
  }
25
  }
26
  return $password;
27
  }
28
+ add_filter('random_password', 'signup_password_random_password_filter');
29
 
30
  function wppb_generate_random_username($sentEmail){
31
  $email = '';
32
 
33
+ for($i=0; $i<strlen($sentEmail); $i++){
34
+ if (($sentEmail[$i] === '@') || ($sentEmail[$i] === '_') || ($sentEmail[$i] === '-') || ($sentEmail[$i] === '.'))
35
  break;
36
  else
37
  $email .= $sentEmail[$i];
38
  }
39
 
40
+ $username = 'pbUser'.$email.mktime(date("H"), date("i"), date("s"), date("n"), date("j"), date("Y"));
41
 
42
  while (username_exists($username)){
43
+ $username = 'pbUser'.$email.mktime(date("H"), date("i"), date("s"), date("n"), date("j"), date("Y"));
44
  }
45
 
46
  return $username;
64
  }
65
  case "checkbox":{
66
  $checkboxOption = '';
 
67
  $checkboxValue = explode(',', $value['item_options']);
68
  foreach($checkboxValue as $thisValue){
69
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
100
  $meta[$value['item_type'].$value['id']] = apply_filters('wppb_register_wpmu_textarea', esc_attr($POST[$value['item_type'].$value['id']]));
101
  break;
102
  }
103
+ case "upload":{
104
+ $uploaded_file = $value['item_type'].$value['id'];
105
 
106
  //first we need to verify if we don't try to upload a 0b or 0 length file
107
+ if ( ( basename( $_FILES[$uploaded_file]['name'] ) != '' ) ){
108
 
109
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
110
+ if ( ( $_FILES[$uploaded_file]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE ) && ( $_FILES[$uploaded_file]['size'] !=0 ) ){
111
+ //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
112
+ $safe_filename = preg_replace( array( "/\s+/", "/[^-\.\w]+/" ), array( "_", "" ), trim( $_FILES[$uploaded_file]['name'] ) );
 
113
 
 
 
 
 
 
 
114
  //create the target path for uploading
115
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
116
+ $target_path = $wp_upload_array['basedir']."/profile_builder/attachments/";
117
+ $target_path = $target_path . 'wpmuRandomID_' . $randomUserNumber . '_attachment_' . $safe_filename;
118
 
119
+ if ( move_uploaded_file( $_FILES[$uploaded_file]['tmp_name'], $target_path ) ){
120
+ $upFile = $wp_upload_array['baseurl'].'/profile_builder/attachments/wpmuRandomID_'.$randomUserNumber.'_attachment_'. $safe_filename;
121
+ $meta[$value['item_type'].$value['id']] = apply_filters( 'wppb_register_wpmu_upload', $upFile );
122
+ $meta[$value['item_type'].$value['id'].'_radomUserNumber'] = apply_filters( 'wppb_register_wpmu_upload_random_user_number', $randomUserNumber );
123
  $pictureUpload = 'yes';
124
  }
125
  }
127
  break;
128
  }
129
  case "avatar":{
130
+ $avatarUpload = 'no';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
+ $uploaded_file = $value['item_type'].$value['id'];
133
+ // If we have a file then: sanatize file name, remove extra spaces/convert to _, remove non 0-9a-Z._- characters, remove leading/trailing spaces check if under allowed upload size, check file extension for legal file types
134
+ if ( is_uploaded_file( $_FILES[$uploaded_file]['tmp_name'] ) ){
135
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
136
+ $safe_filename = preg_replace( array( "/\s+/", "/[^-\.\w]+/" ), array( "_", "" ), trim( $_FILES[$uploaded_file]['name'] ) );
137
+ $target_path = $wp_upload_array['basedir'].'/profile_builder/avatars/wpmuRandomID_'.$randomUserNumber.'_originalAvatar_'. $safe_filename;
138
 
139
+ $allowed_filetypes = "/^\.(jpg|jpeg|gif|png){1}$/i"; //"/^\.(jpg|jpeg|gif|png|doc|docx|txt|rtf|pdf|xls|xlsx|ppt|pptx){1}$/i";
140
+
141
+ if ( $_FILES[$uploaded_file]['size'] <= WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE && preg_match( $allowed_filetypes, strrchr( $safe_filename, '.' ) ) ){
142
+ if ( move_uploaded_file( $_FILES[$uploaded_file]['tmp_name'], $target_path ) ){
143
+ $avatarUpload = 'yes';
144
+
145
+ $meta[$value['item_type'].$value['id']] = apply_filters( 'wppb_register_wpmu_avatar', str_replace( $wp_upload_array['basedir'], $wp_upload_array['baseurl'], $target_path ) );
146
+ $meta[$value['item_type'].$value['id'].'avatar_directory_path'] = apply_filters( 'wppb_register_wpmu_avatar_directory_path', $target_path );
147
+ $meta[$value['item_type'].$value['id'].'_radomUserNumber'] = apply_filters( 'wppb_register_wpmu_avatar_random_user_number', $randomUserNumber );
148
+
149
+ }else
150
+ $avatarUpload = 'no';
151
  }
 
152
  }
 
 
 
153
  break;
154
  }
155
  }
156
  }
157
  }
158
+
159
  return $meta;
 
160
  }
161
 
162
  /**
166
  * @param string $key The activation key provided to the user.
167
  * @return array An array containing information about the activated user and/or blog
168
  */
169
+ function wppb_activate_signup( $key ) {
170
  global $wpdb;
171
  $bloginfo = get_bloginfo( 'name' );
172
  $wppb_generalSettings = get_option('wppb_general_settings');
173
 
174
+ $signup = ( is_multisite() ? $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->signups WHERE activation_key = %s", $key) ) : $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE activation_key = %s", $key) ) );
175
+
 
 
 
176
  if ( empty( $signup ) )
177
  return $activateUserErrorMessage1 = apply_filters('wppb_register_activate_user_error_message1', '<p class="error">'. __('Invalid activation key!', 'profilebuilder') .'</p>');
178
 
180
  if ( empty( $signup->domain ) )
181
  return $activateUserErrorMessage2 = apply_filters('wppb_register_activate_user_error_message2', '<p class="error">'. __('The user is already active!', 'profilebuilder') .'</p>');
182
 
183
+ $meta = unserialize( $signup->meta );
184
+
185
+ $user_login = ( ( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'email' ) ) ? esc_sql( $signup->user_email ) : esc_sql( $signup->user_login ) );
186
+
187
+ $user_email = esc_sql( $signup->user_email );
 
188
  $password = base64_decode($meta['user_pass']);
189
 
190
  $user_id = username_exists($user_login);
208
  else
209
  $retVal = $wpdb->update( $wpdb->prefix.'signups', array('active' => 1, 'activated' => $now), array('activation_key' => $key) );
210
 
 
 
211
  wppb_add_meta_to_user_on_activation($user_id, '', $meta);
212
 
213
  // if admin approval is activated, then block the user untill he gets approved
292
  /* preset the values in case some are not submitted */
293
  $user_pass = '';
294
  if (isset($_POST['passw1']))
295
+ $user_pass = $_POST['passw1'];
296
  $email = '';
297
  if (isset($_POST['email']))
298
  $email = trim ($_POST['email']);
446
  }
447
  case "checkbox":{
448
  $checkboxOption = '';
 
449
  $checkboxValue = explode(',', $value['item_options']);
450
  foreach($checkboxValue as $thisValue){
451
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
553
  break;
554
  }
555
  case "avatar":{
556
+ if (isset($value['item_required'])){
557
+ if ($value['item_required'] == 'yes'){
558
+ $uploadedfile = $value['item_type'].$value['id'];
559
+
560
+ if (basename( $_FILES[$uploadedfile]['name']) == ''){
561
+ array_push($extraFieldsErrorHolder, $value['id']);
562
+ }elseif ($_FILES[$uploadedfile]['type'] == 'image/bmp'){
563
+ array_push($extraFieldsErrorHolder, $value['id']);
564
+ $failReason = apply_filters('wppb_avatar_upload_bad_filetype_register', __('The following image extensions are NOT supported: bmp', 'profilebuilder'));
565
  }
566
+
567
+ }
568
  }
569
  break;
570
  }
615
  }
616
  elseif ( $agreed == false )
617
  $error = __('You must agree to the terms and conditions before registering!', 'profilebuilder');
618
+ elseif(isset($failReason))
619
+ $error = __('The account was NOT created!', 'profilebuilder') .'<br/>'. $failReason;
620
  elseif(($firstnameComplete == 'no' || $lastnameComplete == 'no' || $nicknameComplete == 'no' || $websiteComplete == 'no' || $aimComplete == 'no' || $yahooComplete == 'no' || $jabberComplete == 'no' || $bioComplete == 'no' ) || !empty($extraFieldsErrorHolder))
621
  $error = __('The account was NOT created!', 'profilebuilder') .'<br/>'. __('(Several required fields were left uncompleted)', 'profilebuilder');
622
  else{
630
  $foundError = false;
631
 
632
  if ( is_multisite() )
633
+ $userSignup = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->signups WHERE user_login = %s OR user_email= %s", $userdata['user_login'], $userdata['user_email'] ) );
634
  else
635
+ $userSignup = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM ".$wpdb->prefix."signups WHERE user_login = %s OR user_email= %s", $userdata['user_login'], $userdata['user_email'] ) );
636
 
637
  if (trim($userSignup[0]->user_login) == $userdata['user_login']){
638
  $foundError = true;
690
  }
691
  case "checkbox":{
692
  $checkboxOption = '';
693
+ $checkboxValue = explode(',', $value['item_options']);
 
694
  foreach($checkboxValue as $thisValue){
695
  $thisValue = str_replace(' ', '#@space@#', $thisValue); //we need to escape the space-codification we sent earlier in the post
696
  if (isset($_POST[$thisValue.$value['id']])){
727
  break;
728
  }
729
  case "upload":{
730
+ $uploaded_file = $value['item_type'].$value['id'];
731
 
732
  //first we need to verify if we don't try to upload a 0b or 0 length file
733
+ if ( (basename( $_FILES[$uploaded_file]['name']) != '')){
734
 
735
  //second we need to verify if the uploaded file size is less then the set file size in php.ini
736
+ if (($_FILES[$uploaded_file]['size'] < WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE) && ($_FILES[$uploaded_file]['size'] !=0)){
737
  //we need to prepare the basename of the file, so that ' becomes ` as ' gives an error
738
+ $safe_filename = preg_replace( array( "/\s+/", "/[^-\.\w]+/" ), array( "_", "" ), trim( $_FILES[$uploaded_file]['name'] ) );
 
739
 
 
 
 
 
 
 
740
  //create the target path for uploading
741
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
742
+ $target_path = $wp_upload_array['basedir']."/profile_builder/attachments/";
743
+ $target_path = $target_path . 'userID_'.$new_user.'_attachment_'. $safe_filename;
744
 
745
+ if (move_uploaded_file($_FILES[$uploaded_file]['tmp_name'], $target_path)){
746
  //$upFile = get_bloginfo('home').'/'.$target_path;
747
+ $upFile = $wp_upload_array['baseurl'].'/profile_builder/attachments/userID_'.$new_user.'_attachment_'. $safe_filename;
748
  add_user_meta( $new_user, $value['item_metaName'], $upFile );
749
  $pictureUpload = 'yes';
750
  }
753
  break;
754
  }
755
  case "avatar":{
756
+ $avatarUpload = 'no';
757
 
758
+ $uploaded_file = $value['item_type'].$value['id'];
759
+ // If we have a file then: sanatize file name, remove extra spaces/convert to _, remove non 0-9a-Z._- characters, remove leading/trailing spaces check if under allowed upload size, check file extension for legal file types
760
+ if ( is_uploaded_file( $_FILES[$uploaded_file]['tmp_name'] ) ){
761
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
762
+ $safe_filename = preg_replace( array( "/\s+/", "/[^-\.\w]+/" ), array( "_", "" ), trim( $_FILES[$uploaded_file]['name'] ) );
763
+ $target_path = $wp_upload_array['basedir'].'/profile_builder/avatars/userID_'.$new_user.'_originalAvatar_'. $safe_filename;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
764
 
765
+ if ( PHP_OS == "WIN32" || PHP_OS == "WINNT" )
766
+ $target_path = str_replace( '\\', '/', $target_path );
767
+
768
+ $allowed_filetypes = "/^\.(jpg|jpeg|gif|png){1}$/i"; //"/^\.(jpg|jpeg|gif|png|doc|docx|txt|rtf|pdf|xls|xlsx|ppt|pptx){1}$/i";
769
+
770
+ if ( $_FILES[$uploaded_file]['size'] <= WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE && preg_match( $allowed_filetypes, strrchr( $safe_filename, '.' ) ) ){
771
+ if ( move_uploaded_file( $_FILES[$uploaded_file]['tmp_name'], $target_path ) ){
772
+ $avatarUpload = 'yes';
773
+
774
+ $wp_filetype = wp_check_filetype(basename( $_FILES[$uploaded_file]['name']), null );
775
+ $attachment = array(
776
+ 'post_mime_type' => $wp_filetype['type'],
777
+ 'post_title' => $safe_filename,
778
+ 'post_content' => '',
779
+ 'post_status' => 'inherit'
780
+ );
781
 
782
+ $attach_id = wp_insert_attachment( $attachment, $target_path );
 
 
 
783
 
784
+ $upFile = image_downsize( $attach_id, 'thumbnail' );
785
+ $upFile = $upFile[0];
786
+
787
+ add_user_meta( $new_user, $value['item_metaName'], $upFile );
788
+ add_user_meta( $new_user, 'avatar_directory_path_'.$value['id'], $target_path );
789
+ add_user_meta( $new_user, 'resized_avatar_'.$value['id'], '' );
790
+ wppb_resize_avatar($new_user);
791
+ }
792
  }
793
+
794
+ }else
 
795
  $avatarUpload = 'yes';
796
+
797
  break;
798
  }
799
  }
848
 
849
  ?>
850
  <div class="wppb_holder" id="wppb_register">
851
+ <?php
 
852
  if ( is_user_logged_in() && !current_user_can( 'create_users' ) ) :
853
 
854
  global $user_ID;
971
  /* use this action hook to add extra content before the register form. */
972
  do_action( 'wppb_before_register_fields' );
973
  ?>
974
+ <form enctype="multipart/form-data" method="post" id="adduser" class="user-forms" action="<?php wppb_curpageurl(); ?>">
975
  <?php
976
  echo '<input type="hidden" name="MAX_FILE_SIZE" value="'.WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE.'" /><!-- set the MAX_FILE_SIZE to the server\'s current max upload size in bytes -->';
977
 
985
  $errorMark = '<font color="red" title="This field is required for registration.">*</font>';
986
  if (isset($_POST['user_name'])){
987
  if (trim($_POST['user_name']) == ''){
988
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
989
  $errorVar = ' errorHolder';
990
  }
991
  }
999
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1000
  if (isset($_POST['email'])){
1001
  if ( (trim($_POST['email']) == '') || (!is_email(trim($_POST['email']))) ){
1002
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="This field is required for registration."/>';
1003
  $errorVar = ' errorHolder';
1004
  }
1005
  }
1036
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1037
  if (isset($_POST['first_name'])){
1038
  if (trim($_POST['first_name']) == ''){
1039
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1040
  $errorVar = ' errorHolder';
1041
  }
1042
  }
1060
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1061
  if (isset($_POST['last_name'])){
1062
  if (trim($_POST['last_name']) == ''){
1063
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1064
  $errorVar = ' errorHolder';
1065
  }
1066
  }
1084
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1085
  if (isset($_POST['nickname'])){
1086
  if (trim($_POST['nickname']) == ''){
1087
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1088
  $errorVar = ' errorHolder';
1089
  }
1090
  }
1113
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1114
  if (isset($_POST['email'])){
1115
  if ( (trim($_POST['email']) == '') || (!is_email(trim($_POST['email']))) ){
1116
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="This field is required for registration."/>';
1117
  $errorVar = ' errorHolder';
1118
  }
1119
  }
1138
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1139
  if (isset($_POST['website'])){
1140
  if (trim($_POST['website']) == ''){
1141
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1142
  $errorVar = ' errorHolder';
1143
  }
1144
  }
1162
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1163
  if (isset($_POST['aim'])){
1164
  if (trim($_POST['aim']) == ''){
1165
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1166
  $errorVar = ' errorHolder';
1167
  }
1168
  }
1186
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1187
  if (isset($_POST['yim'])){
1188
  if (trim($_POST['yim']) == ''){
1189
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1190
  $errorVar = ' errorHolder';
1191
  }
1192
  }
1210
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1211
  if (isset($_POST['jabber'])){
1212
  if (trim($_POST['jabber']) == ''){
1213
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1214
  $errorVar = ' errorHolder';
1215
  }
1216
  }
1237
  $errorMark = '<font color="red" title="'.__('This field is marked as required by the administrator', 'profilebuilder').'">*</font>';
1238
  if (isset($_POST['description'])){
1239
  if (trim($_POST['description']) == ''){
1240
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="'.__('This field must be filled out before registering (It was marked as required by the administrator)', 'profilebuilder').'"/>';
1241
  $errorVar = ' errorHolder';
1242
  }
1243
  }
1264
  $errorMark2 = '<font color="red" title="This field is required for registration.">*</font>';
1265
  if (isset ($_POST['passw1']))
1266
  if (trim($_POST['passw1']) == ''){
1267
+ $errorMark = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="This field is required for registration."/>';
1268
  $errorVar = ' errorHolder';
1269
  }
1270
  if (isset ($_POST['passw2']))
1271
  if (trim($_POST['passw2']) == ''){
1272
+ $errorMark2 = '<img src="'.WPPB_PLUGIN_URL . 'assets/images/pencil_delete.png" title="This field is required for registration."/>';
1273
  $errorVar2 = ' errorHolder';
1274
  }
1275
  }
1299
 
1300
  //register_user_extra_fields($error, $_POST, $extraFieldsErrorHolder);
1301
  $page = 'register';
1302
+ $returnedValue = wppb_extra_fields($current_user->ID, $extraFieldsErrorHolder, $registerFilterArray, $page, $error, $_POST);
1303
 
1304
  //copy over extra fields to the rest of the fieldso on the edit profile
1305
  foreach($returnedValue as $key => $value)
1308
 
1309
  if(function_exists('wppb_add_recaptcha_to_registration_form')){
1310
  $wppb_addon_settings = get_option('wppb_addon_settings');
1311
+ if ( isset( $wppb_addon_settings['wppb_reCaptcha'] ) && ( $wppb_addon_settings['wppb_reCaptcha'] == 'show' ) ){
1312
  $reCAPTCHAForm = wppb_add_recaptcha_to_registration_form();
1313
  $labelName = apply_filters('wppb_register_anti_spam_title', __('Anti-Spam', 'profilebuilder'));
1314
  $registerFilterArray2['reCAPTCHAForm'] = '<div class="form-reCAPTCHA"><label class="form-reCAPTCHA-label" for="'.$labelName.'">'.$labelName.'</label>'.$reCAPTCHAForm.'</div><!-- .form-reCAPTCHA -->';
1345
  ?>
1346
 
1347
  <p class="form-submit">
1348
+ <?php
1349
+ if ( current_user_can( 'create_users' ) )
1350
+ $button_name = __('Add User', 'profilebuilder');
1351
+ else
1352
+ $button_name = __('Register', 'profilebuilder');
1353
+ ?>
1354
+ <input name="adduser" type="submit" id="addusersub" class="submit button" value="<?php echo apply_filters('wppb_register_button_name', $button_name, $current_user); ?>" />
1355
  <input name="action" type="hidden" id="action" value="adduser" />
1356
  <input type="hidden" name="formName" value="register" />
1357
  </p><!-- .form-submit -->
1378
 
1379
 
1380
 
1381
+ // function to choose whether to display the registration page or the validation message
1382
  function wppb_front_end_register_handler($atts){
1383
 
1384
+ return ( isset( $_GET['activation_key'] ) ? wppb_activate_signup ( $_GET['activation_key'] ) : wppb_front_end_register( $atts ) );
 
 
 
 
 
1385
  }
1386
 
1387
  ?>
functions/email.confirmation.php CHANGED
@@ -49,23 +49,22 @@ function wppb_add_pending_users_header_script(){
49
  });
50
  });
51
 
52
- function confirmECActionBulk(URL, message) {
53
- if (confirm(message)) {
54
  window.location=URL;
55
- }
56
  }
57
 
58
  // script to create a confirmation box for the user upon approving/unapproving a user
59
- function confirmECAction(URL, todo, userID, actionText) {
60
- actionText = '<?php _e('Do you want to', 'profilebuilder');?>'+' '+actionText;
61
 
62
  if (confirm(actionText)) {
63
- jQuery.post( ajaxurl , { action:"wppb_handle_email_confirmation_cases", URL:URL, todo:todo, userID:userID}, function(response) {
64
- if (response == 'ok'){
65
  window.location=URL;
66
- }else{
67
- alert(response);
68
- }
69
  });
70
  }
71
  }
@@ -74,16 +73,12 @@ function wppb_add_pending_users_header_script(){
74
  }
75
 
76
  function wppb_get_unconfirmed_email_number(){
77
- global $wpdb;
78
-
79
- $result = mysql_query("SELECT * FROM ".$wpdb->prefix."signups AS t1 WHERE t1.active = 0");
80
- if ($result === false)
81
- $retVal = 0;
82
- else
83
- $retVal = mysql_num_rows($result);
84
 
 
 
85
  header( 'Content-type: application/json' );
86
- die( json_encode( array( 'number' => $retVal ) ) );
87
  }
88
 
89
 
@@ -97,55 +92,54 @@ function wppb_handle_email_confirmation_cases() {
97
  $userID = trim($_POST['userID']);
98
 
99
  if (current_user_can('delete_users'))
100
- if (($todo != '') && ($userID != '')){
101
 
102
  $iterator = 0;
103
- $result = mysql_query("SELECT * FROM ".$wpdb->prefix."signups WHERE active=0");
104
 
105
- if ($todo == 'delete'){
106
- while ($row=mysql_fetch_row($result)){
107
- if ((string)$iterator === $userID){
108
- $result2 = mysql_query("DELETE FROM ".$wpdb->prefix."signups WHERE user_login='".$row[3]."' AND user_email='".$row[4]."'");
109
- if ($result2)
110
- die('ok');
111
- else{
112
- $failed = __("The selected user couldn't be deleted.", "profilebuilder");
113
- die($failed);
114
- }
115
  }
 
116
  $iterator++;
117
  }
118
- }elseif ($todo == 'confirm'){
119
- while ($row=mysql_fetch_row($result)){
120
- if ((string)$iterator === $userID){
121
- $ret = wppb_manual_activate_signup($row[8]);
122
- die($ret);
 
 
 
 
 
 
 
 
 
 
 
 
123
  }
124
  $iterator++;
125
  }
126
  }
127
  }
128
-
129
- $failed = __("You either don't have permission for that action or there was an error!", "profilebuilder");
130
- die($failed);
131
  }
132
 
133
 
134
 
135
  // FUNCTIONS USED BOTH ON THE REGISTRATION PAGE AND THE EMAIL CONFIRMATION TABLE
136
 
137
- //function to add new variables in the address. Checks whether the new variable has to start with a ? or an &
138
- function wppb_passed_arguments_check(){
139
-
140
- $verifyLink = get_permalink();
141
- $questionMarkPosition = strpos ( (string)$verifyLink , '?' );
142
- if ($questionMarkPosition !== FALSE ) //we already have 1 "?"
143
- $passedArgument = '&';
144
- else $passedArgument = '?';
145
-
146
- return $passedArgument;
147
- }
148
-
149
  // Hook to add AP user meta after signup autentification
150
  add_action('wpmu_activate_user','wppb_add_meta_to_user_on_activation',10,3);
151
 
@@ -229,56 +223,45 @@ function wppb_add_meta_to_user_on_activation($user_id, $password, $meta){
229
  }
230
  case "upload":{
231
  if( !empty($meta[$value['item_type'].$value['id']] ) ){
232
- $filename = $meta[$value['item_type'].$value['id']];
233
-
234
- $fileNameStartUpload = strpos ( (string)$filename , '_attachment_' );
235
- $originalUploadFilename = substr($filename, $fileNameStartUpload+12);
236
- $newFileName = 'userID_'.$user_id.'_attachment_'.$originalUploadFilename;
237
-
238
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
239
- $target_path_original = $wpUploadPath['baseurl']."/profile_builder/attachments/";
240
- $fileDir = $wpUploadPath['basedir'].'/profile_builder/attachments/';
241
- $target_path = $target_path_original . 'userID_'.$user_id.'_attachment_'. $originalUploadFilename;
242
-
243
- $renamedVar = rename ($fileDir.$meta[$value['item_type'].$value['id']], $fileDir.$newFileName);
244
 
245
- if ($renamedVar)
246
- add_user_meta( $user_id, $value['item_metaName'], $target_path );
247
  }
248
  break;
249
  }
250
  case "avatar":{
251
  if( !empty($meta[$value['item_type'].$value['id']] ) ){
252
- $filename = $meta[$value['item_type'].$value['id']];
253
-
254
- $fileNameStartAvatar = strpos ( (string)$filename , 'originalAvatar_' );
255
- $originalAvatarFilename = substr($filename, $fileNameStartAvatar+15);
256
- $newFileName = 'userID_'.$user_id.'_originalAvatar_'.$originalAvatarFilename;
257
-
258
- $wpUploadPath = wp_upload_dir(); // Array of key => value pairs
259
- $target_path_original = $wpUploadPath['baseurl']."/profile_builder/avatars/";
260
- $fileDir = $wpUploadPath['basedir'].'/profile_builder/avatars/';
261
- $target_path = $target_path_original . 'userID_'.$user_id.'_originalAvatar_'. $originalAvatarFilename;
262
 
263
- $renamedVar = rename ($fileDir.'wpmuRandomID_'.$meta[$value['item_type'].$value['id'].'_radomUserNumber'].'_originalAvatar_'.$originalAvatarFilename, $fileDir.$newFileName);
 
264
 
265
- if ($renamedVar){
266
- $wp_filetype = wp_check_filetype(basename( $filename ), null );
 
267
  $attachment = array('post_mime_type' => $wp_filetype['type'],
268
- 'post_title' => $filename, //preg_replace('/\.[^.]+$/', '', basename($_FILES[$uploadedfile]['name'])),
269
  'post_content' => '',
270
  'post_status' => 'inherit'
271
  );
272
 
273
-
274
- $attach_id = wp_insert_attachment( $attachment, $target_path);
275
 
276
  $upFile = image_downsize( $attach_id, 'thumbnail' );
277
  $upFile = $upFile[0];
278
 
279
-
280
-
281
  add_user_meta( $user_id, $value['item_metaName'], $upFile );
 
 
282
  wppb_resize_avatar($user_id);
283
  }
284
  }
@@ -297,15 +280,17 @@ function wppb_signup_user($user, $user_email, $meta = '') {
297
  // Format data
298
  $user = preg_replace( '/\s+/', '', sanitize_user( $user, true ) );
299
  $user_email = sanitize_email( $user_email );
300
- $key = substr( md5( time() . rand() . $user_email ), 0, 16 );
301
  $meta = serialize($meta);
302
-
303
  if ( is_multisite() )
304
- $wpdb->insert( $wpdb->signups, array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => current_time('mysql', true), 'activation_key' => $key, 'meta' => $meta) );
305
  else
306
- $wpdb->insert( $wpdb->prefix.'signups', array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => current_time('mysql', true), 'activation_key' => $key, 'meta' => $meta) );
 
 
307
 
308
- wppb_signup_user_notification($user, $user_email, $key, $meta);
309
  }
310
 
311
  /**
@@ -321,28 +306,34 @@ function wppb_signup_user($user, $user_email, $meta = '') {
321
  * @param string $user The user's login name.
322
  * @param string $user_email The user's email address.
323
  * @param array $meta By default, an empty array.
324
- * @param string $key The activation key created in wppb_signup_user()
325
  * @return bool
326
  */
327
- function wppb_signup_user_notification($user, $user_email, $key, $meta = '') {
328
- if ( !apply_filters('wppb_signup_user_notification_filter', $user, $user_email, $key, $meta) )
329
  return false;
330
-
331
- // Send email with activation link.
332
  $admin_email = get_site_option( 'admin_email' );
 
333
  if ( $admin_email == '' )
334
  $admin_email = 'support@' . $_SERVER['SERVER_NAME'];
335
 
336
- $from_name = get_site_option( 'site_name' ) == '' ? 'WordPress' : esc_html( get_site_option( 'site_name' ) );
337
- $from_name = apply_filters ('wppb_signup_user_notification_email_from_field', $from_name);
338
- $message_headers = apply_filters ("wppb_signup_user_notification_from", "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n");
339
-
340
- $siteURL = wppb_curpageurl().wppb_passed_arguments_check().'key='.$key;
341
 
342
- $subject = sprintf(apply_filters( 'wppb_signup_user_notification_subject', __( '[%1$s] Activate %2$s', 'profilebuilder'), $user, $user_email, $key, $meta ), $from_name, $user);
343
- $message = sprintf(apply_filters( 'wppb_signup_user_notification_email', __( "To activate your user, please click the following link:\n\n%s%s%s\n\nAfter you activate, you will receive *another email* with your login.\n\n", "profilebuilder" ),$user, $user_email, $key, $meta), '<a href="'.$siteURL.'">', $siteURL, '</a>.');
 
 
 
 
344
 
345
- wppb_mail( $user_email, $subject, $message, $from_name, '', $user, '', $user_email, 'register_w_email_confirmation', $siteURL, $meta );
 
 
 
346
 
347
  return true;
348
  }
@@ -352,63 +343,56 @@ function wppb_signup_user_notification($user, $user_email, $key, $meta = '') {
352
  * Activate a signup.
353
  *
354
  *
355
- * @param string $key The activation key provided to the user.
356
  * @return array An array containing information about the activated user and/or blog
357
  */
358
- function wppb_manual_activate_signup($key) {
359
  global $wpdb;
360
  $bloginfo = get_bloginfo( 'name' );
361
 
362
  if ( is_multisite() )
363
- $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->signups WHERE activation_key = %s", $key) );
364
  else
365
- $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE activation_key = %s", $key) );
366
 
367
  if ( !empty( $signup ) && !$signup->active ){
368
  $meta = unserialize($signup->meta);
369
- $user_login = $wpdb->escape($signup->user_login);
370
- $user_email = $wpdb->escape($signup->user_email);
371
- $password = base64_decode($meta['user_pass']);
372
 
373
  $user_id = username_exists($user_login);
374
 
375
  if ( ! $user_id )
376
- $user_id = wppb_create_user($user_login, $password, $user_email);
377
  else
378
  $user_already_exists = true;
379
 
380
- if ( ! $user_id )
381
- return __('Could not create user!', 'profilebuilder');
382
 
383
  elseif ( isset( $user_already_exists ) )
384
- return __('That username is already activated!', 'profilebuilder');
385
 
386
  else{
387
  $now = current_time('mysql', true);
388
 
389
- if ( is_multisite() )
390
- $retVal = $wpdb->update( $wpdb->signups, array('active' => 1, 'activated' => $now), array('activation_key' => $key) );
391
- else
392
- $retVal = $wpdb->update( $wpdb->prefix.'signups', array('active' => 1, 'activated' => $now), array('activation_key' => $key) );
393
-
394
- wppb_add_meta_to_user_on_activation($user_id, '', $meta);
395
-
396
- // if admin approval is activated, then block the user untill he gets approved
397
- $wppb_generalSettings = get_option('wppb_general_settings');
398
- if($wppb_generalSettings['adminApproval'] == 'yes'){
399
- wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false);
400
- clean_object_term_cache( $user_id, 'user_status' );
401
- }
402
-
403
- wppb_notify_user_registration_email($bloginfo, $user_login, $user_email, 'sending', $password, $wppb_generalSettings['adminApproval']);
404
-
405
- do_action('wppb_activate_user', $user_id, $password, $meta);
406
-
407
- if ($retVal)
408
- return 'ok';
409
- else
410
- return __('There was an error while trying to activate the user.', 'profilebuilder');
411
-
412
  }
413
  }
414
  }
@@ -438,50 +422,59 @@ function wppb_create_user( $user_name, $password, $email) {
438
  }
439
 
440
  //send an email to the admin regarding each and every new subscriber, and - if selected - to the user himself
441
- function wppb_notify_user_registration_email($bloginfo, $user_name, $email, $send_credentials_via_email, $passw1, $adminApproval){
442
-
443
- $registerFilterArray['adminMessageOnRegistration'] = sprintf(__( 'New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>', 'profilebuilder'), $bloginfo, $user_name, $email);
444
- if ($adminApproval == 'yes')
445
- $registerFilterArray['adminMessageOnRegistration'] .= '<br/>'. __('The "Admin Approval" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!', 'profilebuilder') ."\r\n";
446
- $registerFilterArray['adminMessageOnRegistration'] = apply_filters('wppb_register_admin_message_content', $registerFilterArray['adminMessageOnRegistration'], $bloginfo, $user_name, $email);
 
 
 
 
 
 
 
 
 
 
 
447
 
448
- $registerFilterArray['adminMessageOnRegistrationSubject'] = '['. $bloginfo .'] '. __('A new subscriber has (been) registered!', 'profilebuilder');
449
- $registerFilterArray['adminMessageOnRegistrationSubject'] = apply_filters ('wppb_register_admin_message_title', $registerFilterArray['adminMessageOnRegistrationSubject']);
450
 
451
- if (trim($registerFilterArray['adminMessageOnRegistration']) != '')
452
- wppb_mail(get_option('admin_email'), $registerFilterArray['adminMessageOnRegistrationSubject'], $registerFilterArray['adminMessageOnRegistration'], $blogInfo, '', $user_name, $passw1, $email, 'register_w_o_admin_approval_admin_email', $adminApproval, '' );
453
 
 
454
 
455
  //send an email to the newly registered user, if this option was selected
456
  if (isset($send_credentials_via_email) && ($send_credentials_via_email == 'sending')){
457
- //change these variables to modify sent email message, destination and source.
458
-
459
- $registerFilterArray['userMessageFrom'] = $bloginfo;
460
- $registerFilterArray['userMessageFrom'] = apply_filters('wppb_register_from_email_content', $registerFilterArray['userMessageFrom']);
461
 
462
- $registerFilterArray['userMessageSubject'] = __('A new account has been created for you.', 'profilebuilder');
463
- $registerFilterArray['userMessageSubject'] = apply_filters('wppb_register_subject_email_content', $registerFilterArray['userMessageSubject']);
464
 
465
- $registerFilterArray['userMessageContent'] = sprintf(__( 'Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s', 'profilebuilder'), $registerFilterArray['userMessageFrom'], $user_name, $passw1);
466
- if ($adminApproval == 'yes')
467
- $registerFilterArray['userMessageContent'] .= '<br/>'. __('Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profilebuilder');
468
- $registerFilterArray['userMessageContent'] = apply_filters('wppb_register_email_content', $registerFilterArray['userMessageContent'], $registerFilterArray['userMessageFrom'], $user_name, $passw1);
469
 
470
- $messageSent = wppb_mail( $email, $registerFilterArray['userMessageSubject'], $registerFilterArray['userMessageContent'], $registerFilterArray['userMessageFrom'], '', $user_name, $passw1, $email, 'register_w_o_admin_approval', $adminApproval, '' );
 
471
 
472
- if( $messageSent == TRUE)
 
 
 
 
 
 
 
 
473
  return 2;
474
  else
475
  return 1;
476
  }
477
  }
478
-
479
  // END FUNCTIONS USED BOTH ON THE REGISTRATION PAGE AND THE EMAIL CONFIRMATION TABLE
480
 
481
 
482
-
483
-
484
-
485
  // Set up the AJAX hooks
486
  add_action( 'wp_ajax_wppb_get_unconfirmed_email_number', 'wppb_get_unconfirmed_email_number' );
487
  add_action( 'wp_ajax_wppb_handle_email_confirmation_cases', 'wppb_handle_email_confirmation_cases' );
@@ -509,5 +502,12 @@ if (is_multisite()){
509
  add_action( 'user_register', 'wppb_update_user_status_on_admin_registration' );
510
  }
511
  }
512
-
513
-
 
 
 
 
 
 
 
49
  });
50
  });
51
 
52
+ function confirmECActionBulk( URL, message ) {
53
+ if ( confirm(message) )
54
  window.location=URL;
 
55
  }
56
 
57
  // script to create a confirmation box for the user upon approving/unapproving a user
58
+ function confirmECAction( URL, todo, userID, actionText ) {
59
+ actionText = '<?php _e( 'Do you want to', 'profilebuilder' ); ?>' + ' ' + actionText;
60
 
61
  if (confirm(actionText)) {
62
+ jQuery.post( ajaxurl , { action:"wppb_handle_email_confirmation_cases", URL:URL, todo:todo, userID:userID}, function(response) {
63
+ if (jQuery.trim(response) == 'ok')
64
  window.location=URL;
65
+
66
+ else
67
+ alert( jQuery.trim(response) );
68
  });
69
  }
70
  }
73
  }
74
 
75
  function wppb_get_unconfirmed_email_number(){
76
+ global $wpdb;
 
 
 
 
 
 
77
 
78
+ $result = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."signups WHERE active = 0");
79
+
80
  header( 'Content-type: application/json' );
81
+ die( json_encode( array( 'number' => (int)$wpdb->num_rows ) ) );
82
  }
83
 
84
 
92
  $userID = trim($_POST['userID']);
93
 
94
  if (current_user_can('delete_users'))
95
+ if ( ( $todo != '' ) && ( $userID != '' ) ){
96
 
97
  $iterator = 0;
98
+ $results = $wpdb->get_results( "SELECT * FROM ".$wpdb->prefix."signups WHERE active = 0" );
99
 
100
+ if ( $todo == 'delete' ){
101
+ foreach ( $results as $result ){
102
+ if ( (string)$iterator === $userID ){
103
+ $sql_result = $wpdb->delete( $wpdb->prefix.'signups', array( 'user_login' => $result->user_login, 'user_email' => $result->user_email ) );
104
+ if ( $sql_result )
105
+ die( 'ok' );
106
+
107
+ else
108
+ die( __( "The selected user couldn't be deleted", "profilebuilder" ) );
 
109
  }
110
+
111
  $iterator++;
112
  }
113
+ }elseif ( $todo == 'confirm' ){
114
+ foreach ( $results as $result ){
115
+ if ( (string)$iterator === $userID )
116
+ die( wppb_manual_activate_signup( $result->activation_key ) );
117
+
118
+ $iterator++;
119
+ }
120
+ }elseif ( $todo == 'resend' ){
121
+ foreach ( $results as $result ){
122
+ if ( (string)$iterator === $userID ){
123
+ $sql_result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "signups WHERE user_login = %s AND user_email = %s", $result->user_login, $result->user_email ), ARRAY_A );
124
+
125
+ if ( $sql_result ){
126
+ wppb_signup_user_notification( esc_sql( $sql_result['user_login'] ), esc_sql( $sql_result['user_email'] ), $sql_result['activation_key'], $sql_result['meta'] );
127
+
128
+ die( __( "Email notification resent to user", "profilebuilder" ) );
129
+ }
130
  }
131
  $iterator++;
132
  }
133
  }
134
  }
135
+
136
+ die( __("You either don't have permission for that action or there was an error!", "profilebuilder") );
 
137
  }
138
 
139
 
140
 
141
  // FUNCTIONS USED BOTH ON THE REGISTRATION PAGE AND THE EMAIL CONFIRMATION TABLE
142
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  // Hook to add AP user meta after signup autentification
144
  add_action('wpmu_activate_user','wppb_add_meta_to_user_on_activation',10,3);
145
 
223
  }
224
  case "upload":{
225
  if( !empty($meta[$value['item_type'].$value['id']] ) ){
226
+ $uploaded_file_with_path = $meta[$value['item_type'].$value['id']];
227
+ $original_filename = substr( $uploaded_file_with_path, strpos( $uploaded_file_with_path, '_attachment_')+12 );
228
+
229
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
230
+ $old_path_on_disk = $wp_upload_array['basedir'].'/profile_builder/attachments/'. substr( $uploaded_file_with_path, strpos( $uploaded_file_with_path, 'wpmuRandomID_') );
231
+ $new_path_on_disk = $wp_upload_array['basedir'].'/profile_builder/attachments/userID_'.$user_id.'_attachment_'. $original_filename;
 
 
 
 
 
 
232
 
233
+ if ( rename( $old_path_on_disk, $new_path_on_disk ) )
234
+ add_user_meta( $user_id, $value['item_metaName'], $wp_upload_array['baseurl'].'/profile_builder/attachments/userID_'.$user_id.'_attachment_'. $original_filename );
235
  }
236
  break;
237
  }
238
  case "avatar":{
239
  if( !empty($meta[$value['item_type'].$value['id']] ) ){
240
+ $wp_upload_array = wp_upload_dir(); // Array of key => value pairs
241
+
242
+ $file_name = str_replace( $wp_upload_array['baseurl'] . '/profile_builder/avatars/wpmuRandomID_' . $meta[$value['item_type'].$value['id'].'_radomUserNumber'] . '_originalAvatar_', '', $meta[$value['item_type'].$value['id']] );
243
+ $new_file_dir_path = $wp_upload_array['basedir'] . '/profile_builder/avatars/userID_' . $user_id . '_originalAvatar_' . $file_name;
 
 
 
 
 
 
244
 
245
+ if ( PHP_OS == "WIN32" || PHP_OS == "WINNT" )
246
+ $new_file_dir_path = str_replace( '\\', '/', $new_file_dir_path );
247
 
248
+ $renamed = rename( str_replace( $wp_upload_array['baseurl'], $wp_upload_array['basedir'], $meta[$value['item_type'].$value['id']] ), $new_file_dir_path );
249
+ if ($renamed){
250
+ $wp_filetype = wp_check_filetype(basename( $file_name ), null );
251
  $attachment = array('post_mime_type' => $wp_filetype['type'],
252
+ 'post_title' => $file_name, //preg_replace('/\.[^.]+$/', '', basename($_FILES[$uploadedfile]['name'])),
253
  'post_content' => '',
254
  'post_status' => 'inherit'
255
  );
256
 
257
+ $attach_id = wp_insert_attachment( $attachment, $new_file_dir_path);
 
258
 
259
  $upFile = image_downsize( $attach_id, 'thumbnail' );
260
  $upFile = $upFile[0];
261
 
 
 
262
  add_user_meta( $user_id, $value['item_metaName'], $upFile );
263
+ add_user_meta( $user_id, 'avatar_directory_path_'.$value['id'], $new_file_dir_path );
264
+ add_user_meta( $user_id, 'resized_avatar_'.$value['id'].'_relative_path', $new_file_dir_path );
265
  wppb_resize_avatar($user_id);
266
  }
267
  }
280
  // Format data
281
  $user = preg_replace( '/\s+/', '', sanitize_user( $user, true ) );
282
  $user_email = sanitize_email( $user_email );
283
+ $activation_key = substr( md5( time() . rand() . $user_email ), 0, 16 );
284
  $meta = serialize($meta);
285
+
286
  if ( is_multisite() )
287
+ $wpdb->insert( $wpdb->signups, array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => current_time('mysql', true), 'activation_key' => $activation_key, 'meta' => $meta) );
288
  else
289
+ $wpdb->insert( $wpdb->prefix.'signups', array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => current_time('mysql', true), 'activation_key' => $activation_key, 'meta' => $meta) );
290
+
291
+ do_action ('wppb_signup_user', $user, $user_email, $activation_key, $meta);
292
 
293
+ wppb_signup_user_notification($user, $user_email, $activation_key, $meta);
294
  }
295
 
296
  /**
306
  * @param string $user The user's login name.
307
  * @param string $user_email The user's email address.
308
  * @param array $meta By default, an empty array.
309
+ * @param string $activation_key The activation key created in wppb_signup_user()
310
  * @return bool
311
  */
312
+ function wppb_signup_user_notification( $user, $user_email, $activation_key, $meta = '' ) {
313
+ if ( !apply_filters( 'wppb_signup_user_notification_filter', $user, $user_email, $activation_key, $meta ) )
314
  return false;
315
+
316
+ $wppb_generalSettings = get_option( 'wppb_general_settings' );
317
  $admin_email = get_site_option( 'admin_email' );
318
+
319
  if ( $admin_email == '' )
320
  $admin_email = 'support@' . $_SERVER['SERVER_NAME'];
321
 
322
+ $from_name = apply_filters ( 'wppb_signup_user_notification_email_from_field', ( get_site_option( 'site_name' ) == '' ? 'WordPress' : esc_html( get_site_option( 'site_name' ) ) ) );
323
+
324
+ $message_headers = apply_filters ( 'wppb_signup_user_notification_from', "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n" );
 
 
325
 
326
+ $registration_page_url = ( ( isset( $wppb_generalSettings['activationLandingPage'] ) && ( trim( $wppb_generalSettings['activationLandingPage'] ) != '' ) ) ? add_query_arg( array('activation_key' => $activation_key ), get_permalink( $wppb_generalSettings['activationLandingPage'] ) ) : 'not_set' );
327
+ if ( $registration_page_url == 'not_set' ){
328
+ global $post;
329
+
330
+ $registration_page_url = ( ( strpos( $post->post_content, '[wppb-register' ) !== false ) ? add_query_arg( array('activation_key' => $activation_key ), get_permalink( $post->ID ) ) : add_query_arg( array('activation_key' => $activation_key ), get_bloginfo( 'url' ) ) );
331
+ }
332
 
333
+ $subject = sprintf( apply_filters( 'wppb_signup_user_notification_email_subject', __( '[%1$s] Activate %2$s', 'profilebuilder'), $user_email, $user, $activation_key, $registration_page_url, $meta, $from_name, 'registration_w_email_confirmation_email_subject' ), $from_name, $user );
334
+ $message = sprintf( apply_filters( 'wppb_signup_user_notification_email_content', __( "To activate your user, please click the following link:\n\n%s%s%s\n\nAfter you activate, you will receive *another email* with your login.\n\n", "profilebuilder" ), $user_email, $user, $activation_key, $registration_page_url, $meta, $from_name, 'registration_w_email_confirmation_email_content' ), '<a href="'.$registration_page_url.'">', $registration_page_url, '</a>.' );
335
+
336
+ wppb_mail( $user_email, $subject, $message, $from_name, '', $user, '', $user_email, 'register_w_email_confirmation', $registration_page_url, $meta );
337
 
338
  return true;
339
  }
343
  * Activate a signup.
344
  *
345
  *
346
+ * @param string $activation_key The activation key provided to the user.
347
  * @return array An array containing information about the activated user and/or blog
348
  */
349
+ function wppb_manual_activate_signup( $activation_key ) {
350
  global $wpdb;
351
  $bloginfo = get_bloginfo( 'name' );
352
 
353
  if ( is_multisite() )
354
+ $signup = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->signups WHERE activation_key = %s", $activation_key ) );
355
  else
356
+ $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE activation_key = %s", $activation_key) );
357
 
358
  if ( !empty( $signup ) && !$signup->active ){
359
  $meta = unserialize($signup->meta);
360
+ $user_login = esc_sql( $signup->user_login );
361
+ $user_email = esc_sql( $signup->user_email );
362
+ $password = base64_decode( $meta['user_pass'] );
363
 
364
  $user_id = username_exists($user_login);
365
 
366
  if ( ! $user_id )
367
+ $user_id = wppb_create_user( $user_login, $password, $user_email );
368
  else
369
  $user_already_exists = true;
370
 
371
+ if ( !$user_id )
372
+ return __( 'Could not create user!', 'profilebuilder' );
373
 
374
  elseif ( isset( $user_already_exists ) )
375
+ return __( 'That username is already activated!', 'profilebuilder' );
376
 
377
  else{
378
  $now = current_time('mysql', true);
379
 
380
+ $retVal = ( is_multisite() ? $wpdb->update( $wpdb->signups, array('active' => 1, 'activated' => $now), array('activation_key' => $activation_key) ) : $wpdb->update( $wpdb->prefix.'signups', array('active' => 1, 'activated' => $now), array('activation_key' => $activation_key) ) );
381
+
382
+ wppb_add_meta_to_user_on_activation($user_id, '', $meta);
383
+
384
+ // if admin approval is activated, then block the user untill he gets approved
385
+ $wppb_generalSettings = get_option('wppb_general_settings');
386
+ if($wppb_generalSettings['adminApproval'] == 'yes'){
387
+ wp_set_object_terms( $user_id, array( 'unapproved' ), 'user_status', false);
388
+ clean_object_term_cache( $user_id, 'user_status' );
389
+ }
390
+
391
+ wppb_notify_user_registration_email($bloginfo, $user_login, $user_email, 'sending', $password, $wppb_generalSettings['adminApproval']);
392
+
393
+ do_action('wppb_activate_user', $user_id, $password, $meta);
394
+
395
+ return ( $retVal ? 'ok' : __('There was an error while trying to activate the user', 'profilebuilder') );
 
 
 
 
 
 
 
396
  }
397
  }
398
  }
422
  }
423
 
424
  //send an email to the admin regarding each and every new subscriber, and - if selected - to the user himself
425
+ function wppb_notify_user_registration_email( $bloginfo, $user_name, $email, $send_credentials_via_email, $password, $adminApproval ){
426
+ //send email to the admin
427
+ $registerFilterArray['adminMessageFrom'] = apply_filters( 'wppb_register_from_email_message_admin_email', $bloginfo );
428
+
429
+ $registerFilterArray['adminMessageSubject'] = '[' . $registerFilterArray['adminMessageFrom'] . '] ' . __( 'A new subscriber has (been) registered!', 'profilebuilder' );
430
+ $registerFilterArray['adminMessageSubject'] = apply_filters ('wppb_register_admin_email_subject_without_admin_approval', $registerFilterArray['adminMessageSubject'], $email, $password, $registerFilterArray['adminMessageFrom'], 'admin_default_registration_email_subject' );
431
+
432
+ $registerFilterArray['adminMessageContent'] = sprintf( __( 'New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>', 'profilebuilder'), $registerFilterArray['adminMessageFrom'], $user_name, $email );
433
+
434
+ if ($adminApproval == 'yes'){
435
+ $registerFilterArray['adminMessageSubject'] = apply_filters( 'wppb_register_admin_email_subject_with_admin_approval', $registerFilterArray['adminMessageSubject'], $email, $password, $registerFilterArray['adminMessageFrom'], 'admin_registration_w_admin_approval_email_subject' );
436
+
437
+ $registerFilterArray['adminMessageContent'] .= '<br/>' . __( 'The "Admin Approval" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!', 'profilebuilder') ."\r\n";
438
+ $registerFilterArray['adminMessageContent'] = apply_filters( 'wppb_register_admin_email_message_with_admin_approval', $registerFilterArray['adminMessageContent'], $email, $password, $registerFilterArray['adminMessageFrom'], 'admin_registration_w_admin_approval_email_content' );
439
+
440
+ }else
441
+ $registerFilterArray['adminMessageContent'] = apply_filters( 'wppb_register_admin_email_message_without_admin_approval', $registerFilterArray['adminMessageContent'], $email, $password, $registerFilterArray['userMessageFrom'], 'admin_default_registration_email_content' );
442
 
 
 
443
 
444
+ if (trim($registerFilterArray['adminMessageContent']) != '')
445
+ wppb_mail( get_option('admin_email'), $registerFilterArray['adminMessageSubject'], $registerFilterArray['adminMessageContent'], $registerFilterArray['adminMessageFrom'] );
446
 
447
+
448
 
449
  //send an email to the newly registered user, if this option was selected
450
  if (isset($send_credentials_via_email) && ($send_credentials_via_email == 'sending')){
451
+ $registerFilterArray['userMessageFrom'] = apply_filters( 'wppb_register_from_email_message_user_email', $bloginfo );
 
 
 
452
 
453
+ $registerFilterArray['userMessageSubject'] = __( 'A new account has been created for you.', 'profilebuilder' );
454
+ $registerFilterArray['userMessageSubject'] = apply_filters( 'wppb_register_user_email_subject_without_admin_approval', $registerFilterArray['userMessageSubject'], $email, $password, $registerFilterArray['userMessageFrom'], 'default_registration_email_subject' );
455
 
456
+ $registerFilterArray['userMessageContent'] = sprintf( __( 'Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s', 'profilebuilder' ), $registerFilterArray['userMessageFrom'], $user_name, $password );
 
 
 
457
 
458
+ if ( $adminApproval == 'yes' ){
459
+ $registerFilterArray['userMessageSubject'] = apply_filters( 'wppb_register_user_email_subject_with_admin_approval', $registerFilterArray['userMessageSubject'], $email, $password, $registerFilterArray['userMessageFrom'], 'registration_w_admin_approval_email_subject' );
460
 
461
+ $registerFilterArray['userMessageContent'] .= '<br/>' . __( 'Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profilebuilder' );
462
+ $registerFilterArray['userMessageContent'] = apply_filters( 'wppb_register_user_email_message_with_admin_approval', $registerFilterArray['userMessageContent'], $email, $password, $registerFilterArray['userMessageFrom'], 'registration_w_admin_approval_email_content' );
463
+
464
+ }else
465
+ $registerFilterArray['userMessageContent'] = apply_filters( 'wppb_register_user_email_message_without_admin_approval', $registerFilterArray['userMessageContent'], $email, $password, $registerFilterArray['userMessageFrom'], 'default_registration_email_content' );
466
+
467
+ $messageSent = wppb_mail( $email, $registerFilterArray['userMessageSubject'], $registerFilterArray['userMessageContent'], $registerFilterArray['userMessageFrom'] );
468
+
469
+ if( $messageSent )
470
  return 2;
471
  else
472
  return 1;
473
  }
474
  }
 
475
  // END FUNCTIONS USED BOTH ON THE REGISTRATION PAGE AND THE EMAIL CONFIRMATION TABLE
476
 
477
 
 
 
 
478
  // Set up the AJAX hooks
479
  add_action( 'wp_ajax_wppb_get_unconfirmed_email_number', 'wppb_get_unconfirmed_email_number' );
480
  add_action( 'wp_ajax_wppb_handle_email_confirmation_cases', 'wppb_handle_email_confirmation_cases' );
502
  add_action( 'user_register', 'wppb_update_user_status_on_admin_registration' );
503
  }
504
  }
505
+
506
+ // function to delete the users from the _signups table also
507
+ function wppb_delete_user_from_signups( $user_id ) {
508
+ global $wpdb;
509
+
510
+ $user = get_user_by( 'id', $user_id );
511
+ $wpdb->delete( $wpdb->prefix.'signups', array( 'user_email' => $user->user_email ) );
512
+ }
513
+ add_action( 'delete_user', 'wppb_delete_user_from_signups' );
functions/functions.load.php CHANGED
@@ -10,9 +10,9 @@ Original Author URI: http://valendesigns.com
10
  * Functions Load
11
  *
12
  */
13
- /* whitelist options, you can add more register_settings changing the second parameter */
14
 
15
- function wppb_register_settings() {
 
16
  register_setting( 'wppb_option_group', 'wppb_default_settings' );
17
  register_setting( 'wppb_general_settings', 'wppb_general_settings' );
18
  register_setting( 'wppb_display_admin_settings', 'wppb_display_admin_settings' );
@@ -36,16 +36,6 @@ if (file_exists ( $wppb_premiumAddon.'custom.redirects.php' ))
36
  include_once($wppb_premiumAddon.'custom.redirects.php');
37
  if (file_exists ( $wppb_premiumAddon.'email.customizer.php' ))
38
  include_once($wppb_premiumAddon.'email.customizer.php');
39
- else{
40
- // simple wp_mail "prototype"
41
- function wppb_mail($to, $subject, $message, $blogInfo, $userID, $userName, $password, $userEmail, $function, $extraData1, $extraData2){
42
-
43
- //we add this filter to enable html encoding
44
- add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
45
-
46
- return $sent = wp_mail( $to , $subject, wpautop($message, true));
47
- }
48
- }
49
  if (file_exists ( $wppb_premiumAddon.'userlisting.php' )){
50
  include_once($wppb_premiumAddon.'userlisting.php');
51
 
@@ -89,9 +79,9 @@ else
89
  function wppb_add_plugin_stylesheet() {
90
  $wppb_generalSettings = get_option('wppb_general_settings');
91
 
92
- $styleUrl_default = WPPB_PLUGIN_URL . '/assets/css/front.end.css';
93
- $styleUrl_white = WPPB_PLUGIN_URL . '/premium/assets/css/front.end.white.css';
94
- $styleUrl_black = WPPB_PLUGIN_URL . '/premium/assets/css/front.end.black.css';
95
  $styleFile_default = WPPB_PLUGIN_DIR . '/assets/css/front.end.css';
96
  $styleFile_white = WPPB_PLUGIN_DIR . '/premium/assets/css/front.end.white.css';
97
  $styleFile_black = WPPB_PLUGIN_DIR . '/premium/assets/css/front.end.black.css';
@@ -153,7 +143,8 @@ if(!function_exists('wppb_curpageurl')){
153
  if ( is_admin() ){
154
  add_action('admin_enqueue_scripts', 'wppb_add_backend_style');
155
  function wppb_add_backend_style(){
156
- wp_enqueue_style( 'profile-builder-back-end-style', WPPB_PLUGIN_URL.'/assets/css/back.end.css', false, PROFILE_BUILDER_VERSION);
 
157
  }
158
 
159
  // include the css for the datepicker
@@ -161,7 +152,7 @@ if ( is_admin() ){
161
  if (file_exists ( $wppb_premiumDatepicker.'datepicker.style.css' )){
162
  add_action('admin_enqueue_scripts', 'wppb_add_datepicker_style');
163
  function wppb_add_datepicker_style(){
164
- wp_enqueue_style( 'profile-builder-admin-datepicker-style', WPPB_PLUGIN_URL.'/premium/assets/css/datepicker.style.css', false, PROFILE_BUILDER_VERSION);
165
  }
166
  }
167
 
@@ -208,13 +199,142 @@ if ( is_admin() ){
208
  add_filter('widget_text', 'do_shortcode', 11);
209
  }
210
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
  function wppb_website_email($sender_email){
212
- $wppb_addonOptions = get_option('wppb_addon_settings');
213
 
214
- if (($wppb_addonOptions['wppb_emailCustomizer'] == 'show') || ($wppb_addonOptions['wppb_emailCustomizerAdmin'] == 'show')){
215
- $emailCustomizer = get_option('emailCustomizer');
216
 
217
- $sender_email = str_replace( '%%reply_to%%', $sender_email, $emailCustomizer['from'] );
 
218
 
219
  }
220
 
@@ -223,15 +343,62 @@ function wppb_website_email($sender_email){
223
  add_filter('wp_mail_from','wppb_website_email');
224
 
225
  function wppb_website_name($site_name){
226
- $wppb_addonOptions = get_option('wppb_addon_settings');
227
 
228
- if (($wppb_addonOptions['wppb_emailCustomizer'] == 'show') || ($wppb_addonOptions['wppb_emailCustomizerAdmin'] == 'show')){
229
- $emailCustomizer = get_option('emailCustomizer');
230
 
231
- $site_name = str_replace( '%%site_name%%', $site_name, $emailCustomizer['from_name'] );
 
232
 
233
  }
234
 
235
- return $site_name = apply_filters('website_email_filter', $site_name);
236
  }
237
- add_filter('wp_mail_from_name','wppb_website_name');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  * Functions Load
11
  *
12
  */
 
13
 
14
+ // whitelist options, you can add more register_settings changing the second parameter
15
+ function wppb_register_settings() {
16
  register_setting( 'wppb_option_group', 'wppb_default_settings' );
17
  register_setting( 'wppb_general_settings', 'wppb_general_settings' );
18
  register_setting( 'wppb_display_admin_settings', 'wppb_display_admin_settings' );
36
  include_once($wppb_premiumAddon.'custom.redirects.php');
37
  if (file_exists ( $wppb_premiumAddon.'email.customizer.php' ))
38
  include_once($wppb_premiumAddon.'email.customizer.php');
 
 
 
 
 
 
 
 
 
 
39
  if (file_exists ( $wppb_premiumAddon.'userlisting.php' )){
40
  include_once($wppb_premiumAddon.'userlisting.php');
41
 
79
  function wppb_add_plugin_stylesheet() {
80
  $wppb_generalSettings = get_option('wppb_general_settings');
81
 
82
+ $styleUrl_default = WPPB_PLUGIN_URL . 'assets/css/front.end.css';
83
+ $styleUrl_white = WPPB_PLUGIN_URL . 'premium/assets/css/front.end.white.css';
84
+ $styleUrl_black = WPPB_PLUGIN_URL . 'premium/assets/css/front.end.black.css';
85
  $styleFile_default = WPPB_PLUGIN_DIR . '/assets/css/front.end.css';
86
  $styleFile_white = WPPB_PLUGIN_DIR . '/premium/assets/css/front.end.white.css';
87
  $styleFile_black = WPPB_PLUGIN_DIR . '/premium/assets/css/front.end.black.css';
143
  if ( is_admin() ){
144
  add_action('admin_enqueue_scripts', 'wppb_add_backend_style');
145
  function wppb_add_backend_style(){
146
+ wp_enqueue_style( 'profile-builder-back-end-style', WPPB_PLUGIN_URL.'assets/css/back.end.css', false, PROFILE_BUILDER_VERSION);
147
+ wp_enqueue_script( 'profile-builder-back-end-js', WPPB_PLUGIN_URL.'assets/js/back.end.js', false, PROFILE_BUILDER_VERSION );
148
  }
149
 
150
  // include the css for the datepicker
152
  if (file_exists ( $wppb_premiumDatepicker.'datepicker.style.css' )){
153
  add_action('admin_enqueue_scripts', 'wppb_add_datepicker_style');
154
  function wppb_add_datepicker_style(){
155
+ wp_enqueue_style( 'profile-builder-admin-datepicker-style', WPPB_PLUGIN_URL.'premium/assets/css/datepicker.style.css', false, PROFILE_BUILDER_VERSION);
156
  }
157
  }
158
 
199
  add_filter('widget_text', 'do_shortcode', 11);
200
  }
201
 
202
+ // this is to assure backwards compatibility for future reference for all versions, starting from version 1.3.13
203
+ function wppb_update_patch( $plugin ){
204
+ if( !get_option( 'wppb_version' ) ) {
205
+ add_option( 'wppb_version', '1.3.13' );
206
+
207
+ do_action( 'wppb_set_initial_version_number', PROFILE_BUILDER_VERSION );
208
+ }
209
+
210
+ $wppb_version = get_option( 'wppb_version' );
211
+
212
+ do_action( 'wppb_before_default_changes', PROFILE_BUILDER_VERSION, $wppb_version );
213
+
214
+ if( version_compare( PROFILE_BUILDER_VERSION, $wppb_version, '>' ) ) {
215
+ if ( ( $plugin == 'pro' ) || ( $plugin == 'hobbyist' ) ){
216
+ // this is to assure backwards compatibility from version 1.3.13 to version 1.3.14, we need to copy all data from item_options_values, and create the item_option_labels index for the checkbox, radio and select extra-fields, to reflect the front-end changes
217
+ $custom_fields = get_option( 'wppb_custom_fields','not_found' );
218
+
219
+ if ( $custom_fields != 'not_found' ){
220
+ foreach ( $custom_fields as $key => $value ){
221
+ if ( ( $value['item_type'] == 'checkbox' ) || ( $value['item_type'] == 'radio' ) || ( $value['item_type'] == 'select' ) ){
222
+ if ( isset( $custom_fields[$key]['item_option_values'] ) ){
223
+ $custom_fields[$key]['item_option_labels'] = $custom_fields[$key]['item_option_values'];
224
+ unset( $custom_fields[$key]['item_option_values'] );
225
+ }
226
+
227
+ }else
228
+ unset( $custom_fields[$key]['item_option_values'] );
229
+ }
230
+
231
+ update_option( 'wppb_custom_fields', $custom_fields );
232
+ }
233
+ // END this is to assure backwards compatibility from version 1.3.13 to version 1.3.14, we need to copy all data from item_options_values, and create the item_option_labels index for the checkbox, radio and select extra-fields, to reflect the front-end changes
234
+ }
235
+
236
+ if ( $plugin == 'pro' ){
237
+ // this is to assure backwards compatibility from version 1.3.14 to version 1.3.15, where the email customizer array-indexes have been renamed
238
+ $email_customizer_array = get_option( 'emailCustomizer', 'not_found' );
239
+
240
+ if ( $email_customizer_array != 'not_found' ){
241
+ $new_email_customizer_array = array();
242
+
243
+ if ( isset( $email_customizer_array['from'] ) ){
244
+ $new_email_customizer_array['reply_to'] = $email_customizer_array['from'];
245
+ unset( $email_customizer_array['from'] );
246
+ }
247
+
248
+ if ( isset( $email_customizer_array['settingsGroup1Option2'] ) ){
249
+ $new_email_customizer_array['default_registration_email_subject'] = $email_customizer_array['settingsGroup1Option2'];
250
+ unset( $email_customizer_array['settingsGroup1Option2'] );
251
+ }
252
+
253
+ if ( isset( $email_customizer_array['settingsGroup1Option3'] ) ){
254
+ $new_email_customizer_array['default_registration_email_content'] = $email_customizer_array['settingsGroup1Option3'];
255
+ unset( $email_customizer_array['settingsGroup1Option3'] );
256
+ }
257
+
258
+ if ( isset( $email_customizer_array['settingsGroup3Option2'] ) ){
259
+ $new_email_customizer_array['registration_w_admin_approval_email_subject'] = $email_customizer_array['settingsGroup3Option2'];
260
+ unset( $email_customizer_array['settingsGroup3Option2'] );
261
+ }
262
+
263
+ if ( isset( $email_customizer_array['settingsGroup3Option3'] ) ){
264
+ $new_email_customizer_array['registration_w_admin_approval_email_content'] = $email_customizer_array['settingsGroup3Option3'];
265
+ unset( $email_customizer_array['settingsGroup3Option3'] );
266
+ }
267
+
268
+ if ( isset( $email_customizer_array['settingsGroup4Option2'] ) ){
269
+ $new_email_customizer_array['admin_approval_aproved_status_email_subject'] = $email_customizer_array['settingsGroup4Option2'];
270
+ unset( $email_customizer_array['settingsGroup4Option2'] );
271
+ }
272
+
273
+ if ( isset( $email_customizer_array['settingsGroup4Option3'] ) ){
274
+ $new_email_customizer_array['admin_approval_aproved_status_email_content'] = $email_customizer_array['settingsGroup4Option3'];
275
+ unset( $email_customizer_array['settingsGroup4Option3'] );
276
+ }
277
+
278
+ if ( isset( $email_customizer_array['settingsGroup2Option2'] ) ){
279
+ $new_email_customizer_array['registration_w_email_confirmation_email_subject'] = $email_customizer_array['settingsGroup2Option2'];
280
+ unset( $email_customizer_array['settingsGroup2Option2'] );
281
+ }
282
+
283
+ if ( isset( $email_customizer_array['settingsGroup2Option3'] ) ){
284
+ $new_email_customizer_array['registration_w_email_confirmation_email_content'] = $email_customizer_array['settingsGroup2Option3'];
285
+ unset( $email_customizer_array['settingsGroup2Option3'] );
286
+ }
287
+
288
+ if ( isset( $email_customizer_array['settingsGroup4Option6'] ) ){
289
+ $new_email_customizer_array['admin_approval_unaproved_status_email_subject'] = $email_customizer_array['settingsGroup4Option6'];
290
+ unset( $email_customizer_array['settingsGroup4Option6'] );
291
+ }
292
+
293
+ if ( isset( $email_customizer_array['settingsGroup4Option7'] ) ){
294
+ $new_email_customizer_array['admin_approval_unaproved_status_email_content'] = $email_customizer_array['settingsGroup4Option7'];
295
+ unset( $email_customizer_array['settingsGroup4Option7'] );
296
+ }
297
+
298
+ if ( isset( $email_customizer_array['admin_settingsGroup1Option2'] ) ){
299
+ $new_email_customizer_array['admin_default_registration_email_subject'] = $email_customizer_array['admin_settingsGroup1Option2'];
300
+ unset( $email_customizer_array['admin_settingsGroup1Option2'] );
301
+ }
302
+
303
+ if ( isset( $email_customizer_array['admin_settingsGroup1Option3'] ) ){
304
+ $new_email_customizer_array['admin_default_registration_email_content'] = $email_customizer_array['admin_settingsGroup1Option3'];
305
+ unset( $email_customizer_array['admin_settingsGroup1Option3'] );
306
+ }
307
+
308
+ if ( isset( $email_customizer_array['admin_settingsGroup3Option2'] ) ){
309
+ $new_email_customizer_array['admin_registration_w_admin_approval_email_subject'] = $email_customizer_array['admin_settingsGroup3Option2'];
310
+ unset( $email_customizer_array['admin_settingsGroup3Option2'] );
311
+ }
312
+
313
+ if ( isset( $email_customizer_array['admin_settingsGroup3Option3'] ) ){
314
+ $new_email_customizer_array['admin_registration_w_admin_approval_email_content'] = $email_customizer_array['admin_settingsGroup3Option3'];
315
+ unset( $email_customizer_array['admin_settingsGroup3Option3'] );
316
+ }
317
+
318
+ update_option( 'emailCustomizer', $new_email_customizer_array + $email_customizer_array );
319
+ }
320
+ // END this is to assure backwards compatibility from version 1.3.14 to version 1.3.15, where the email customizer array-indexes have been renamed
321
+ }
322
+
323
+ update_option( 'wppb_version', PROFILE_BUILDER_VERSION );
324
+ }
325
+
326
+ do_action( 'wppb_after_default_changes', PROFILE_BUILDER_VERSION, $wppb_version );
327
+ }
328
+
329
+ // functions to set email from and reply-to
330
  function wppb_website_email($sender_email){
331
+ $wppb_addonOptions = get_option( 'wppb_addon_settings' );
332
 
333
+ if ( ( $wppb_addonOptions['wppb_emailCustomizer'] == 'show' ) || ( $wppb_addonOptions['wppb_emailCustomizerAdmin'] == 'show' ) ){
334
+ $email_customizer_array = get_option( 'emailCustomizer', 'not_found' );
335
 
336
+ if ( $email_customizer_array != 'not_found' )
337
+ $sender_email = str_replace( '%%reply_to%%', $sender_email, $email_customizer_array['reply_to'] );
338
 
339
  }
340
 
343
  add_filter('wp_mail_from','wppb_website_email');
344
 
345
  function wppb_website_name($site_name){
346
+ $wppb_addonOptions = get_option( 'wppb_addon_settings' );
347
 
348
+ if ( ( $wppb_addonOptions['wppb_emailCustomizer'] == 'show' ) || ( $wppb_addonOptions['wppb_emailCustomizerAdmin'] == 'show' ) ){
349
+ $email_customizer_array = get_option( 'emailCustomizer', 'not_found' );
350
 
351
+ if ( $email_customizer_array != 'not_found' )
352
+ $site_name = str_replace( '%%site_name%%', $site_name, $email_customizer_array['from_name'] );
353
 
354
  }
355
 
356
+ return $site_name = apply_filters( 'website_email_filter', $site_name );
357
  }
358
+ add_filter('wp_mail_from_name','wppb_website_name');
359
+
360
+ // function to send out emails (depending on the case, set by $function), and if needed overwrite it with the data storder in via email customizer
361
+ function wppb_mail($to, $subject, $message, $message_from){
362
+ $to = apply_filters ( 'wppb_send_email_to', $to );
363
+ $send_email = apply_filters ( 'wppb_send_email', true, $to, $subject, $message );
364
+
365
+ do_action( 'wppb_before_sending_email', $to, $subject, $message, $send_email );
366
+
367
+ if ( $send_email ){
368
+ //we add this filter to enable html encoding
369
+ add_filter( 'wp_mail_content_type', create_function( '', 'return "text/html"; ' ) );
370
+
371
+ $sent = wp_mail( $to , $subject, wpautop($message, true) );
372
+ }
373
+
374
+ do_action( 'wppb_after_sending_email', $sent, $to, $subject, $message, $send_email );
375
+
376
+ return $sent;
377
+ }
378
+
379
+ function wppb_activate_account_check(){
380
+ if ( ( isset( $_GET['activation_key'] ) ) && ( trim( $_GET['activation_key'] ) != '' ) ){
381
+ global $post;
382
+
383
+ $wppb_generalSettings = get_option( 'wppb_general_settings' );
384
+ $activation_landing_page_id = ( ( isset( $wppb_generalSettings['activationLandingPage'] ) && ( trim( $wppb_generalSettings['activationLandingPage'] ) != '' ) ) ? $wppb_generalSettings['activationLandingPage'] : 'not_set' );
385
+
386
+ if ( $activation_landing_page_id != 'not_set' ){
387
+ //an activation page was selected, but we still need to check if the current page doesn't already have the registration shortcode
388
+ if ( strpos( $post->post_content, '[wppb-register' ) === false )
389
+ add_filter( 'the_content', 'wppb_add_activation_message' );
390
+
391
+ }elseif ( strpos( $post->post_content, '[wppb-register' ) === false ){
392
+ //no activation page was selected, and the sent link pointed to the home url
393
+ wp_redirect( apply_filters( 'wppb_activatate_account_redirect_url', WPPB_PLUGIN_URL.'assets/misc/wppb.fallback.page.php?activation_key='.urlencode( $_GET['activation_key'] ).'&site_name='.urlencode( get_bloginfo( 'name' ) ).'&site_url='.urlencode( get_bloginfo( 'url' ) ).'&message='.urlencode( $activation_message = wppb_activate_signup( $_GET['activation_key'] ) ), $_GET['activation_key'], $activation_message ) );
394
+ exit;
395
+ }
396
+ }
397
+ }
398
+ add_action( 'template_redirect', 'wppb_activate_account_check' );
399
+
400
+
401
+ function wppb_add_activation_message( $content ){
402
+
403
+ return wppb_activate_signup( $_GET['activation_key'] ) . $content;
404
+ }
functions/general.settings.php CHANGED
@@ -1,58 +1,85 @@
1
  <?php
2
  function wppb_general_settings(){
3
-
4
  $wppb_premiumStyle = WPPB_PLUGIN_DIR . '/premium/functions/';
5
  ?>
6
  <form method="post" action="options.php#general-settings">
7
  <?php $wppb_generalSettings = get_option('wppb_general_settings'); ?>
8
  <?php settings_fields('wppb_general_settings'); ?>
9
 
10
- <h2><?php _e('General Settings', 'profilebuilder');?></h2>
11
- <h3><?php _e('General Settings', 'profilebuilder');?></h3>
12
- <font id="generalSettingFont"><?php _e('Stylesheet Used on the Front-End:', 'profilebuilder');?></font>
13
  <select name="wppb_general_settings[extraFieldsLayout]" class="wppb_general_settings">
14
- <option value="yes" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'yes') echo 'selected';?>><?php _e('Default', 'profilebuilder');?></option>
15
  <?php
16
- if (file_exists ( $wppb_premiumStyle.'custom.fields.php' )){
17
  ?>
18
- <option value="white" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'white') echo 'selected';?>><?php _e('White', 'profilebuilder');?></option>
19
- <option value="black" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'black') echo 'selected';?>><?php _e('Black', 'profilebuilder');?></option>
20
  <?php
21
  }
22
  ?>
23
- <option value="no" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'no') echo 'selected';?>><?php _e('None', 'profilebuilder');?></option>
24
  </select>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  <?php
26
- if (!is_multisite()){
27
- ?>
28
- <br/><br/>
29
- <font id="generalSettingFont"><?php _e('"Email Confirmation" Feature Activated:', 'profilebuilder');?></font>
30
- <select name="wppb_general_settings[emailConfirmation]" class="wppb_general_settings2">
31
- <option value="yes" <?php if ($wppb_generalSettings['emailConfirmation'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
32
- <option value="no" <?php if ($wppb_generalSettings['emailConfirmation'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
33
- </select>
34
- <?php
35
- }
36
- if (file_exists ( $wppb_premiumStyle.'custom.fields.php' )){
37
  ?>
38
- <br/><br/>
39
- <font id="generalSettingFont"><?php _e('"Admin Approval" Feature Activated:', 'profilebuilder');?></font>
40
  <select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb_general_settings3">
41
- <option value="yes" <?php if ($wppb_generalSettings['adminApproval'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
42
- <option value="no" <?php if ($wppb_generalSettings['adminApproval'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
43
  </select>
44
 
45
  <?php
46
  $generalInfoNotes =
47
  '<div id="layoutNoticeDiv">
48
  <font size="1" id="layoutNotice">
49
- <b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
50
- &rarr; '. __('The black stylesheet is intended for sites/blogs with a dark background.', 'profilebuilder') .'<br/>
51
- &rarr; '. __('The white stylesheet is intended for a sites/blogs with a light background color.', 'profilebuilder') .'<br/>
52
- &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') .'<br/>
53
- &rarr; '. __('The "Email Confirmation" feature is active (by default) on WPMU installations.', 'profilebuilder');
54
- if (is_multisite() || ($wppb_generalSettings['emailConfirmation'] == 'yes'))
55
- $generalInfoNotes .= '<br/>&rarr; '.sprintf(__( 'You can find a list of unconfirmed email addresses %1$shere%2$s.', 'profilebuilder'), '<a href="'.get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails">', '</a>');
 
56
  $generalInfoNotes .=
57
  '</font>
58
  </div>';
@@ -65,28 +92,32 @@ function wppb_general_settings(){
65
  <b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
66
  &rarr; '. __('On single-site installations the "Email Confirmation" feature only works in the front-end.', 'profilebuilder') .'<br/>
67
  &rarr; '. __('The "Email Confirmation" feature is active (by default) on WPMU installations.', 'profilebuilder');
68
- if (is_multisite() || ($wppb_generalSettings['emailConfirmation'] == 'yes'))
69
- $generalInfoNotes .= '<br/>&rarr; '.sprintf(__( 'You can find a list of unconfirmed email addresses %1$shere%2$s.', 'profilebuilder'), '<a href="'.get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails">', '</a>');
 
70
  $generalInfoNotes .=
71
  '</font>
72
  </div>';
73
  }
74
 
 
 
75
  ?>
76
- <br/><br/>
77
- <font id="generalSettingFont"><?php _e('Allow Users to Log in With:', 'profilebuilder');?></font>
78
  <select name="wppb_general_settings[loginWith]" class="wppb_general_settings4">
79
- <option value="username" <?php if ($wppb_generalSettings['loginWith'] == 'username') echo 'selected';?>><?php _e('Username', 'profilebuilder');?></option>
80
- <option value="email" <?php if ($wppb_generalSettings['loginWith'] == 'email') echo 'selected';?>><?php _e('Email', 'profilebuilder');?></option>
81
  </select>
82
  <?php
 
 
83
 
84
  echo $generalInfoNotes;
85
  ?>
86
  <div align="right">
87
  <input type="hidden" name="action" value="update" />
88
  <p class="submit">
89
- <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
90
  </p>
91
  </div>
92
  </form>
1
  <?php
2
  function wppb_general_settings(){
 
3
  $wppb_premiumStyle = WPPB_PLUGIN_DIR . '/premium/functions/';
4
  ?>
5
  <form method="post" action="options.php#general-settings">
6
  <?php $wppb_generalSettings = get_option('wppb_general_settings'); ?>
7
  <?php settings_fields('wppb_general_settings'); ?>
8
 
9
+ <h2><?php _e( 'General Settings', 'profilebuilder' ); ?></h2>
10
+ <h3><?php _e( 'General Settings', 'profilebuilder' ); ?></h3>
11
+ <font id="generalSettingFont"><?php _e( 'Stylesheet Used on the Front-End:', 'profilebuilder' ); ?></font>
12
  <select name="wppb_general_settings[extraFieldsLayout]" class="wppb_general_settings">
13
+ <option value="yes" <?php if ( $wppb_generalSettings['extraFieldsLayout'] == 'yes' ) echo 'selected';?>><?php _e( 'Default', 'profilebuilder' ); ?></option>
14
  <?php
15
+ if ( file_exists($wppb_premiumStyle.'custom.fields.php' ) ){
16
  ?>
17
+ <option value="white" <?php if ( $wppb_generalSettings['extraFieldsLayout'] == 'white' ) echo 'selected'; ?>><?php _e( 'White', 'profilebuilder' ); ?></option>
18
+ <option value="black" <?php if ( $wppb_generalSettings['extraFieldsLayout'] == 'black' ) echo 'selected'; ?>><?php _e( 'Black', 'profilebuilder' ); ?></option>
19
  <?php
20
  }
21
  ?>
22
+ <option value="no" <?php if ( $wppb_generalSettings['extraFieldsLayout'] == 'no' ) echo 'selected';?>><?php _e( 'None', 'profilebuilder' );?></option>
23
  </select>
24
+ <div id="general_settings_registration_section">
25
+ <?php
26
+ if ( !is_multisite() ){
27
+ ?>
28
+ <font id="generalSettingFont"><?php _e('"Email Confirmation" Feature Activated:', 'profilebuilder');?></font>
29
+ <select name="wppb_general_settings[emailConfirmation]" class="wppb_general_settings2" onchange="wppb_display_page_select(this.value)">
30
+ <option value="yes" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profilebuilder' ); ?></option>
31
+ <option value="no" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profilebuilder' ); ?></option>
32
+ </select>
33
+ <br/><br/>
34
+ <?php
35
+ }else{
36
+ echo '<input type="hidden" id="wppb_general_settings_hidden" value="multisite"/>';
37
+ }
38
+ ?>
39
+ <div id="general_settings_registration_page_div">
40
+ <font id="generalSettingFont"><?php _e( 'Account Activation Landing Page:', 'profilebuilder' ); ?></font>
41
+ <select name="wppb_general_settings[activationLandingPage]" class="wppb_general_settings5">
42
+ <option value="" <?php if ( $wppb_generalSettings['emailConfirmation'] == '' ) echo 'selected'; ?>></option>
43
+ <optgroup label="<?php _e( 'Existing Pages', 'profilebuilder' ); ?>">
44
+ <?php
45
+ $pages = get_pages( apply_filters( 'wppb_page_args_filter', array( 'sort_order' => 'ASC', 'sort_column' => 'post_title', 'post_type' => 'page', 'post_status' => array( 'publish' ) ) ) );
46
+
47
+ foreach ( $pages as $key => $value ){
48
+ echo '<option value="'.$value->ID.'"';
49
+ if ( $wppb_generalSettings['activationLandingPage'] == $value->ID )
50
+ echo ' selected';
51
+
52
+ echo '>' . $value->post_title . '</option>';
53
+ }
54
+ ?>
55
+ </optgroup>
56
+ </select>
57
+ <br/>
58
+ <?php echo '<br/><span id="registration_note">&rarr; ' . __( 'You need to (create) and specify the page where the users will see when trying to activate their account. This page can differ from the register page(s), and can be changed at any time, but if none selected, a simple, blank page will be displayed for the user.', 'profilebuilder' ) . '</span><br/><br/>'; ?>
59
+ </div>
60
+ </div>
61
+
62
  <?php
63
+ if ( file_exists( $wppb_premiumStyle.'custom.fields.php' ) ){
 
 
 
 
 
 
 
 
 
 
64
  ?>
65
+ <font id="generalSettingFont"><?php _e( '"Admin Approval" Feature Activated:', 'profilebuilder' ); ?></font>
 
66
  <select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb_general_settings3">
67
+ <option value="yes" <?php if ($wppb_generalSettings['adminApproval'] == 'yes') echo 'selected'; ?>><?php _e( 'Yes', 'profilebuilder' ); ?></option>
68
+ <option value="no" <?php if ($wppb_generalSettings['adminApproval'] == 'no') echo 'selected'; ?>><?php _e( 'No', 'profilebuilder' ); ?></option>
69
  </select>
70
 
71
  <?php
72
  $generalInfoNotes =
73
  '<div id="layoutNoticeDiv">
74
  <font size="1" id="layoutNotice">
75
+ <b>'. __( 'NOTE:', 'profilebuilder' ) . '</b><br/>
76
+ &rarr; '. __( 'The black stylesheet is intended for sites/blogs with a dark background.', 'profilebuilder' ) .'<br/>
77
+ &rarr; '. __( 'The white stylesheet is intended for a sites/blogs with a light background color.', 'profilebuilder' ) .'<br/>
78
+ &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' ) . '<br/>
79
+ &rarr; '. __( 'The "Email Confirmation" feature is active (by default) on WPMU installations.', 'profilebuilder' );
80
+ if (is_multisite() || ($wppb_generalSettings['emailConfirmation'] == 'yes')){
81
+ $generalInfoNotes .= '<br/>&rarr; '.sprintf( __( 'You can find a list of unconfirmed email addresses %1$shere%2$s.', 'profilebuilder' ), '<a href="'.get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails">', '</a>' );
82
+ }
83
  $generalInfoNotes .=
84
  '</font>
85
  </div>';
92
  <b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
93
  &rarr; '. __('On single-site installations the "Email Confirmation" feature only works in the front-end.', 'profilebuilder') .'<br/>
94
  &rarr; '. __('The "Email Confirmation" feature is active (by default) on WPMU installations.', 'profilebuilder');
95
+ if (is_multisite() || ($wppb_generalSettings['emailConfirmation'] == 'yes')){
96
+ $generalInfoNotes .= '<br/>&rarr; '.sprintf(__( 'You can find a list of unconfirmed email addresses %1$shere%2$s.', 'profilebuilder'), '<a href="'.get_bloginfo('url').'/wp-admin/users.php?page=unconfirmed_emails">', '</a>' );
97
+ }
98
  $generalInfoNotes .=
99
  '</font>
100
  </div>';
101
  }
102
 
103
+ if ( file_exists( $wppb_premiumStyle.'custom.fields.php' ) )
104
+ echo '<div id="general_settings_login_with_section">';
105
  ?>
106
+ <font id="generalSettingFont"><?php _e( 'Allow Users to Log in With:', 'profilebuilder' ); ?></font>
 
107
  <select name="wppb_general_settings[loginWith]" class="wppb_general_settings4">
108
+ <option value="username" <?php if ( $wppb_generalSettings['loginWith'] == 'username' ) echo 'selected'; ?>><?php _e( 'Username', 'profilebuilder' ); ?></option>
109
+ <option value="email" <?php if ( $wppb_generalSettings['loginWith'] == 'email' ) echo 'selected'; ?>><?php _e( 'Email', 'profilebuilder' ); ?></option>
110
  </select>
111
  <?php
112
+ if ( file_exists ( $wppb_premiumStyle.'custom.fields.php' ) )
113
+ echo '</div>';
114
 
115
  echo $generalInfoNotes;
116
  ?>
117
  <div align="right">
118
  <input type="hidden" name="action" value="update" />
119
  <p class="submit">
120
+ <input type="submit" class="button-primary" value="<?php _e( 'Save Changes' ); ?>" />
121
  </p>
122
  </div>
123
  </form>
functions/options.php CHANGED
@@ -49,8 +49,8 @@ $arraySettingsPresent = get_option('wppb_custom_fields','not_found');
49
  if (!file_exists ( $wppb_premium.'custom.fields.php' )){
50
  ?>
51
  <div class="info basic-version-info">
52
- <img src="<?php echo WPPB_PLUGIN_URL ?>/assets/images/ad_image.png" alt="Profile Builder Pro" />
53
- <a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=link&utm_campaign=ProfileBuilderFree" alt="Profile Builder Pro" title="Buy Profile Builder Pro"><img id="wppb_buyNowButton" src="<?php echo WPPB_PLUGIN_URL ?>/assets/images/buy_now_button.png"/></a>
54
  </div>
55
  <?php
56
  }elseif ( ! get_user_meta($current_user->ID, 'wppb_dismiss_notification') ) {
49
  if (!file_exists ( $wppb_premium.'custom.fields.php' )){
50
  ?>
51
  <div class="info basic-version-info">
52
+ <img src="<?php echo WPPB_PLUGIN_URL ?>assets/images/ad_image.png" alt="Profile Builder Pro" />
53
+ <a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=link&utm_campaign=ProfileBuilderFree" alt="Profile Builder Pro" title="Buy Profile Builder Pro"><img id="wppb_buyNowButton" src="<?php echo WPPB_PLUGIN_URL ?>assets/images/buy_now_button.png"/></a>
54
  </div>
55
  <?php
56
  }elseif ( ! get_user_meta($current_user->ID, 'wppb_dismiss_notification') ) {
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.55
7
  Author: Reflection Media, Barina Gabriel
8
  Author URI: http://www.reflectionmedia.ro
9
  License: GPL2
@@ -37,10 +37,10 @@ Original Author URI: http://valendesigns.com
37
  *
38
  */
39
 
40
- function wppb_return_bytes($val) {
41
- $val = trim($val);
42
- $last = strtolower($val[strlen($val)-1]);
43
- switch($last) {
44
  // The 'G' modifier is available since PHP 5.1.0
45
  case 'g':
46
  $val *= 1024;
@@ -51,53 +51,57 @@ function wppb_return_bytes($val) {
51
  }
52
 
53
  return $val;
54
- }
55
-
56
 
57
- define( 'PROFILE_BUILDER_VERSION', '1.1.55' );
58
  define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
59
-
60
- if (file_exists ( WPPB_PLUGIN_DIR . '/premium/addons/addon.php' ))
61
- define( 'WPPB_PLUGIN_URL', plugins_url( 'profile-builder-pro' ) );
62
- elseif (file_exists ( WPPB_PLUGIN_DIR . '/premium/functions/premium.functions.load.php' ))
63
- define( 'WPPB_PLUGIN_URL', plugins_url( 'profile-builder-hobbyist' ) );
64
- else
65
- define( 'WPPB_PLUGIN_URL', plugins_url( 'profile-builder' ) );
66
-
67
- define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', wppb_return_bytes( ini_get( 'upload_max_filesize') ) );
68
- define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA', ini_get( 'upload_max_filesize') );
69
- define( 'WPPB_SERVER_MAX_POST_SIZE_BYTE', wppb_return_bytes( ini_get( 'post_max_size') ) );
70
- define( 'WPPB_SERVER_MAX_POST_SIZE_MEGA', ini_get( 'post_max_size') );
71
  define( 'WPPB_TRANSLATE_DIR', WPPB_PLUGIN_DIR.'/translation' );
72
  define( 'WPPB_TRANSLATE_DOMAIN', 'profilebuilder' );
73
 
74
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  /**
76
  * Required Files
77
  *
78
  *
79
  */
80
- require_once('functions/functions.load.php');
81
 
82
  $wppb_premiumAdmin = WPPB_PLUGIN_DIR . '/premium/classes/';
83
- if (file_exists ( $wppb_premiumAdmin.'premium.class.admin.php' )){
84
- require_once($wppb_premiumAdmin.'premium.class.admin.php');
85
  }else{
86
- require_once('classes/class.admin.php');
87
  }
88
 
89
  /* check for updates */
90
  $wppb_premiumUpdate = WPPB_PLUGIN_DIR.'/premium/update/';
91
- if (file_exists ($wppb_premiumUpdate.'update-checker.php')){
92
- require ($wppb_premiumUpdate.'update-checker.php');
93
 
94
- if (file_exists ( WPPB_PLUGIN_DIR . '/premium/addons/addon.php' )){
95
  $localSerial = get_option( 'wppb_profile_builder_pro_serial' );
96
- $wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=RMPB', __FILE__, 'profile-builder-pro-update');
97
 
98
  }else{
99
  $localSerial = get_option( 'wppb_profile_builder_hobbyist_serial' );
100
- $wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=RMPBH', __FILE__, 'profile-builder-hobbyist-update');
101
  }
102
  }
103
 
@@ -109,10 +113,10 @@ if (file_exists ($wppb_premiumUpdate.'update-checker.php')){
109
  function wppb_init_translation(){
110
  load_plugin_textdomain( 'profilebuilder', false, basename( dirname( __FILE__ ) ) . '/translation/' );
111
  }
112
- add_action('init', 'wppb_init_translation');
113
 
114
  /**
115
- * Instantiate Classe
116
  *
117
  *
118
  */
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.57
7
  Author: Reflection Media, Barina Gabriel
8
  Author URI: http://www.reflectionmedia.ro
9
  License: GPL2
37
  *
38
  */
39
 
40
+ function wppb_return_bytes( $val ) {
41
+ $val = trim( $val );
42
+ $last = strtolower( $val[strlen( $val )-1] );
43
+ switch( $last ) {
44
  // The 'G' modifier is available since PHP 5.1.0
45
  case 'g':
46
  $val *= 1024;
51
  }
52
 
53
  return $val;
54
+ }
 
55
 
56
+ define( 'PROFILE_BUILDER_VERSION', '1.1.57' );
57
  define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
58
+ define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
59
+ define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters( 'wppb_server_max_upload_size_byte_constant', wppb_return_bytes( ini_get( 'upload_max_filesize') ) ) );
60
+ define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA', apply_filters( 'wppb_server_max_upload_size_mega_constant', ini_get( 'upload_max_filesize') ) );
61
+ define( 'WPPB_SERVER_MAX_POST_SIZE_BYTE', apply_filters( 'wppb_server_max_post_size_byte_constant', wppb_return_bytes( ini_get( 'post_max_size') ) ) );
62
+ define( 'WPPB_SERVER_MAX_POST_SIZE_MEGA', apply_filters( 'wppb_server_max_post_size_mega_constant', ini_get( 'post_max_size') ) );
 
 
 
 
 
 
 
63
  define( 'WPPB_TRANSLATE_DIR', WPPB_PLUGIN_DIR.'/translation' );
64
  define( 'WPPB_TRANSLATE_DOMAIN', 'profilebuilder' );
65
 
66
 
67
+ //pre-require the functions file needed for the wppb_updated_patch function
68
+ require_once( 'functions/functions.load.php' );
69
+
70
+ if (file_exists ( WPPB_PLUGIN_DIR . '/premium/addons/addon.php' ) ){
71
+ wppb_update_patch( 'pro' );
72
+ }elseif ( file_exists ( WPPB_PLUGIN_DIR . '/premium/functions/premium.functions.load.php' ) ){
73
+ wppb_update_patch( 'hobbyist' );
74
+ }else{
75
+ wppb_update_patch( 'free' );
76
+ }
77
+
78
+
79
  /**
80
  * Required Files
81
  *
82
  *
83
  */
84
+ require_once( 'functions/functions.load.php' );
85
 
86
  $wppb_premiumAdmin = WPPB_PLUGIN_DIR . '/premium/classes/';
87
+ if (file_exists ( $wppb_premiumAdmin.'premium.class.admin.php' ) ){
88
+ require_once( $wppb_premiumAdmin.'premium.class.admin.php' );
89
  }else{
90
+ require_once( 'classes/class.admin.php' );
91
  }
92
 
93
  /* check for updates */
94
  $wppb_premiumUpdate = WPPB_PLUGIN_DIR.'/premium/update/';
95
+ if (file_exists ( $wppb_premiumUpdate.'update-checker.php' ) ){
96
+ require ($wppb_premiumUpdate.'update-checker.php' );
97
 
98
+ if (file_exists ( WPPB_PLUGIN_DIR . '/premium/addons/addon.php' ) ){
99
  $localSerial = get_option( 'wppb_profile_builder_pro_serial' );
100
+ $wppb_update = new wppb_PluginUpdateChecker( 'http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=RMPB', __FILE__, 'profile-builder-pro-update' );
101
 
102
  }else{
103
  $localSerial = get_option( 'wppb_profile_builder_hobbyist_serial' );
104
+ $wppb_update = new wppb_PluginUpdateChecker( 'http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=RMPBH', __FILE__, 'profile-builder-hobbyist-update' );
105
  }
106
  }
107
 
113
  function wppb_init_translation(){
114
  load_plugin_textdomain( 'profilebuilder', false, basename( dirname( __FILE__ ) ) . '/translation/' );
115
  }
116
+ add_action( 'init', 'wppb_init_translation' );
117
 
118
  /**
119
+ * Instantiate Class
120
  *
121
  *
122
  */
readme.txt CHANGED
@@ -5,8 +5,8 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
5
  Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload
6
 
7
  Requires at least: 3.1
8
- Tested up to: 3.5.1
9
- Stable tag: 1.1.55
10
 
11
  Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
12
 
@@ -94,6 +94,12 @@ This plugin only adds/removes user fields in the front-end. The default profile
94
  7. Password Recovery Page
95
 
96
  == Changelog ==
 
 
 
 
 
 
97
  = 1.1.55 =
98
  Minor changes in the plugin's readme file and updated the screenshots.
99
 
5
  Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload
6
 
7
  Requires at least: 3.1
8
+ Tested up to: 3.6.1
9
+ Stable tag: 1.1.57
10
 
11
  Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
12
 
94
  7. Password Recovery Page
95
 
96
  == Changelog ==
97
+ = 1.1.57 =
98
+ Minor changes to the readme.txt file.
99
+
100
+ = 1.1.56 =
101
+ Added activation_url and activation_link to the "Email Customizer" feature (pro). Also, once the "Email Confirmation" feature is activated, an option will appear to select the registration page for the "Resend confirmation email" feature, which was also added to the back-end userlisting.
102
+
103
  = 1.1.55 =
104
  Minor changes in the plugin's readme file and updated the screenshots.
105
 
translation/profilebuilder-cs_CZ.mo CHANGED
Binary file
translation/profilebuilder-cs_CZ.po CHANGED
@@ -1,2628 +1,3040 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: ProfileBuilder\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-14 14:31+0200\n"
6
- "PO-Revision-Date: 2013-05-14 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"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.5\n"
15
- "X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
16
- "pro\n"
17
-
18
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
19
- msgid "unapprove this user?"
20
- msgstr ""
21
-
22
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
23
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:218
24
- msgid "Unapprove"
25
- msgstr ""
26
-
27
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
28
- msgid "approve this user?"
29
- msgstr ""
30
-
31
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
32
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:217
33
- msgid "Approve"
34
- msgstr ""
35
-
36
- # @ profilebuilder
37
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:166
38
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:153
39
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:889
40
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:155
41
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1076
42
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
43
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:79
44
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:525
45
- msgid "Username"
46
- msgstr "Uživatelské jméno"
47
-
48
- # @ profilebuilder
49
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:167
50
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:154
51
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1022
52
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1064
53
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1178
54
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
55
- msgid "E-mail"
56
- msgstr "E-mail"
57
-
58
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:168
59
- msgid "Role"
60
- msgstr ""
61
-
62
- # @ profilebuilder
63
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:169
64
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:155
65
- #, fuzzy
66
- msgid "Registered"
67
- msgstr "Registrovat"
68
-
69
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:170
70
- msgid "User-status"
71
- msgstr ""
72
-
73
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:244
74
- msgid "Do you want to bulk approve the selected users?"
75
- msgstr ""
76
-
77
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:252
78
- msgid "Do you want to bulk unapprove the selected users?"
79
- msgstr ""
80
-
81
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:260
82
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:263
83
- msgid "Sorry, but you don't have permission to do that!"
84
- msgstr ""
85
-
86
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:294
87
- msgid "Approved"
88
- msgstr ""
89
-
90
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:296
91
- msgid "Unapproved"
92
- msgstr ""
93
-
94
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:466
95
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:8
96
- msgid "Admin Approval"
97
- msgstr ""
98
-
99
- # @ profilebuilder
100
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:469
101
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:456
102
- #, fuzzy
103
- msgid "All Users"
104
- msgstr "Přidat uživatele"
105
-
106
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
107
- msgid "delete this user from the _signups table?"
108
- msgstr ""
109
-
110
- # @ profilebuilder
111
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
112
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:200
113
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
114
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
115
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
116
- msgid "Delete"
117
- msgstr "Odstranit"
118
-
119
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
120
- msgid "confirm this email yourself?"
121
- msgstr ""
122
-
123
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
124
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:201
125
- msgid "Confirm Email"
126
- msgstr ""
127
-
128
- # @ profilebuilder
129
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:228
130
- #, fuzzy
131
- msgid "couldn't be deleted."
132
- msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
133
-
134
- # @ profilebuilder
135
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:239
136
- #, fuzzy
137
- msgid "All users have been successfully deleted."
138
- msgstr "Změny byly úspěšně uloženy."
139
-
140
- # @ profilebuilder
141
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:254
142
- #, fuzzy
143
- msgid "The selected users have been activated."
144
- msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
145
-
146
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:453
147
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:48
148
- msgid "Users with Unconfirmed Email Address"
149
- msgstr ""
150
-
151
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:83
152
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:320
153
- #, php-format
154
- msgid ""
155
- "The information size you were trying to submit was larger than %1$sb!<br/"
156
- ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
157
- "it was also larger than %2$sb no additional information is available.<br/"
158
- ">The user was NOT created!"
159
- msgstr ""
160
-
161
- # @ profilebuilder
162
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:769
163
- msgid "You must be logged in to edit your profile."
164
- msgstr "Pro úpravu profilu je nutné se přihlásit."
165
-
166
- # @ profilebuilder
167
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:777
168
- msgid "The avatar was successfully deleted."
169
- msgstr "Avatar byl úspěšně odstraněn."
170
-
171
- # @ profilebuilder
172
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:782
173
- #, fuzzy, php-format
174
- msgid "The attachment \"%1$s\" was successfully deleted."
175
- msgstr "Avatar byl úspěšně odstraněn."
176
-
177
- # @ profilebuilder
178
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:795
179
- msgid "The changes have been successfully saved."
180
- msgstr "Změny byly úspěšně uloženy."
181
-
182
- # @ profilebuilder
183
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
184
- #, fuzzy, php-format
185
- msgid ""
186
- "The email address you entered is already registered to a different user."
187
- "%1$sThe email address was %2$sNOT%3$s updated along with the rest of the "
188
- "information."
189
- msgstr ""
190
- "Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
191
-
192
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:804
193
- #, php-format
194
- msgid ""
195
- "The email address you entered is invalid.%1$sThe email address was %2$sNOT"
196
- "%3$s updated along with the rest of the information."
197
- msgstr ""
198
-
199
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:809
200
- #, php-format
201
- msgid ""
202
- "The passwords you entered do not match.%1$sThe password was %2$sNOT%3$s "
203
- "updated along with the rest of the information."
204
- msgstr ""
205
-
206
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:814
207
- #, php-format
208
- msgid ""
209
- "You didn't complete both password fields.%1$sThe password was %2$sNOT%3$s "
210
- "updated along with the rest of the information."
211
- msgstr ""
212
-
213
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
214
- msgid ""
215
- "Your profile was NOT updated, since not all required fields were completed!"
216
- msgstr ""
217
-
218
- # @ profilebuilder
219
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
220
- #, fuzzy
221
- msgid "There was an error while trying to upload the following attachments:"
222
- msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
223
-
224
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:836
225
- #, php-format
226
- msgid ""
227
- "Possible cause: the size was bigger than %1$sb. The listed attachements were "
228
- "%2$sNOT%3$s updated along with the rest of the information."
229
- msgstr ""
230
-
231
- # @ profilebuilder
232
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
233
- #, fuzzy
234
- msgid "There was an error while trying to upload your avatar picture."
235
- msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
236
-
237
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
238
- msgid "Possible cause: size/incorrect file-type."
239
- msgstr ""
240
-
241
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
242
- msgid "The avatar was"
243
- msgstr ""
244
-
245
- # @ profilebuilder
246
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
247
- msgid "NOT"
248
- msgstr "NEBYLA"
249
-
250
- # @ profilebuilder
251
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
252
- #, fuzzy
253
- msgid "updated along with the rest of the information."
254
- msgstr " aktualizována spolu s ostatními informacemi."
255
-
256
- # @ profilebuilder
257
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:851
258
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:646
259
- #, fuzzy
260
- msgid "There was an error while trying to upload the following attachment(s)"
261
- msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
262
-
263
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:858
264
- #, php-format
265
- msgid ""
266
- "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
267
- "file was %2$sNOT%3$s updated along with the rest of the information."
268
- msgstr ""
269
-
270
- # @ profilebuilder
271
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
272
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1029
273
- msgid "Name"
274
- msgstr "Jméno"
275
-
276
- # @ profilebuilder
277
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:880
278
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:153
279
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:80
280
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:537
281
- #, fuzzy
282
- msgid "Email"
283
- msgstr "E-mail"
284
-
285
- # @ default
286
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:881
287
- #, fuzzy
288
- msgid "The email cannot be changed."
289
- msgstr "Uživatelská jména nelze měnit."
290
-
291
- # @ default
292
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:890
293
- #, fuzzy
294
- msgid "The usernames cannot be changed."
295
- msgstr "Uživatelská jména nelze měnit."
296
-
297
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
298
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:920
299
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:940
300
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:960
301
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1012
302
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1034
303
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1052
304
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1070
305
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1088
306
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1109
307
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:68
308
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:174
309
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:243
310
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:311
311
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:378
312
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:446
313
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:501
314
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:551
315
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
316
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:727
317
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:774
318
- msgid "This field is marked as required by the administrator."
319
- msgstr ""
320
-
321
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:903
322
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:923
323
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:943
324
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:963
325
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1015
326
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1036
327
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1054
328
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1072
329
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1090
330
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1111
331
- msgid ""
332
- "This field wasn't updated because you entered and empty string (It was "
333
- "marked as required by the administrator."
334
- msgstr ""
335
-
336
- # @ profilebuilder
337
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
338
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1101
339
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
340
- msgid "First Name"
341
- msgstr "Křestní jméno"
342
-
343
- # @ profilebuilder
344
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:930
345
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1125
346
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
347
- msgid "Last Name"
348
- msgstr "Příjmení"
349
-
350
- # @ profilebuilder
351
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:950
352
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1149
353
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
354
- msgid "Nickname"
355
- msgstr "Přezdívka"
356
-
357
- # @ profilebuilder
358
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:971
359
- msgid "Display name publicly as"
360
- msgstr "Veřejně zobrazovat jako"
361
-
362
- # @ profilebuilder
363
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1003
364
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
365
- msgid "Contact Info"
366
- msgstr "Kontaktní informace"
367
-
368
- # @ profilebuilder
369
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1024
370
- msgid "(required)"
371
- msgstr "(vyžadováno)"
372
-
373
- # @ profilebuilder
374
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1042
375
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1203
376
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
377
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:567
378
- msgid "Website"
379
- msgstr "Web"
380
-
381
- # @ profilebuilder
382
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1060
383
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1227
384
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
385
- msgid "AIM"
386
- msgstr "AIM (AOL Instant Messenger)"
387
-
388
- # @ profilebuilder
389
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1078
390
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
391
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
392
- msgid "Yahoo IM"
393
- msgstr "Yahoo IM"
394
-
395
- # @ profilebuilder
396
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1096
397
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1275
398
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
399
- msgid "Jabber / Google Talk"
400
- msgstr "Jabber / Google Talk"
401
-
402
- # @ profilebuilder
403
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1102
404
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1281
405
- msgid "About Yourself"
406
- msgstr "O vás"
407
-
408
- # @ profilebuilder
409
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1117
410
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1302
411
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
412
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:573
413
- msgid "Biographical Info"
414
- msgstr "Osobní informace"
415
-
416
- # @ profilebuilder
417
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1127
418
- msgid "New Password"
419
- msgstr "Nové heslo"
420
-
421
- # @ profilebuilder
422
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1132
423
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
424
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
425
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1341
426
- msgid "Repeat Password"
427
- msgstr "Heslo ještě jednou"
428
-
429
- # @ profilebuilder
430
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1163
431
- msgid "Update"
432
- msgstr "Aktualizovat"
433
-
434
- # @ profilebuilder
435
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
436
- #, fuzzy, php-format
437
- msgid "You are currently logged in as %1$s. %2$s"
438
- msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
439
-
440
- # @ profilebuilder
441
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
442
- msgid "Log out of this account"
443
- msgstr "Odhlásit se"
444
-
445
- # @ profilebuilder
446
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
447
- #, fuzzy
448
- msgid "Log out"
449
- msgstr "Odhlásit se &raquo;"
450
-
451
- # @ profilebuilder
452
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
453
- #, fuzzy, php-format
454
- msgid "You have successfully logged in as %1$s"
455
- msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
456
-
457
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
458
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
459
- #, php-format
460
- msgid ""
461
- "You will soon be redirected automatically. If you see this page for more "
462
- "than 1 second, please click %1$s"
463
- msgstr ""
464
-
465
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
466
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
467
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
468
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
469
- msgid "here"
470
- msgstr ""
471
-
472
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
473
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
474
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
475
- msgid "ERROR:"
476
- msgstr ""
477
-
478
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
479
- msgid "The email field is empty"
480
- msgstr ""
481
-
482
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
483
- msgid "The username field is empty"
484
- msgstr ""
485
-
486
- # @ profilebuilder
487
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:167
488
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
489
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
490
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1336
491
- msgid "Password"
492
- msgstr "Heslo"
493
-
494
- # @ profilebuilder
495
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:175
496
- msgid "Log in"
497
- msgstr "Přihlásit se"
498
-
499
- # @ profilebuilder
500
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:179
501
- msgid "Remember me"
502
- msgstr "Pamatovat si mě"
503
-
504
- # @ profilebuilder
505
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:194
506
- msgid "Lost password?"
507
- msgstr "Zapomněli jste heslo?"
508
-
509
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
510
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
511
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
512
- msgid "ERROR"
513
- msgstr ""
514
-
515
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
516
- msgid ""
517
- "Your account has to be confirmed by an administrator before you can use the "
518
- "\"Password Reset\" feature."
519
- msgstr ""
520
-
521
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
522
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
523
- #, php-format
524
- msgid ""
525
- "A password reset email has been sent to %1$s.<br/>Following the link sent in "
526
- "the email address will reset the password."
527
- msgstr ""
528
-
529
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
530
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
531
- #, php-format
532
- msgid ""
533
- "Someone requested that the password be reset for the following account: <b>"
534
- "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
535
- "happen.<br/>To reset your password, visit the following link:%2$s"
536
- msgstr ""
537
-
538
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
539
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
540
- #, php-format
541
- msgid "Password Reset Feature from \"%1$s\""
542
- msgstr ""
543
-
544
- # @ profilebuilder
545
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
546
- #, fuzzy, php-format
547
- msgid "There was an error while trying to send the activation link to %1$s!"
548
- msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
549
-
550
- # @ profilebuilder
551
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
552
- #, fuzzy
553
- msgid "The email address entered wasn't found in the database!"
554
- msgstr "Zadaný e-mail není platný. <br/> Adresa "
555
-
556
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
557
- msgid "Please check that you entered the correct email address."
558
- msgstr ""
559
-
560
- # @ profilebuilder
561
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
562
- #, fuzzy
563
- msgid "There was an error while trying to send the activation link to "
564
- msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
565
-
566
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
567
- msgid "The username entered wasn't found in the database!"
568
- msgstr ""
569
-
570
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
571
- msgid "Please check that you entered the correct username."
572
- msgstr ""
573
-
574
- # @ profilebuilder
575
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
576
- #, fuzzy
577
- msgid "Your password has been successfully changed!"
578
- msgstr "Změny byly úspěšně uloženy."
579
-
580
- # @ profilebuilder
581
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
582
- #, fuzzy, php-format
583
- msgid "You have successfully reset your password to: %1$s"
584
- msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
585
-
586
- # @ profilebuilder
587
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
588
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
589
- #, fuzzy, php-format
590
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
591
- msgstr "\" byla úspěšně odstraněna."
592
-
593
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
594
- #, php-format
595
- msgid ""
596
- "%1$s has requested a password change via the password reset feature.<br/>His/"
597
- "her new password is:%2$s"
598
- msgstr ""
599
-
600
- # @ profilebuilder
601
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
602
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
603
- msgid "The entered passwords don't match!"
604
- msgstr "Zadaná hesla se neshodují."
605
-
606
- # @ profilebuilder
607
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
608
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
609
- #, fuzzy
610
- msgid "Reset Password"
611
- msgstr "Heslo ještě jednou"
612
-
613
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
614
- msgid "Invalid key!"
615
- msgstr ""
616
-
617
- # @ profilebuilder
618
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
619
- #, fuzzy
620
- msgid "Please enter your username or email address."
621
- msgstr "Musíte zadat platnou e-mailovou adresu."
622
-
623
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
624
- msgid "You will receive a link to create a new password via email."
625
- msgstr ""
626
-
627
- # @ profilebuilder
628
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
629
- #, fuzzy
630
- msgid "Username or E-mail"
631
- msgstr "Uživatelské jméno"
632
-
633
- # @ profilebuilder
634
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
635
- #, fuzzy
636
- msgid "Get New Password"
637
- msgstr "Nové heslo"
638
-
639
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:217
640
- msgid "Invalid activation key!"
641
- msgstr ""
642
-
643
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:221
644
- msgid "The user is already active!"
645
- msgstr ""
646
-
647
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:239
648
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:381
649
- msgid "Could not create user!"
650
- msgstr ""
651
-
652
- # @ profilebuilder
653
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:242
654
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:384
655
- #, fuzzy
656
- msgid "That username is already activated!"
657
- msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
658
-
659
- # @ profilebuilder
660
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:268
661
- #, fuzzy
662
- msgid "The user was successfully activated."
663
- msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
664
-
665
- # @ profilebuilder
666
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:270
667
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:410
668
- #, fuzzy
669
- msgid "There was an error while trying to activate the user."
670
- msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
671
-
672
- # @ profilebuilder
673
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:630
674
- msgid "A username is required for registration."
675
- msgstr "Uživatelské jméno je nutné pro registraci."
676
-
677
- # @ profilebuilder
678
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:634
679
- msgid "Sorry, that username already exists!"
680
- msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
681
-
682
- # @ profilebuilder
683
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:636
684
- msgid "You must enter a valid email address."
685
- msgstr "Musíte zadat platnou e-mailovou adresu."
686
-
687
- # @ profilebuilder
688
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:638
689
- msgid "Sorry, that email address is already used!"
690
- msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
691
-
692
- # @ profilebuilder
693
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:641
694
- msgid "You didn't complete one of the password-fields!"
695
- msgstr "Nebyla vyplněna obě pole hesla."
696
-
697
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
698
- msgid "Only files with the following extension(s) can be uploaded:"
699
- msgstr ""
700
-
701
- # @ profilebuilder
702
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
703
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
704
- #, fuzzy
705
- msgid "The account was NOT created!"
706
- msgstr "Uživatelský účet pro %1$s byl vytvořen."
707
-
708
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:657
709
- msgid "You must agree to the terms and conditions before registering!"
710
- msgstr ""
711
-
712
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
713
- msgid "(Several required fields were left uncompleted)"
714
- msgstr ""
715
-
716
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
717
- msgid "This username is already reserved to be used soon."
718
- msgstr ""
719
-
720
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
721
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
722
- msgid "Please try a different one!"
723
- msgstr ""
724
-
725
- # @ profilebuilder
726
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
727
- #, fuzzy
728
- msgid "This email address is already reserved to be used soon."
729
- msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
730
-
731
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
732
- msgid "You are logged in as"
733
- msgstr ""
734
-
735
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
736
- msgid "You don't need another account."
737
- msgstr ""
738
-
739
- # @ profilebuilder
740
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
741
- #, fuzzy
742
- msgid "Log out of this account."
743
- msgstr "Odhlásit se"
744
-
745
- # @ profilebuilder
746
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
747
- #, fuzzy
748
- msgid "Logout"
749
- msgstr "Odhlásit se &raquo;"
750
-
751
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:919
752
- #, php-format
753
- msgid ""
754
- "An email has been sent to %1$s with information on how to activate his/her "
755
- "account."
756
- msgstr ""
757
-
758
- # @ profilebuilder
759
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:923
760
- #, fuzzy, php-format
761
- msgid "A user account has been created for %1$s."
762
- msgstr "Uživatelský účet pro %1$s byl vytvořen."
763
-
764
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
765
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
766
- #, php-format
767
- msgid ""
768
- "You will soon be redirected automatically. If you see this page for more "
769
- "than 3 seconds, please click %1$s.%2$s"
770
- msgstr ""
771
-
772
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:949
773
- msgid ""
774
- "An email has been sent to you with information on how to activate your "
775
- "account."
776
- msgstr ""
777
-
778
- # @ profilebuilder
779
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:953
780
- #, fuzzy, php-format
781
- msgid "Thank you for registering %1$s."
782
- msgstr "Děkujeme za registraci, %1$s."
783
-
784
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:980
785
- msgid "An error occured while trying to send the notification email."
786
- msgstr ""
787
-
788
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:985
789
- msgid "An email containing activation instructions was successfully sent."
790
- msgstr ""
791
-
792
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:990
793
- msgid "An email containing the username and password was successfully sent."
794
- msgstr ""
795
-
796
- # @ profilebuilder
797
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1006
798
- msgid "Users can register themselves or you can manually create users here."
799
- msgstr ""
800
- "Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet "
801
- "uživatele zde."
802
-
803
- # @ profilebuilder
804
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1011
805
- msgid ""
806
- "Users cannot currently register themselves, but you can manually create "
807
- "users here."
808
- msgstr ""
809
- "Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
810
-
811
- # @ profilebuilder
812
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1016
813
- msgid "Only an administrator can add new users."
814
- msgstr "Pouze administrátor může přidávat nové uživatele."
815
-
816
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1039
817
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1090
818
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1114
819
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1138
820
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
821
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1216
822
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1240
823
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
824
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1291
825
- msgid ""
826
- "This field must be filled out before registering (It was marked as required "
827
- "by the administrator)"
828
- msgstr ""
829
-
830
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1050
831
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1087
832
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1111
833
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1135
834
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1164
835
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1189
836
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1213
837
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
838
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1261
839
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1288
840
- msgid "This field is marked as required by the administrator"
841
- msgstr ""
842
-
843
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
844
- msgid "Anti-Spam"
845
- msgstr ""
846
-
847
- # @ profilebuilder
848
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1385
849
- #, fuzzy
850
- msgid "Send these credentials via email."
851
- msgstr "Odeslat tyto přihlašovací údaje e-mailem."
852
-
853
- # @ profilebuilder
854
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
855
- msgid "Add User"
856
- msgstr "Přidat uživatele"
857
-
858
- # @ profilebuilder
859
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
860
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:41
861
- msgid "Register"
862
- msgstr "Registrovat"
863
-
864
- # @ profilebuilder
865
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
866
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
867
- msgid "Show/Hide the Admin Bar on Front End"
868
- msgstr "Administrační lišta ve front-endu"
869
-
870
- # @ profilebuilder
871
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
872
- msgid "User-group"
873
- msgstr "Skupina"
874
-
875
- # @ profilebuilder
876
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
877
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
878
- msgid "Visibility"
879
- msgstr "Viditelnost"
880
-
881
- # @ profilebuilder
882
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
883
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
884
- msgid "Default"
885
- msgstr "Výchozí"
886
-
887
- # @ profilebuilder
888
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
889
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
890
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
891
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
892
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
893
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
894
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
895
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
896
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
897
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
898
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
899
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
900
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
901
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:33
902
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:415
903
- msgid "Show"
904
- msgstr "Zobrazit"
905
-
906
- # @ profilebuilder
907
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
908
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
909
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
910
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
911
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
912
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
913
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
914
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
915
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
916
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
917
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
918
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
919
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
920
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:34
921
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:416
922
- msgid "Hide"
923
- msgstr "Skrýt"
924
-
925
- # @ default
926
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
927
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
928
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:89
929
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:59
930
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
931
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:377
932
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:650
933
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
934
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
935
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
936
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
937
- msgid "Save Changes"
938
- msgstr "Uložit změny"
939
-
940
- # @ profilebuilder
941
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
942
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
943
- msgid "Profile Builder"
944
- msgstr "Profile Builder"
945
-
946
- # @ profilebuilder
947
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
948
- msgid "Welcome to Profile Builder!"
949
- msgstr "Vítá vás Profile Builder!"
950
-
951
- # @ profilebuilder
952
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
953
- msgid ""
954
- " lets you customize your website by adding a front-end menu for all your "
955
- "users, giving them a more flexible way to modify their user-information or "
956
- "to register new users."
957
- msgstr ""
958
- " umožňuje přidat front-end menu pro všechny uživatele vašeho webu. To "
959
- "usnadňuje úpravu profilu a zjednodušuje registraci nových uživatelů."
960
-
961
- # @ profilebuilder
962
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
963
- msgid ""
964
- "Also, grants users with administrator rights to customize basic fields or to "
965
- "add new ones."
966
- msgstr ""
967
- "Uživatelé s administrátorskými právy mohou upravovat stávající pole v "
968
- "profilu a vytvářet nová."
969
-
970
- # @ profilebuilder
971
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
972
- msgid ""
973
- "To achieve this, just create a new page, and give it an intuitive name(e.g. "
974
- "Edit Profile)."
975
- msgstr ""
976
- "Pro úpravu profilu přímo na webu (ne v administraci) stačí vytvořit novu "
977
- "Stránku (a pojmenovat ji například Upravit profil)."
978
-
979
- # @ profilebuilder
980
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
981
- msgid ""
982
- "Now all you need to do is add the following shortcode(for the previous "
983
- "example): "
984
- msgstr ""
985
- "Do vytvořené stránky (nebo widgetu) pak stačí umístit následující kód: "
986
-
987
- # @ profilebuilder
988
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
989
- msgid "Publish your page and you are ready to go!"
990
- msgstr "Nyní vytvořenou stránku publikujte a jste hotovi."
991
-
992
- # @ profilebuilder
993
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
994
- msgid "You can use the following shortcodes:"
995
- msgstr "K dispozici jsou následující kódy:"
996
-
997
- # @ profilebuilder
998
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
999
- msgid "for a log-in form."
1000
- msgstr " pro přihlašovací formulář."
1001
-
1002
- # @ profilebuilder
1003
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
1004
- msgid "to add a registration form."
1005
- msgstr " pro registrační formulář."
1006
-
1007
- # @ profilebuilder
1008
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
1009
- msgid ""
1010
- "to grant users a front-end acces to their personal information(requires user "
1011
- "to be logged in)."
1012
- msgstr ""
1013
- "pro poskytnutí přístupu k vlastnímu profilu (pouze pro přihlášené uživatele)."
1014
-
1015
- # @ profilebuilder
1016
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
1017
- #, fuzzy
1018
- msgid "to add a password recovery form."
1019
- msgstr " pro registrační formulář."
1020
-
1021
- # @ profilebuilder
1022
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
1023
- #, fuzzy
1024
- msgid ""
1025
- "With the <strong>Pro</strong> version, users with administrator rights have "
1026
- "access to the following features:"
1027
- msgstr "Uživatelé s administrátorskými právy mohou také:"
1028
-
1029
- # @ profilebuilder
1030
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
1031
- msgid ""
1032
- "add a custom stylesheet/inherit values from the current theme or use one of "
1033
- "the following built into this plugin: default, white or black."
1034
- msgstr ""
1035
- "přidat/zahrnout vlastní CSS styl z aktuální šablony nebo použít některý ze "
1036
- "stylů Profile Builder (výchozí, bílý, černý)."
1037
-
1038
- # @ profilebuilder
1039
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
1040
- msgid ""
1041
- "select whether to display or not the admin bar in the front end for a "
1042
- "specific user-group registered to the site."
1043
- msgstr ""
1044
- "zvolit, zda zobrazovat administrační menu ve front-endu - v závislosti na "
1045
- "uživatelské skupině."
1046
-
1047
- # @ profilebuilder
1048
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
1049
- msgid ""
1050
- "select which information-field can users see/modify. The hidden fields' "
1051
- "values remain unmodified."
1052
- msgstr ""
1053
- "určit, která pole mohou uživatelé vidět/upravovat. Obsah skrytých polí "
1054
- "zůstane beze změny."
1055
-
1056
- # @ profilebuilder
1057
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
1058
- msgid ""
1059
- "add custom fields to the existing ones, with several types to choose from: "
1060
- "heading, text, textarea, select, checkbox, radio, and/or upload."
1061
- msgstr ""
1062
- "přidat další uživatelská pole k již existujícím polím profilu. K dispozici "
1063
- "jsou typy polí: nadpis, text, textarea, select, check-box, radio a upload."
1064
-
1065
- # @ profilebuilder
1066
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
1067
- msgid "add an avatar field."
1068
- msgstr "přidat pole pro avatar."
1069
-
1070
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
1071
- msgid "create custom redirects."
1072
- msgstr ""
1073
-
1074
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1075
- msgid "front-end userlisting using the"
1076
- msgstr ""
1077
-
1078
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1079
- msgid "shortcode."
1080
- msgstr ""
1081
-
1082
- # @ profilebuilder
1083
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
1084
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
1085
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:65
1086
- msgid "NOTE:"
1087
- msgstr "POZNÁMKA:"
1088
-
1089
- # @ profilebuilder
1090
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
1091
- msgid "this plugin only adds/removes fields in the front-end."
1092
- msgstr "tento plugin pouze přidává/odstraňuje pole ve front-endu."
1093
-
1094
- # @ profilebuilder
1095
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
1096
- msgid ""
1097
- "The default information-fields will still be visible(and thus modifiable)"
1098
- msgstr "Výchozí pole budou i nadále dostupná (včetně možnosti úprav)"
1099
-
1100
- # @ profilebuilder
1101
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
1102
- msgid ""
1103
- "from the back-end, while custom fields will only be visible in the front-end."
1104
- msgstr "v administraci. Vlastní pole budou přístupná ve front-endu (na webu)."
1105
-
1106
- # @ profilebuilder
1107
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
1108
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
1109
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
1110
- msgid "Default Profile Fields"
1111
- msgstr "Výchozí pole profilu"
1112
-
1113
- # @ profilebuilder
1114
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
1115
- msgid "Input Field Name"
1116
- msgstr "Název pole"
1117
-
1118
- # @ profilebuilder
1119
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
1120
- #, fuzzy
1121
- msgid "Required"
1122
- msgstr "(vyžadováno)"
1123
-
1124
- # @ profilebuilder
1125
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
1126
- msgid "Name:"
1127
- msgstr "Jméno:"
1128
-
1129
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
1130
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
1131
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
1132
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
1133
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
1134
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
1135
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
1136
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
1137
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
1138
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
1139
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
1140
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
1141
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
1142
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
1143
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
1144
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
1145
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
1146
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
1147
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
1148
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
1149
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
1150
- msgid "Yes"
1151
- msgstr ""
1152
-
1153
- # @ profilebuilder
1154
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
1155
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
1156
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
1157
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
1158
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
1159
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
1160
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
1161
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
1162
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
1163
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
1164
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
1165
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
1166
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
1167
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
1168
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
1169
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
1170
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
1171
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
1172
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
1173
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
1174
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
1175
- #, fuzzy
1176
- msgid "No"
1177
- msgstr "Žádný"
1178
-
1179
- # @ profilebuilder
1180
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1181
- msgid "Display name publicly as..."
1182
- msgstr "Veřejně zobrazovat jako..."
1183
-
1184
- # @ profilebuilder
1185
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1186
- msgid "Contact Info:"
1187
- msgstr "Kontaktní informace:"
1188
-
1189
- # @ profilebuilder
1190
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1191
- msgid "About Yourself:"
1192
- msgstr "O vás:"
1193
-
1194
- # @ profilebuilder
1195
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
1196
- #, fuzzy
1197
- msgid "(New) Password"
1198
- msgstr "Nové heslo"
1199
-
1200
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:60
1201
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:24
1202
- msgid "Do you want to"
1203
- msgstr ""
1204
-
1205
- # @ profilebuilder
1206
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:112
1207
- #, fuzzy
1208
- msgid "The selected user couldn't be deleted."
1209
- msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
1210
-
1211
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:129
1212
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:84
1213
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:132
1214
- msgid "You either don't have permission for that action or there was an error!"
1215
- msgstr ""
1216
-
1217
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:342
1218
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:14
1219
- #, php-format
1220
- msgid "[%1$s] Activate %2$s"
1221
- msgstr ""
1222
-
1223
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:343
1224
- #, php-format
1225
- msgid ""
1226
- "To activate your user, please click the following link:\n"
1227
- "\n"
1228
- "%s%s%s\n"
1229
- "\n"
1230
- "After you activate, you will receive *another email* with your login.\n"
1231
- "\n"
1232
- msgstr ""
1233
-
1234
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:443
1235
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:19
1236
- #, php-format
1237
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1238
- msgstr ""
1239
-
1240
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:445
1241
- msgid ""
1242
- "The \"Admin Approval\" feature was activated at the time of registration, so "
1243
- "please remember that you need to approve this user before he/she can log in!"
1244
- msgstr ""
1245
-
1246
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:448
1247
- msgid "A new subscriber has (been) registered!"
1248
- msgstr ""
1249
-
1250
- # @ profilebuilder
1251
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:462
1252
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:8
1253
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:10
1254
- #, fuzzy
1255
- msgid "A new account has been created for you."
1256
- msgstr "Uživatelský účet pro %1$s byl vytvořen."
1257
-
1258
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:465
1259
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:9
1260
- #, php-format
1261
- msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
1262
- msgstr ""
1263
-
1264
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:467
1265
- msgid ""
1266
- "Before you can access your account, an administrator needs to approve it. "
1267
- "You will be notified via email."
1268
- msgstr ""
1269
-
1270
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1271
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1272
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1273
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
1274
- msgid "General Settings"
1275
- msgstr ""
1276
-
1277
- # @ profilebuilder
1278
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
1279
- #, fuzzy
1280
- msgid "Stylesheet Used on the Front-End:"
1281
- msgstr "CSS styl:"
1282
-
1283
- # @ profilebuilder
1284
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1285
- msgid "White"
1286
- msgstr "Bílý"
1287
-
1288
- # @ profilebuilder
1289
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
1290
- msgid "Black"
1291
- msgstr "Černý"
1292
-
1293
- # @ profilebuilder
1294
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
1295
- msgid "None"
1296
- msgstr "Žádný"
1297
-
1298
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
1299
- msgid "\"Email Confirmation\" Feature Activated:"
1300
- msgstr ""
1301
-
1302
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
1303
- msgid "\"Admin Approval\" Feature Activated:"
1304
- msgstr ""
1305
-
1306
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
1307
- msgid ""
1308
- "The black stylesheet is intended for sites/blogs with a dark background."
1309
- msgstr ""
1310
-
1311
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:51
1312
- msgid ""
1313
- "The white stylesheet is intended for a sites/blogs with a light background "
1314
- "color."
1315
- msgstr ""
1316
-
1317
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:52
1318
- msgid ""
1319
- "On single-site installations the \"Email Confirmation\" feature only works "
1320
- "in the front-end, so make sure you also use the \"Custom Redirects\" feature."
1321
- msgstr ""
1322
-
1323
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:53
1324
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:67
1325
- msgid ""
1326
- "The \"Email Confirmation\" feature is active (by default) on WPMU "
1327
- "installations."
1328
- msgstr ""
1329
-
1330
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:55
1331
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:69
1332
- #, php-format
1333
- msgid "You can find a list of unconfirmed email addresses %1$shere%2$s."
1334
- msgstr ""
1335
-
1336
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:66
1337
- msgid ""
1338
- "On single-site installations the \"Email Confirmation\" feature only works "
1339
- "in the front-end."
1340
- msgstr ""
1341
-
1342
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:77
1343
- msgid "Allow Users to Log in With:"
1344
- msgstr ""
1345
-
1346
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1347
- #, php-format
1348
- msgid ""
1349
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1350
- "Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
1351
- "access to automatic updates and support. Need a license key? %3$sPurchase "
1352
- "one now%4$s"
1353
- msgstr ""
1354
-
1355
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1356
- #, php-format
1357
- msgid ""
1358
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1359
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1360
- "priority support. %3$sPurchase one now%4$s"
1361
- msgstr ""
1362
-
1363
- # @ profilebuilder
1364
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1365
- msgid "Basic Information"
1366
- msgstr "Základní informace"
1367
-
1368
- # @ profilebuilder
1369
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1370
- msgid "Show/Hide the Admin Bar on Front-end"
1371
- msgstr "Zobrazit/skrýt administrační lištu ve front-endu"
1372
-
1373
- # @ profilebuilder
1374
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1375
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1376
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1377
- msgid "Extra Profile Fields"
1378
- msgstr "Vlastní pole profilu"
1379
-
1380
- # @ profilebuilder
1381
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1382
- #, fuzzy
1383
- msgid "Addons"
1384
- msgstr "Přidat volbu"
1385
-
1386
- # @ profilebuilder
1387
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1388
- msgid "Register Your Version"
1389
- msgstr "Registrace"
1390
-
1391
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1392
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
1393
- msgid "Activate/Deactivate Addons"
1394
- msgstr ""
1395
-
1396
- # @ profilebuilder
1397
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
1398
- #, fuzzy
1399
- msgid "Name/Description"
1400
- msgstr "Popis:"
1401
-
1402
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
1403
- msgid "Status"
1404
- msgstr ""
1405
-
1406
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
1407
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
1408
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:32
1409
- msgid "User-Listing"
1410
- msgstr ""
1411
-
1412
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
1413
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1414
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1415
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:43
1416
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:50
1417
- msgid "Active"
1418
- msgstr ""
1419
-
1420
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1421
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1422
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1423
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:44
1424
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:51
1425
- msgid "Inactive"
1426
- msgstr ""
1427
-
1428
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1429
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
1430
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
1431
- msgid "Custom Redirects"
1432
- msgstr ""
1433
-
1434
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
1435
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
1436
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
1437
- msgid "reCAPTCHA"
1438
- msgstr ""
1439
-
1440
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:41
1441
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:42
1442
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:43
1443
- msgid "User Email Customizer"
1444
- msgstr ""
1445
-
1446
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:48
1447
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:424
1448
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:425
1449
- msgid "Admin Email Customizer"
1450
- msgstr ""
1451
-
1452
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
1453
- msgid "Redirects on custom page requests:"
1454
- msgstr ""
1455
-
1456
- # @ profilebuilder
1457
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
1458
- #, fuzzy
1459
- msgid "Action"
1460
- msgstr "Přidat volbu"
1461
-
1462
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
1463
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
1464
- msgid "Redirect"
1465
- msgstr ""
1466
-
1467
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
1468
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
1469
- msgid "URL"
1470
- msgstr ""
1471
-
1472
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
1473
- msgid "After Registration:"
1474
- msgstr ""
1475
-
1476
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
1477
- msgid "After Login:"
1478
- msgstr ""
1479
-
1480
- # @ profilebuilder
1481
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
1482
- #, fuzzy
1483
- msgid "Recover Password (*)"
1484
- msgstr "Heslo ještě jednou"
1485
-
1486
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
1487
- msgid ""
1488
- "When activated this feature will redirect the user on both the default "
1489
- "Wordpress password recovery page and the \"Lost password?\" link used by "
1490
- "Profile Builder on the front-end login page."
1491
- msgstr ""
1492
-
1493
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
1494
- msgid "Redirects on default WordPress page requests:"
1495
- msgstr ""
1496
-
1497
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
1498
- msgid "Requested WP Page"
1499
- msgstr ""
1500
-
1501
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
1502
- msgid "Default WP Login Page (*)"
1503
- msgstr ""
1504
-
1505
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
1506
- msgid "Default WP Logout Page (**)"
1507
- msgstr ""
1508
-
1509
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
1510
- msgid "Default WP Register Page"
1511
- msgstr ""
1512
-
1513
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
1514
- msgid "Default WP Dashboard (***)"
1515
- msgstr ""
1516
-
1517
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
1518
- msgid "Before login. Works best if used in conjuction with \"After logout\"."
1519
- msgstr ""
1520
-
1521
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
1522
- msgid "After logout. Works best if used in conjuction with \"Before login\"."
1523
- msgstr ""
1524
-
1525
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
1526
- msgid ""
1527
- "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1528
- "manage options)."
1529
- msgstr ""
1530
-
1531
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:11
1532
- #, php-format
1533
- msgid ""
1534
- "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s<br/"
1535
- ">Before you can access your account, an administrator needs to approve it. "
1536
- "You will be notified via email."
1537
- msgstr ""
1538
-
1539
- # @ profilebuilder
1540
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:12
1541
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:145
1542
- #, fuzzy, php-format
1543
- msgid "Your account on %1$s has been approved!"
1544
- msgstr "Uživatelský účet pro %1$s byl vytvořen."
1545
-
1546
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:13
1547
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:146
1548
- #, php-format
1549
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1550
- msgstr ""
1551
-
1552
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:15
1553
- #, php-format
1554
- msgid ""
1555
- "To activate your user, please click the following link:\n"
1556
- "\n"
1557
- "%s\n"
1558
- "\n"
1559
- "After you activate, you will receive *another email* with your login.\n"
1560
- "\n"
1561
- msgstr ""
1562
-
1563
- # @ profilebuilder
1564
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:16
1565
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:152
1566
- #, fuzzy, php-format
1567
- msgid "Your account on %1$s has been unapproved!"
1568
- msgstr "Uživatelský účet pro %1$s byl vytvořen."
1569
-
1570
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:17
1571
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:153
1572
- #, php-format
1573
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1574
- msgstr ""
1575
-
1576
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:18
1577
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:20
1578
- #, php-format
1579
- msgid "[%1$s] A new subscriber has (been) registered!"
1580
- msgstr ""
1581
-
1582
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:21
1583
- #, php-format
1584
- msgid ""
1585
- "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/><br/>The "
1586
- "\"Admin Approval\" feature was activated at the time of registration, so "
1587
- "please remember that you need to approve this user before he/she can log in!"
1588
- msgstr ""
1589
-
1590
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:46
1591
- msgid "Here you can customize all the emails sent the users."
1592
- msgstr ""
1593
-
1594
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:49
1595
- msgid ""
1596
- "Common Settings: <span style=\"color:gray; font-size:11px;\">These settings "
1597
- "are also replicated in the \"Admin Email Customizer\" settings-page upon "
1598
- "save.</span>"
1599
- msgstr ""
1600
-
1601
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:52
1602
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:434
1603
- msgid "From (name): "
1604
- msgstr ""
1605
-
1606
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:60
1607
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:76
1608
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:119
1609
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:175
1610
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:231
1611
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:291
1612
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:336
1613
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:442
1614
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:458
1615
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:502
1616
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:555
1617
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:609
1618
- msgid "Available Merge Tags"
1619
- msgstr ""
1620
-
1621
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:68
1622
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:450
1623
- msgid "From (reply-to email): "
1624
- msgstr ""
1625
-
1626
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:92
1627
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:475
1628
- msgid "Default Registration"
1629
- msgstr ""
1630
-
1631
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:100
1632
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:156
1633
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:212
1634
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:272
1635
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:317
1636
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:483
1637
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:536
1638
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:590
1639
- msgid "Email Subject: "
1640
- msgstr ""
1641
-
1642
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:108
1643
- msgid ""
1644
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1645
- "<span style=\"color:red\">user</span> upon registration.</span>"
1646
- msgstr ""
1647
-
1648
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:147
1649
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:528
1650
- msgid "Registration with Email Confirmation"
1651
- msgstr ""
1652
-
1653
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:164
1654
- msgid ""
1655
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1656
- "<span style=\"color:red\">user</span> upon registration with email "
1657
- "confirmation.</span>"
1658
- msgstr ""
1659
-
1660
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:203
1661
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:582
1662
- msgid "Registration with Admin Approval"
1663
- msgstr ""
1664
-
1665
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:220
1666
- msgid ""
1667
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1668
- "<span style=\"color:red\">user</span> upon registration with admin approval."
1669
- "</span>"
1670
- msgstr ""
1671
-
1672
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:259
1673
- msgid "Admin Approval Notifications (on status change)"
1674
- msgstr ""
1675
-
1676
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:267
1677
- msgid "Message Sent to the User Upon Approval"
1678
- msgstr ""
1679
-
1680
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:280
1681
- msgid ""
1682
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1683
- "<span style=\"color:red\">user</span> upon approval.</span>"
1684
- msgstr ""
1685
-
1686
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:312
1687
- msgid "Message Sent to the User Upon Unapproval"
1688
- msgstr ""
1689
-
1690
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:325
1691
- msgid ""
1692
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1693
- "<span style=\"color:red\">user</span> upon unapproval.</span>"
1694
- msgstr ""
1695
-
1696
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:428
1697
- msgid "Here you can customize all the emails sent the administrator."
1698
- msgstr ""
1699
-
1700
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:431
1701
- msgid ""
1702
- "Common Settings: <span style=\"color:gray; font-size:11px;\">These settings "
1703
- "are also replicated in the \"User Email Customizer\" settings-page upon save."
1704
- "</span>"
1705
- msgstr ""
1706
-
1707
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:491
1708
- msgid ""
1709
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1710
- "<span style=\"color:red\">administrator</span> upon user registration.</span>"
1711
- msgstr ""
1712
-
1713
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:544
1714
- msgid ""
1715
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1716
- "<span style=\"color:red\">administrator</span> upon user registration with "
1717
- "email confirmation.</span>"
1718
- msgstr ""
1719
-
1720
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:598
1721
- msgid ""
1722
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1723
- "<span style=\"color:red\">administrator</span> upon user registration with "
1724
- "admin approval.</span>"
1725
- msgstr ""
1726
-
1727
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:752
1728
- msgid "approved"
1729
- msgstr ""
1730
-
1731
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:761
1732
- msgid "unapproved"
1733
- msgstr ""
1734
-
1735
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
1736
- msgid "Could not open socket!"
1737
- msgstr ""
1738
-
1739
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
1740
- msgid "To use reCAPTCHA you must get an API key from"
1741
- msgstr ""
1742
-
1743
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
1744
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1745
- msgstr ""
1746
-
1747
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
1748
- msgid ""
1749
- "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1750
- msgstr ""
1751
-
1752
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
1753
- msgid ""
1754
- "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
1755
- "you can do so at"
1756
- msgstr ""
1757
-
1758
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
1759
- msgid ""
1760
- "Adds a reCAPTCHA form on the registration page created in the front-end "
1761
- "(only)."
1762
- msgstr ""
1763
-
1764
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
1765
- msgid "For this you must get a public and private key from Google:"
1766
- msgstr ""
1767
-
1768
- # @ profilebuilder
1769
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
1770
- msgid "Key"
1771
- msgstr "Klíč"
1772
-
1773
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
1774
- msgid "Code"
1775
- msgstr ""
1776
-
1777
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
1778
- msgid "Public Key:"
1779
- msgstr ""
1780
-
1781
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
1782
- msgid "Private Key:"
1783
- msgstr ""
1784
-
1785
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
1786
- msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1787
- msgstr ""
1788
-
1789
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
1790
- msgid ""
1791
- "To create a page containing the users registered to this current site/blog, "
1792
- "insert the following shortcode in a (blank) page: "
1793
- msgstr ""
1794
-
1795
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
1796
- msgid ""
1797
- "For instance, to create a userlisting shortcode listing only the editors and "
1798
- "authors, visible to only the users currently logged in, you would use:"
1799
- msgstr ""
1800
-
1801
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
1802
- msgid ""
1803
- "You can also create a userlisting page that displays users having a certain "
1804
- "meta-value within a certain (extra) meta-field like so:"
1805
- msgstr ""
1806
-
1807
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
1808
- msgid ""
1809
- "Remember though, that the field-value combination must exist in the database."
1810
- msgstr ""
1811
-
1812
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:41
1813
- msgid "These settings are applied to the front-end userlisting."
1814
- msgstr ""
1815
-
1816
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:47
1817
- msgid "Number of Users/Page: "
1818
- msgstr ""
1819
-
1820
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:64
1821
- msgid "Default Sorting Criteria: "
1822
- msgstr ""
1823
-
1824
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:93
1825
- msgid "Default Sorting Order: "
1826
- msgstr ""
1827
-
1828
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:104
1829
- msgid "\"All-Userlisting\" Template"
1830
- msgstr ""
1831
-
1832
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:106
1833
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:250
1834
- msgid ""
1835
- "With the userlisting templates you can customize the look, feel and "
1836
- "information listed by the shortcode."
1837
- msgstr ""
1838
-
1839
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:107
1840
- msgid ""
1841
- "The \"All Users Listing\" template is used to list all users. It's displayed "
1842
- "on each page access where the shortcode is present."
1843
- msgstr ""
1844
-
1845
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:111
1846
- msgid "Avatar size: "
1847
- msgstr ""
1848
-
1849
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:127
1850
- msgid "Insert \"Sort By\" Field:"
1851
- msgstr ""
1852
-
1853
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:154
1854
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:256
1855
- msgid "Insert \"User-Meta\" Field:"
1856
- msgstr ""
1857
-
1858
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:188
1859
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:297
1860
- msgid "Insert Extra Functions:"
1861
- msgstr ""
1862
-
1863
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:203
1864
- msgid "Show/Hide Default \"All-Userlisting\" Code"
1865
- msgstr ""
1866
-
1867
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:205
1868
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:311
1869
- msgid ""
1870
- "If you wish to use a default userlisting, just copy the following code and "
1871
- "paste it in the textarea below:"
1872
- msgstr ""
1873
-
1874
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:248
1875
- msgid "\"Single-Userlisting\" Template"
1876
- msgstr ""
1877
-
1878
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:251
1879
- msgid ""
1880
- "The \"Single User Listing\" template is used to list an individual user. "
1881
- "It's displayed when clickin on the \"more info\" link."
1882
- msgstr ""
1883
-
1884
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:309
1885
- msgid "Show/Hide Default \"Single-Userlisting\" Code"
1886
- msgstr ""
1887
-
1888
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:415
1889
- msgid ""
1890
- "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1891
- msgstr ""
1892
-
1893
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:415
1894
- msgid "You can find it in Profile Builder's menu."
1895
- msgstr ""
1896
-
1897
- # @ profilebuilder
1898
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:445
1899
- #, fuzzy
1900
- msgid "You need to be logged in to view the userlisting!"
1901
- msgstr "Pro úpravu profilu je nutné se přihlásit."
1902
-
1903
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:477
1904
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:492
1905
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1641
1906
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1730
1907
- msgid "Search Users by All Fields"
1908
- msgstr ""
1909
-
1910
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:514
1911
- msgid "Leave Blank and Press Search to List All Users"
1912
- msgstr ""
1913
-
1914
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:518
1915
- msgid "Search"
1916
- msgstr ""
1917
-
1918
- # @ profilebuilder
1919
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:531
1920
- #, fuzzy
1921
- msgid "First/Lastname"
1922
- msgstr "Křestní jméno"
1923
-
1924
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:543
1925
- msgid "Sign-up Date"
1926
- msgstr ""
1927
-
1928
- # @ profilebuilder
1929
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:549
1930
- #, fuzzy
1931
- msgid "Firstname"
1932
- msgstr "Křestní jméno"
1933
-
1934
- # @ profilebuilder
1935
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:555
1936
- #, fuzzy
1937
- msgid "Lastname"
1938
- msgstr "Příjmení"
1939
-
1940
- # @ profilebuilder
1941
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:561
1942
- #, fuzzy
1943
- msgid "Display Name"
1944
- msgstr "Křestní jméno"
1945
-
1946
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:579
1947
- msgid "Posts"
1948
- msgstr ""
1949
-
1950
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:624
1951
- msgid "Click here to see more information about this user"
1952
- msgstr ""
1953
-
1954
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:624
1955
- msgid "More..."
1956
- msgstr ""
1957
-
1958
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:626
1959
- msgid "Click here to see more information about this user."
1960
- msgstr ""
1961
-
1962
- # @ profilebuilder
1963
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:829
1964
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:939
1965
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1251
1966
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1417
1967
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:600
1968
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:633
1969
- #, fuzzy
1970
- msgid "No uploaded attachment"
1971
- msgstr "Příloha \""
1972
-
1973
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:831
1974
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:941
1975
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1253
1976
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1309
1977
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1419
1978
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1475
1979
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
1980
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
1981
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
1982
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1983
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
1984
- msgid "Click to see the current attachment"
1985
- msgstr ""
1986
-
1987
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1070
1988
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1072
1989
- msgid "Click here to go back"
1990
- msgstr ""
1991
-
1992
- # @ profilebuilder
1993
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1070
1994
- #, fuzzy
1995
- msgid "Back"
1996
- msgstr "Černý"
1997
-
1998
- # @ profilebuilder
1999
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1251
2000
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1253
2001
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1417
2002
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1419
2003
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:600
2004
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
2005
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:633
2006
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
2007
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
2008
- msgid "Current file"
2009
- msgstr "Aktuální soubor"
2010
-
2011
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1307
2012
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1473
2013
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:712
2014
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:744
2015
- msgid "Avatar"
2016
- msgstr ""
2017
-
2018
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1532
2019
- msgid "No results found!"
2020
- msgstr ""
2021
-
2022
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1628
2023
- msgid "&laquo;&laquo; First"
2024
- msgstr ""
2025
-
2026
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1629
2027
- msgid "&laquo; Prev"
2028
- msgstr ""
2029
-
2030
- # @ profilebuilder
2031
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1630
2032
- #, fuzzy
2033
- msgid "Next &raquo; "
2034
- msgstr "Odhlásit se &raquo;"
2035
-
2036
- # @ profilebuilder
2037
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1631
2038
- #, fuzzy
2039
- msgid "Last &raquo;&raquo;"
2040
- msgstr "Odhlásit se &raquo;"
2041
-
2042
- # @ profilebuilder
2043
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:302
2044
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:455
2045
- #, fuzzy
2046
- msgid "You must give your option a title."
2047
- msgstr "Pro úpravu profilu je nutné se přihlásit."
2048
-
2049
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:306
2050
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
2051
- msgid "You have entered an invalid meta-key format!"
2052
- msgstr ""
2053
-
2054
- # @ profilebuilder
2055
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
2056
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:463
2057
- #, fuzzy
2058
- msgid "You must enter a valid meta-key."
2059
- msgstr "Musíte zadat platnou e-mailovou adresu."
2060
-
2061
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:316
2062
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
2063
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:473
2064
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:485
2065
- msgid "That meta-key is already in use."
2066
- msgstr ""
2067
-
2068
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
2069
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
2070
- msgid ""
2071
- "There is already an avatar input-type. You can only have one avatar present."
2072
- msgstr ""
2073
-
2074
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
2075
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
2076
- msgid ""
2077
- "There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
2078
- "have one present."
2079
- msgstr ""
2080
-
2081
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
2082
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:505
2083
- msgid "The textarea row value must be numeric."
2084
- msgstr ""
2085
-
2086
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
2087
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:509
2088
- msgid "The maxlength attribute must be numeric."
2089
- msgstr ""
2090
-
2091
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
2092
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:516
2093
- msgid "The value must be between 20 and 200!"
2094
- msgstr ""
2095
-
2096
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:361
2097
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:521
2098
- msgid "The width component of the entered value must be numeric!"
2099
- msgstr ""
2100
-
2101
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:363
2102
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:523
2103
- msgid "The height component of the entered value must be numeric!"
2104
- msgstr ""
2105
-
2106
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:365
2107
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:525
2108
- msgid "The width component of the entered value must be between 20 and 200!"
2109
- msgstr ""
2110
-
2111
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:367
2112
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:527
2113
- msgid "The height component of the entered value must be between 20 and 200!"
2114
- msgstr ""
2115
-
2116
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:369
2117
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:529
2118
- msgid "The pair of values entered didn't have the right format (width,height)!"
2119
- msgstr ""
2120
-
2121
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:372
2122
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:532
2123
- msgid "The entered avatar size must be numeric!"
2124
- msgstr ""
2125
-
2126
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:416
2127
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:602
2128
- msgid "There was an error, please try again."
2129
- msgstr ""
2130
-
2131
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:60
2132
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:96
2133
- msgid "Your session has expired! Please refresh the page and try again."
2134
- msgstr ""
2135
-
2136
- # @ profilebuilder
2137
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:71
2138
- #, fuzzy
2139
- msgid "User successfully approved!"
2140
- msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2141
-
2142
- # @ profilebuilder
2143
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:79
2144
- #, fuzzy
2145
- msgid "User successfully unapproved!"
2146
- msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2147
-
2148
- # @ profilebuilder
2149
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:114
2150
- #, fuzzy
2151
- msgid "Users successfully approved!"
2152
- msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2153
-
2154
- # @ profilebuilder
2155
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
2156
- #, fuzzy
2157
- msgid "Users successfully unapproved!"
2158
- msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2159
-
2160
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:174
2161
- msgid ""
2162
- "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2163
- "before you can log in."
2164
- msgstr ""
2165
-
2166
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:186
2167
- msgid ""
2168
- "Your account has to be confirmed by an administrator before you can use the "
2169
- "\"Password Recovery\" feature."
2170
- msgstr ""
2171
-
2172
- # @ profilebuilder
2173
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2174
- msgid ""
2175
- "You can create as many extra fields as your project requires. To break your "
2176
- "custom fields into sections (on the front-end), add a \""
2177
- msgstr ""
2178
- "Můžete vytvořit libovolné množství vlastních polí. K jejich rozdělení do "
2179
- "tématických celků (ve front-endu) použijte pole \""
2180
-
2181
- # @ profilebuilder
2182
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2183
- msgid "heading"
2184
- msgstr "záhlaví"
2185
-
2186
- # @ profilebuilder
2187
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2188
- msgid "\" custom field."
2189
- msgstr "\"."
2190
-
2191
- # @ profilebuilder
2192
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2193
- #, fuzzy
2194
- msgid "All of the fields can be sorted and rearranged to your liking with"
2195
- msgstr "Všechna pole lze třídit pomocí "
2196
-
2197
- # @ profilebuilder
2198
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2199
- msgid "Drag"
2200
- msgstr "Drag"
2201
-
2202
- # @ profilebuilder
2203
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2204
- msgid "Drop"
2205
- msgstr "Drop"
2206
-
2207
- # @ profilebuilder
2208
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2209
- #, fuzzy
2210
- msgid ""
2211
- "Don't worry about the order in which you create your custom fields, you can "
2212
- "always reorder them."
2213
- msgstr ""
2214
- ". Není proto třeba se starat o pořadí, ve kterém vytvoříte vlastní pole, "
2215
- "můžete jej kdykoli změnit."
2216
-
2217
- # @ profilebuilder
2218
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
2219
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
2220
- msgid "Title"
2221
- msgstr "Název"
2222
-
2223
- # @ profilebuilder
2224
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
2225
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
2226
- msgid "Type"
2227
- msgstr "Typ"
2228
-
2229
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
2230
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
2231
- msgid "Meta-Key"
2232
- msgstr ""
2233
-
2234
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
2235
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
2236
- msgid "ID"
2237
- msgstr ""
2238
-
2239
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
2240
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
2241
- msgid "Req'd"
2242
- msgstr ""
2243
-
2244
- # @ profilebuilder
2245
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
2246
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
2247
- msgid "Add Option"
2248
- msgstr "Přidat volbu"
2249
-
2250
- # @ profilebuilder
2251
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
2252
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
2253
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
2254
- msgid "Edit"
2255
- msgstr "Upravit"
2256
-
2257
- # @ profilebuilder
2258
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
2259
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:82
2260
- msgid "Title:"
2261
- msgstr "Název:"
2262
-
2263
- # @ profilebuilder
2264
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
2265
- msgid "The title of the item."
2266
- msgstr "Název vlastního pole."
2267
-
2268
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
2269
- msgid "Meta-Key:"
2270
- msgstr ""
2271
-
2272
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
2273
- msgid ""
2274
- "Use this in conjuction with WordPress functions to display the value in the "
2275
- "page of your choosing. Auto-completed but editable - in this case it must be "
2276
- "uniqe.<br/>Changing this might take long in case of a very big user-count."
2277
- msgstr ""
2278
-
2279
- # @ profilebuilder
2280
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
2281
- msgid "Option Type:"
2282
- msgstr "Typ vlastního pole:"
2283
-
2284
- # @ profilebuilder
2285
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
2286
- msgid "Choose one of the supported option types."
2287
- msgstr "Vyberte jednu z nabízených možností."
2288
-
2289
- # @ profilebuilder
2290
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
2291
- msgid "Description:"
2292
- msgstr "Popis:"
2293
-
2294
- # @ profilebuilder
2295
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
2296
- msgid ""
2297
- "Enter a detailed description of the option for end users to read(optional)."
2298
- msgstr "Zadejte podrobný popis vlastního pole pro uživatele (volitelné)."
2299
-
2300
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2301
- msgid "You can only insert links using standard HTML syntax:"
2302
- msgstr ""
2303
-
2304
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2305
- msgid "address"
2306
- msgstr ""
2307
-
2308
- # @ profilebuilder
2309
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2310
- #, fuzzy
2311
- msgid "name"
2312
- msgstr "Jméno"
2313
-
2314
- # @ profilebuilder
2315
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
2316
- msgid "Options:"
2317
- msgstr "Možnosti:"
2318
-
2319
- # @ profilebuilder
2320
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
2321
- msgid ""
2322
- "Enter a comma separated list of options. For example, you could have \"One,"
2323
- "Two,Three\" or just a single value like \"Yes\" for a checkbox."
2324
- msgstr ""
2325
- "Zadejte čárkami oddělený seznam možností. Například \"Jedna, dva, tři\" nebo "
2326
- "jen jednu hodnotu (např. \"Ano\" u check-boxu)."
2327
-
2328
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
2329
- msgid "ID:"
2330
- msgstr ""
2331
-
2332
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
2333
- msgid ""
2334
- "This is the internal ID for this input. You can use this in conjuction with "
2335
- "filters to target this element if needed.<br/>Can't be edited."
2336
- msgstr ""
2337
-
2338
- # @ profilebuilder
2339
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
2340
- #, fuzzy
2341
- msgid "Required:"
2342
- msgstr "(vyžadováno)"
2343
-
2344
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
2345
- msgid "Check this box to make this field required."
2346
- msgstr ""
2347
-
2348
- # @ profilebuilder
2349
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
2350
- msgid "Cancel"
2351
- msgstr "Zrušit"
2352
-
2353
- # @ profilebuilder
2354
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
2355
- msgid "Save"
2356
- msgstr "Uložit"
2357
-
2358
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:71
2359
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:177
2360
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:246
2361
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:314
2362
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:381
2363
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:449
2364
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:504
2365
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:554
2366
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:619
2367
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:730
2368
- msgid ""
2369
- "This field wasn't updated because you entered and empty string (It was "
2370
- "marked as required by the administrator)"
2371
- msgstr ""
2372
-
2373
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:597
2374
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:629
2375
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
2376
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:736
2377
- msgid "max upload size"
2378
- msgstr ""
2379
-
2380
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:603
2381
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:639
2382
- msgid "Are you sure you want to delete this attachment?"
2383
- msgstr ""
2384
-
2385
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
2386
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
2387
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
2388
- msgid "Click to delete the current attachment"
2389
- msgstr ""
2390
-
2391
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
2392
- msgid ""
2393
- "The attachment can't be deleted (It was marked as required by the "
2394
- "administrator)"
2395
- msgstr ""
2396
-
2397
- # @ profilebuilder
2398
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:708
2399
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:740
2400
- msgid "Current avatar"
2401
- msgstr "Aktuální avatar"
2402
-
2403
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:708
2404
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:740
2405
- msgid "No uploaded avatar"
2406
- msgstr ""
2407
-
2408
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:714
2409
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:749
2410
- msgid "Are you sure you want to delete this avatar?"
2411
- msgstr ""
2412
-
2413
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
2414
- msgid ""
2415
- "The avatar image can't be deleted (It was marked as required by the "
2416
- "administrator)."
2417
- msgstr ""
2418
-
2419
- # @ profilebuilder
2420
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:750
2421
- #, fuzzy
2422
- msgid "Click to see the current avatar"
2423
- msgstr "Aktuální avatar"
2424
-
2425
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:750
2426
- msgid "Click to delete the avatar"
2427
- msgstr ""
2428
-
2429
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
2430
- msgid "This login widget lets you add a login form in the sidebar."
2431
- msgstr ""
2432
-
2433
- # @ profilebuilder
2434
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
2435
- #, fuzzy
2436
- msgid "Profile Builder Login Widget"
2437
- msgstr "Profile Builder"
2438
-
2439
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:42
2440
- msgid "Don't have an account?"
2441
- msgstr ""
2442
-
2443
- # @ profilebuilder
2444
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2445
- #, fuzzy
2446
- msgid "Lost Password"
2447
- msgstr "Zapomněli jste heslo?"
2448
-
2449
- # @ profilebuilder
2450
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2451
- #, fuzzy
2452
- msgid "Lost Your Password?"
2453
- msgstr "Zapomněli jste heslo?"
2454
-
2455
- # @ profilebuilder
2456
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:78
2457
- #, fuzzy
2458
- msgid "Login"
2459
- msgstr "Přihlásit se"
2460
-
2461
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:87
2462
- msgid "After login redirect URL (optional):"
2463
- msgstr ""
2464
-
2465
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:92
2466
- msgid "Register page URL (optional):"
2467
- msgstr ""
2468
-
2469
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:97
2470
- msgid "Password Recovery page URL (optional):"
2471
- msgstr ""
2472
-
2473
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
2474
- msgid "The user-validation has failed - the avatar was not deleted!"
2475
- msgstr ""
2476
-
2477
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
2478
- msgid "The user-validation has failed - the attachment was not deleted!"
2479
- msgstr ""
2480
-
2481
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:354
2482
- #, php-format
2483
- msgid ""
2484
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
2485
- "Please %1$sregister your copy%2$s of Profile Builder to receive access to "
2486
- "automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
2487
- "%5$sDismiss%6$s"
2488
- msgstr ""
2489
-
2490
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:358
2491
- #, php-format
2492
- msgid ""
2493
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
2494
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
2495
- "priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
2496
- msgstr ""
2497
-
2498
- # @ profilebuilder
2499
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
2500
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
2501
- msgid "Register your version of Profile Builder Pro"
2502
- msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
2503
-
2504
- # @ profilebuilder
2505
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
2506
- msgid ""
2507
- "Now that you acquired a copy of Profile Builder Pro, you should take the "
2508
- "time and register it with the serial number you received in the e-mail."
2509
- msgstr ""
2510
- "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody "
2511
- "registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
2512
-
2513
- # @ profilebuilder
2514
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
2515
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
2516
- msgid ""
2517
- "If you register this version of Profile Builder, you'll receive information "
2518
- "regarding eventual upgrades, patches, and - if needed - technical support."
2519
- msgstr ""
2520
- "Pokud si zaregistrujete tuto verzi Profile Builder, budete dostávat "
2521
- "informace o aktualizacích, nových verzích a získáte přístup k technické "
2522
- "podpoře."
2523
-
2524
- # @ profilebuilder
2525
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
2526
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
2527
- msgid "Serial Number:"
2528
- msgstr "Sériové číslo:"
2529
-
2530
- # @ profilebuilder
2531
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
2532
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
2533
- msgid "The serial number was successfully validated!"
2534
- msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2535
-
2536
- # @ profilebuilder
2537
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
2538
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
2539
- #, fuzzy
2540
- msgid "The serial number entered couldn't be validated!"
2541
- msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
2542
-
2543
- # @ profilebuilder
2544
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
2545
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
2546
- #, fuzzy
2547
- msgid "The serial number couldn't be validated because it is no longer valid!"
2548
- msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
2549
-
2550
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
2551
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
2552
- msgid ""
2553
- "The serial number couldn't be validated because process timed out. This is "
2554
- "possible due to the server being down. Please try again later!"
2555
- msgstr ""
2556
-
2557
- # @ profilebuilder
2558
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
2559
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2560
- msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2561
-
2562
- # @ profilebuilder
2563
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
2564
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
2565
- #, fuzzy
2566
- msgid "Register your version of Profile Builder Hobbyist"
2567
- msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
2568
-
2569
- # @ profilebuilder
2570
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
2571
- #, fuzzy
2572
- msgid ""
2573
- "Now that you acquired a copy of Profile Builder Hobbyist, you should take "
2574
- "the time and register it with the serial number you received in the e-mail."
2575
- msgstr ""
2576
- "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody "
2577
- "registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
2578
-
2579
- # @ profilebuilder
2580
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
2581
- #, fuzzy
2582
- msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2583
- msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2584
-
2585
- # @ profilebuilder
2586
- #, fuzzy
2587
- #~ msgid "The email address you entered is invalid."
2588
- #~ msgstr "Zadaný e-mail není platný. <br/> Adresa "
2589
-
2590
- # @ profilebuilder
2591
- #, fuzzy
2592
- #~ msgid "The passwords you entered do not match."
2593
- #~ msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
2594
-
2595
- # @ profilebuilder
2596
- #, fuzzy
2597
- #~ msgid "The password was"
2598
- #~ msgstr "Nové heslo"
2599
-
2600
- # @ profilebuilder
2601
- #, fuzzy
2602
- #~ msgid "You didn't complete both password fields."
2603
- #~ msgstr "Nebyla vyplněna obě pole hesla."
2604
-
2605
- # @ profilebuilder
2606
- #, fuzzy
2607
- #~ msgid "The attachment"
2608
- #~ msgstr "Příloha \""
2609
-
2610
- # @ profilebuilder
2611
- #, fuzzy
2612
- #~ msgid "was successfully deleted."
2613
- #~ msgstr "\" byla úspěšně odstraněna."
2614
-
2615
- # @ profilebuilder
2616
- #, fuzzy
2617
- #~ msgid "Possible cause: the size was bigger than"
2618
- #~ msgstr "<br/> Možná příčina: velikost byla větší než "
2619
-
2620
- # @ profilebuilder
2621
- #, fuzzy
2622
- #~ msgid "The listed attachements were"
2623
- #~ msgstr "B. <br/> Příloha (přílohy) "
2624
-
2625
- # @ profilebuilder
2626
- #, fuzzy
2627
- #~ msgid "and password:"
2628
- #~ msgstr "Heslo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: ProfileBuilder\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-02 17:39+0200\n"
6
+ "PO-Revision-Date: 2013-12-02 17:39+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"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Generator: Poedit 1.5.5\n"
15
+ "X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
16
+ "pro\n"
17
+
18
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:119
19
+ msgid "View or Edit"
20
+ msgstr ""
21
+
22
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:124
23
+ msgid "delete this user?"
24
+ msgstr ""
25
+
26
+ # @ profilebuilder
27
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:124
28
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:235
29
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
30
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:202
31
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
32
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
33
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:218
34
+ msgid "Delete"
35
+ msgstr "Odstranit"
36
+
37
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:127
38
+ msgid "unapprove this user?"
39
+ msgstr ""
40
+
41
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:127
42
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:234
43
+ msgid "Unapprove"
44
+ msgstr ""
45
+
46
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:129
47
+ msgid "approve this user?"
48
+ msgstr ""
49
+
50
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:129
51
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:233
52
+ msgid "Approve"
53
+ msgstr ""
54
+
55
+ # @ profilebuilder
56
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:177
57
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:153
58
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
59
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
60
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1025
61
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
62
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:108
63
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:70
64
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:352
65
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:564
66
+ msgid "Username"
67
+ msgstr "Uživatelské jméno"
68
+
69
+ # @ profilebuilder
70
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:178
71
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
72
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:588
73
+ #, fuzzy
74
+ msgid "Firstname"
75
+ msgstr "Křestní jméno"
76
+
77
+ # @ profilebuilder
78
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:179
79
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
80
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
81
+ #, fuzzy
82
+ msgid "Lastname"
83
+ msgstr "Příjmení"
84
+
85
+ # @ profilebuilder
86
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:180
87
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:154
88
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1016
89
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1013
90
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1127
91
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
92
+ msgid "E-mail"
93
+ msgstr "E-mail"
94
+
95
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:181
96
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
97
+ msgid "Role"
98
+ msgstr ""
99
+
100
+ # @ profilebuilder
101
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:182
102
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:155
103
+ #, fuzzy
104
+ msgid "Registered"
105
+ msgstr "Registrovat"
106
+
107
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:183
108
+ msgid "User-status"
109
+ msgstr ""
110
+
111
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:263
112
+ msgid "Do you want to bulk approve the selected users?"
113
+ msgstr ""
114
+
115
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:271
116
+ msgid "Do you want to bulk unapprove the selected users?"
117
+ msgstr ""
118
+
119
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:277
120
+ msgid "Do you want to bulk delete the selected users?"
121
+ msgstr ""
122
+
123
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:285
124
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:273
125
+ msgid "Sorry, but you don't have permission to do that!"
126
+ msgstr ""
127
+
128
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:318
129
+ msgid "Approved"
130
+ msgstr ""
131
+
132
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:320
133
+ msgid "Unapproved"
134
+ msgstr ""
135
+
136
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:492
137
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:7
138
+ msgid "Admin Approval"
139
+ msgstr ""
140
+
141
+ # @ profilebuilder
142
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:495
143
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:458
144
+ #, fuzzy
145
+ msgid "All Users"
146
+ msgstr "Přidat uživatele"
147
+
148
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
149
+ msgid "delete this user from the _signups table?"
150
+ msgstr ""
151
+
152
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
153
+ msgid "confirm this email yourself?"
154
+ msgstr ""
155
+
156
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
157
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:203
158
+ msgid "Confirm Email"
159
+ msgstr ""
160
+
161
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:108
162
+ msgid "resend the activation link?"
163
+ msgstr ""
164
+
165
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:108
166
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:204
167
+ msgid "Resend Activation Email"
168
+ msgstr ""
169
+
170
+ # @ profilebuilder
171
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:240
172
+ #, fuzzy, php-format
173
+ msgid "%s couldn't be deleted"
174
+ msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
175
+
176
+ # @ profilebuilder
177
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:245
178
+ #, fuzzy
179
+ msgid "All users have been successfully deleted"
180
+ msgstr "Změny byly úspěšně uloženy."
181
+
182
+ # @ profilebuilder
183
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:255
184
+ #, fuzzy
185
+ msgid "The selected users have been activated"
186
+ msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
187
+
188
+ # @ profilebuilder
189
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:269
190
+ #, fuzzy
191
+ msgid "The selected users have had their activation emails resent"
192
+ msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
193
+
194
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:455
195
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:48
196
+ msgid "Users with Unconfirmed Email Address"
197
+ msgstr ""
198
+
199
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:78
200
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:277
201
+ #, php-format
202
+ msgid ""
203
+ "The information size you were trying to submit was larger than %1$sb!<br/"
204
+ ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
205
+ "it was also larger than %2$sb no additional information is available.<br/"
206
+ ">The user was NOT created!"
207
+ msgstr ""
208
+
209
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:307
210
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:564
211
+ msgid "The following image extensions are NOT supported: bmp"
212
+ msgstr ""
213
+
214
+ # @ profilebuilder
215
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:778
216
+ msgid "You must be logged in to edit your profile."
217
+ msgstr "Pro úpravu profilu je nutné se přihlásit."
218
+
219
+ # @ profilebuilder
220
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:788
221
+ msgid "The changes have been successfully saved."
222
+ msgstr "Změny byly úspěšně uloženy."
223
+
224
+ # @ profilebuilder
225
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:792
226
+ #, fuzzy, php-format
227
+ msgid ""
228
+ "The email address you entered is already registered to a different user."
229
+ "%1$sThe email address was %2$sNOT%3$s updated along with the rest of the "
230
+ "information."
231
+ msgstr ""
232
+ "Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
233
+
234
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:797
235
+ #, php-format
236
+ msgid ""
237
+ "The email address you entered is invalid.%1$sThe email address was %2$sNOT"
238
+ "%3$s updated along with the rest of the information."
239
+ msgstr ""
240
+
241
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:802
242
+ #, php-format
243
+ msgid ""
244
+ "The passwords you entered do not match.%1$sThe password was %2$sNOT%3$s "
245
+ "updated along with the rest of the information."
246
+ msgstr ""
247
+
248
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:807
249
+ #, php-format
250
+ msgid ""
251
+ "You didn't complete both password fields.%1$sThe password was %2$sNOT%3$s "
252
+ "updated along with the rest of the information."
253
+ msgstr ""
254
+
255
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:812
256
+ msgid ""
257
+ "Your profile was NOT updated, since not all required fields were completed!"
258
+ msgstr ""
259
+
260
+ # @ profilebuilder
261
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:822
262
+ #, fuzzy
263
+ msgid "There was an error while trying to upload the following attachments:"
264
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
265
+
266
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
267
+ #, php-format
268
+ msgid ""
269
+ "Possible cause: the size was bigger than %1$sb. The listed attachements were "
270
+ "%2$sNOT%3$s updated along with the rest of the information."
271
+ msgstr ""
272
+
273
+ # @ profilebuilder
274
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
275
+ #, fuzzy
276
+ msgid "There was an error while trying to upload your avatar picture."
277
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
278
+
279
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
280
+ msgid "Possible cause: size/incorrect file-type."
281
+ msgstr ""
282
+
283
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
284
+ msgid "The avatar was"
285
+ msgstr ""
286
+
287
+ # @ profilebuilder
288
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
289
+ msgid "NOT"
290
+ msgstr "NEBYLA"
291
+
292
+ # @ profilebuilder
293
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
294
+ #, fuzzy
295
+ msgid "updated along with the rest of the information."
296
+ msgstr " aktualizována spolu s ostatními informacemi."
297
+
298
+ # @ profilebuilder
299
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:845
300
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:606
301
+ #, fuzzy
302
+ msgid "There was an error while trying to upload the following attachment(s)"
303
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
304
+
305
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:852
306
+ #, php-format
307
+ msgid ""
308
+ "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
309
+ "file was %2$sNOT%3$s updated along with the rest of the information."
310
+ msgstr ""
311
+
312
+ # @ profilebuilder
313
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:867
314
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:978
315
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:347
316
+ msgid "Name"
317
+ msgstr "Jméno"
318
+
319
+ # @ profilebuilder
320
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:874
321
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:156
322
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:109
323
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:71
324
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:576
325
+ #, fuzzy
326
+ msgid "Email"
327
+ msgstr "E-mail"
328
+
329
+ # @ default
330
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
331
+ #, fuzzy
332
+ msgid "The email cannot be changed."
333
+ msgstr "Uživatelská jména nelze měnit."
334
+
335
+ # @ default
336
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:884
337
+ #, fuzzy
338
+ msgid "The usernames cannot be changed."
339
+ msgstr "Uživatelská jména nelze měnit."
340
+
341
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
342
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
343
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:934
344
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:954
345
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1006
346
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1028
347
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1046
348
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1064
349
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1082
350
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1103
351
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:68
352
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:183
353
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:272
354
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:360
355
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:434
356
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:502
357
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:557
358
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:607
359
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:674
360
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:784
361
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:829
362
+ msgid "This field is marked as required by the administrator."
363
+ msgstr ""
364
+
365
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:897
366
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:917
367
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
368
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:957
369
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1009
370
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1030
371
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1048
372
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1066
373
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1084
374
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1105
375
+ msgid ""
376
+ "This field wasn't updated because you entered and empty string (It was "
377
+ "marked as required by the administrator."
378
+ msgstr ""
379
+
380
+ # @ profilebuilder
381
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:904
382
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1050
383
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
384
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:360
385
+ msgid "First Name"
386
+ msgstr "Křestní jméno"
387
+
388
+ # @ profilebuilder
389
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:924
390
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1074
391
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
392
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:368
393
+ msgid "Last Name"
394
+ msgstr "Příjmení"
395
+
396
+ # @ profilebuilder
397
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:944
398
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1098
399
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
400
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:376
401
+ msgid "Nickname"
402
+ msgstr "Přezdívka"
403
+
404
+ # @ profilebuilder
405
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:965
406
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:384
407
+ msgid "Display name publicly as"
408
+ msgstr "Veřejně zobrazovat jako"
409
+
410
+ # @ profilebuilder
411
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:997
412
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1104
413
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:392
414
+ msgid "Contact Info"
415
+ msgstr "Kontaktní informace"
416
+
417
+ # @ profilebuilder
418
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1018
419
+ msgid "(required)"
420
+ msgstr "(vyžadováno)"
421
+
422
+ # @ profilebuilder
423
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1036
424
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1152
425
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
426
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:72
427
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:397
428
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:606
429
+ msgid "Website"
430
+ msgstr "Web"
431
+
432
+ # @ profilebuilder
433
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1054
434
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1176
435
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
436
+ msgid "AIM"
437
+ msgstr "AIM (AOL Instant Messenger)"
438
+
439
+ # @ profilebuilder
440
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1072
441
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
442
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
443
+ msgid "Yahoo IM"
444
+ msgstr "Yahoo IM"
445
+
446
+ # @ profilebuilder
447
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1090
448
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1224
449
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
450
+ msgid "Jabber / Google Talk"
451
+ msgstr "Jabber / Google Talk"
452
+
453
+ # @ profilebuilder
454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1096
455
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
456
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
457
+ msgid "About Yourself"
458
+ msgstr "O vás"
459
+
460
+ # @ profilebuilder
461
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1111
462
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
463
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
464
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
465
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:410
466
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:612
467
+ msgid "Biographical Info"
468
+ msgstr "Osobní informace"
469
+
470
+ # @ profilebuilder
471
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1121
472
+ msgid "New Password"
473
+ msgstr "Nové heslo"
474
+
475
+ # @ profilebuilder
476
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1126
477
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
478
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:280
479
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
480
+ msgid "Repeat Password"
481
+ msgstr "Heslo ještě jednou"
482
+
483
+ # @ profilebuilder
484
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1157
485
+ msgid "Update"
486
+ msgstr "Aktualizovat"
487
+
488
+ # @ profilebuilder
489
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
490
+ #, fuzzy, php-format
491
+ msgid "You are currently logged in as %1$s. %2$s"
492
+ msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
493
+
494
+ # @ profilebuilder
495
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
496
+ msgid "Log out of this account"
497
+ msgstr "Odhlásit se"
498
+
499
+ # @ profilebuilder
500
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
501
+ #, fuzzy
502
+ msgid "Log out"
503
+ msgstr "Odhlásit se &raquo;"
504
+
505
+ # @ profilebuilder
506
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:74
507
+ #, fuzzy, php-format
508
+ msgid "You have successfully logged in as %1$s"
509
+ msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
510
+
511
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:93
512
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:102
513
+ #, php-format
514
+ msgid ""
515
+ "You will soon be redirected automatically. If you see this page for more "
516
+ "than 1 second, please click %1$s"
517
+ msgstr ""
518
+
519
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:93
520
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:102
521
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
522
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:922
523
+ msgid "here"
524
+ msgstr ""
525
+
526
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:118
527
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
528
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:129
529
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:305
530
+ msgid "ERROR:"
531
+ msgstr ""
532
+
533
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:118
534
+ msgid "The email field is empty"
535
+ msgstr ""
536
+
537
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
538
+ msgid "The username field is empty"
539
+ msgstr ""
540
+
541
+ # @ profilebuilder
542
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:129
543
+ #, fuzzy
544
+ msgid "The password field is empty"
545
+ msgstr "Nové heslo"
546
+
547
+ # @ profilebuilder
548
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
549
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:244
550
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:275
551
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1285
552
+ msgid "Password"
553
+ msgstr "Heslo"
554
+
555
+ # @ profilebuilder
556
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:178
557
+ msgid "Log in"
558
+ msgstr "Přihlásit se"
559
+
560
+ # @ profilebuilder
561
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:183
562
+ msgid "Remember me"
563
+ msgstr "Pamatovat si "
564
+
565
+ # @ profilebuilder
566
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:198
567
+ msgid "Lost password?"
568
+ msgstr "Zapomněli jste heslo?"
569
+
570
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:22
571
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:86
572
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:145
573
+ msgid "ERROR"
574
+ msgstr ""
575
+
576
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:22
577
+ msgid ""
578
+ "Your account has to be confirmed by an administrator before you can use the "
579
+ "\"Password Reset\" feature."
580
+ msgstr ""
581
+
582
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:62
583
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:109
584
+ #, php-format
585
+ msgid ""
586
+ "A password reset email has been sent to %1$s.<br/>Following the link sent in "
587
+ "the email address will reset the password."
588
+ msgstr ""
589
+
590
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:74
591
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:133
592
+ #, php-format
593
+ msgid ""
594
+ "Someone requested that the password be reset for the following account: <b>"
595
+ "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
596
+ "happen.<br/>To reset your password, visit the following link:%2$s"
597
+ msgstr ""
598
+
599
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:77
600
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:136
601
+ #, php-format
602
+ msgid "Password Reset Feature from \"%1$s\""
603
+ msgstr ""
604
+
605
+ # @ profilebuilder
606
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:86
607
+ #, fuzzy, php-format
608
+ msgid "There was an error while trying to send the activation link to %1$s!"
609
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
610
+
611
+ # @ profilebuilder
612
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:96
613
+ #, fuzzy
614
+ msgid "The email address entered wasn't found in the database!"
615
+ msgstr "Zadaný e-mail není platný. <br/> Adresa "
616
+
617
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:96
618
+ msgid "Please check that you entered the correct email address."
619
+ msgstr ""
620
+
621
+ # @ profilebuilder
622
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:145
623
+ #, fuzzy
624
+ msgid "There was an error while trying to send the activation link to "
625
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
626
+
627
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
628
+ msgid "The username entered wasn't found in the database!"
629
+ msgstr ""
630
+
631
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
632
+ msgid "Please check that you entered the correct username."
633
+ msgstr ""
634
+
635
+ # @ profilebuilder
636
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:164
637
+ #, fuzzy
638
+ msgid "Your password has been successfully changed!"
639
+ msgstr "Změny byly úspěšně uloženy."
640
+
641
+ # @ profilebuilder
642
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:178
643
+ #, fuzzy, php-format
644
+ msgid "You have successfully reset your password to: %1$s"
645
+ msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
646
+
647
+ # @ profilebuilder
648
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:181
649
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:194
650
+ #, fuzzy, php-format
651
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
652
+ msgstr "\" byla úspěšně odstraněna."
653
+
654
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:191
655
+ #, php-format
656
+ msgid ""
657
+ "%1$s has requested a password change via the password reset feature.<br/>His/"
658
+ "her new password is:%2$s"
659
+ msgstr ""
660
+
661
+ # @ profilebuilder
662
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:209
663
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:603
664
+ msgid "The entered passwords don't match!"
665
+ msgstr "Zadaná hesla se neshodují."
666
+
667
+ # @ profilebuilder
668
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:256
669
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:287
670
+ #, fuzzy
671
+ msgid "Reset Password"
672
+ msgstr "Heslo ještě jednou"
673
+
674
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:305
675
+ msgid "Invalid key!"
676
+ msgstr ""
677
+
678
+ # @ profilebuilder
679
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:320
680
+ #, fuzzy
681
+ msgid "Please enter your username or email address."
682
+ msgstr "Musíte zadat platnou e-mailovou adresu."
683
+
684
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:320
685
+ msgid "You will receive a link to create a new password via email."
686
+ msgstr ""
687
+
688
+ # @ profilebuilder
689
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
690
+ #, fuzzy
691
+ msgid "Username or E-mail"
692
+ msgstr "Uživatelské jméno"
693
+
694
+ # @ profilebuilder
695
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:337
696
+ #, fuzzy
697
+ msgid "Get New Password"
698
+ msgstr "Nové heslo"
699
+
700
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:177
701
+ msgid "Invalid activation key!"
702
+ msgstr ""
703
+
704
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:181
705
+ msgid "The user is already active!"
706
+ msgstr ""
707
+
708
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:198
709
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:372
710
+ msgid "Could not create user!"
711
+ msgstr ""
712
+
713
+ # @ profilebuilder
714
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:201
715
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:375
716
+ #, fuzzy
717
+ msgid "That username is already activated!"
718
+ msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
719
+
720
+ # @ profilebuilder
721
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:225
722
+ #, fuzzy
723
+ msgid "The user was successfully activated."
724
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
725
+
726
+ # @ profilebuilder
727
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:227
728
+ #, fuzzy
729
+ msgid "There was an error while trying to activate the user."
730
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
731
+
732
+ # @ profilebuilder
733
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
734
+ msgid "A username is required for registration."
735
+ msgstr "Uživatelské jméno je nutné pro registraci."
736
+
737
+ # @ profilebuilder
738
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:594
739
+ msgid "Sorry, that username already exists!"
740
+ msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
741
+
742
+ # @ profilebuilder
743
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:596
744
+ msgid "You must enter a valid email address."
745
+ msgstr "Musíte zadat platnou e-mailovou adresu."
746
+
747
+ # @ profilebuilder
748
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:598
749
+ msgid "Sorry, that email address is already used!"
750
+ msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
751
+
752
+ # @ profilebuilder
753
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:601
754
+ msgid "You didn't complete one of the password-fields!"
755
+ msgstr "Nebyla vyplněna obě pole hesla."
756
+
757
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:613
758
+ msgid "Only files with the following extension(s) can be uploaded:"
759
+ msgstr ""
760
+
761
+ # @ profilebuilder
762
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:613
763
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:619
764
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:621
765
+ #, fuzzy
766
+ msgid "The account was NOT created!"
767
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
768
+
769
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:617
770
+ msgid "You must agree to the terms and conditions before registering!"
771
+ msgstr ""
772
+
773
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:621
774
+ msgid "(Several required fields were left uncompleted)"
775
+ msgstr ""
776
+
777
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:639
778
+ msgid "This username is already reserved to be used soon."
779
+ msgstr ""
780
+
781
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:639
782
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
783
+ msgid "Please try a different one!"
784
+ msgstr ""
785
+
786
+ # @ profilebuilder
787
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
788
+ #, fuzzy
789
+ msgid "This email address is already reserved to be used soon."
790
+ msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
791
+
792
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
793
+ msgid "You are logged in as"
794
+ msgstr ""
795
+
796
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
797
+ msgid "You don't need another account."
798
+ msgstr ""
799
+
800
+ # @ profilebuilder
801
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
802
+ #, fuzzy
803
+ msgid "Log out of this account."
804
+ msgstr "Odhlásit se"
805
+
806
+ # @ profilebuilder
807
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
808
+ #, fuzzy
809
+ msgid "Logout"
810
+ msgstr "Odhlásit se &raquo;"
811
+
812
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:868
813
+ #, php-format
814
+ msgid ""
815
+ "An email has been sent to %1$s with information on how to activate his/her "
816
+ "account."
817
+ msgstr ""
818
+
819
+ # @ profilebuilder
820
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:872
821
+ #, fuzzy, php-format
822
+ msgid "A user account has been created for %1$s."
823
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
824
+
825
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
826
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:922
827
+ #, php-format
828
+ msgid ""
829
+ "You will soon be redirected automatically. If you see this page for more "
830
+ "than 3 seconds, please click %1$s.%2$s"
831
+ msgstr ""
832
+
833
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
834
+ msgid ""
835
+ "An email has been sent to you with information on how to activate your "
836
+ "account."
837
+ msgstr ""
838
+
839
+ # @ profilebuilder
840
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:902
841
+ #, fuzzy, php-format
842
+ msgid "Thank you for registering %1$s."
843
+ msgstr "Děkujeme za registraci, %1$s."
844
+
845
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
846
+ msgid "An error occured while trying to send the notification email."
847
+ msgstr ""
848
+
849
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:934
850
+ msgid "An email containing activation instructions was successfully sent."
851
+ msgstr ""
852
+
853
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:939
854
+ msgid "An email containing the username and password was successfully sent."
855
+ msgstr ""
856
+
857
+ # @ profilebuilder
858
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:955
859
+ msgid "Users can register themselves or you can manually create users here."
860
+ msgstr ""
861
+ "Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet "
862
+ "uživatele zde."
863
+
864
+ # @ profilebuilder
865
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:960
866
+ msgid ""
867
+ "Users cannot currently register themselves, but you can manually create "
868
+ "users here."
869
+ msgstr ""
870
+ "Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
871
+
872
+ # @ profilebuilder
873
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:965
874
+ msgid "Only an administrator can add new users."
875
+ msgstr "Pouze administrátor může přidávat nové uživatele."
876
+
877
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:988
878
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1039
879
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1063
880
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1087
881
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1141
882
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1165
883
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1189
884
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1213
885
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1240
886
+ msgid ""
887
+ "This field must be filled out before registering (It was marked as required "
888
+ "by the administrator)"
889
+ msgstr ""
890
+
891
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:999
892
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1036
893
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1060
894
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1084
895
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1113
896
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1138
897
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1162
898
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1186
899
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1210
900
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
901
+ msgid "This field is marked as required by the administrator"
902
+ msgstr ""
903
+
904
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
905
+ msgid "Anti-Spam"
906
+ msgstr ""
907
+
908
+ # @ profilebuilder
909
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1334
910
+ #, fuzzy
911
+ msgid "Send these credentials via email."
912
+ msgstr "Odeslat tyto přihlašovací údaje e-mailem."
913
+
914
+ # @ profilebuilder
915
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1350
916
+ msgid "Add User"
917
+ msgstr "Přidat uživatele"
918
+
919
+ # @ profilebuilder
920
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1352
921
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:41
922
+ msgid "Register"
923
+ msgstr "Registrovat"
924
+
925
+ # @ profilebuilder
926
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
927
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
928
+ msgid "Show/Hide the Admin Bar on Front End"
929
+ msgstr "Administrační lišta ve front-endu"
930
+
931
+ # @ profilebuilder
932
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
933
+ msgid "User-group"
934
+ msgstr "Skupina"
935
+
936
+ # @ profilebuilder
937
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
938
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
939
+ msgid "Visibility"
940
+ msgstr "Viditelnost"
941
+
942
+ # @ profilebuilder
943
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
944
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:13
945
+ msgid "Default"
946
+ msgstr "Výchozí"
947
+
948
+ # @ profilebuilder
949
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
950
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
951
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
952
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
953
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
954
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
955
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
956
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
957
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
958
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
959
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
960
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
961
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
962
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:32
963
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:92
964
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:147
965
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:206
966
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:261
967
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:388
968
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:447
969
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:500
970
+ msgid "Show"
971
+ msgstr "Zobrazit"
972
+
973
+ # @ profilebuilder
974
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
975
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
976
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
977
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
978
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
979
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
980
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
981
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
982
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
983
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
984
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
985
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
986
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
987
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:33
988
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:389
989
+ msgid "Hide"
990
+ msgstr "Skrýt"
991
+
992
+ # @ default
993
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
994
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
995
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:120
996
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:59
997
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
998
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:376
999
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:567
1000
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
1001
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:436
1002
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
1003
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
1004
+ msgid "Save Changes"
1005
+ msgstr "Uložit změny"
1006
+
1007
+ # @ profilebuilder
1008
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
1009
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
1010
+ msgid "Profile Builder"
1011
+ msgstr "Profile Builder"
1012
+
1013
+ # @ profilebuilder
1014
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
1015
+ msgid "Welcome to Profile Builder!"
1016
+ msgstr "Vítá vás Profile Builder!"
1017
+
1018
+ # @ profilebuilder
1019
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
1020
+ msgid ""
1021
+ " lets you customize your website by adding a front-end menu for all your "
1022
+ "users, giving them a more flexible way to modify their user-information or "
1023
+ "to register new users."
1024
+ msgstr ""
1025
+ " umožňuje přidat front-end menu pro všechny uživatele vašeho webu. To "
1026
+ "usnadňuje úpravu profilu a zjednodušuje registraci nových uživatelů."
1027
+
1028
+ # @ profilebuilder
1029
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
1030
+ msgid ""
1031
+ "Also, grants users with administrator rights to customize basic fields or to "
1032
+ "add new ones."
1033
+ msgstr ""
1034
+ "Uživatelé s administrátorskými právy mohou upravovat stávající pole v "
1035
+ "profilu a vytvářet nová."
1036
+
1037
+ # @ profilebuilder
1038
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
1039
+ msgid ""
1040
+ "To achieve this, just create a new page, and give it an intuitive name(e.g. "
1041
+ "Edit Profile)."
1042
+ msgstr ""
1043
+ "Pro úpravu profilu přímo na webu (ne v administraci) stačí vytvořit novu "
1044
+ "Stránku (a pojmenovat ji například Upravit profil)."
1045
+
1046
+ # @ profilebuilder
1047
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
1048
+ msgid ""
1049
+ "Now all you need to do is add the following shortcode(for the previous "
1050
+ "example): "
1051
+ msgstr ""
1052
+ "Do vytvořené stránky (nebo widgetu) pak stačí umístit následující kód: "
1053
+
1054
+ # @ profilebuilder
1055
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
1056
+ msgid "Publish your page and you are ready to go!"
1057
+ msgstr "Nyní vytvořenou stránku publikujte a jste hotovi."
1058
+
1059
+ # @ profilebuilder
1060
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
1061
+ msgid "You can use the following shortcodes:"
1062
+ msgstr "K dispozici jsou následující kódy:"
1063
+
1064
+ # @ profilebuilder
1065
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
1066
+ msgid "for a log-in form."
1067
+ msgstr " pro přihlašovací formulář."
1068
+
1069
+ # @ profilebuilder
1070
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
1071
+ msgid "to add a registration form."
1072
+ msgstr " pro registrační formulář."
1073
+
1074
+ # @ profilebuilder
1075
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
1076
+ msgid ""
1077
+ "to grant users a front-end acces to their personal information(requires user "
1078
+ "to be logged in)."
1079
+ msgstr ""
1080
+ "pro poskytnutí přístupu k vlastnímu profilu (pouze pro přihlášené uživatele)."
1081
+
1082
+ # @ profilebuilder
1083
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
1084
+ #, fuzzy
1085
+ msgid "to add a password recovery form."
1086
+ msgstr " pro registrační formulář."
1087
+
1088
+ # @ profilebuilder
1089
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
1090
+ #, fuzzy
1091
+ msgid ""
1092
+ "With the <strong>Pro</strong> version, users with administrator rights have "
1093
+ "access to the following features:"
1094
+ msgstr "Uživatelé s administrátorskými právy mohou také:"
1095
+
1096
+ # @ profilebuilder
1097
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
1098
+ msgid ""
1099
+ "add a custom stylesheet/inherit values from the current theme or use one of "
1100
+ "the following built into this plugin: default, white or black."
1101
+ msgstr ""
1102
+ "přidat/zahrnout vlastní CSS styl z aktuální šablony nebo použít některý ze "
1103
+ "stylů Profile Builder (výchozí, bílý, černý)."
1104
+
1105
+ # @ profilebuilder
1106
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
1107
+ msgid ""
1108
+ "select whether to display or not the admin bar in the front end for a "
1109
+ "specific user-group registered to the site."
1110
+ msgstr ""
1111
+ "zvolit, zda zobrazovat administrační menu ve front-endu - v závislosti na "
1112
+ "uživatelské skupině."
1113
+
1114
+ # @ profilebuilder
1115
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
1116
+ msgid ""
1117
+ "select which information-field can users see/modify. The hidden fields' "
1118
+ "values remain unmodified."
1119
+ msgstr ""
1120
+ "určit, která pole mohou uživatelé vidět/upravovat. Obsah skrytých polí "
1121
+ "zůstane beze změny."
1122
+
1123
+ # @ profilebuilder
1124
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
1125
+ msgid ""
1126
+ "add custom fields to the existing ones, with several types to choose from: "
1127
+ "heading, text, textarea, select, checkbox, radio, and/or upload."
1128
+ msgstr ""
1129
+ "přidat další uživatelská pole k již existujícím polím profilu. K dispozici "
1130
+ "jsou typy polí: nadpis, text, textarea, select, check-box, radio a upload."
1131
+
1132
+ # @ profilebuilder
1133
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
1134
+ msgid "add an avatar field."
1135
+ msgstr "přidat pole pro avatar."
1136
+
1137
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
1138
+ msgid "create custom redirects."
1139
+ msgstr ""
1140
+
1141
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1142
+ msgid "front-end userlisting using the"
1143
+ msgstr ""
1144
+
1145
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1146
+ msgid "shortcode."
1147
+ msgstr ""
1148
+
1149
+ # @ profilebuilder
1150
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
1151
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:75
1152
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:92
1153
+ msgid "NOTE:"
1154
+ msgstr "POZNÁMKA:"
1155
+
1156
+ # @ profilebuilder
1157
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
1158
+ msgid "this plugin only adds/removes fields in the front-end."
1159
+ msgstr "tento plugin pouze přidává/odstraňuje pole ve front-endu."
1160
+
1161
+ # @ profilebuilder
1162
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
1163
+ msgid ""
1164
+ "The default information-fields will still be visible(and thus modifiable)"
1165
+ msgstr "Výchozí pole budou i nadále dostupná (včetně možnosti úprav)"
1166
+
1167
+ # @ profilebuilder
1168
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
1169
+ msgid ""
1170
+ "from the back-end, while custom fields will only be visible in the front-end."
1171
+ msgstr "v administraci. Vlastní pole budou přístupná ve front-endu (na webu)."
1172
+
1173
+ # @ profilebuilder
1174
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
1175
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
1176
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
1177
+ msgid "Default Profile Fields"
1178
+ msgstr "Výchozí pole profilu"
1179
+
1180
+ # @ profilebuilder
1181
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
1182
+ msgid "Input Field Name"
1183
+ msgstr "Název pole"
1184
+
1185
+ # @ profilebuilder
1186
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
1187
+ #, fuzzy
1188
+ msgid "Required"
1189
+ msgstr "(vyžadováno)"
1190
+
1191
+ # @ profilebuilder
1192
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
1193
+ msgid "Name:"
1194
+ msgstr "Jméno:"
1195
+
1196
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
1197
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
1198
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
1199
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
1200
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
1201
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
1202
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
1203
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
1204
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
1205
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
1206
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
1207
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
1208
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:30
1209
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:67
1210
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
1211
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
1212
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
1213
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
1214
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
1215
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
1216
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
1217
+ msgid "Yes"
1218
+ msgstr ""
1219
+
1220
+ # @ profilebuilder
1221
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
1222
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
1223
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
1224
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
1225
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
1226
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
1227
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
1228
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
1229
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
1230
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
1231
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
1232
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
1233
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
1234
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:68
1235
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
1236
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
1237
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
1238
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
1239
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
1240
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
1241
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
1242
+ #, fuzzy
1243
+ msgid "No"
1244
+ msgstr "Žádný"
1245
+
1246
+ # @ profilebuilder
1247
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1248
+ msgid "Display name publicly as..."
1249
+ msgstr "Veřejně zobrazovat jako..."
1250
+
1251
+ # @ profilebuilder
1252
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1253
+ msgid "Contact Info:"
1254
+ msgstr "Kontaktní informace:"
1255
+
1256
+ # @ profilebuilder
1257
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1258
+ msgid "About Yourself:"
1259
+ msgstr "O vás:"
1260
+
1261
+ # @ profilebuilder
1262
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
1263
+ #, fuzzy
1264
+ msgid "(New) Password"
1265
+ msgstr "Nové heslo"
1266
+
1267
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:59
1268
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:22
1269
+ msgid "Do you want to"
1270
+ msgstr ""
1271
+
1272
+ # @ profilebuilder
1273
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:108
1274
+ #, fuzzy
1275
+ msgid "The selected user couldn't be deleted"
1276
+ msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
1277
+
1278
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:128
1279
+ msgid "Email notification resent to user"
1280
+ msgstr ""
1281
+
1282
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:136
1283
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:75
1284
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:140
1285
+ msgid "You either don't have permission for that action or there was an error!"
1286
+ msgstr ""
1287
+
1288
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:333
1289
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:14
1290
+ #, php-format
1291
+ msgid "[%1$s] Activate %2$s"
1292
+ msgstr ""
1293
+
1294
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:334
1295
+ #, php-format
1296
+ msgid ""
1297
+ "To activate your user, please click the following link:\n"
1298
+ "\n"
1299
+ "%s%s%s\n"
1300
+ "\n"
1301
+ "After you activate, you will receive *another email* with your login.\n"
1302
+ "\n"
1303
+ msgstr ""
1304
+
1305
+ # @ profilebuilder
1306
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:395
1307
+ #, fuzzy
1308
+ msgid "There was an error while trying to activate the user"
1309
+ msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
1310
+
1311
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:429
1312
+ msgid "A new subscriber has (been) registered!"
1313
+ msgstr ""
1314
+
1315
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:432
1316
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:19
1317
+ #, php-format
1318
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1319
+ msgstr ""
1320
+
1321
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:437
1322
+ msgid ""
1323
+ "The \"Admin Approval\" feature was activated at the time of registration, so "
1324
+ "please remember that you need to approve this user before he/she can log in!"
1325
+ msgstr ""
1326
+
1327
+ # @ profilebuilder
1328
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:453
1329
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:8
1330
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:10
1331
+ #, fuzzy
1332
+ msgid "A new account has been created for you."
1333
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
1334
+
1335
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:456
1336
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:9
1337
+ #, php-format
1338
+ msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
1339
+ msgstr ""
1340
+
1341
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:461
1342
+ msgid ""
1343
+ "Before you can access your account, an administrator needs to approve it. "
1344
+ "You will be notified via email."
1345
+ msgstr ""
1346
+
1347
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:9
1348
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1349
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1350
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
1351
+ msgid "General Settings"
1352
+ msgstr ""
1353
+
1354
+ # @ profilebuilder
1355
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1356
+ #, fuzzy
1357
+ msgid "Stylesheet Used on the Front-End:"
1358
+ msgstr "CSS styl:"
1359
+
1360
+ # @ profilebuilder
1361
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:17
1362
+ msgid "White"
1363
+ msgstr "Bílý"
1364
+
1365
+ # @ profilebuilder
1366
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1367
+ msgid "Black"
1368
+ msgstr "Černý"
1369
+
1370
+ # @ profilebuilder
1371
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:22
1372
+ msgid "None"
1373
+ msgstr "Žádný"
1374
+
1375
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:28
1376
+ msgid "\"Email Confirmation\" Feature Activated:"
1377
+ msgstr ""
1378
+
1379
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:40
1380
+ msgid "Account Activation Landing Page:"
1381
+ msgstr ""
1382
+
1383
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:43
1384
+ msgid "Existing Pages"
1385
+ msgstr ""
1386
+
1387
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
1388
+ msgid ""
1389
+ "You need to (create) and specify the page where the users will see when "
1390
+ "trying to activate their account. This page can differ from the register page"
1391
+ "(s), and can be changed at any time, but if none selected, a simple, blank "
1392
+ "page will be displayed for the user."
1393
+ msgstr ""
1394
+
1395
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:65
1396
+ msgid "\"Admin Approval\" Feature Activated:"
1397
+ msgstr ""
1398
+
1399
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:76
1400
+ msgid ""
1401
+ "The black stylesheet is intended for sites/blogs with a dark background."
1402
+ msgstr ""
1403
+
1404
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:77
1405
+ msgid ""
1406
+ "The white stylesheet is intended for a sites/blogs with a light background "
1407
+ "color."
1408
+ msgstr ""
1409
+
1410
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:78
1411
+ msgid ""
1412
+ "On single-site installations the \"Email Confirmation\" feature only works "
1413
+ "in the front-end, so make sure you also use the \"Custom Redirects\" feature."
1414
+ msgstr ""
1415
+
1416
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:79
1417
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:94
1418
+ msgid ""
1419
+ "The \"Email Confirmation\" feature is active (by default) on WPMU "
1420
+ "installations."
1421
+ msgstr ""
1422
+
1423
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:81
1424
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:96
1425
+ #, php-format
1426
+ msgid "You can find a list of unconfirmed email addresses %1$shere%2$s."
1427
+ msgstr ""
1428
+
1429
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:93
1430
+ msgid ""
1431
+ "On single-site installations the \"Email Confirmation\" feature only works "
1432
+ "in the front-end."
1433
+ msgstr ""
1434
+
1435
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:106
1436
+ msgid "Allow Users to Log in With:"
1437
+ msgstr ""
1438
+
1439
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1440
+ #, php-format
1441
+ msgid ""
1442
+ "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1443
+ "Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
1444
+ "access to automatic updates and support. Need a license key? %3$sPurchase "
1445
+ "one now%4$s"
1446
+ msgstr ""
1447
+
1448
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1449
+ #, php-format
1450
+ msgid ""
1451
+ "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1452
+ "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1453
+ "priority support. %3$sPurchase one now%4$s"
1454
+ msgstr ""
1455
+
1456
+ # @ profilebuilder
1457
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1458
+ msgid "Basic Information"
1459
+ msgstr "Základní informace"
1460
+
1461
+ # @ profilebuilder
1462
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1463
+ msgid "Show/Hide the Admin Bar on Front-end"
1464
+ msgstr "Zobrazit/skrýt administrační lištu ve front-endu"
1465
+
1466
+ # @ profilebuilder
1467
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1468
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1469
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1470
+ msgid "Extra Profile Fields"
1471
+ msgstr "Vlastní pole profilu"
1472
+
1473
+ # @ profilebuilder
1474
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1475
+ #, fuzzy
1476
+ msgid "Addons"
1477
+ msgstr "Přidat volbu"
1478
+
1479
+ # @ profilebuilder
1480
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1481
+ msgid "Register Your Version"
1482
+ msgstr "Registrace"
1483
+
1484
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1485
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
1486
+ msgid "Activate/Deactivate Addons"
1487
+ msgstr ""
1488
+
1489
+ # @ profilebuilder
1490
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
1491
+ #, fuzzy
1492
+ msgid "Name/Description"
1493
+ msgstr "Popis:"
1494
+
1495
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
1496
+ msgid "Status"
1497
+ msgstr ""
1498
+
1499
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
1500
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:32
1501
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
1502
+ msgid "User-Listing"
1503
+ msgstr ""
1504
+
1505
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
1506
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1507
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1508
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:43
1509
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:50
1510
+ msgid "Active"
1511
+ msgstr ""
1512
+
1513
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1514
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1515
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1516
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:44
1517
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:51
1518
+ msgid "Inactive"
1519
+ msgstr ""
1520
+
1521
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1522
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
1523
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
1524
+ msgid "Custom Redirects"
1525
+ msgstr ""
1526
+
1527
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
1528
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
1529
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
1530
+ msgid "reCAPTCHA"
1531
+ msgstr ""
1532
+
1533
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:41
1534
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:41
1535
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:42
1536
+ msgid "User Email Customizer"
1537
+ msgstr ""
1538
+
1539
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:48
1540
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:397
1541
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:398
1542
+ msgid "Admin Email Customizer"
1543
+ msgstr ""
1544
+
1545
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
1546
+ msgid "Redirects on custom page requests:"
1547
+ msgstr ""
1548
+
1549
+ # @ profilebuilder
1550
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
1551
+ #, fuzzy
1552
+ msgid "Action"
1553
+ msgstr "Přidat volbu"
1554
+
1555
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
1556
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
1557
+ msgid "Redirect"
1558
+ msgstr ""
1559
+
1560
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
1561
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
1562
+ msgid "URL"
1563
+ msgstr ""
1564
+
1565
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
1566
+ msgid "After Registration:"
1567
+ msgstr ""
1568
+
1569
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
1570
+ msgid "After Login:"
1571
+ msgstr ""
1572
+
1573
+ # @ profilebuilder
1574
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
1575
+ #, fuzzy
1576
+ msgid "Recover Password (*)"
1577
+ msgstr "Heslo ještě jednou"
1578
+
1579
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
1580
+ msgid ""
1581
+ "When activated this feature will redirect the user on both the default "
1582
+ "Wordpress password recovery page and the \"Lost password?\" link used by "
1583
+ "Profile Builder on the front-end login page."
1584
+ msgstr ""
1585
+
1586
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
1587
+ msgid "Redirects on default WordPress page requests:"
1588
+ msgstr ""
1589
+
1590
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
1591
+ msgid "Requested WP Page"
1592
+ msgstr ""
1593
+
1594
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
1595
+ msgid "Default WP Login Page (*)"
1596
+ msgstr ""
1597
+
1598
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
1599
+ msgid "Default WP Logout Page (**)"
1600
+ msgstr ""
1601
+
1602
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
1603
+ msgid "Default WP Register Page"
1604
+ msgstr ""
1605
+
1606
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
1607
+ msgid "Default WP Dashboard (***)"
1608
+ msgstr ""
1609
+
1610
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
1611
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1612
+ msgstr ""
1613
+
1614
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
1615
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1616
+ msgstr ""
1617
+
1618
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
1619
+ msgid ""
1620
+ "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1621
+ "manage options)."
1622
+ msgstr ""
1623
+
1624
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:11
1625
+ #, php-format
1626
+ msgid ""
1627
+ "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s<br/"
1628
+ ">Before you can access your account, an administrator needs to approve it. "
1629
+ "You will be notified via email."
1630
+ msgstr ""
1631
+
1632
+ # @ profilebuilder
1633
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:12
1634
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:150
1635
+ #, fuzzy, php-format
1636
+ msgid "Your account on %1$s has been approved!"
1637
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
1638
+
1639
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:13
1640
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:153
1641
+ #, php-format
1642
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1643
+ msgstr ""
1644
+
1645
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:15
1646
+ #, php-format
1647
+ msgid ""
1648
+ "To activate your user, please click the following link:\n"
1649
+ "\n"
1650
+ "%s\n"
1651
+ "\n"
1652
+ "After you activate, you will receive *another email* with your login.\n"
1653
+ "\n"
1654
+ msgstr ""
1655
+
1656
+ # @ profilebuilder
1657
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:16
1658
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:157
1659
+ #, fuzzy, php-format
1660
+ msgid "Your account on %1$s has been unapproved!"
1661
+ msgstr "Uživatelský účet pro %1$s byl vytvořen."
1662
+
1663
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:17
1664
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:160
1665
+ #, php-format
1666
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1667
+ msgstr ""
1668
+
1669
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:18
1670
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:20
1671
+ #, php-format
1672
+ msgid "[%1$s] A new subscriber has (been) registered!"
1673
+ msgstr ""
1674
+
1675
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:21
1676
+ #, php-format
1677
+ msgid ""
1678
+ "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/><br/>The "
1679
+ "\"Admin Approval\" feature was activated at the time of registration, so "
1680
+ "please remember that you need to approve this user before he/she can log in!"
1681
+ msgstr ""
1682
+
1683
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:45
1684
+ msgid "Here you can customize all the emails sent to the users."
1685
+ msgstr ""
1686
+
1687
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:48
1688
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:404
1689
+ msgid "Common Settings:"
1690
+ msgstr ""
1691
+
1692
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:48
1693
+ msgid ""
1694
+ "These settings are also replicated in the \"Admin Email Customizer\" "
1695
+ "settings-page upon save."
1696
+ msgstr ""
1697
+
1698
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:51
1699
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:407
1700
+ msgid "From (name): "
1701
+ msgstr ""
1702
+
1703
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:59
1704
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:75
1705
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:118
1706
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:174
1707
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:233
1708
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:292
1709
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:337
1710
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:415
1711
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:431
1712
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:473
1713
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:526
1714
+ msgid "Available Merge Tags"
1715
+ msgstr ""
1716
+
1717
+ # @ profilebuilder
1718
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:60
1719
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:120
1720
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:179
1721
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:235
1722
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:294
1723
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:339
1724
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:416
1725
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:475
1726
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:528
1727
+ #, fuzzy
1728
+ msgid "Display the site name"
1729
+ msgstr "Křestní jméno"
1730
+
1731
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:67
1732
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:423
1733
+ msgid "From (reply-to email): "
1734
+ msgstr ""
1735
+
1736
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:83
1737
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:367
1738
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:439
1739
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:560
1740
+ msgid "Email Message Type"
1741
+ msgstr ""
1742
+
1743
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:84
1744
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:368
1745
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:440
1746
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:561
1747
+ msgid "Show / Hide"
1748
+ msgstr ""
1749
+
1750
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:91
1751
+ msgid "Default Registration"
1752
+ msgstr ""
1753
+
1754
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:99
1755
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:155
1756
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:214
1757
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:273
1758
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:318
1759
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:454
1760
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:507
1761
+ msgid "Email Subject: "
1762
+ msgstr ""
1763
+
1764
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:107
1765
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:163
1766
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:222
1767
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:281
1768
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:326
1769
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:462
1770
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:515
1771
+ msgid "Email Content:"
1772
+ msgstr ""
1773
+
1774
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:107
1775
+ msgid ""
1776
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1777
+ "span> upon registration."
1778
+ msgstr ""
1779
+
1780
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:119
1781
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:178
1782
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:234
1783
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:293
1784
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:338
1785
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:474
1786
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:527
1787
+ msgid "Display the site URL"
1788
+ msgstr ""
1789
+
1790
+ # @ profilebuilder
1791
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:121
1792
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:236
1793
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:295
1794
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:340
1795
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:476
1796
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:529
1797
+ #, fuzzy
1798
+ msgid "Display the userID"
1799
+ msgstr "Křestní jméno"
1800
+
1801
+ # @ profilebuilder
1802
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:122
1803
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:180
1804
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:237
1805
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:296
1806
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:341
1807
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:477
1808
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:530
1809
+ #, fuzzy
1810
+ msgid "Display the username"
1811
+ msgstr "Křestní jméno"
1812
+
1813
+ # @ profilebuilder
1814
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:123
1815
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:181
1816
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:238
1817
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:297
1818
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:342
1819
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:478
1820
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:531
1821
+ #, fuzzy
1822
+ msgid "Display the email-address of the user"
1823
+ msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
1824
+
1825
+ # @ profilebuilder
1826
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:124
1827
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:182
1828
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:239
1829
+ #, fuzzy
1830
+ msgid "Display the user's password"
1831
+ msgstr "Zapomněli jste heslo?"
1832
+
1833
+ # @ profilebuilder
1834
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:125
1835
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:183
1836
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:240
1837
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:299
1838
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:344
1839
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:480
1840
+ #, fuzzy
1841
+ msgid "Display the user's first name"
1842
+ msgstr "Křestní jméno"
1843
+
1844
+ # @ profilebuilder
1845
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:126
1846
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:184
1847
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:241
1848
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:300
1849
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:345
1850
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:481
1851
+ #, fuzzy
1852
+ msgid "Display the user's last name"
1853
+ msgstr "Křestní jméno"
1854
+
1855
+ # @ profilebuilder
1856
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:127
1857
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:185
1858
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:242
1859
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:301
1860
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:346
1861
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:482
1862
+ #, fuzzy
1863
+ msgid "Display the user's nickname"
1864
+ msgstr "Křestní jméno"
1865
+
1866
+ # @ profilebuilder
1867
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:128
1868
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:186
1869
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:243
1870
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:302
1871
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:347
1872
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:483
1873
+ #, fuzzy
1874
+ msgid "Display the user's website"
1875
+ msgstr "Křestní jméno"
1876
+
1877
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:129
1878
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:187
1879
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:244
1880
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:303
1881
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:348
1882
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:484
1883
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:536
1884
+ msgid "Display the \"about yourself\" content"
1885
+ msgstr ""
1886
+
1887
+ # @ profilebuilder
1888
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:130
1889
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:188
1890
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:245
1891
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:304
1892
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:349
1893
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:485
1894
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:537
1895
+ #, fuzzy
1896
+ msgid "Display the aim value"
1897
+ msgstr "Křestní jméno"
1898
+
1899
+ # @ profilebuilder
1900
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:131
1901
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:189
1902
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:246
1903
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:305
1904
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:350
1905
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:486
1906
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:538
1907
+ #, fuzzy
1908
+ msgid "Display the yim value"
1909
+ msgstr "Křestní jméno"
1910
+
1911
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:132
1912
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:190
1913
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:247
1914
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:306
1915
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:351
1916
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:487
1917
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:539
1918
+ msgid "Display the jabber value"
1919
+ msgstr ""
1920
+
1921
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:133
1922
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:191
1923
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:248
1924
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:307
1925
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:352
1926
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:488
1927
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:540
1928
+ msgid ""
1929
+ "Display any extra field by replacing the meta_name with the fields' meta-name"
1930
+ msgstr ""
1931
+
1932
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:146
1933
+ msgid "Registration with Email Confirmation"
1934
+ msgstr ""
1935
+
1936
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:163
1937
+ msgid ""
1938
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1939
+ "span> upon registration with email confirmation."
1940
+ msgstr ""
1941
+
1942
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:175
1943
+ #, php-format
1944
+ msgid "Display the activation key ( register_page/?key=%%activation_key%% )"
1945
+ msgstr ""
1946
+
1947
+ # @ profilebuilder
1948
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:176
1949
+ #, fuzzy
1950
+ msgid "Display the activation url"
1951
+ msgstr "Křestní jméno"
1952
+
1953
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:177
1954
+ msgid "Display a clickable activation link"
1955
+ msgstr ""
1956
+
1957
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:205
1958
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:499
1959
+ msgid "Registration with Admin Approval"
1960
+ msgstr ""
1961
+
1962
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:222
1963
+ msgid ""
1964
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1965
+ "span> upon registration with admin approval."
1966
+ msgstr ""
1967
+
1968
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:260
1969
+ msgid "Admin Approval Notifications (on status change)"
1970
+ msgstr ""
1971
+
1972
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:268
1973
+ msgid "Message Sent to the User Upon Approval"
1974
+ msgstr ""
1975
+
1976
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:281
1977
+ msgid ""
1978
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1979
+ "span> upon approval."
1980
+ msgstr ""
1981
+
1982
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:298
1983
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:343
1984
+ msgid "Display the new user-status"
1985
+ msgstr ""
1986
+
1987
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:313
1988
+ msgid "Message Sent to the User Upon Unapproval"
1989
+ msgstr ""
1990
+
1991
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:326
1992
+ msgid ""
1993
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1994
+ "span> upon unapproval."
1995
+ msgstr ""
1996
+
1997
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:401
1998
+ msgid "Here you can customize all the emails sent to the administrator."
1999
+ msgstr ""
2000
+
2001
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:404
2002
+ msgid ""
2003
+ "These settings are also replicated in the \"User Email Customizer\" settings-"
2004
+ "page upon save."
2005
+ msgstr ""
2006
+
2007
+ # @ profilebuilder
2008
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:432
2009
+ #, fuzzy
2010
+ msgid "Display the default email address"
2011
+ msgstr "Musíte zadat platnou e-mailovou adresu."
2012
+
2013
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:446
2014
+ msgid "Default Registration & Registration with Email Confirmation"
2015
+ msgstr ""
2016
+
2017
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:462
2018
+ msgid ""
2019
+ "This is the email sent to the <span class=\"email_customizer_red"
2020
+ "\">administrator</span> upon registration."
2021
+ msgstr ""
2022
+
2023
+ # @ profilebuilder
2024
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:479
2025
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:532
2026
+ #, fuzzy
2027
+ msgid "Display the password"
2028
+ msgstr "Zapomněli jste heslo?"
2029
+
2030
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:515
2031
+ msgid ""
2032
+ "This is the email sent to the <span class=\"email_customizer_red"
2033
+ "\">administrator</span> upon user registration with admin approval."
2034
+ msgstr ""
2035
+
2036
+ # @ profilebuilder
2037
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:533
2038
+ #, fuzzy
2039
+ msgid "Display the first name"
2040
+ msgstr "Křestní jméno"
2041
+
2042
+ # @ profilebuilder
2043
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:534
2044
+ #, fuzzy
2045
+ msgid "Display the last name"
2046
+ msgstr "Křestní jméno"
2047
+
2048
+ # @ profilebuilder
2049
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:535
2050
+ #, fuzzy
2051
+ msgid "Display the nickname"
2052
+ msgstr "Křestní jméno"
2053
+
2054
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
2055
+ msgid "Could not open socket!"
2056
+ msgstr ""
2057
+
2058
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
2059
+ msgid "To use reCAPTCHA you must get an API key from"
2060
+ msgstr ""
2061
+
2062
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
2063
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
2064
+ msgstr ""
2065
+
2066
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
2067
+ msgid ""
2068
+ "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
2069
+ msgstr ""
2070
+
2071
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
2072
+ msgid ""
2073
+ "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
2074
+ "you can do so at"
2075
+ msgstr ""
2076
+
2077
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
2078
+ msgid ""
2079
+ "Adds a reCAPTCHA form on the registration page created in the front-end "
2080
+ "(only)."
2081
+ msgstr ""
2082
+
2083
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
2084
+ msgid "For this you must get a public and private key from Google:"
2085
+ msgstr ""
2086
+
2087
+ # @ profilebuilder
2088
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
2089
+ msgid "Key"
2090
+ msgstr "Klíč"
2091
+
2092
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
2093
+ msgid "Code"
2094
+ msgstr ""
2095
+
2096
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
2097
+ msgid "Public Key:"
2098
+ msgstr ""
2099
+
2100
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
2101
+ msgid "Private Key:"
2102
+ msgstr ""
2103
+
2104
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
2105
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
2106
+ msgstr ""
2107
+
2108
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
2109
+ msgid ""
2110
+ "To create a page containing the users registered to this current site/blog, "
2111
+ "insert the following shortcode in a (blank) page: "
2112
+ msgstr ""
2113
+
2114
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
2115
+ msgid ""
2116
+ "For instance, to create a userlisting shortcode listing only the editors and "
2117
+ "authors, visible to only the users currently logged in, you would use:"
2118
+ msgstr ""
2119
+
2120
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
2121
+ msgid ""
2122
+ "You can also create a userlisting page that displays users having a certain "
2123
+ "meta-value within a certain (extra) meta-field like so:"
2124
+ msgstr ""
2125
+
2126
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
2127
+ msgid ""
2128
+ "Remember though, that the field-value combination must exist in the database."
2129
+ msgstr ""
2130
+
2131
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:42
2132
+ msgid "These settings are applied to the front-end userlisting."
2133
+ msgstr ""
2134
+
2135
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:48
2136
+ msgid "Number of Users/Page: "
2137
+ msgstr ""
2138
+
2139
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:65
2140
+ msgid "Default Sorting Criteria: "
2141
+ msgstr ""
2142
+
2143
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
2144
+ msgid "Registration Date"
2145
+ msgstr ""
2146
+
2147
+ # @ profilebuilder
2148
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
2149
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:600
2150
+ #, fuzzy
2151
+ msgid "Display Name"
2152
+ msgstr "Křestní jméno"
2153
+
2154
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:78
2155
+ msgid "Number of Posts"
2156
+ msgstr ""
2157
+
2158
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:79
2159
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:623
2160
+ msgid "Aim"
2161
+ msgstr ""
2162
+
2163
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
2164
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:628
2165
+ msgid "Yim"
2166
+ msgstr ""
2167
+
2168
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
2169
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:633
2170
+ msgid "Jabber"
2171
+ msgstr ""
2172
+
2173
+ # @ profilebuilder
2174
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:83
2175
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:152
2176
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:308
2177
+ #, fuzzy
2178
+ msgid "Custom Fields"
2179
+ msgstr "\"."
2180
+
2181
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:99
2182
+ msgid "Default Sorting Order: "
2183
+ msgstr ""
2184
+
2185
+ # @ profilebuilder
2186
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:102
2187
+ #, fuzzy
2188
+ msgid "Ascending"
2189
+ msgstr "záhlaví"
2190
+
2191
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:103
2192
+ msgid "Descending"
2193
+ msgstr ""
2194
+
2195
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:110
2196
+ msgid "\"All-Userlisting\" Template"
2197
+ msgstr ""
2198
+
2199
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:112
2200
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:263
2201
+ msgid ""
2202
+ "With the userlisting templates you can customize the look, feel and "
2203
+ "information listed by the shortcode."
2204
+ msgstr ""
2205
+
2206
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:113
2207
+ msgid ""
2208
+ "The \"All Users Listing\" template is used to list all users. It's displayed "
2209
+ "on each page access where the shortcode is present."
2210
+ msgstr ""
2211
+
2212
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:117
2213
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:269
2214
+ msgid "Avatar/Gravatar Size: "
2215
+ msgstr ""
2216
+
2217
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:133
2218
+ msgid "Insert \"Sort By\" Field:"
2219
+ msgstr ""
2220
+
2221
+ # @ profilebuilder
2222
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:138
2223
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:291
2224
+ #, fuzzy
2225
+ msgid "Default WordPress Fields"
2226
+ msgstr "Výchozí pole profilu"
2227
+
2228
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:164
2229
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:286
2230
+ msgid "Insert \"User-Meta\" Field:"
2231
+ msgstr ""
2232
+
2233
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:201
2234
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:328
2235
+ msgid "Insert Extra Functions:"
2236
+ msgstr ""
2237
+
2238
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
2239
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
2240
+ msgstr ""
2241
+
2242
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
2243
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:342
2244
+ msgid ""
2245
+ "If you wish to use a default userlisting, just copy the following code and "
2246
+ "paste it in the textarea below:"
2247
+ msgstr ""
2248
+
2249
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:227
2250
+ msgid "More"
2251
+ msgstr ""
2252
+
2253
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
2254
+ msgid "\"Single-Userlisting\" Template"
2255
+ msgstr ""
2256
+
2257
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:264
2258
+ msgid ""
2259
+ "The \"Single User Listing\" template is used to list an individual user. "
2260
+ "It's displayed when clickin on the \"more info\" link."
2261
+ msgstr ""
2262
+
2263
+ # @ profilebuilder
2264
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:317
2265
+ #, fuzzy
2266
+ msgid "Custom Fields(Description)"
2267
+ msgstr "\"."
2268
+
2269
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:340
2270
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
2271
+ msgstr ""
2272
+
2273
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:446
2274
+ msgid ""
2275
+ "You need to activate the User-Listing feature from within the \"Addons\" tab!"
2276
+ msgstr ""
2277
+
2278
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:446
2279
+ msgid "You can find it in Profile Builder's menu."
2280
+ msgstr ""
2281
+
2282
+ # @ profilebuilder
2283
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:476
2284
+ #, fuzzy
2285
+ msgid "You need to be logged in to view the userlisting!"
2286
+ msgstr "Pro úpravu profilu je nutné se přihlásit."
2287
+
2288
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
2289
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:530
2290
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1907
2291
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1942
2292
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/userlisting.class.php:445
2293
+ msgid "Search Users by All Fields"
2294
+ msgstr ""
2295
+
2296
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
2297
+ msgid "Leave Blank and Press Search to List All Users"
2298
+ msgstr ""
2299
+
2300
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:556
2301
+ msgid "Search"
2302
+ msgstr ""
2303
+
2304
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:557
2305
+ msgid "Clear Results"
2306
+ msgstr ""
2307
+
2308
+ # @ profilebuilder
2309
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:570
2310
+ #, fuzzy
2311
+ msgid "First/Lastname"
2312
+ msgstr "Křestní jméno"
2313
+
2314
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:582
2315
+ msgid "Sign-up Date"
2316
+ msgstr ""
2317
+
2318
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:618
2319
+ msgid "Posts"
2320
+ msgstr ""
2321
+
2322
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:683
2323
+ msgid "Click here to see more information about this user"
2324
+ msgstr ""
2325
+
2326
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:683
2327
+ msgid "More..."
2328
+ msgstr ""
2329
+
2330
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:685
2331
+ msgid "Click here to see more information about this user."
2332
+ msgstr ""
2333
+
2334
+ # @ profilebuilder
2335
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:948
2336
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1100
2337
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1501
2338
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1710
2339
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:658
2340
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:691
2341
+ #, fuzzy
2342
+ msgid "No uploaded attachment"
2343
+ msgstr "Příloha \""
2344
+
2345
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:950
2346
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
2347
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1503
2348
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1560
2349
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1712
2350
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1769
2351
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2352
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2353
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2354
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2355
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:804
2356
+ msgid "Click to see the current attachment"
2357
+ msgstr ""
2358
+
2359
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1241
2360
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1243
2361
+ msgid "Click here to go back"
2362
+ msgstr ""
2363
+
2364
+ # @ profilebuilder
2365
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1241
2366
+ #, fuzzy
2367
+ msgid "Back"
2368
+ msgstr "Černý"
2369
+
2370
+ # @ profilebuilder
2371
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1501
2372
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1503
2373
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1710
2374
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1712
2375
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:658
2376
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2377
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:691
2378
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2379
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2380
+ msgid "Current file"
2381
+ msgstr "Aktuální soubor"
2382
+
2383
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1558
2384
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1767
2385
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:770
2386
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:801
2387
+ msgid "Avatar"
2388
+ msgstr ""
2389
+
2390
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1826
2391
+ msgid "No results found!"
2392
+ msgstr ""
2393
+
2394
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1929
2395
+ msgid "&laquo;&laquo; First"
2396
+ msgstr ""
2397
+
2398
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1930
2399
+ msgid "&laquo; Prev"
2400
+ msgstr ""
2401
+
2402
+ # @ profilebuilder
2403
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1931
2404
+ #, fuzzy
2405
+ msgid "Next &raquo; "
2406
+ msgstr "Odhlásit se &raquo;"
2407
+
2408
+ # @ profilebuilder
2409
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1932
2410
+ #, fuzzy
2411
+ msgid "Last &raquo;&raquo;"
2412
+ msgstr "Odhlásit se &raquo;"
2413
+
2414
+ # @ profilebuilder
2415
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
2416
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:458
2417
+ #, fuzzy
2418
+ msgid "You must give your option a title."
2419
+ msgstr "Pro úpravu profilu je nutné se přihlásit."
2420
+
2421
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
2422
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:462
2423
+ msgid "You have entered an invalid meta-key format!"
2424
+ msgstr ""
2425
+
2426
+ # @ profilebuilder
2427
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:311
2428
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:466
2429
+ #, fuzzy
2430
+ msgid "You must enter a valid meta-key."
2431
+ msgstr "Musíte zadat platnou e-mailovou adresu."
2432
+
2433
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
2434
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
2435
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
2436
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
2437
+ msgid "That meta-key is already in use."
2438
+ msgstr ""
2439
+
2440
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:334
2441
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
2442
+ msgid ""
2443
+ "There is already an avatar input-type. You can only have one avatar present."
2444
+ msgstr ""
2445
+
2446
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:341
2447
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
2448
+ msgid ""
2449
+ "There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
2450
+ "have one present."
2451
+ msgstr ""
2452
+
2453
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
2454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:508
2455
+ msgid "The textarea row value must be numeric."
2456
+ msgstr ""
2457
+
2458
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
2459
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:512
2460
+ msgid "The maxlength attribute must be numeric."
2461
+ msgstr ""
2462
+
2463
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:357
2464
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:519
2465
+ msgid "The value must be between 20 and 200!"
2466
+ msgstr ""
2467
+
2468
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:362
2469
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:524
2470
+ msgid "The width component of the entered value must be numeric!"
2471
+ msgstr ""
2472
+
2473
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:364
2474
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:526
2475
+ msgid "The height component of the entered value must be numeric!"
2476
+ msgstr ""
2477
+
2478
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:366
2479
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:528
2480
+ msgid "The width component of the entered value must be between 20 and 200!"
2481
+ msgstr ""
2482
+
2483
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:368
2484
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:530
2485
+ msgid "The height component of the entered value must be between 20 and 200!"
2486
+ msgstr ""
2487
+
2488
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:370
2489
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:532
2490
+ msgid "The pair of values entered didn't have the right format (width,height)!"
2491
+ msgstr ""
2492
+
2493
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:373
2494
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:535
2495
+ msgid "The entered avatar size must be numeric!"
2496
+ msgstr ""
2497
+
2498
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:417
2499
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:606
2500
+ msgid "There was an error, please try again."
2501
+ msgstr ""
2502
+
2503
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:45
2504
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:87
2505
+ msgid "Your session has expired! Please refresh the page and try again."
2506
+ msgstr ""
2507
+
2508
+ # @ profilebuilder
2509
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:56
2510
+ #, fuzzy
2511
+ msgid "User successfully approved!"
2512
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2513
+
2514
+ # @ profilebuilder
2515
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:64
2516
+ #, fuzzy
2517
+ msgid "User successfully unapproved!"
2518
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2519
+
2520
+ # @ profilebuilder
2521
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:70
2522
+ #, fuzzy
2523
+ msgid "User successfully deleted!"
2524
+ msgstr "\" byla úspěšně odstraněna."
2525
+
2526
+ # @ profilebuilder
2527
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:107
2528
+ #, fuzzy
2529
+ msgid "Users successfully approved!"
2530
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2531
+
2532
+ # @ profilebuilder
2533
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:122
2534
+ #, fuzzy
2535
+ msgid "Users successfully unapproved!"
2536
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2537
+
2538
+ # @ profilebuilder
2539
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:135
2540
+ #, fuzzy
2541
+ msgid "Users successfully deleted!"
2542
+ msgstr "\" byla úspěšně odstraněna."
2543
+
2544
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:151
2545
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:154
2546
+ msgid "approved"
2547
+ msgstr ""
2548
+
2549
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:158
2550
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:161
2551
+ msgid "unapproved"
2552
+ msgstr ""
2553
+
2554
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:177
2555
+ msgid ""
2556
+ "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2557
+ "before you can log in."
2558
+ msgstr ""
2559
+
2560
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:189
2561
+ msgid ""
2562
+ "Your account has to be confirmed by an administrator before you can use the "
2563
+ "\"Password Recovery\" feature."
2564
+ msgstr ""
2565
+
2566
+ # @ profilebuilder
2567
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2568
+ msgid ""
2569
+ "You can create as many extra fields as your project requires. To break your "
2570
+ "custom fields into sections (on the front-end), add a \""
2571
+ msgstr ""
2572
+ "Můžete vytvořit libovolné množství vlastních polí. K jejich rozdělení do "
2573
+ "tématických celků (ve front-endu) použijte pole \""
2574
+
2575
+ # @ profilebuilder
2576
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2577
+ msgid "heading"
2578
+ msgstr "záhlaví"
2579
+
2580
+ # @ profilebuilder
2581
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2582
+ msgid "\" custom field."
2583
+ msgstr "\"."
2584
+
2585
+ # @ profilebuilder
2586
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2587
+ #, fuzzy
2588
+ msgid "All of the fields can be sorted and rearranged to your liking with"
2589
+ msgstr "Všechna pole lze třídit pomocí "
2590
+
2591
+ # @ profilebuilder
2592
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2593
+ msgid "Drag"
2594
+ msgstr "Drag"
2595
+
2596
+ # @ profilebuilder
2597
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2598
+ msgid "Drop"
2599
+ msgstr "Drop"
2600
+
2601
+ # @ profilebuilder
2602
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2603
+ #, fuzzy
2604
+ msgid ""
2605
+ "Don't worry about the order in which you create your custom fields, you can "
2606
+ "always reorder them."
2607
+ msgstr ""
2608
+ ". Není proto třeba se starat o pořadí, ve kterém vytvoříte vlastní pole, "
2609
+ "můžete jej kdykoli změnit."
2610
+
2611
+ # @ profilebuilder
2612
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
2613
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
2614
+ msgid "Title"
2615
+ msgstr "Název"
2616
+
2617
+ # @ profilebuilder
2618
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
2619
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
2620
+ msgid "Type"
2621
+ msgstr "Typ"
2622
+
2623
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
2624
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
2625
+ msgid "Meta-Key"
2626
+ msgstr ""
2627
+
2628
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
2629
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
2630
+ msgid "ID"
2631
+ msgstr ""
2632
+
2633
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
2634
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
2635
+ msgid "Req'd"
2636
+ msgstr ""
2637
+
2638
+ # @ profilebuilder
2639
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
2640
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
2641
+ msgid "Add Option"
2642
+ msgstr "Přidat volbu"
2643
+
2644
+ # @ profilebuilder
2645
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
2646
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
2647
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:217
2648
+ msgid "Edit"
2649
+ msgstr "Upravit"
2650
+
2651
+ # @ profilebuilder
2652
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:101
2653
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:82
2654
+ msgid "Title:"
2655
+ msgstr "Název:"
2656
+
2657
+ # @ profilebuilder
2658
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:101
2659
+ msgid "The title of the item."
2660
+ msgstr "Název vlastního pole."
2661
+
2662
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:111
2663
+ msgid "Meta-Key:"
2664
+ msgstr ""
2665
+
2666
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:111
2667
+ msgid ""
2668
+ "Use this in conjuction with WordPress functions to display the value in the "
2669
+ "page of your choosing. Auto-completed but editable - in this case it must be "
2670
+ "uniqe.<br/>Changing this might take long in case of a very big user-count."
2671
+ msgstr ""
2672
+
2673
+ # @ profilebuilder
2674
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:144
2675
+ msgid "Option Type:"
2676
+ msgstr "Typ vlastního pole:"
2677
+
2678
+ # @ profilebuilder
2679
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:144
2680
+ msgid "Choose one of the supported option types."
2681
+ msgstr "Vyberte jednu z nabízených možností."
2682
+
2683
+ # @ profilebuilder
2684
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2685
+ msgid "Description:"
2686
+ msgstr "Popis:"
2687
+
2688
+ # @ profilebuilder
2689
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2690
+ msgid ""
2691
+ "Enter a detailed description of the option for end users to read(optional)."
2692
+ msgstr "Zadejte podrobný popis vlastního pole pro uživatele (volitelné)."
2693
+
2694
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2695
+ msgid "You can only insert links using standard HTML syntax:"
2696
+ msgstr ""
2697
+
2698
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2699
+ msgid "address"
2700
+ msgstr ""
2701
+
2702
+ # @ profilebuilder
2703
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2704
+ #, fuzzy
2705
+ msgid "name"
2706
+ msgstr "Jméno"
2707
+
2708
+ # @ profilebuilder
2709
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:165
2710
+ msgid "Options:"
2711
+ msgstr "Možnosti:"
2712
+
2713
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:165
2714
+ msgid ""
2715
+ "Enter a comma separated list of options.<br/>These can be anything, as it is "
2716
+ "hidden from the user, but should not contain special characters, spaces or "
2717
+ "apostrophes."
2718
+ msgstr ""
2719
+
2720
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:176
2721
+ msgid "Labels:"
2722
+ msgstr ""
2723
+
2724
+ # @ profilebuilder
2725
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:176
2726
+ #, fuzzy
2727
+ msgid ""
2728
+ "Enter a comma separated list of labels for the above options.<br/>For "
2729
+ "example, you could have \"One,Two,Three\" or just a single value like \"Yes"
2730
+ "\" for a checkbox.<br/>Visible for the user, and if no labels are specified, "
2731
+ "the values from the options are used instead."
2732
+ msgstr ""
2733
+ "Zadejte čárkami oddělený seznam možností. Například \"Jedna, dva, tři\" nebo "
2734
+ "jen jednu hodnotu (např. \"Ano\" u check-boxu)."
2735
+
2736
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:187
2737
+ msgid "ID:"
2738
+ msgstr ""
2739
+
2740
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:187
2741
+ msgid ""
2742
+ "This is the internal ID for this input. You can use this in conjuction with "
2743
+ "filters to target this element if needed.<br/>Can't be edited."
2744
+ msgstr ""
2745
+
2746
+ # @ profilebuilder
2747
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:198
2748
+ #, fuzzy
2749
+ msgid "Required:"
2750
+ msgstr "(vyžadováno)"
2751
+
2752
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:198
2753
+ msgid "Check this box to make this field required."
2754
+ msgstr ""
2755
+
2756
+ # @ profilebuilder
2757
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
2758
+ msgid "Cancel"
2759
+ msgstr "Zrušit"
2760
+
2761
+ # @ profilebuilder
2762
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
2763
+ msgid "Save"
2764
+ msgstr "Uložit"
2765
+
2766
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:71
2767
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:186
2768
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:275
2769
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:363
2770
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:437
2771
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:505
2772
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:560
2773
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
2774
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:677
2775
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:787
2776
+ msgid ""
2777
+ "This field wasn't updated because you entered and empty string (It was "
2778
+ "marked as required by the administrator)"
2779
+ msgstr ""
2780
+
2781
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:655
2782
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
2783
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:763
2784
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:793
2785
+ msgid "max upload size"
2786
+ msgstr ""
2787
+
2788
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:661
2789
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:697
2790
+ msgid "Are you sure you want to delete this attachment?"
2791
+ msgstr ""
2792
+
2793
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2794
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2795
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2796
+ msgid "Click to delete the current attachment"
2797
+ msgstr ""
2798
+
2799
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2800
+ msgid ""
2801
+ "The attachment can't be deleted (It was marked as required by the "
2802
+ "administrator)"
2803
+ msgstr ""
2804
+
2805
+ # @ profilebuilder
2806
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:766
2807
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:797
2808
+ msgid "Current avatar"
2809
+ msgstr "Aktuální avatar"
2810
+
2811
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:766
2812
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:797
2813
+ msgid "No uploaded avatar"
2814
+ msgstr ""
2815
+
2816
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2817
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2818
+ msgid "Are you sure you want to delete this avatar?"
2819
+ msgstr ""
2820
+
2821
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:804
2822
+ msgid ""
2823
+ "The avatar image can't be deleted (It was marked as required by the "
2824
+ "administrator)."
2825
+ msgstr ""
2826
+
2827
+ # @ profilebuilder
2828
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2829
+ #, fuzzy
2830
+ msgid "Click to see the current avatar"
2831
+ msgstr "Aktuální avatar"
2832
+
2833
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2834
+ msgid "Click to delete the avatar"
2835
+ msgstr ""
2836
+
2837
+ # @ profilebuilder
2838
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:860
2839
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:952
2840
+ #, fuzzy
2841
+ msgid "The avatar was successfully deleted!"
2842
+ msgstr "Avatar byl úspěšně odstraněn."
2843
+
2844
+ # @ profilebuilder
2845
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:862
2846
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:954
2847
+ #, fuzzy
2848
+ msgid "The following attachment was successfully deleted:"
2849
+ msgstr "Avatar byl úspěšně odstraněn."
2850
+
2851
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
2852
+ msgid "This login widget lets you add a login form in the sidebar."
2853
+ msgstr ""
2854
+
2855
+ # @ profilebuilder
2856
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
2857
+ #, fuzzy
2858
+ msgid "Profile Builder Login Widget"
2859
+ msgstr "Profile Builder"
2860
+
2861
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:42
2862
+ msgid "Don't have an account?"
2863
+ msgstr ""
2864
+
2865
+ # @ profilebuilder
2866
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2867
+ #, fuzzy
2868
+ msgid "Lost Password"
2869
+ msgstr "Zapomněli jste heslo?"
2870
+
2871
+ # @ profilebuilder
2872
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2873
+ #, fuzzy
2874
+ msgid "Lost Your Password?"
2875
+ msgstr "Zapomněli jste heslo?"
2876
+
2877
+ # @ profilebuilder
2878
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:78
2879
+ #, fuzzy
2880
+ msgid "Login"
2881
+ msgstr "Přihlásit se"
2882
+
2883
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:87
2884
+ msgid "After login redirect URL (optional):"
2885
+ msgstr ""
2886
+
2887
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:92
2888
+ msgid "Register page URL (optional):"
2889
+ msgstr ""
2890
+
2891
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:97
2892
+ msgid "Password Recovery page URL (optional):"
2893
+ msgstr ""
2894
+
2895
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
2896
+ msgid "The user-validation has failed - the avatar was not deleted!"
2897
+ msgstr ""
2898
+
2899
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
2900
+ msgid "The user-validation has failed - the attachment was not deleted!"
2901
+ msgstr ""
2902
+
2903
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:339
2904
+ #, php-format
2905
+ msgid ""
2906
+ "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
2907
+ "Please %1$sregister your copy%2$s of Profile Builder to receive access to "
2908
+ "automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
2909
+ "%5$sDismiss%6$s"
2910
+ msgstr ""
2911
+
2912
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:343
2913
+ #, php-format
2914
+ msgid ""
2915
+ "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
2916
+ "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
2917
+ "priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
2918
+ msgstr ""
2919
+
2920
+ # @ profilebuilder
2921
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
2922
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
2923
+ msgid "Register your version of Profile Builder Pro"
2924
+ msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
2925
+
2926
+ # @ profilebuilder
2927
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
2928
+ msgid ""
2929
+ "Now that you acquired a copy of Profile Builder Pro, you should take the "
2930
+ "time and register it with the serial number you received in the e-mail."
2931
+ msgstr ""
2932
+ "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody "
2933
+ "registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
2934
+
2935
+ # @ profilebuilder
2936
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
2937
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
2938
+ msgid ""
2939
+ "If you register this version of Profile Builder, you'll receive information "
2940
+ "regarding eventual upgrades, patches, and - if needed - technical support."
2941
+ msgstr ""
2942
+ "Pokud si zaregistrujete tuto verzi Profile Builder, budete dostávat "
2943
+ "informace o aktualizacích, nových verzích a získáte přístup k technické "
2944
+ "podpoře."
2945
+
2946
+ # @ profilebuilder
2947
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
2948
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
2949
+ msgid "Serial Number:"
2950
+ msgstr "Sériové číslo:"
2951
+
2952
+ # @ profilebuilder
2953
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
2954
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
2955
+ msgid "The serial number was successfully validated!"
2956
+ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
2957
+
2958
+ # @ profilebuilder
2959
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
2960
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
2961
+ #, fuzzy
2962
+ msgid "The serial number entered couldn't be validated!"
2963
+ msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
2964
+
2965
+ # @ profilebuilder
2966
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
2967
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
2968
+ #, fuzzy
2969
+ msgid "The serial number couldn't be validated because it is no longer valid!"
2970
+ msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
2971
+
2972
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
2973
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
2974
+ msgid ""
2975
+ "The serial number couldn't be validated because process timed out. This is "
2976
+ "possible due to the server being down. Please try again later!"
2977
+ msgstr ""
2978
+
2979
+ # @ profilebuilder
2980
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
2981
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2982
+ msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2983
+
2984
+ # @ profilebuilder
2985
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
2986
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
2987
+ #, fuzzy
2988
+ msgid "Register your version of Profile Builder Hobbyist"
2989
+ msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
2990
+
2991
+ # @ profilebuilder
2992
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
2993
+ #, fuzzy
2994
+ msgid ""
2995
+ "Now that you acquired a copy of Profile Builder Hobbyist, you should take "
2996
+ "the time and register it with the serial number you received in the e-mail."
2997
+ msgstr ""
2998
+ "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody "
2999
+ "registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
3000
+
3001
+ # @ profilebuilder
3002
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
3003
+ #, fuzzy
3004
+ msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3005
+ msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3006
+
3007
+ # @ profilebuilder
3008
+ #, fuzzy
3009
+ #~ msgid "The email address you entered is invalid."
3010
+ #~ msgstr "Zadaný e-mail není platný. <br/> Adresa "
3011
+
3012
+ # @ profilebuilder
3013
+ #, fuzzy
3014
+ #~ msgid "The passwords you entered do not match."
3015
+ #~ msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
3016
+
3017
+ # @ profilebuilder
3018
+ #, fuzzy
3019
+ #~ msgid "You didn't complete both password fields."
3020
+ #~ msgstr "Nebyla vyplněna obě pole hesla."
3021
+
3022
+ # @ profilebuilder
3023
+ #, fuzzy
3024
+ #~ msgid "The attachment"
3025
+ #~ msgstr "Příloha \""
3026
+
3027
+ # @ profilebuilder
3028
+ #, fuzzy
3029
+ #~ msgid "Possible cause: the size was bigger than"
3030
+ #~ msgstr "<br/> Možná příčina: velikost byla větší než "
3031
+
3032
+ # @ profilebuilder
3033
+ #, fuzzy
3034
+ #~ msgid "The listed attachements were"
3035
+ #~ msgstr "B. <br/> Příloha (přílohy) "
3036
+
3037
+ # @ profilebuilder
3038
+ #, fuzzy
3039
+ #~ msgid "and password:"
3040
+ #~ msgstr "Heslo"
translation/profilebuilder-da_DK.mo CHANGED
Binary file
translation/profilebuilder-da_DK.po CHANGED
@@ -1,2523 +1,2928 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: ProfileBuilder\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-14 14:34+0200\n"
6
- "PO-Revision-Date: 2013-05-14 14:34+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"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.5\n"
15
- "X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
16
- "pro\n"
17
-
18
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
19
- #, fuzzy
20
- msgid "unapprove this user?"
21
- msgstr "Afvis"
22
-
23
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
24
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:218
25
- msgid "Unapprove"
26
- msgstr "Afvis"
27
-
28
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
29
- msgid "approve this user?"
30
- msgstr ""
31
-
32
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
33
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:217
34
- msgid "Approve"
35
- msgstr "Godkend"
36
-
37
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:166
38
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:153
39
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:889
40
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:155
41
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1076
42
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
43
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:79
44
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:525
45
- msgid "Username"
46
- msgstr "Brugernavn"
47
-
48
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:167
49
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:154
50
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1022
51
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1064
52
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1178
53
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
54
- msgid "E-mail"
55
- msgstr "E-mail"
56
-
57
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:168
58
- msgid "Role"
59
- msgstr ""
60
-
61
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:169
62
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:155
63
- #, fuzzy
64
- msgid "Registered"
65
- msgstr "Tilmeld"
66
-
67
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:170
68
- #, fuzzy
69
- msgid "User-status"
70
- msgstr "Brugerliste"
71
-
72
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:244
73
- msgid "Do you want to bulk approve the selected users?"
74
- msgstr ""
75
-
76
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:252
77
- msgid "Do you want to bulk unapprove the selected users?"
78
- msgstr ""
79
-
80
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:260
81
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:263
82
- msgid "Sorry, but you don't have permission to do that!"
83
- msgstr ""
84
-
85
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:294
86
- msgid "Approved"
87
- msgstr "Godkendt"
88
-
89
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:296
90
- msgid "Unapproved"
91
- msgstr "Afvist"
92
-
93
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:466
94
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:8
95
- msgid "Admin Approval"
96
- msgstr ""
97
-
98
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:469
99
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:456
100
- #, fuzzy
101
- msgid "All Users"
102
- msgstr "Tilføj bruger"
103
-
104
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
105
- msgid "delete this user from the _signups table?"
106
- msgstr ""
107
-
108
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
109
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:200
110
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
111
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
112
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
113
- msgid "Delete"
114
- msgstr "Slet"
115
-
116
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
117
- msgid "confirm this email yourself?"
118
- msgstr ""
119
-
120
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
121
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:201
122
- msgid "Confirm Email"
123
- msgstr ""
124
-
125
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:228
126
- #, fuzzy
127
- msgid "couldn't be deleted."
128
- msgstr "Det indtastede serienummer kunne ikke blive valideret!"
129
-
130
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:239
131
- #, fuzzy
132
- msgid "All users have been successfully deleted."
133
- msgstr "Ændringerne er gemt med succes."
134
-
135
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:254
136
- #, fuzzy
137
- msgid "The selected users have been activated."
138
- msgstr "Det indtastede serienummer kunne ikke blive valideret!"
139
-
140
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:453
141
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:48
142
- msgid "Users with Unconfirmed Email Address"
143
- msgstr ""
144
-
145
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:83
146
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:320
147
- #, php-format
148
- msgid ""
149
- "The information size you were trying to submit was larger than %1$sb!<br/"
150
- ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
151
- "it was also larger than %2$sb no additional information is available.<br/"
152
- ">The user was NOT created!"
153
- msgstr ""
154
- "Størrelsen på den information som du forsøger at indsende er større end "
155
- "%1$sb!<br/>Dette skyldes ofte at store fil(er) forsøges uploadet.<br/>Siden "
156
- "at det også er større end %2$sb ingen yderligere information er tilgængelige."
157
- "<br/>Brugeren var IKKE oprettet!"
158
-
159
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:769
160
- msgid "You must be logged in to edit your profile."
161
- msgstr "Du skal være logget ind for at redigere din profil."
162
-
163
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:777
164
- msgid "The avatar was successfully deleted."
165
- msgstr "Avataren var successfuldt slettet."
166
-
167
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:782
168
- #, php-format
169
- msgid "The attachment \"%1$s\" was successfully deleted."
170
- msgstr "Vedhæftningen \"%1$s\" var successfuldt slettet."
171
-
172
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:795
173
- msgid "The changes have been successfully saved."
174
- msgstr "Ændringerne er gemt med succes."
175
-
176
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
177
- #, fuzzy, php-format
178
- msgid ""
179
- "The email address you entered is already registered to a different user."
180
- "%1$sThe email address was %2$sNOT%3$s updated along with the rest of the "
181
- "information."
182
- msgstr ""
183
- "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
184
- "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
185
-
186
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:804
187
- #, fuzzy, php-format
188
- msgid ""
189
- "The email address you entered is invalid.%1$sThe email address was %2$sNOT"
190
- "%3$s updated along with the rest of the information."
191
- msgstr ""
192
- "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
193
- "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
194
-
195
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:809
196
- #, fuzzy, php-format
197
- msgid ""
198
- "The passwords you entered do not match.%1$sThe password was %2$sNOT%3$s "
199
- "updated along with the rest of the information."
200
- msgstr ""
201
- "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
202
- "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
203
-
204
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:814
205
- #, fuzzy, php-format
206
- msgid ""
207
- "You didn't complete both password fields.%1$sThe password was %2$sNOT%3$s "
208
- "updated along with the rest of the information."
209
- msgstr ""
210
- "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
211
- "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
212
-
213
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
214
- msgid ""
215
- "Your profile was NOT updated, since not all required fields were completed!"
216
- msgstr ""
217
-
218
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
219
- msgid "There was an error while trying to upload the following attachments:"
220
- msgstr "Der skete en fejl ved upload af følgende vedhæftninger:"
221
-
222
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:836
223
- #, php-format
224
- msgid ""
225
- "Possible cause: the size was bigger than %1$sb. The listed attachements were "
226
- "%2$sNOT%3$s updated along with the rest of the information."
227
- msgstr ""
228
- "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
229
- "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
230
-
231
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
232
- msgid "There was an error while trying to upload your avatar picture."
233
- msgstr "Der skete en fejl ved upload af dit avatar billede."
234
-
235
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
236
- msgid "Possible cause: size/incorrect file-type."
237
- msgstr "Mulig årsag: størrelse/ikke-korrekt filtype"
238
-
239
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
240
- msgid "The avatar was"
241
- msgstr "Dit profilbillede var"
242
-
243
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
244
- msgid "NOT"
245
- msgstr "IKKE"
246
-
247
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
248
- msgid "updated along with the rest of the information."
249
- msgstr "opdateret sammen med resten af informationerne."
250
-
251
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:851
252
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:646
253
- msgid "There was an error while trying to upload the following attachment(s)"
254
- msgstr "Der skete en fejl ved upload af dit de(n) følgende vedhæfning(er)"
255
-
256
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:858
257
- #, php-format
258
- msgid ""
259
- "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
260
- "file was %2$sNOT%3$s updated along with the rest of the information."
261
- msgstr ""
262
- "Kun filer med de(n) følgende endels(er) kan uploades: %1$s<br/>Denne fil var "
263
- "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
264
-
265
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
266
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1029
267
- msgid "Name"
268
- msgstr "Navn"
269
-
270
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:880
271
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:153
272
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:80
273
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:537
274
- msgid "Email"
275
- msgstr "E-mail"
276
-
277
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:881
278
- #, fuzzy
279
- msgid "The email cannot be changed."
280
- msgstr "Dit brugernavn kan ikke ændres"
281
-
282
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:890
283
- #, fuzzy
284
- msgid "The usernames cannot be changed."
285
- msgstr "Dit brugernavn kan ikke ændres"
286
-
287
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
288
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:920
289
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:940
290
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:960
291
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1012
292
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1034
293
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1052
294
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1070
295
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1088
296
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1109
297
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:68
298
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:174
299
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:243
300
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:311
301
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:378
302
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:446
303
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:501
304
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:551
305
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
306
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:727
307
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:774
308
- msgid "This field is marked as required by the administrator."
309
- msgstr "Dette felt er markeret som påkrævet af administratoren."
310
-
311
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:903
312
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:923
313
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:943
314
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:963
315
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1015
316
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1036
317
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1054
318
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1072
319
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1090
320
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1111
321
- msgid ""
322
- "This field wasn't updated because you entered and empty string (It was "
323
- "marked as required by the administrator."
324
- msgstr ""
325
- "Dette felt var ikke opdateret fordi du indtastede en tom streng (det var "
326
- "market som påkrævet af administratoren."
327
-
328
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
329
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1101
330
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
331
- msgid "First Name"
332
- msgstr "Fornavn"
333
-
334
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:930
335
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1125
336
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
337
- msgid "Last Name"
338
- msgstr "Efternavn"
339
-
340
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:950
341
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1149
342
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
343
- msgid "Nickname"
344
- msgstr "Kaldenavn"
345
-
346
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:971
347
- msgid "Display name publicly as"
348
- msgstr "Vis navn offentligt som"
349
-
350
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1003
351
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
352
- msgid "Contact Info"
353
- msgstr "Kontakt information"
354
-
355
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1024
356
- msgid "(required)"
357
- msgstr "(påkrævet)"
358
-
359
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1042
360
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1203
361
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
362
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:567
363
- msgid "Website"
364
- msgstr "Hjemmeside"
365
-
366
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1060
367
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1227
368
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
369
- msgid "AIM"
370
- msgstr "AIM"
371
-
372
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1078
373
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
374
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
375
- msgid "Yahoo IM"
376
- msgstr "Yahoo IM"
377
-
378
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1096
379
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1275
380
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
381
- msgid "Jabber / Google Talk"
382
- msgstr "Jabber / Google Talk"
383
-
384
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1102
385
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1281
386
- msgid "About Yourself"
387
- msgstr "Om dig"
388
-
389
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1117
390
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1302
391
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
392
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:573
393
- msgid "Biographical Info"
394
- msgstr "Biografisk info"
395
-
396
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1127
397
- msgid "New Password"
398
- msgstr "Ny adgangskode"
399
-
400
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1132
401
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
402
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
403
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1341
404
- msgid "Repeat Password"
405
- msgstr "Gentag adgangskode"
406
-
407
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1163
408
- msgid "Update"
409
- msgstr "Opdater"
410
-
411
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
412
- #, php-format
413
- msgid "You are currently logged in as %1$s. %2$s"
414
- msgstr "Du er logget ind som %1$s. %2$s"
415
-
416
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
417
- msgid "Log out of this account"
418
- msgstr "Log ud af denne konto"
419
-
420
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
421
- msgid "Log out"
422
- msgstr "Log ud"
423
-
424
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
425
- #, php-format
426
- msgid "You have successfully logged in as %1$s"
427
- msgstr "Du har med succes logget ind som %1$s"
428
-
429
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
430
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
431
- #, php-format
432
- msgid ""
433
- "You will soon be redirected automatically. If you see this page for more "
434
- "than 1 second, please click %1$s"
435
- msgstr ""
436
- "Du var snart blive viderestillet automatisk. Hvis du siger denne side i mere "
437
- "end 1 sekund, klik venligst %1$s"
438
-
439
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
440
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
441
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
442
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
443
- msgid "here"
444
- msgstr "her"
445
-
446
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
447
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
448
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
449
- msgid "ERROR:"
450
- msgstr "FEJL:"
451
-
452
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
453
- #, fuzzy
454
- msgid "The email field is empty"
455
- msgstr "Feltet for brugernavn er tomt"
456
-
457
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
458
- msgid "The username field is empty"
459
- msgstr "Feltet for brugernavn er tomt"
460
-
461
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:167
462
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
463
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
464
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1336
465
- msgid "Password"
466
- msgstr "Adgangskode"
467
-
468
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:175
469
- msgid "Log in"
470
- msgstr "Log ind"
471
-
472
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:179
473
- msgid "Remember me"
474
- msgstr "Husk mig"
475
-
476
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:194
477
- msgid "Lost password?"
478
- msgstr "Glemt adgangskode?"
479
-
480
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
481
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
482
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
483
- msgid "ERROR"
484
- msgstr "FEJL"
485
-
486
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
487
- msgid ""
488
- "Your account has to be confirmed by an administrator before you can use the "
489
- "\"Password Reset\" feature."
490
- msgstr ""
491
- "Din konto skal godkendes af en administrator før du kan bruge \"Nulstil "
492
- "adgangskode\" funktionen."
493
-
494
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
495
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
496
- #, php-format
497
- msgid ""
498
- "A password reset email has been sent to %1$s.<br/>Following the link sent in "
499
- "the email address will reset the password."
500
- msgstr ""
501
- "En adgangskode nulstillings e-mail var sendt til %1$s.<br/>Følg linket sendt "
502
- "i e-mailen, og det vil nulstillet adgangskoden."
503
-
504
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
505
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
506
- #, php-format
507
- msgid ""
508
- "Someone requested that the password be reset for the following account: <b>"
509
- "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
510
- "happen.<br/>To reset your password, visit the following link:%2$s"
511
- msgstr ""
512
- "Nogen forespurgte at adgangskoden for den følgende konto skulle nulstilles: "
513
- "<b>%1$s</b><br/>Hvis dette var en fejl ignore blot denne e-mail og intet vil "
514
- "ske.<br/>For at nulstille din adgangskode, besøg følgende link:%2$s"
515
-
516
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
517
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
518
- #, php-format
519
- msgid "Password Reset Feature from \"%1$s\""
520
- msgstr "Adgangskode nulstillings funktionalitet fra \"%1$s\""
521
-
522
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
523
- #, php-format
524
- msgid "There was an error while trying to send the activation link to %1$s!"
525
- msgstr "Der skete en fejl ved afsendelse af aktiveringslink til %1$s!"
526
-
527
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
528
- msgid "The email address entered wasn't found in the database!"
529
- msgstr "Den indtastede e-mail adresse blev ikke fundet i databasen!"
530
-
531
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
532
- msgid "Please check that you entered the correct email address."
533
- msgstr "Tjek venligst at du har indtastet den korrekte e-mail adresse."
534
-
535
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
536
- msgid "There was an error while trying to send the activation link to "
537
- msgstr "Der skete en fejl i forsøget på at sende aktiveringslinket til"
538
-
539
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
540
- msgid "The username entered wasn't found in the database!"
541
- msgstr "Det indtastede brugernavn var ikke fundet i databasen!"
542
-
543
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
544
- msgid "Please check that you entered the correct username."
545
- msgstr "Venligst tjek at du har indtastet det korrekte brugernavn."
546
-
547
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
548
- msgid "Your password has been successfully changed!"
549
- msgstr "Din adgangskode var successfuldt ændret!"
550
-
551
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
552
- #, php-format
553
- msgid "You have successfully reset your password to: %1$s"
554
- msgstr "Du har med succes nulstillet din adgangskode til: %1$s"
555
-
556
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
557
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
558
- #, php-format
559
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
560
- msgstr "Adgangskode succesfuldt nulstillet for %1$s på \"%2$s\""
561
-
562
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
563
- #, php-format
564
- msgid ""
565
- "%1$s has requested a password change via the password reset feature.<br/>His/"
566
- "her new password is:%2$s"
567
- msgstr ""
568
- "%1$s har forespurgt en adgangskode ændret via adgangskode nulstillings "
569
- "funktionen.<br/>Hans/hendes nye adgangskode er :%2$s"
570
-
571
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
572
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
573
- msgid "The entered passwords don't match!"
574
- msgstr "De indtastede adgangskoder er ikke ens!"
575
-
576
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
577
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
578
- msgid "Reset Password"
579
- msgstr "Nulstil adgangskode"
580
-
581
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
582
- msgid "Invalid key!"
583
- msgstr "Ikke gyldig nøgle!"
584
-
585
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
586
- msgid "Please enter your username or email address."
587
- msgstr "Indtast venligst dit brugernavn eller e-mail adresse."
588
-
589
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
590
- msgid "You will receive a link to create a new password via email."
591
- msgstr "Du vil modtage et link via e-mail til oprettelse af ny adgangskode."
592
-
593
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
594
- msgid "Username or E-mail"
595
- msgstr "Brugernavn eller E-mail"
596
-
597
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
598
- msgid "Get New Password"
599
- msgstr "Få ny adgangskode"
600
-
601
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:217
602
- msgid "Invalid activation key!"
603
- msgstr "Ikke gyldig aktiveringsnøgle!"
604
-
605
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:221
606
- msgid "The user is already active!"
607
- msgstr "Brugeren er allerede aktiv!"
608
-
609
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:239
610
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:381
611
- msgid "Could not create user!"
612
- msgstr "Kunne ikke lave bruger!"
613
-
614
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:242
615
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:384
616
- msgid "That username is already activated!"
617
- msgstr "Brugernavnet er allerede aktiveret!"
618
-
619
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:268
620
- msgid "The user was successfully activated."
621
- msgstr "Brugeren var succesfuldt aktiveret."
622
-
623
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:270
624
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:410
625
- msgid "There was an error while trying to activate the user."
626
- msgstr "Der skete en fejl ved aktivering af brugeren."
627
-
628
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:630
629
- msgid "A username is required for registration."
630
- msgstr "Et brugernavn er påkrævet for at tilmelde sig."
631
-
632
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:634
633
- msgid "Sorry, that username already exists!"
634
- msgstr "Beklager, men det brugernavn eksisterer allerede!"
635
-
636
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:636
637
- msgid "You must enter a valid email address."
638
- msgstr "Du skal indtaste en gyldig e-mail adresse."
639
-
640
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:638
641
- msgid "Sorry, that email address is already used!"
642
- msgstr "Beklager, men e-mail adressen er allerede i brug!"
643
-
644
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:641
645
- msgid "You didn't complete one of the password-fields!"
646
- msgstr "Du har ikke fuldendt én af adgangskode felterne!"
647
-
648
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
649
- msgid "Only files with the following extension(s) can be uploaded:"
650
- msgstr "Kun filer med følgende endelse kan blive uploadet:"
651
-
652
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
653
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
654
- msgid "The account was NOT created!"
655
- msgstr "Kontoen var IKKE oprettet!"
656
-
657
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:657
658
- msgid "You must agree to the terms and conditions before registering!"
659
- msgstr "Du skal være enig i betingelserne før tilmelding!"
660
-
661
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
662
- msgid "(Several required fields were left uncompleted)"
663
- msgstr "(Flere påkrævet felter var efterladt ikke fuldendte)"
664
-
665
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
666
- msgid "This username is already reserved to be used soon."
667
- msgstr "Brugernavnet er allerede reserveret til senere brug."
668
-
669
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
670
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
671
- msgid "Please try a different one!"
672
- msgstr "Prøv venligst en anden!"
673
-
674
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
675
- msgid "This email address is already reserved to be used soon."
676
- msgstr "Denne e-mail adresse er allerede reserveret til senere brug."
677
-
678
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
679
- msgid "You are logged in as"
680
- msgstr "Du er logget ind som"
681
-
682
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
683
- msgid "You don't need another account."
684
- msgstr "Du har ikke behov for en anden konto."
685
-
686
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
687
- msgid "Log out of this account."
688
- msgstr "Log ud af denne konto."
689
-
690
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
691
- msgid "Logout"
692
- msgstr "Log ud"
693
-
694
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:919
695
- #, php-format
696
- msgid ""
697
- "An email has been sent to %1$s with information on how to activate his/her "
698
- "account."
699
- msgstr ""
700
- "En e-mail er blevet sendt til %1$s med informationer om hvordan han/hendes "
701
- "konto aktiveres."
702
-
703
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:923
704
- #, php-format
705
- msgid "A user account has been created for %1$s."
706
- msgstr "En brugerkonto er oprettet for %1$s."
707
-
708
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
709
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
710
- #, php-format
711
- msgid ""
712
- "You will soon be redirected automatically. If you see this page for more "
713
- "than 3 seconds, please click %1$s.%2$s"
714
- msgstr ""
715
- "Du vil snart blive viderestillet automatisk. Hvis du ser denne side i mere "
716
- "end 3 sekunder, klik venligst %1$s.%2$s"
717
-
718
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:949
719
- msgid ""
720
- "An email has been sent to you with information on how to activate your "
721
- "account."
722
- msgstr ""
723
- "En e-mail er blevet sendt til dig med informationer om hvordan du aktivere "
724
- "din konto."
725
-
726
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:953
727
- #, php-format
728
- msgid "Thank you for registering %1$s."
729
- msgstr "Tak for din registering %1$s."
730
-
731
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:980
732
- msgid "An error occured while trying to send the notification email."
733
- msgstr "En fejl skete ved afsendelse af notifikations e-mail"
734
-
735
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:985
736
- msgid "An email containing activation instructions was successfully sent."
737
- msgstr "En e-mail indeholdende aktiveringsinstruktioner var sendt med sucess."
738
-
739
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:990
740
- msgid "An email containing the username and password was successfully sent."
741
- msgstr ""
742
- "En e-mail indeholdende brugernavnet og adgangskoden var sendt succesfuldt."
743
-
744
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1006
745
- msgid "Users can register themselves or you can manually create users here."
746
- msgstr "Brugere kan tilmelde sig selv eller du kan manuel tilføje brugere her."
747
-
748
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1011
749
- msgid ""
750
- "Users cannot currently register themselves, but you can manually create "
751
- "users here."
752
- msgstr ""
753
- "Brugere kan ikke på nuværende tidspunkt registere sig, men du kan manuelt "
754
- "oprette dem her."
755
-
756
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1016
757
- msgid "Only an administrator can add new users."
758
- msgstr "Kun en administrator kan tilføje nye brugere."
759
-
760
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1039
761
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1090
762
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1114
763
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1138
764
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
765
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1216
766
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1240
767
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
768
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1291
769
- msgid ""
770
- "This field must be filled out before registering (It was marked as required "
771
- "by the administrator)"
772
- msgstr ""
773
- "Dette felt skal være udfyldt før tilmelding (Det var markeret som påkrævet "
774
- "af adminitratoren)"
775
-
776
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1050
777
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1087
778
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1111
779
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1135
780
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1164
781
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1189
782
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1213
783
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
784
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1261
785
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1288
786
- msgid "This field is marked as required by the administrator"
787
- msgstr "Dette felt er markeret som påkrævet af administratoren"
788
-
789
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
790
- msgid "Anti-Spam"
791
- msgstr "Anti-Spam"
792
-
793
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1385
794
- msgid "Send these credentials via email."
795
- msgstr "Send disse oplysninger via e-mail."
796
-
797
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
798
- msgid "Add User"
799
- msgstr "Tilføj bruger"
800
-
801
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
802
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:41
803
- msgid "Register"
804
- msgstr "Tilmeld"
805
-
806
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
807
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
808
- msgid "Show/Hide the Admin Bar on Front End"
809
- msgstr "Vis/skjul admin baren på frontend"
810
-
811
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
812
- msgid "User-group"
813
- msgstr "Brugergruppe"
814
-
815
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
816
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
817
- msgid "Visibility"
818
- msgstr "Synlighed"
819
-
820
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
821
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
822
- msgid "Default"
823
- msgstr "Standard"
824
-
825
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
826
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
827
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
828
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
829
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
830
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
831
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
832
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
833
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
834
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
835
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
836
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
837
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
838
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:33
839
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:415
840
- msgid "Show"
841
- msgstr "Vis"
842
-
843
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
844
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
845
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
846
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
847
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
848
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
849
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
850
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
851
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
852
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
853
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
854
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
855
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
856
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:34
857
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:416
858
- msgid "Hide"
859
- msgstr "Skjul"
860
-
861
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
862
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
863
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:89
864
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:59
865
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
866
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:377
867
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:650
868
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
869
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
870
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
871
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
872
- msgid "Save Changes"
873
- msgstr "Gem ændringer"
874
-
875
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
876
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
877
- msgid "Profile Builder"
878
- msgstr "Profile Builder"
879
-
880
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
881
- msgid "Welcome to Profile Builder!"
882
- msgstr "Velkommen til Profile Builder!"
883
-
884
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
885
- msgid ""
886
- " lets you customize your website by adding a front-end menu for all your "
887
- "users, giving them a more flexible way to modify their user-information or "
888
- "to register new users."
889
- msgstr ""
890
- " lader dig tilpasse din hjemmeside ved at tilføje en frontend menu for alle "
891
- "dine brugere, hvilket giver dem en mere fleksibel måde at ændre deres "
892
- "brugerinformation eller tilmelde sig som ny bruger."
893
-
894
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
895
- msgid ""
896
- "Also, grants users with administrator rights to customize basic fields or to "
897
- "add new ones."
898
- msgstr ""
899
- "Også give brugere med administrationsrettigheder ret til at tilpasse "
900
- "basisfelter eller tilføje nye."
901
-
902
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
903
- msgid ""
904
- "To achieve this, just create a new page, and give it an intuitive name(e.g. "
905
- "Edit Profile)."
906
- msgstr ""
907
- "For at opnå dette, opret blot en ny side og giv den et intuitivt navn (f."
908
- "eks. Rediger profil)."
909
-
910
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
911
- msgid ""
912
- "Now all you need to do is add the following shortcode(for the previous "
913
- "example): "
914
- msgstr ""
915
- "Det eneste du nu skal gøre er at tilføje følgende shortcode (fra det "
916
- "tidligere eksempel):"
917
-
918
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
919
- msgid "Publish your page and you are ready to go!"
920
- msgstr "Udgiv din side og du er klar!"
921
-
922
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
923
- msgid "You can use the following shortcodes:"
924
- msgstr "Du kan benytte følgende shortcodes:"
925
-
926
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
927
- msgid "for a log-in form."
928
- msgstr "for login form."
929
-
930
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
931
- msgid "to add a registration form."
932
- msgstr "til at oprette en registeringsformular."
933
-
934
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
935
- msgid ""
936
- "to grant users a front-end acces to their personal information(requires user "
937
- "to be logged in)."
938
- msgstr ""
939
- "til at give brugerne en front-end adgang til deres personlige informationer "
940
- "(kræver at brugeren er logget ind)."
941
-
942
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
943
- msgid "to add a password recovery form."
944
- msgstr "til at tilføje en mistet-adgangskode formular."
945
-
946
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
947
- msgid ""
948
- "With the <strong>Pro</strong> version, users with administrator rights have "
949
- "access to the following features:"
950
- msgstr ""
951
- "Med <strong>Pro</strong> versionen, brugere med administrationsrettigheder "
952
- "kan adgang til følgende funktioner:"
953
-
954
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
955
- msgid ""
956
- "add a custom stylesheet/inherit values from the current theme or use one of "
957
- "the following built into this plugin: default, white or black."
958
- msgstr ""
959
- "tilføj en tilpasset stylesheet/arvet værdi fra det nuværende tema eller brug "
960
- "et af de følgende indbygget: standard, hvid eller sort."
961
-
962
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
963
- msgid ""
964
- "select whether to display or not the admin bar in the front end for a "
965
- "specific user-group registered to the site."
966
- msgstr ""
967
- "vælg hvorvidt admin baren skal vises eller ej på frontend for en specifik "
968
- "brugergruppe registeret på hjemmesiden."
969
-
970
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
971
- msgid ""
972
- "select which information-field can users see/modify. The hidden fields' "
973
- "values remain unmodified."
974
- msgstr ""
975
- "vælg hvilket informationsfelt brugere kan se/ændre. Skjulte felters værdier "
976
- "forbliver uændret."
977
-
978
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
979
- msgid ""
980
- "add custom fields to the existing ones, with several types to choose from: "
981
- "heading, text, textarea, select, checkbox, radio, and/or upload."
982
- msgstr ""
983
- "tilføj tilpasset felt to ét eksisterende med forskellige typer at vælge fra: "
984
- "overskrift, tekst, tekstboks, valgmulighed, checkbox, radio og/eller upload."
985
-
986
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
987
- msgid "add an avatar field."
988
- msgstr "tilføj et avatar felt."
989
-
990
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
991
- msgid "create custom redirects."
992
- msgstr "opret brugerdefineret viderestillinger"
993
-
994
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
995
- msgid "front-end userlisting using the"
996
- msgstr "front-end brugerliste bruger"
997
-
998
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
999
- msgid "shortcode."
1000
- msgstr "shortcode."
1001
-
1002
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
1003
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
1004
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:65
1005
- msgid "NOTE:"
1006
- msgstr "NOTE:"
1007
-
1008
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
1009
- msgid "this plugin only adds/removes fields in the front-end."
1010
- msgstr "dette plugin tilføjer/fjerner kun felter på frontend."
1011
-
1012
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
1013
- msgid ""
1014
- "The default information-fields will still be visible(and thus modifiable)"
1015
- msgstr ""
1016
- "Standard informationsfelter vil stadig være synlige (og dermed med mulighed "
1017
- "for at blive ændret)"
1018
-
1019
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
1020
- msgid ""
1021
- "from the back-end, while custom fields will only be visible in the front-end."
1022
- msgstr ""
1023
- "fra kontrolpanelet, mens tilpasset felter vil kun blive synlige i frontend."
1024
-
1025
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
1026
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
1027
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
1028
- msgid "Default Profile Fields"
1029
- msgstr "Standard profil felt"
1030
-
1031
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
1032
- msgid "Input Field Name"
1033
- msgstr "Input felt navn"
1034
-
1035
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
1036
- msgid "Required"
1037
- msgstr "Påkrævet"
1038
-
1039
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
1040
- msgid "Name:"
1041
- msgstr "Navn:"
1042
-
1043
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
1044
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
1045
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
1046
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
1047
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
1048
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
1049
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
1050
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
1051
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
1052
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
1053
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
1054
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
1055
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
1056
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
1057
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
1058
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
1059
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
1060
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
1061
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
1062
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
1063
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
1064
- msgid "Yes"
1065
- msgstr "Ja"
1066
-
1067
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
1068
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
1069
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
1070
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
1071
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
1072
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
1073
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
1074
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
1075
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
1076
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
1077
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
1078
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
1079
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
1080
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
1081
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
1082
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
1083
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
1084
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
1085
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
1086
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
1087
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
1088
- msgid "No"
1089
- msgstr "Nej"
1090
-
1091
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1092
- msgid "Display name publicly as..."
1093
- msgstr "Vis navn offentligt som..."
1094
-
1095
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1096
- msgid "Contact Info:"
1097
- msgstr "Kontaktoplysninger:"
1098
-
1099
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1100
- msgid "About Yourself:"
1101
- msgstr "Om dig:"
1102
-
1103
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
1104
- msgid "(New) Password"
1105
- msgstr "(Ny) Adgangskode"
1106
-
1107
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:60
1108
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:24
1109
- msgid "Do you want to"
1110
- msgstr "Vil du"
1111
-
1112
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:112
1113
- #, fuzzy
1114
- msgid "The selected user couldn't be deleted."
1115
- msgstr "Det indtastede serienummer kunne ikke blive valideret!"
1116
-
1117
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:129
1118
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:84
1119
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:132
1120
- msgid "You either don't have permission for that action or there was an error!"
1121
- msgstr ""
1122
-
1123
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:342
1124
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:14
1125
- #, php-format
1126
- msgid "[%1$s] Activate %2$s"
1127
- msgstr "[%1$s] Aktiver %2$s"
1128
-
1129
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:343
1130
- #, php-format
1131
- msgid ""
1132
- "To activate your user, please click the following link:\n"
1133
- "\n"
1134
- "%s%s%s\n"
1135
- "\n"
1136
- "After you activate, you will receive *another email* with your login.\n"
1137
- "\n"
1138
- msgstr ""
1139
- "For at aktivere din bruger, venligst klik på følgende link:\n"
1140
- "\n"
1141
- "%s%s%s\n"
1142
- "\n"
1143
- "Efter du har aktiveret, vil du modtaget *endnu en e-mail* med dit login.\n"
1144
- "\n"
1145
-
1146
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:443
1147
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:19
1148
- #, php-format
1149
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1150
- msgstr "Ny abonnement på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
1151
-
1152
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:445
1153
- msgid ""
1154
- "The \"Admin Approval\" feature was activated at the time of registration, so "
1155
- "please remember that you need to approve this user before he/she can log in!"
1156
- msgstr ""
1157
- "\"Admin Godkendelses\" funktionen var aktiveret ved registering, så husk "
1158
- "venligst at du skal godkende denne bruger før han/hun kan logge ind!"
1159
-
1160
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:448
1161
- msgid "A new subscriber has (been) registered!"
1162
- msgstr "En ny abonnement er (blevet) registeret!"
1163
-
1164
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:462
1165
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:8
1166
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:10
1167
- msgid "A new account has been created for you."
1168
- msgstr "En ny konto er blevet lavet for dig."
1169
-
1170
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:465
1171
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:9
1172
- #, php-format
1173
- msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
1174
- msgstr ""
1175
- "Velkommen til %1$s!<br/><br/> Dit brugernavn er:%2$s og adgangskode:%3$s"
1176
-
1177
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:467
1178
- msgid ""
1179
- "Before you can access your account, an administrator needs to approve it. "
1180
- "You will be notified via email."
1181
- msgstr ""
1182
- "Før du kan få adgang til din konto, skal en administrator godkende den. Du "
1183
- "vil få besked via e-mail."
1184
-
1185
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1186
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1187
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1188
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
1189
- msgid "General Settings"
1190
- msgstr "Generelle indstillinger"
1191
-
1192
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
1193
- msgid "Stylesheet Used on the Front-End:"
1194
- msgstr "Stylesheet brugt på front-end:"
1195
-
1196
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1197
- msgid "White"
1198
- msgstr "Hvid"
1199
-
1200
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
1201
- msgid "Black"
1202
- msgstr "Sort"
1203
-
1204
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
1205
- msgid "None"
1206
- msgstr "Ingen"
1207
-
1208
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
1209
- msgid "\"Email Confirmation\" Feature Activated:"
1210
- msgstr "\"Email bekræftigelse\" funktion aktiveret:"
1211
-
1212
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
1213
- msgid "\"Admin Approval\" Feature Activated:"
1214
- msgstr "\"Admin Godkendelse\" funktionalitet aktiveret:"
1215
-
1216
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
1217
- msgid ""
1218
- "The black stylesheet is intended for sites/blogs with a dark background."
1219
- msgstr ""
1220
- "Det sorte stylesheet er beregnet til hjemmesider/blogs med en mørk "
1221
- "baggrundsfarve."
1222
-
1223
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:51
1224
- msgid ""
1225
- "The white stylesheet is intended for a sites/blogs with a light background "
1226
- "color."
1227
- msgstr ""
1228
- "Det hvide stylesheet er beregnet til hjemmesider/blogs med en lys "
1229
- "baggrundsfarve."
1230
-
1231
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:52
1232
- msgid ""
1233
- "On single-site installations the \"Email Confirmation\" feature only works "
1234
- "in the front-end, so make sure you also use the \"Custom Redirects\" feature."
1235
- msgstr ""
1236
- "På enkelt-hjemmeside installationer virker \"Email bekræftigelses\" "
1237
- "funktionen kun frontend, sikre dig at du også benytter \"Tilpasset "
1238
- "viderestillings\" funktionen."
1239
-
1240
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:53
1241
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:67
1242
- msgid ""
1243
- "The \"Email Confirmation\" feature is active (by default) on WPMU "
1244
- "installations."
1245
- msgstr ""
1246
-
1247
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:55
1248
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:69
1249
- #, php-format
1250
- msgid "You can find a list of unconfirmed email addresses %1$shere%2$s."
1251
- msgstr ""
1252
-
1253
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:66
1254
- #, fuzzy
1255
- msgid ""
1256
- "On single-site installations the \"Email Confirmation\" feature only works "
1257
- "in the front-end."
1258
- msgstr ""
1259
- "På enkelt-hjemmeside installationer virker \"Email bekræftigelses\" "
1260
- "funktionen kun på frontend, så sikre dig at du også benytter \"Tilpasset "
1261
- "viderestillings\" funktionen."
1262
-
1263
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:77
1264
- msgid "Allow Users to Log in With:"
1265
- msgstr ""
1266
-
1267
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1268
- #, php-format
1269
- msgid ""
1270
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1271
- "Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
1272
- "access to automatic updates and support. Need a license key? %3$sPurchase "
1273
- "one now%4$s"
1274
- msgstr ""
1275
- "Dit <strong>Profile Builder</strong> serienummer er ikke gyldigt eller "
1276
- "manglende. Venligst %1$sregistre din kopi%2$s af <b>Profile Builder</b> for "
1277
- "at modtage adgang til automatiske opdateringer og teknisk hjælp. Behov for "
1278
- "en nøgle? %3$sKøb en nu%4$s"
1279
-
1280
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1281
- #, php-format
1282
- msgid ""
1283
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1284
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1285
- "priority support. %3$sPurchase one now%4$s"
1286
- msgstr ""
1287
- "Din <strong>Profile Builder</strong> 1 års licens er udløbet. Venligst "
1288
- "%1$sForny din licens%2$s for at modtage automatiske opdateringer og "
1289
- "prioriteret teknisk hjælp. %3$sKøb en nu%4$s"
1290
-
1291
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1292
- msgid "Basic Information"
1293
- msgstr "Grundlæggende informationer"
1294
-
1295
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1296
- msgid "Show/Hide the Admin Bar on Front-end"
1297
- msgstr "Vis/skjul admin baren på front-end"
1298
-
1299
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1300
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1301
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1302
- msgid "Extra Profile Fields"
1303
- msgstr "Ekstra profil felter"
1304
-
1305
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1306
- msgid "Addons"
1307
- msgstr "Udvidelser"
1308
-
1309
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1310
- msgid "Register Your Version"
1311
- msgstr "Register din version"
1312
-
1313
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1314
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
1315
- msgid "Activate/Deactivate Addons"
1316
- msgstr "Aktiver/Deaktiver udvidelser"
1317
-
1318
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
1319
- msgid "Name/Description"
1320
- msgstr "Navn/beskrivelse"
1321
-
1322
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
1323
- msgid "Status"
1324
- msgstr "Status"
1325
-
1326
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
1327
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
1328
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:32
1329
- msgid "User-Listing"
1330
- msgstr "Brugerliste"
1331
-
1332
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
1333
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1334
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1335
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:43
1336
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:50
1337
- msgid "Active"
1338
- msgstr "Aktiv"
1339
-
1340
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1341
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1342
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1343
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:44
1344
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:51
1345
- msgid "Inactive"
1346
- msgstr "Inaktiv"
1347
-
1348
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1349
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
1350
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
1351
- msgid "Custom Redirects"
1352
- msgstr "Brugerdefineret viderestilling"
1353
-
1354
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
1355
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
1356
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
1357
- msgid "reCAPTCHA"
1358
- msgstr "reCAPTCHA"
1359
-
1360
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:41
1361
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:42
1362
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:43
1363
- msgid "User Email Customizer"
1364
- msgstr ""
1365
-
1366
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:48
1367
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:424
1368
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:425
1369
- msgid "Admin Email Customizer"
1370
- msgstr ""
1371
-
1372
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
1373
- msgid "Redirects on custom page requests:"
1374
- msgstr "Viderestillinger på brugerdefineret sideforespørgsler:"
1375
-
1376
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
1377
- msgid "Action"
1378
- msgstr "Handling"
1379
-
1380
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
1381
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
1382
- msgid "Redirect"
1383
- msgstr "Viderestilling"
1384
-
1385
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
1386
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
1387
- msgid "URL"
1388
- msgstr "URL"
1389
-
1390
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
1391
- msgid "After Registration:"
1392
- msgstr "Efter registering:"
1393
-
1394
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
1395
- msgid "After Login:"
1396
- msgstr "Efter login:"
1397
-
1398
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
1399
- msgid "Recover Password (*)"
1400
- msgstr "Genskab adgangskode (*)"
1401
-
1402
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
1403
- msgid ""
1404
- "When activated this feature will redirect the user on both the default "
1405
- "Wordpress password recovery page and the \"Lost password?\" link used by "
1406
- "Profile Builder on the front-end login page."
1407
- msgstr ""
1408
- "Når du aktiverer denne funktion vil brugere blive viderestillet på både "
1409
- "WordPress' standard adgangskode nulstillings side og \"Mistet adgangskode?\" "
1410
- "linket brugt af Profile Builder på front-end login siden."
1411
-
1412
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
1413
- msgid "Redirects on default WordPress page requests:"
1414
- msgstr "Viderestillinger på standard WordPress sideforespørgsler:"
1415
-
1416
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
1417
- msgid "Requested WP Page"
1418
- msgstr "Forespurgt WP side"
1419
-
1420
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
1421
- msgid "Default WP Login Page (*)"
1422
- msgstr "Standard WP login side (*)"
1423
-
1424
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
1425
- msgid "Default WP Logout Page (**)"
1426
- msgstr "Standard WP log ud side (**)"
1427
-
1428
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
1429
- msgid "Default WP Register Page"
1430
- msgstr "Standard WP registeringsside"
1431
-
1432
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
1433
- msgid "Default WP Dashboard (***)"
1434
- msgstr "Standard WP administrationsside"
1435
-
1436
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
1437
- msgid "Before login. Works best if used in conjuction with \"After logout\"."
1438
- msgstr "Før login. Virker best hvis brugt sammen med \"Efter log ud\"."
1439
-
1440
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
1441
- msgid "After logout. Works best if used in conjuction with \"Before login\"."
1442
- msgstr "Efter log ud. Virker best hvis brugt sammen med \"Før login\"."
1443
-
1444
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
1445
- msgid ""
1446
- "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1447
- "manage options)."
1448
- msgstr ""
1449
- "Viderestil alle brugerroller UDENTAGEN dem med administratorrettigheder (kan "
1450
- "håndtere indstillinger)."
1451
-
1452
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:11
1453
- #, fuzzy, php-format
1454
- msgid ""
1455
- "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s<br/"
1456
- ">Before you can access your account, an administrator needs to approve it. "
1457
- "You will be notified via email."
1458
- msgstr ""
1459
- "Før du kan få adgang til din konto, skal en administrator godkende den. Du "
1460
- "vil få besked via e-mail."
1461
-
1462
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:12
1463
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:145
1464
- #, php-format
1465
- msgid "Your account on %1$s has been approved!"
1466
- msgstr "Din konto %1$s er blevet godkendt!"
1467
-
1468
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:13
1469
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:146
1470
- #, php-format
1471
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1472
- msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
1473
-
1474
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:15
1475
- #, fuzzy, php-format
1476
- msgid ""
1477
- "To activate your user, please click the following link:\n"
1478
- "\n"
1479
- "%s\n"
1480
- "\n"
1481
- "After you activate, you will receive *another email* with your login.\n"
1482
- "\n"
1483
- msgstr ""
1484
- "For at aktivere din bruger, venligst klik på følgende link:\n"
1485
- "\n"
1486
- "%s%s%s\n"
1487
- "\n"
1488
- "Efter du har aktiveret, vil du modtaget *endnu en e-mail* med dit login.\n"
1489
- "\n"
1490
-
1491
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:16
1492
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:152
1493
- #, php-format
1494
- msgid "Your account on %1$s has been unapproved!"
1495
- msgstr "Din konto på %1$s er blevet afvist!"
1496
-
1497
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:17
1498
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:153
1499
- #, php-format
1500
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1501
- msgstr "En administrator har netop afvis din konto %1$s (%2$s)."
1502
-
1503
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:18
1504
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:20
1505
- #, fuzzy, php-format
1506
- msgid "[%1$s] A new subscriber has (been) registered!"
1507
- msgstr "En ny abonnement er (blevet) registeret!"
1508
-
1509
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:21
1510
- #, fuzzy, php-format
1511
- msgid ""
1512
- "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/><br/>The "
1513
- "\"Admin Approval\" feature was activated at the time of registration, so "
1514
- "please remember that you need to approve this user before he/she can log in!"
1515
- msgstr ""
1516
- "\"Admin Godkendelses\" funktionen var aktiveret ved registering, så husk "
1517
- "venligst at du skal godkende denne bruger før han/hun kan logge ind!"
1518
-
1519
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:46
1520
- msgid "Here you can customize all the emails sent the users."
1521
- msgstr ""
1522
-
1523
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:49
1524
- msgid ""
1525
- "Common Settings: <span style=\"color:gray; font-size:11px;\">These settings "
1526
- "are also replicated in the \"Admin Email Customizer\" settings-page upon "
1527
- "save.</span>"
1528
- msgstr ""
1529
-
1530
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:52
1531
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:434
1532
- msgid "From (name): "
1533
- msgstr ""
1534
-
1535
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:60
1536
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:76
1537
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:119
1538
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:175
1539
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:231
1540
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:291
1541
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:336
1542
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:442
1543
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:458
1544
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:502
1545
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:555
1546
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:609
1547
- msgid "Available Merge Tags"
1548
- msgstr ""
1549
-
1550
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:68
1551
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:450
1552
- msgid "From (reply-to email): "
1553
- msgstr ""
1554
-
1555
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:92
1556
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:475
1557
- #, fuzzy
1558
- msgid "Default Registration"
1559
- msgstr "Efter registering:"
1560
-
1561
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:100
1562
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:156
1563
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:212
1564
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:272
1565
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:317
1566
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:483
1567
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:536
1568
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:590
1569
- msgid "Email Subject: "
1570
- msgstr ""
1571
-
1572
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:108
1573
- msgid ""
1574
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1575
- "<span style=\"color:red\">user</span> upon registration.</span>"
1576
- msgstr ""
1577
-
1578
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:147
1579
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:528
1580
- msgid "Registration with Email Confirmation"
1581
- msgstr ""
1582
-
1583
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:164
1584
- msgid ""
1585
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1586
- "<span style=\"color:red\">user</span> upon registration with email "
1587
- "confirmation.</span>"
1588
- msgstr ""
1589
-
1590
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:203
1591
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:582
1592
- msgid "Registration with Admin Approval"
1593
- msgstr ""
1594
-
1595
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:220
1596
- msgid ""
1597
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1598
- "<span style=\"color:red\">user</span> upon registration with admin approval."
1599
- "</span>"
1600
- msgstr ""
1601
-
1602
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:259
1603
- msgid "Admin Approval Notifications (on status change)"
1604
- msgstr ""
1605
-
1606
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:267
1607
- msgid "Message Sent to the User Upon Approval"
1608
- msgstr ""
1609
-
1610
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:280
1611
- msgid ""
1612
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1613
- "<span style=\"color:red\">user</span> upon approval.</span>"
1614
- msgstr ""
1615
-
1616
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:312
1617
- msgid "Message Sent to the User Upon Unapproval"
1618
- msgstr ""
1619
-
1620
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:325
1621
- msgid ""
1622
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1623
- "<span style=\"color:red\">user</span> upon unapproval.</span>"
1624
- msgstr ""
1625
-
1626
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:428
1627
- msgid "Here you can customize all the emails sent the administrator."
1628
- msgstr ""
1629
-
1630
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:431
1631
- msgid ""
1632
- "Common Settings: <span style=\"color:gray; font-size:11px;\">These settings "
1633
- "are also replicated in the \"User Email Customizer\" settings-page upon save."
1634
- "</span>"
1635
- msgstr ""
1636
-
1637
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:491
1638
- msgid ""
1639
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1640
- "<span style=\"color:red\">administrator</span> upon user registration.</span>"
1641
- msgstr ""
1642
-
1643
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:544
1644
- msgid ""
1645
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1646
- "<span style=\"color:red\">administrator</span> upon user registration with "
1647
- "email confirmation.</span>"
1648
- msgstr ""
1649
-
1650
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:598
1651
- msgid ""
1652
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1653
- "<span style=\"color:red\">administrator</span> upon user registration with "
1654
- "admin approval.</span>"
1655
- msgstr ""
1656
-
1657
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:752
1658
- #, fuzzy
1659
- msgid "approved"
1660
- msgstr "godkend"
1661
-
1662
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:761
1663
- #, fuzzy
1664
- msgid "unapproved"
1665
- msgstr "Afvis"
1666
-
1667
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
1668
- msgid "Could not open socket!"
1669
- msgstr "Kunne ikke åbner \"socket\"!"
1670
-
1671
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
1672
- msgid "To use reCAPTCHA you must get an API key from"
1673
- msgstr "For at kunne brug reCAPTCHA skal du bruge en API key fra"
1674
-
1675
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
1676
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1677
- msgstr ""
1678
- "Af sikkerhedsmæssige årsager er du nødt til at indtaste fjern IP adressen "
1679
- "til reCAPTCHA!"
1680
-
1681
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
1682
- msgid ""
1683
- "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1684
- msgstr ""
1685
- "For at bruge reCAPTCHA Mailhide, er det nødvendigt at du har mcrypt php "
1686
- "modulet installeret!"
1687
-
1688
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
1689
- msgid ""
1690
- "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
1691
- "you can do so at"
1692
- msgstr ""
1693
- "For at bruge reCAPTCHA Mailhide, er det nødvendigt tilmelde sig for at få en "
1694
- "offentlig og privat nøgle; du kan gøre dette på"
1695
-
1696
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
1697
- msgid ""
1698
- "Adds a reCAPTCHA form on the registration page created in the front-end "
1699
- "(only)."
1700
- msgstr ""
1701
- "Tilføjer en reCAPTCHA formular på tilmeldingssiden oprettet (kun) på "
1702
- "frontend."
1703
-
1704
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
1705
- msgid "For this you must get a public and private key from Google:"
1706
- msgstr "For dette har du behov for en offentlig og en privat nøgle fra Google:"
1707
-
1708
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
1709
- msgid "Key"
1710
- msgstr "Nøgle"
1711
-
1712
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
1713
- msgid "Code"
1714
- msgstr "Kode"
1715
-
1716
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
1717
- msgid "Public Key:"
1718
- msgstr "Offentlig nøgle:"
1719
-
1720
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
1721
- msgid "Private Key:"
1722
- msgstr "Privat nøgle:"
1723
-
1724
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
1725
- msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1726
- msgstr "reCAPTCHA var ikke indtastet korrekt. Gå tilbage og prøv igen!"
1727
-
1728
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
1729
- msgid ""
1730
- "To create a page containing the users registered to this current site/blog, "
1731
- "insert the following shortcode in a (blank) page: "
1732
- msgstr ""
1733
- "For at oprette en side indeholdende brugere tilmeldt denne hjemmeside/blog, "
1734
- "indsæt følgende shortcode på en tom side:"
1735
-
1736
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
1737
- msgid ""
1738
- "For instance, to create a userlisting shortcode listing only the editors and "
1739
- "authors, visible to only the users currently logged in, you would use:"
1740
- msgstr ""
1741
- "For eksempel, for at oprette en brugerliste over kun redaktører og "
1742
- "forfattere, synligt kun for brugere som er logget ind, skal du bruge:"
1743
-
1744
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
1745
- msgid ""
1746
- "You can also create a userlisting page that displays users having a certain "
1747
- "meta-value within a certain (extra) meta-field like so:"
1748
- msgstr ""
1749
- "Du kan således også oprette en brugerliste side der viser brugere som har en "
1750
- "bestemt meta-værdi med en bestemt (ekstra) meta-felt:"
1751
-
1752
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
1753
- msgid ""
1754
- "Remember though, that the field-value combination must exist in the database."
1755
- msgstr "Husk dog at felt-værdi kombinationen skal eksistere i databasen."
1756
-
1757
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:41
1758
- msgid "These settings are applied to the front-end userlisting."
1759
- msgstr "Disse indstillinger er tildelt til frontend brugerliste."
1760
-
1761
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:47
1762
- msgid "Number of Users/Page: "
1763
- msgstr "Antal brugere/sider:"
1764
-
1765
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:64
1766
- #, fuzzy
1767
- msgid "Default Sorting Criteria: "
1768
- msgstr "Standard sortings rækkefølge:"
1769
-
1770
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:93
1771
- msgid "Default Sorting Order: "
1772
- msgstr "Standard sortings rækkefølge:"
1773
-
1774
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:104
1775
- msgid "\"All-Userlisting\" Template"
1776
- msgstr "\"Alle-Brugerliste\" skabelon"
1777
-
1778
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:106
1779
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:250
1780
- msgid ""
1781
- "With the userlisting templates you can customize the look, feel and "
1782
- "information listed by the shortcode."
1783
- msgstr ""
1784
- "Med brugerliste skabeloner kan du tilpasse udseende og følelsen af "
1785
- "information listet af shortkoden. "
1786
-
1787
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:107
1788
- msgid ""
1789
- "The \"All Users Listing\" template is used to list all users. It's displayed "
1790
- "on each page access where the shortcode is present."
1791
- msgstr ""
1792
- "\"Alle brugerlisten\" skabelon er brugt til at liste alle brugere. Det vises "
1793
- "på hver side hvor shortkoden er tilstede."
1794
-
1795
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:111
1796
- msgid "Avatar size: "
1797
- msgstr "Avatar størrelse:"
1798
-
1799
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:127
1800
- msgid "Insert \"Sort By\" Field:"
1801
- msgstr "Indsæt \"Sortér efter\" felt:"
1802
-
1803
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:154
1804
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:256
1805
- msgid "Insert \"User-Meta\" Field:"
1806
- msgstr "Indsæt \"Bruger-Meta\" felt:"
1807
-
1808
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:188
1809
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:297
1810
- msgid "Insert Extra Functions:"
1811
- msgstr "Indsæt ekstra funktioner:"
1812
-
1813
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:203
1814
- msgid "Show/Hide Default \"All-Userlisting\" Code"
1815
- msgstr "Vis/Skjul standard \"Alle-brugerliste\" kode"
1816
-
1817
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:205
1818
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:311
1819
- msgid ""
1820
- "If you wish to use a default userlisting, just copy the following code and "
1821
- "paste it in the textarea below:"
1822
- msgstr ""
1823
- "Hvis du ønsker at bruge en standard brugerliste, kopier blot følgende kode "
1824
- "og indsæt den i tekstboksen herunder:"
1825
-
1826
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:248
1827
- msgid "\"Single-Userlisting\" Template"
1828
- msgstr "\"Enkel-Brugerliste\" skabelon"
1829
-
1830
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:251
1831
- msgid ""
1832
- "The \"Single User Listing\" template is used to list an individual user. "
1833
- "It's displayed when clickin on the \"more info\" link."
1834
- msgstr ""
1835
- "\"Enkelt brugerliste\" skabelonen er brugt til at liste en individuel "
1836
- "bruger. Den vises når man klikker på \"mere infonformations\" linket."
1837
-
1838
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:309
1839
- msgid "Show/Hide Default \"Single-Userlisting\" Code"
1840
- msgstr "Vis/Skjul standard \"Enkel-brugerliste\" kode"
1841
-
1842
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:415
1843
- msgid ""
1844
- "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1845
- msgstr ""
1846
- "Du er nødt til at aktivere brugerliste funktionen fra \"Udvidelser\" fanen"
1847
-
1848
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:415
1849
- msgid "You can find it in Profile Builder's menu."
1850
- msgstr "Du kan finde dét i Profile Builders menu."
1851
-
1852
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:445
1853
- msgid "You need to be logged in to view the userlisting!"
1854
- msgstr "Du skal være logget ind for at kunne se brugerliste!"
1855
-
1856
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:477
1857
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:492
1858
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1641
1859
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1730
1860
- msgid "Search Users by All Fields"
1861
- msgstr "Søg brugere efter Alle felter"
1862
-
1863
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:514
1864
- msgid "Leave Blank and Press Search to List All Users"
1865
- msgstr "Efterlad blank og tryk på Søg til liste med alle brugere"
1866
-
1867
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:518
1868
- msgid "Search"
1869
- msgstr "Søg"
1870
-
1871
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:531
1872
- msgid "First/Lastname"
1873
- msgstr "Fornavn/efternavn"
1874
-
1875
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:543
1876
- msgid "Sign-up Date"
1877
- msgstr "Registeringsdato"
1878
-
1879
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:549
1880
- msgid "Firstname"
1881
- msgstr "Fornavn"
1882
-
1883
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:555
1884
- msgid "Lastname"
1885
- msgstr "Efternavn"
1886
-
1887
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:561
1888
- msgid "Display Name"
1889
- msgstr "Visningsnavn"
1890
-
1891
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:579
1892
- msgid "Posts"
1893
- msgstr "Indlæg"
1894
-
1895
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:624
1896
- msgid "Click here to see more information about this user"
1897
- msgstr "Klik her for at se mere information om denne bruger"
1898
-
1899
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:624
1900
- msgid "More..."
1901
- msgstr "Mere..."
1902
-
1903
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:626
1904
- #, fuzzy
1905
- msgid "Click here to see more information about this user."
1906
- msgstr "Klik her for at se mere information om denne bruger"
1907
-
1908
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:829
1909
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:939
1910
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1251
1911
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1417
1912
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:600
1913
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:633
1914
- msgid "No uploaded attachment"
1915
- msgstr "Ingen uploadet vedhæftninger"
1916
-
1917
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:831
1918
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:941
1919
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1253
1920
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1309
1921
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1419
1922
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1475
1923
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
1924
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
1925
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
1926
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1927
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
1928
- msgid "Click to see the current attachment"
1929
- msgstr "Klik for at se den aktuelle vedhæftning"
1930
-
1931
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1070
1932
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1072
1933
- msgid "Click here to go back"
1934
- msgstr "Klik her for at gå tilbage"
1935
-
1936
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1070
1937
- msgid "Back"
1938
- msgstr "Tilbage"
1939
-
1940
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1251
1941
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1253
1942
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1417
1943
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1419
1944
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:600
1945
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
1946
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:633
1947
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
1948
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
1949
- msgid "Current file"
1950
- msgstr "Aktuelle fil"
1951
-
1952
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1307
1953
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1473
1954
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:712
1955
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:744
1956
- msgid "Avatar"
1957
- msgstr "Avatar"
1958
-
1959
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1532
1960
- msgid "No results found!"
1961
- msgstr "Ingen resultater fundet!"
1962
-
1963
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1628
1964
- msgid "&laquo;&laquo; First"
1965
- msgstr "&laquo;&laquo; Først"
1966
-
1967
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1629
1968
- msgid "&laquo; Prev"
1969
- msgstr "&laquo; Forrige"
1970
-
1971
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1630
1972
- msgid "Next &raquo; "
1973
- msgstr "Næste &raquo; "
1974
-
1975
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1631
1976
- msgid "Last &raquo;&raquo;"
1977
- msgstr "Sidst &raquo;&raquo;"
1978
-
1979
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:302
1980
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:455
1981
- msgid "You must give your option a title."
1982
- msgstr "Du skal give din valgmulighed en titel."
1983
-
1984
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:306
1985
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
1986
- msgid "You have entered an invalid meta-key format!"
1987
- msgstr "Du har indtastet et ugyldig meta-nøgle format!"
1988
-
1989
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
1990
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:463
1991
- msgid "You must enter a valid meta-key."
1992
- msgstr "Du skal indtaste en gyldig meta-nøgle."
1993
-
1994
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:316
1995
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1996
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:473
1997
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:485
1998
- msgid "That meta-key is already in use."
1999
- msgstr "Den meta-nøgle er allerede i brug."
2000
-
2001
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
2002
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
2003
- msgid ""
2004
- "There is already an avatar input-type. You can only have one avatar present."
2005
- msgstr ""
2006
- "Der er allerede en avatar inputtype. Du kan kun have én avatar tilstedet."
2007
-
2008
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
2009
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
2010
- msgid ""
2011
- "There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
2012
- "have one present."
2013
- msgstr ""
2014
- "Der er allerede én \"Enig i betingelserne\" checkbox. Du kan kun have én "
2015
- "tilstede."
2016
-
2017
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
2018
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:505
2019
- msgid "The textarea row value must be numeric."
2020
- msgstr "Textarea række værdien skal være nummerisk."
2021
-
2022
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
2023
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:509
2024
- msgid "The maxlength attribute must be numeric."
2025
- msgstr "Maxlength attributen skal være nummerisk."
2026
-
2027
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
2028
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:516
2029
- msgid "The value must be between 20 and 200!"
2030
- msgstr "Værdien skal være mellem 20 og 200!"
2031
-
2032
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:361
2033
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:521
2034
- msgid "The width component of the entered value must be numeric!"
2035
- msgstr "Bredden på den indtastede værdi skal være nummerisk!"
2036
-
2037
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:363
2038
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:523
2039
- msgid "The height component of the entered value must be numeric!"
2040
- msgstr "Højden på den værdi du indtastede skal være nummerisk!"
2041
-
2042
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:365
2043
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:525
2044
- msgid "The width component of the entered value must be between 20 and 200!"
2045
- msgstr "Bredden på den værdi du indtastede skal være mellem 20 og 200!"
2046
-
2047
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:367
2048
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:527
2049
- msgid "The height component of the entered value must be between 20 and 200!"
2050
- msgstr "Højden på den værdi du indtastede skal være mellem 20 og 200!"
2051
-
2052
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:369
2053
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:529
2054
- msgid "The pair of values entered didn't have the right format (width,height)!"
2055
- msgstr "De to indtastede værdier har ikke det rigtige format (bredde,højde)!"
2056
-
2057
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:372
2058
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:532
2059
- msgid "The entered avatar size must be numeric!"
2060
- msgstr "Den indtastede svatar størrelse skal være nummerisk!"
2061
-
2062
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:416
2063
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:602
2064
- msgid "There was an error, please try again."
2065
- msgstr "Der var en fejl, prøv venligst igen."
2066
-
2067
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:60
2068
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:96
2069
- msgid "Your session has expired! Please refresh the page and try again."
2070
- msgstr ""
2071
-
2072
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:71
2073
- #, fuzzy
2074
- msgid "User successfully approved!"
2075
- msgstr "Brugeren var succesfuldt aktiveret."
2076
-
2077
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:79
2078
- #, fuzzy
2079
- msgid "User successfully unapproved!"
2080
- msgstr "Brugeren var succesfuldt aktiveret."
2081
-
2082
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:114
2083
- #, fuzzy
2084
- msgid "Users successfully approved!"
2085
- msgstr "Brugeren var succesfuldt aktiveret."
2086
-
2087
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
2088
- #, fuzzy
2089
- msgid "Users successfully unapproved!"
2090
- msgstr "Brugeren var succesfuldt aktiveret."
2091
-
2092
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:174
2093
- msgid ""
2094
- "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2095
- "before you can log in."
2096
- msgstr ""
2097
- "<strong>FEJL</strong>: Din konto skal godkendes af en administrator før du "
2098
- "kan logge ind."
2099
-
2100
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:186
2101
- #, fuzzy
2102
- msgid ""
2103
- "Your account has to be confirmed by an administrator before you can use the "
2104
- "\"Password Recovery\" feature."
2105
- msgstr ""
2106
- "Din konto skal godkendes af en administrator før du kan bruge \"Nulstil "
2107
- "adgangskode\" funktionen."
2108
-
2109
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2110
- msgid ""
2111
- "You can create as many extra fields as your project requires. To break your "
2112
- "custom fields into sections (on the front-end), add a \""
2113
- msgstr ""
2114
- "Du kan oprette lige så mange ekstra felter som dit projekt påkræver. For at "
2115
- "opdele dine tilpasset felter i seksioner (på front-end), tilføj en \""
2116
-
2117
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2118
- msgid "heading"
2119
- msgstr "overskrift"
2120
-
2121
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2122
- msgid "\" custom field."
2123
- msgstr "\" brugerdefineret felt."
2124
-
2125
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2126
- msgid "All of the fields can be sorted and rearranged to your liking with"
2127
- msgstr "Alle felter kan blive sorteret og ombyttet til dit ønske med"
2128
-
2129
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2130
- msgid "Drag"
2131
- msgstr "Træk"
2132
-
2133
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2134
- msgid "Drop"
2135
- msgstr "Slip"
2136
-
2137
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2138
- msgid ""
2139
- "Don't worry about the order in which you create your custom fields, you can "
2140
- "always reorder them."
2141
- msgstr ""
2142
- "Du behøver ikke bekymre dig om rækkefølgen, som du opretter dine "
2143
- "brugerdefineret felter. Du kan altid ændre rækkefølgen."
2144
-
2145
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
2146
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
2147
- msgid "Title"
2148
- msgstr "Titel"
2149
-
2150
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
2151
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
2152
- msgid "Type"
2153
- msgstr "Type"
2154
-
2155
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
2156
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
2157
- msgid "Meta-Key"
2158
- msgstr "Meta-nøgle"
2159
-
2160
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
2161
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
2162
- msgid "ID"
2163
- msgstr "ID"
2164
-
2165
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
2166
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
2167
- msgid "Req'd"
2168
- msgstr "Req'd"
2169
-
2170
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
2171
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
2172
- msgid "Add Option"
2173
- msgstr "Tilføj valgmulighed"
2174
-
2175
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
2176
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
2177
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
2178
- msgid "Edit"
2179
- msgstr "Rediger"
2180
-
2181
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
2182
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:82
2183
- msgid "Title:"
2184
- msgstr "Titel:"
2185
-
2186
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
2187
- msgid "The title of the item."
2188
- msgstr "Titlen på genstanden."
2189
-
2190
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
2191
- msgid "Meta-Key:"
2192
- msgstr "Meta-nøgle:"
2193
-
2194
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
2195
- msgid ""
2196
- "Use this in conjuction with WordPress functions to display the value in the "
2197
- "page of your choosing. Auto-completed but editable - in this case it must be "
2198
- "uniqe.<br/>Changing this might take long in case of a very big user-count."
2199
- msgstr ""
2200
- "Brug dette sammen med WordPress funktioner til at vise værdien på din valgte "
2201
- "side. Auto-fuldført men kan ændres - i dette tilfælde skal det være unikt."
2202
- "<br/>Ved ændringer af dette kan det tage lang tid hvis der er et stort antal "
2203
- "brugere."
2204
-
2205
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
2206
- msgid "Option Type:"
2207
- msgstr "Valgmulighedstype:"
2208
-
2209
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
2210
- msgid "Choose one of the supported option types."
2211
- msgstr "Vælg en af de understøttede valgmulighedstyper."
2212
-
2213
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
2214
- msgid "Description:"
2215
- msgstr "Beskrivelse:"
2216
-
2217
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
2218
- msgid ""
2219
- "Enter a detailed description of the option for end users to read(optional)."
2220
- msgstr ""
2221
- "Indtast en detalieret beskrivelse af valgmuligheden som slutbrugere kan læse "
2222
- "(valgfrit)."
2223
-
2224
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2225
- msgid "You can only insert links using standard HTML syntax:"
2226
- msgstr "Du kan kun indsætte links ved at benytte standard HTML syntaks:"
2227
-
2228
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2229
- msgid "address"
2230
- msgstr "adresse"
2231
-
2232
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2233
- msgid "name"
2234
- msgstr "navn"
2235
-
2236
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
2237
- msgid "Options:"
2238
- msgstr "Valgmuligheder:"
2239
-
2240
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
2241
- msgid ""
2242
- "Enter a comma separated list of options. For example, you could have \"One,"
2243
- "Two,Three\" or just a single value like \"Yes\" for a checkbox."
2244
- msgstr ""
2245
- "Indtast en kommaseperaret liste med valgmuligheder. For eksempel kunne du "
2246
- "have \"En,To,Tre\" eller blot én enkelt værdi som \"Ja\" ved en checkbox."
2247
-
2248
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
2249
- msgid "ID:"
2250
- msgstr "ID:"
2251
-
2252
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
2253
- msgid ""
2254
- "This is the internal ID for this input. You can use this in conjuction with "
2255
- "filters to target this element if needed.<br/>Can't be edited."
2256
- msgstr ""
2257
- "Dette er det interne ID for dette input. Du kan bruge dette sammen med "
2258
- "filtre til at målrette dette element hvis det skulle være nødvendigt.<br/"
2259
- ">Kan ikke redigeres."
2260
-
2261
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
2262
- msgid "Required:"
2263
- msgstr "Påkrævet:"
2264
-
2265
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
2266
- msgid "Check this box to make this field required."
2267
- msgstr "Sæt flueben ved denne boks for at påkræve dette felt."
2268
-
2269
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
2270
- msgid "Cancel"
2271
- msgstr "Annuller"
2272
-
2273
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
2274
- msgid "Save"
2275
- msgstr "Gem"
2276
-
2277
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:71
2278
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:177
2279
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:246
2280
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:314
2281
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:381
2282
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:449
2283
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:504
2284
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:554
2285
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:619
2286
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:730
2287
- msgid ""
2288
- "This field wasn't updated because you entered and empty string (It was "
2289
- "marked as required by the administrator)"
2290
- msgstr ""
2291
- "Dette felt var ikke opdateret fordi du indtastede en tom streng (Det var "
2292
- "markeret som påkrævet af administratoren)"
2293
-
2294
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:597
2295
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:629
2296
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
2297
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:736
2298
- msgid "max upload size"
2299
- msgstr "max upload størrelse"
2300
-
2301
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:603
2302
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:639
2303
- msgid "Are you sure you want to delete this attachment?"
2304
- msgstr "Er du sikker på at du vil slette denne vedhæftning?"
2305
-
2306
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
2307
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
2308
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
2309
- msgid "Click to delete the current attachment"
2310
- msgstr "Klik for at slette den aktuelle vedhæftning"
2311
-
2312
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
2313
- msgid ""
2314
- "The attachment can't be deleted (It was marked as required by the "
2315
- "administrator)"
2316
- msgstr ""
2317
- "Vedhæftningen kan ikke slettes (Det var markeret som påkrævet af "
2318
- "administratoren)"
2319
-
2320
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:708
2321
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:740
2322
- msgid "Current avatar"
2323
- msgstr "Aktuelle avatar"
2324
-
2325
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:708
2326
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:740
2327
- msgid "No uploaded avatar"
2328
- msgstr "Ingen uploadet avatar"
2329
-
2330
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:714
2331
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:749
2332
- msgid "Are you sure you want to delete this avatar?"
2333
- msgstr "Er du sikker på at du vil slette denne avatar?"
2334
-
2335
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
2336
- msgid ""
2337
- "The avatar image can't be deleted (It was marked as required by the "
2338
- "administrator)."
2339
- msgstr ""
2340
- "Avartar billedet kan ikke slettes (Det var markeret som påkrævet af "
2341
- "administratoren)."
2342
-
2343
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:750
2344
- msgid "Click to see the current avatar"
2345
- msgstr "Klik for at se den aktuelle avatar"
2346
-
2347
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:750
2348
- msgid "Click to delete the avatar"
2349
- msgstr "Klik for at slette avatar"
2350
-
2351
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
2352
- msgid "This login widget lets you add a login form in the sidebar."
2353
- msgstr "Denne login widget lader sig tilføje en login formular i sidebaren."
2354
-
2355
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
2356
- msgid "Profile Builder Login Widget"
2357
- msgstr "Profile Builder Login Widget"
2358
-
2359
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:42
2360
- msgid "Don't have an account?"
2361
- msgstr "Har du ikke en konto?"
2362
-
2363
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2364
- msgid "Lost Password"
2365
- msgstr "Glemt adgangskode"
2366
-
2367
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2368
- msgid "Lost Your Password?"
2369
- msgstr "Glemt din adgangskode?"
2370
-
2371
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:78
2372
- msgid "Login"
2373
- msgstr "Login"
2374
-
2375
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:87
2376
- msgid "After login redirect URL (optional):"
2377
- msgstr "Viderestilling efter login URL (valgfri):"
2378
-
2379
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:92
2380
- msgid "Register page URL (optional):"
2381
- msgstr "Registrationsside URL (valgfri):"
2382
-
2383
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:97
2384
- msgid "Password Recovery page URL (optional):"
2385
- msgstr "Adgangskode gendannelsesside URL (valgfri):"
2386
-
2387
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
2388
- msgid "The user-validation has failed - the avatar was not deleted!"
2389
- msgstr "Brugervalidering har fejlet - avartaren var ikke slettet!"
2390
-
2391
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
2392
- msgid "The user-validation has failed - the attachment was not deleted!"
2393
- msgstr "Brugervalidering har fejlet - vedhæftningen var ikke slettet!"
2394
-
2395
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:354
2396
- #, php-format
2397
- msgid ""
2398
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
2399
- "Please %1$sregister your copy%2$s of Profile Builder to receive access to "
2400
- "automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
2401
- "%5$sDismiss%6$s"
2402
- msgstr ""
2403
- "Dit <strong>Profile Builder</strong> serienummer er ikke gyldigt eller "
2404
- "manglende. Venligst %1$sregistre din kopi%2$s af Profile Builder for at "
2405
- "modtaget automatiske opdateringer og teknisk hjælp. Brug for en nøgle? "
2406
- "%3$sKøb en nu%4$s %5$sAfvis%6$s"
2407
-
2408
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:358
2409
- #, php-format
2410
- msgid ""
2411
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
2412
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
2413
- "priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
2414
- msgstr ""
2415
- "Din <strong>Profile Builder</strong> 1 års licens er udløbet. Venligst "
2416
- "%1$sForny din licens%2$s for at adgang til automatiske opdateringer and "
2417
- "prioriteret teknisk hjælp. %3$sKøb en licens nu%4$s %5$sAfvis%6$s"
2418
-
2419
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
2420
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
2421
- msgid "Register your version of Profile Builder Pro"
2422
- msgstr "Register din version af Profile Builder Pro"
2423
-
2424
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
2425
- msgid ""
2426
- "Now that you acquired a copy of Profile Builder Pro, you should take the "
2427
- "time and register it with the serial number you received in the e-mail."
2428
- msgstr ""
2429
- "Nu hvor du har anskaffer dig en kopi af Profile Builder Pro, bør du "
2430
- "registere dén med serienummeret, som du har modtaget på e-mail."
2431
-
2432
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
2433
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
2434
- msgid ""
2435
- "If you register this version of Profile Builder, you'll receive information "
2436
- "regarding eventual upgrades, patches, and - if needed - technical support."
2437
- msgstr ""
2438
- "Hvis du registerer din version af Profile Buillder, vil du modtage "
2439
- "information om eventuelle opgraderinger, opdateringer og - hvis det bliver "
2440
- "nødvendigt - teknisk hjælp."
2441
-
2442
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
2443
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
2444
- msgid "Serial Number:"
2445
- msgstr "Serienummer:"
2446
-
2447
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
2448
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
2449
- msgid "The serial number was successfully validated!"
2450
- msgstr "Serienummeret var succesfuldt valideret!"
2451
-
2452
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
2453
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
2454
- msgid "The serial number entered couldn't be validated!"
2455
- msgstr "Det indtastede serienummer kunne ikke blive valideret!"
2456
-
2457
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
2458
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
2459
- msgid "The serial number couldn't be validated because it is no longer valid!"
2460
- msgstr ""
2461
- "Serienummeret kunne ikke blive valideret fordi det ikke længere er valid!"
2462
-
2463
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
2464
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
2465
- msgid ""
2466
- "The serial number couldn't be validated because process timed out. This is "
2467
- "possible due to the server being down. Please try again later!"
2468
- msgstr ""
2469
- "Serienummeret kunne ikke blive valideret fordi processen fik timeout. Dette "
2470
- "kan muligvis skyldes at serveren er nede. Prøv igen senere!"
2471
-
2472
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
2473
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2474
- msgstr "(f.eks. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2475
-
2476
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
2477
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
2478
- msgid "Register your version of Profile Builder Hobbyist"
2479
- msgstr "Register din version af Profile Builder Hobbyist"
2480
-
2481
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
2482
- msgid ""
2483
- "Now that you acquired a copy of Profile Builder Hobbyist, you should take "
2484
- "the time and register it with the serial number you received in the e-mail."
2485
- msgstr ""
2486
- "Nu hvor du har anskaffer dig en kopi af Profile Builder Hobbyist, bør du "
2487
- "registere dén med serienummeret, som du har modtaget på e-mail."
2488
-
2489
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
2490
- msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2491
- msgstr "(f.eks. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2492
-
2493
- #~ msgid ""
2494
- #~ "The email address you entered is already registered to a different user."
2495
- #~ msgstr ""
2496
- #~ "Den indtastede e-mail adresse er allerede registeret til en anden bruger."
2497
-
2498
- #~ msgid "The email address was"
2499
- #~ msgstr "E-mail adressen var"
2500
-
2501
- #~ msgid "The email address you entered is invalid."
2502
- #~ msgstr "Den indtastede e-mail adresse er ikke gyldig."
2503
-
2504
- #~ msgid "The passwords you entered do not match."
2505
- #~ msgstr "De indtastede adgangskoder er ikke ens."
2506
-
2507
- #~ msgid "The password was"
2508
- #~ msgstr "Adgangskoden var"
2509
-
2510
- #~ msgid "You didn't complete both password fields."
2511
- #~ msgstr "Du har ikke fuldent indtastet begge adgangskoder."
2512
-
2513
- #~ msgid "Your profile was NOT updated!"
2514
- #~ msgstr "Din profil blev IKKE opdateret!"
2515
-
2516
- #~ msgid "the current user?"
2517
- #~ msgstr "den aktuelle bruger?"
2518
-
2519
- #~ msgid "approve"
2520
- #~ msgstr "godkend"
2521
-
2522
- #~ msgid "Are you sure you want to %1$s this user?"
2523
- #~ msgstr "Er du sikker på at du vil %1$s denne bruger?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: ProfileBuilder\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-02 17:39+0200\n"
6
+ "PO-Revision-Date: 2013-12-02 17:39+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"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Generator: Poedit 1.5.5\n"
15
+ "X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
16
+ "pro\n"
17
+
18
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:119
19
+ msgid "View or Edit"
20
+ msgstr ""
21
+
22
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:124
23
+ #, fuzzy
24
+ msgid "delete this user?"
25
+ msgstr "Afvis"
26
+
27
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:124
28
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:235
29
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
30
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:202
31
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
32
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
33
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:218
34
+ msgid "Delete"
35
+ msgstr "Slet"
36
+
37
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:127
38
+ #, fuzzy
39
+ msgid "unapprove this user?"
40
+ msgstr "Afvis"
41
+
42
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:127
43
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:234
44
+ msgid "Unapprove"
45
+ msgstr "Afvis"
46
+
47
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:129
48
+ msgid "approve this user?"
49
+ msgstr ""
50
+
51
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:129
52
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:233
53
+ msgid "Approve"
54
+ msgstr "Godkend"
55
+
56
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:177
57
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:153
58
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
59
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
60
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1025
61
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
62
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:108
63
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:70
64
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:352
65
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:564
66
+ msgid "Username"
67
+ msgstr "Brugernavn"
68
+
69
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:178
70
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
71
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:588
72
+ msgid "Firstname"
73
+ msgstr "Fornavn"
74
+
75
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:179
76
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
77
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
78
+ msgid "Lastname"
79
+ msgstr "Efternavn"
80
+
81
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:180
82
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:154
83
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1016
84
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1013
85
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1127
86
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
87
+ msgid "E-mail"
88
+ msgstr "E-mail"
89
+
90
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:181
91
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
92
+ msgid "Role"
93
+ msgstr ""
94
+
95
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:182
96
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:155
97
+ #, fuzzy
98
+ msgid "Registered"
99
+ msgstr "Tilmeld"
100
+
101
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:183
102
+ #, fuzzy
103
+ msgid "User-status"
104
+ msgstr "Brugerliste"
105
+
106
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:263
107
+ msgid "Do you want to bulk approve the selected users?"
108
+ msgstr ""
109
+
110
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:271
111
+ msgid "Do you want to bulk unapprove the selected users?"
112
+ msgstr ""
113
+
114
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:277
115
+ #, fuzzy
116
+ msgid "Do you want to bulk delete the selected users?"
117
+ msgstr "Er du sikker på at du vil slette denne avatar?"
118
+
119
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:285
120
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:273
121
+ msgid "Sorry, but you don't have permission to do that!"
122
+ msgstr ""
123
+
124
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:318
125
+ msgid "Approved"
126
+ msgstr "Godkendt"
127
+
128
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:320
129
+ msgid "Unapproved"
130
+ msgstr "Afvist"
131
+
132
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:492
133
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:7
134
+ msgid "Admin Approval"
135
+ msgstr ""
136
+
137
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:495
138
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:458
139
+ #, fuzzy
140
+ msgid "All Users"
141
+ msgstr "Tilføj bruger"
142
+
143
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
144
+ msgid "delete this user from the _signups table?"
145
+ msgstr ""
146
+
147
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
148
+ msgid "confirm this email yourself?"
149
+ msgstr ""
150
+
151
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
152
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:203
153
+ msgid "Confirm Email"
154
+ msgstr ""
155
+
156
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:108
157
+ #, fuzzy
158
+ msgid "resend the activation link?"
159
+ msgstr "Ikke gyldig aktiveringsnøgle!"
160
+
161
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:108
162
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:204
163
+ msgid "Resend Activation Email"
164
+ msgstr ""
165
+
166
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:240
167
+ #, fuzzy, php-format
168
+ msgid "%s couldn't be deleted"
169
+ msgstr "Det indtastede serienummer kunne ikke blive valideret!"
170
+
171
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:245
172
+ #, fuzzy
173
+ msgid "All users have been successfully deleted"
174
+ msgstr "Ændringerne er gemt med succes."
175
+
176
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:255
177
+ #, fuzzy
178
+ msgid "The selected users have been activated"
179
+ msgstr "Det indtastede serienummer kunne ikke blive valideret!"
180
+
181
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:269
182
+ #, fuzzy
183
+ msgid "The selected users have had their activation emails resent"
184
+ msgstr "Det indtastede serienummer kunne ikke blive valideret!"
185
+
186
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:455
187
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:48
188
+ msgid "Users with Unconfirmed Email Address"
189
+ msgstr ""
190
+
191
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:78
192
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:277
193
+ #, php-format
194
+ msgid ""
195
+ "The information size you were trying to submit was larger than %1$sb!<br/"
196
+ ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
197
+ "it was also larger than %2$sb no additional information is available.<br/"
198
+ ">The user was NOT created!"
199
+ msgstr ""
200
+ "Størrelsen på den information som du forsøger at indsende er større end "
201
+ "%1$sb!<br/>Dette skyldes ofte at store fil(er) forsøges uploadet.<br/>Siden "
202
+ "at det også er større end %2$sb ingen yderligere information er tilgængelige."
203
+ "<br/>Brugeren var IKKE oprettet!"
204
+
205
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:307
206
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:564
207
+ msgid "The following image extensions are NOT supported: bmp"
208
+ msgstr ""
209
+
210
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:778
211
+ msgid "You must be logged in to edit your profile."
212
+ msgstr "Du skal være logget ind for at redigere din profil."
213
+
214
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:788
215
+ msgid "The changes have been successfully saved."
216
+ msgstr "Ændringerne er gemt med succes."
217
+
218
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:792
219
+ #, fuzzy, php-format
220
+ msgid ""
221
+ "The email address you entered is already registered to a different user."
222
+ "%1$sThe email address was %2$sNOT%3$s updated along with the rest of the "
223
+ "information."
224
+ msgstr ""
225
+ "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
226
+ "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
227
+
228
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:797
229
+ #, fuzzy, php-format
230
+ msgid ""
231
+ "The email address you entered is invalid.%1$sThe email address was %2$sNOT"
232
+ "%3$s updated along with the rest of the information."
233
+ msgstr ""
234
+ "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
235
+ "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
236
+
237
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:802
238
+ #, fuzzy, php-format
239
+ msgid ""
240
+ "The passwords you entered do not match.%1$sThe password was %2$sNOT%3$s "
241
+ "updated along with the rest of the information."
242
+ msgstr ""
243
+ "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
244
+ "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
245
+
246
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:807
247
+ #, fuzzy, php-format
248
+ msgid ""
249
+ "You didn't complete both password fields.%1$sThe password was %2$sNOT%3$s "
250
+ "updated along with the rest of the information."
251
+ msgstr ""
252
+ "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
253
+ "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
254
+
255
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:812
256
+ msgid ""
257
+ "Your profile was NOT updated, since not all required fields were completed!"
258
+ msgstr ""
259
+
260
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:822
261
+ msgid "There was an error while trying to upload the following attachments:"
262
+ msgstr "Der skete en fejl ved upload af følgende vedhæftninger:"
263
+
264
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
265
+ #, php-format
266
+ msgid ""
267
+ "Possible cause: the size was bigger than %1$sb. The listed attachements were "
268
+ "%2$sNOT%3$s updated along with the rest of the information."
269
+ msgstr ""
270
+ "Mulig årsag: størrelsen er større end %1$sb. De listede vedhæftninger var "
271
+ "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
272
+
273
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
274
+ msgid "There was an error while trying to upload your avatar picture."
275
+ msgstr "Der skete en fejl ved upload af dit avatar billede."
276
+
277
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
278
+ msgid "Possible cause: size/incorrect file-type."
279
+ msgstr "Mulig årsag: størrelse/ikke-korrekt filtype"
280
+
281
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
282
+ msgid "The avatar was"
283
+ msgstr "Dit profilbillede var"
284
+
285
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
286
+ msgid "NOT"
287
+ msgstr "IKKE"
288
+
289
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
290
+ msgid "updated along with the rest of the information."
291
+ msgstr "opdateret sammen med resten af informationerne."
292
+
293
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:845
294
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:606
295
+ msgid "There was an error while trying to upload the following attachment(s)"
296
+ msgstr "Der skete en fejl ved upload af dit de(n) følgende vedhæfning(er)"
297
+
298
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:852
299
+ #, php-format
300
+ msgid ""
301
+ "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
302
+ "file was %2$sNOT%3$s updated along with the rest of the information."
303
+ msgstr ""
304
+ "Kun filer med de(n) følgende endels(er) kan uploades: %1$s<br/>Denne fil var "
305
+ "%2$sIKKE%3$s opdateret sammen med de øvrige informationer."
306
+
307
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:867
308
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:978
309
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:347
310
+ msgid "Name"
311
+ msgstr "Navn"
312
+
313
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:874
314
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:156
315
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:109
316
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:71
317
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:576
318
+ msgid "Email"
319
+ msgstr "E-mail"
320
+
321
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
322
+ #, fuzzy
323
+ msgid "The email cannot be changed."
324
+ msgstr "Dit brugernavn kan ikke ændres"
325
+
326
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:884
327
+ #, fuzzy
328
+ msgid "The usernames cannot be changed."
329
+ msgstr "Dit brugernavn kan ikke ændres"
330
+
331
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
332
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
333
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:934
334
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:954
335
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1006
336
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1028
337
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1046
338
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1064
339
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1082
340
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1103
341
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:68
342
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:183
343
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:272
344
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:360
345
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:434
346
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:502
347
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:557
348
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:607
349
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:674
350
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:784
351
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:829
352
+ msgid "This field is marked as required by the administrator."
353
+ msgstr "Dette felt er markeret som påkrævet af administratoren."
354
+
355
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:897
356
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:917
357
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
358
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:957
359
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1009
360
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1030
361
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1048
362
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1066
363
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1084
364
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1105
365
+ msgid ""
366
+ "This field wasn't updated because you entered and empty string (It was "
367
+ "marked as required by the administrator."
368
+ msgstr ""
369
+ "Dette felt var ikke opdateret fordi du indtastede en tom streng (det var "
370
+ "market som påkrævet af administratoren."
371
+
372
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:904
373
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1050
374
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
375
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:360
376
+ msgid "First Name"
377
+ msgstr "Fornavn"
378
+
379
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:924
380
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1074
381
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
382
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:368
383
+ msgid "Last Name"
384
+ msgstr "Efternavn"
385
+
386
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:944
387
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1098
388
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
389
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:376
390
+ msgid "Nickname"
391
+ msgstr "Kaldenavn"
392
+
393
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:965
394
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:384
395
+ msgid "Display name publicly as"
396
+ msgstr "Vis navn offentligt som"
397
+
398
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:997
399
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1104
400
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:392
401
+ msgid "Contact Info"
402
+ msgstr "Kontakt information"
403
+
404
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1018
405
+ msgid "(required)"
406
+ msgstr "(påkrævet)"
407
+
408
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1036
409
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1152
410
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
411
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:72
412
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:397
413
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:606
414
+ msgid "Website"
415
+ msgstr "Hjemmeside"
416
+
417
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1054
418
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1176
419
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
420
+ msgid "AIM"
421
+ msgstr "AIM"
422
+
423
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1072
424
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
425
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
426
+ msgid "Yahoo IM"
427
+ msgstr "Yahoo IM"
428
+
429
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1090
430
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1224
431
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
432
+ msgid "Jabber / Google Talk"
433
+ msgstr "Jabber / Google Talk"
434
+
435
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1096
436
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
437
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
438
+ msgid "About Yourself"
439
+ msgstr "Om dig"
440
+
441
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1111
442
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
443
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
444
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
445
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:410
446
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:612
447
+ msgid "Biographical Info"
448
+ msgstr "Biografisk info"
449
+
450
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1121
451
+ msgid "New Password"
452
+ msgstr "Ny adgangskode"
453
+
454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1126
455
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
456
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:280
457
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
458
+ msgid "Repeat Password"
459
+ msgstr "Gentag adgangskode"
460
+
461
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1157
462
+ msgid "Update"
463
+ msgstr "Opdater"
464
+
465
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
466
+ #, php-format
467
+ msgid "You are currently logged in as %1$s. %2$s"
468
+ msgstr "Du er logget ind som %1$s. %2$s"
469
+
470
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
471
+ msgid "Log out of this account"
472
+ msgstr "Log ud af denne konto"
473
+
474
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
475
+ msgid "Log out"
476
+ msgstr "Log ud"
477
+
478
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:74
479
+ #, php-format
480
+ msgid "You have successfully logged in as %1$s"
481
+ msgstr "Du har med succes logget ind som %1$s"
482
+
483
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:93
484
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:102
485
+ #, php-format
486
+ msgid ""
487
+ "You will soon be redirected automatically. If you see this page for more "
488
+ "than 1 second, please click %1$s"
489
+ msgstr ""
490
+ "Du var snart blive viderestillet automatisk. Hvis du siger denne side i mere "
491
+ "end 1 sekund, klik venligst %1$s"
492
+
493
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:93
494
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:102
495
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
496
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:922
497
+ msgid "here"
498
+ msgstr "her"
499
+
500
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:118
501
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
502
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:129
503
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:305
504
+ msgid "ERROR:"
505
+ msgstr "FEJL:"
506
+
507
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:118
508
+ #, fuzzy
509
+ msgid "The email field is empty"
510
+ msgstr "Feltet for brugernavn er tomt"
511
+
512
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
513
+ msgid "The username field is empty"
514
+ msgstr "Feltet for brugernavn er tomt"
515
+
516
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:129
517
+ #, fuzzy
518
+ msgid "The password field is empty"
519
+ msgstr "Feltet for brugernavn er tomt"
520
+
521
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
522
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:244
523
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:275
524
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1285
525
+ msgid "Password"
526
+ msgstr "Adgangskode"
527
+
528
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:178
529
+ msgid "Log in"
530
+ msgstr "Log ind"
531
+
532
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:183
533
+ msgid "Remember me"
534
+ msgstr "Husk mig"
535
+
536
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:198
537
+ msgid "Lost password?"
538
+ msgstr "Glemt adgangskode?"
539
+
540
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:22
541
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:86
542
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:145
543
+ msgid "ERROR"
544
+ msgstr "FEJL"
545
+
546
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:22
547
+ msgid ""
548
+ "Your account has to be confirmed by an administrator before you can use the "
549
+ "\"Password Reset\" feature."
550
+ msgstr ""
551
+ "Din konto skal godkendes af en administrator før du kan bruge \"Nulstil "
552
+ "adgangskode\" funktionen."
553
+
554
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:62
555
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:109
556
+ #, php-format
557
+ msgid ""
558
+ "A password reset email has been sent to %1$s.<br/>Following the link sent in "
559
+ "the email address will reset the password."
560
+ msgstr ""
561
+ "En adgangskode nulstillings e-mail var sendt til %1$s.<br/>Følg linket sendt "
562
+ "i e-mailen, og det vil nulstillet adgangskoden."
563
+
564
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:74
565
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:133
566
+ #, php-format
567
+ msgid ""
568
+ "Someone requested that the password be reset for the following account: <b>"
569
+ "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
570
+ "happen.<br/>To reset your password, visit the following link:%2$s"
571
+ msgstr ""
572
+ "Nogen forespurgte at adgangskoden for den følgende konto skulle nulstilles: "
573
+ "<b>%1$s</b><br/>Hvis dette var en fejl ignore blot denne e-mail og intet vil "
574
+ "ske.<br/>For at nulstille din adgangskode, besøg følgende link:%2$s"
575
+
576
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:77
577
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:136
578
+ #, php-format
579
+ msgid "Password Reset Feature from \"%1$s\""
580
+ msgstr "Adgangskode nulstillings funktionalitet fra \"%1$s\""
581
+
582
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:86
583
+ #, php-format
584
+ msgid "There was an error while trying to send the activation link to %1$s!"
585
+ msgstr "Der skete en fejl ved afsendelse af aktiveringslink til %1$s!"
586
+
587
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:96
588
+ msgid "The email address entered wasn't found in the database!"
589
+ msgstr "Den indtastede e-mail adresse blev ikke fundet i databasen!"
590
+
591
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:96
592
+ msgid "Please check that you entered the correct email address."
593
+ msgstr "Tjek venligst at du har indtastet den korrekte e-mail adresse."
594
+
595
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:145
596
+ msgid "There was an error while trying to send the activation link to "
597
+ msgstr "Der skete en fejl i forsøget på at sende aktiveringslinket til"
598
+
599
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
600
+ msgid "The username entered wasn't found in the database!"
601
+ msgstr "Det indtastede brugernavn var ikke fundet i databasen!"
602
+
603
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
604
+ msgid "Please check that you entered the correct username."
605
+ msgstr "Venligst tjek at du har indtastet det korrekte brugernavn."
606
+
607
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:164
608
+ msgid "Your password has been successfully changed!"
609
+ msgstr "Din adgangskode var successfuldt ændret!"
610
+
611
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:178
612
+ #, php-format
613
+ msgid "You have successfully reset your password to: %1$s"
614
+ msgstr "Du har med succes nulstillet din adgangskode til: %1$s"
615
+
616
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:181
617
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:194
618
+ #, php-format
619
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
620
+ msgstr "Adgangskode succesfuldt nulstillet for %1$s på \"%2$s\""
621
+
622
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:191
623
+ #, php-format
624
+ msgid ""
625
+ "%1$s has requested a password change via the password reset feature.<br/>His/"
626
+ "her new password is:%2$s"
627
+ msgstr ""
628
+ "%1$s har forespurgt en adgangskode ændret via adgangskode nulstillings "
629
+ "funktionen.<br/>Hans/hendes nye adgangskode er :%2$s"
630
+
631
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:209
632
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:603
633
+ msgid "The entered passwords don't match!"
634
+ msgstr "De indtastede adgangskoder er ikke ens!"
635
+
636
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:256
637
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:287
638
+ msgid "Reset Password"
639
+ msgstr "Nulstil adgangskode"
640
+
641
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:305
642
+ msgid "Invalid key!"
643
+ msgstr "Ikke gyldig nøgle!"
644
+
645
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:320
646
+ msgid "Please enter your username or email address."
647
+ msgstr "Indtast venligst dit brugernavn eller e-mail adresse."
648
+
649
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:320
650
+ msgid "You will receive a link to create a new password via email."
651
+ msgstr "Du vil modtage et link via e-mail til oprettelse af ny adgangskode."
652
+
653
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
654
+ msgid "Username or E-mail"
655
+ msgstr "Brugernavn eller E-mail"
656
+
657
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:337
658
+ msgid "Get New Password"
659
+ msgstr " ny adgangskode"
660
+
661
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:177
662
+ msgid "Invalid activation key!"
663
+ msgstr "Ikke gyldig aktiveringsnøgle!"
664
+
665
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:181
666
+ msgid "The user is already active!"
667
+ msgstr "Brugeren er allerede aktiv!"
668
+
669
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:198
670
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:372
671
+ msgid "Could not create user!"
672
+ msgstr "Kunne ikke lave bruger!"
673
+
674
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:201
675
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:375
676
+ msgid "That username is already activated!"
677
+ msgstr "Brugernavnet er allerede aktiveret!"
678
+
679
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:225
680
+ msgid "The user was successfully activated."
681
+ msgstr "Brugeren var succesfuldt aktiveret."
682
+
683
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:227
684
+ msgid "There was an error while trying to activate the user."
685
+ msgstr "Der skete en fejl ved aktivering af brugeren."
686
+
687
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
688
+ msgid "A username is required for registration."
689
+ msgstr "Et brugernavn er påkrævet for at tilmelde sig."
690
+
691
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:594
692
+ msgid "Sorry, that username already exists!"
693
+ msgstr "Beklager, men det brugernavn eksisterer allerede!"
694
+
695
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:596
696
+ msgid "You must enter a valid email address."
697
+ msgstr "Du skal indtaste en gyldig e-mail adresse."
698
+
699
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:598
700
+ msgid "Sorry, that email address is already used!"
701
+ msgstr "Beklager, men e-mail adressen er allerede i brug!"
702
+
703
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:601
704
+ msgid "You didn't complete one of the password-fields!"
705
+ msgstr "Du har ikke fuldendt én af adgangskode felterne!"
706
+
707
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:613
708
+ msgid "Only files with the following extension(s) can be uploaded:"
709
+ msgstr "Kun filer med følgende endelse kan blive uploadet:"
710
+
711
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:613
712
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:619
713
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:621
714
+ msgid "The account was NOT created!"
715
+ msgstr "Kontoen var IKKE oprettet!"
716
+
717
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:617
718
+ msgid "You must agree to the terms and conditions before registering!"
719
+ msgstr "Du skal være enig i betingelserne før tilmelding!"
720
+
721
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:621
722
+ msgid "(Several required fields were left uncompleted)"
723
+ msgstr "(Flere påkrævet felter var efterladt ikke fuldendte)"
724
+
725
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:639
726
+ msgid "This username is already reserved to be used soon."
727
+ msgstr "Brugernavnet er allerede reserveret til senere brug."
728
+
729
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:639
730
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
731
+ msgid "Please try a different one!"
732
+ msgstr "Prøv venligst en anden!"
733
+
734
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
735
+ msgid "This email address is already reserved to be used soon."
736
+ msgstr "Denne e-mail adresse er allerede reserveret til senere brug."
737
+
738
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
739
+ msgid "You are logged in as"
740
+ msgstr "Du er logget ind som"
741
+
742
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
743
+ msgid "You don't need another account."
744
+ msgstr "Du har ikke behov for en anden konto."
745
+
746
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
747
+ msgid "Log out of this account."
748
+ msgstr "Log ud af denne konto."
749
+
750
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
751
+ msgid "Logout"
752
+ msgstr "Log ud"
753
+
754
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:868
755
+ #, php-format
756
+ msgid ""
757
+ "An email has been sent to %1$s with information on how to activate his/her "
758
+ "account."
759
+ msgstr ""
760
+ "En e-mail er blevet sendt til %1$s med informationer om hvordan han/hendes "
761
+ "konto aktiveres."
762
+
763
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:872
764
+ #, php-format
765
+ msgid "A user account has been created for %1$s."
766
+ msgstr "En brugerkonto er oprettet for %1$s."
767
+
768
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
769
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:922
770
+ #, php-format
771
+ msgid ""
772
+ "You will soon be redirected automatically. If you see this page for more "
773
+ "than 3 seconds, please click %1$s.%2$s"
774
+ msgstr ""
775
+ "Du vil snart blive viderestillet automatisk. Hvis du ser denne side i mere "
776
+ "end 3 sekunder, klik venligst %1$s.%2$s"
777
+
778
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
779
+ msgid ""
780
+ "An email has been sent to you with information on how to activate your "
781
+ "account."
782
+ msgstr ""
783
+ "En e-mail er blevet sendt til dig med informationer om hvordan du aktivere "
784
+ "din konto."
785
+
786
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:902
787
+ #, php-format
788
+ msgid "Thank you for registering %1$s."
789
+ msgstr "Tak for din registering %1$s."
790
+
791
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
792
+ msgid "An error occured while trying to send the notification email."
793
+ msgstr "En fejl skete ved afsendelse af notifikations e-mail"
794
+
795
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:934
796
+ msgid "An email containing activation instructions was successfully sent."
797
+ msgstr "En e-mail indeholdende aktiveringsinstruktioner var sendt med sucess."
798
+
799
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:939
800
+ msgid "An email containing the username and password was successfully sent."
801
+ msgstr ""
802
+ "En e-mail indeholdende brugernavnet og adgangskoden var sendt succesfuldt."
803
+
804
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:955
805
+ msgid "Users can register themselves or you can manually create users here."
806
+ msgstr "Brugere kan tilmelde sig selv eller du kan manuel tilføje brugere her."
807
+
808
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:960
809
+ msgid ""
810
+ "Users cannot currently register themselves, but you can manually create "
811
+ "users here."
812
+ msgstr ""
813
+ "Brugere kan ikke på nuværende tidspunkt registere sig, men du kan manuelt "
814
+ "oprette dem her."
815
+
816
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:965
817
+ msgid "Only an administrator can add new users."
818
+ msgstr "Kun en administrator kan tilføje nye brugere."
819
+
820
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:988
821
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1039
822
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1063
823
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1087
824
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1141
825
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1165
826
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1189
827
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1213
828
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1240
829
+ msgid ""
830
+ "This field must be filled out before registering (It was marked as required "
831
+ "by the administrator)"
832
+ msgstr ""
833
+ "Dette felt skal være udfyldt før tilmelding (Det var markeret som påkrævet "
834
+ "af adminitratoren)"
835
+
836
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:999
837
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1036
838
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1060
839
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1084
840
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1113
841
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1138
842
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1162
843
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1186
844
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1210
845
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
846
+ msgid "This field is marked as required by the administrator"
847
+ msgstr "Dette felt er markeret som påkrævet af administratoren"
848
+
849
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
850
+ msgid "Anti-Spam"
851
+ msgstr "Anti-Spam"
852
+
853
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1334
854
+ msgid "Send these credentials via email."
855
+ msgstr "Send disse oplysninger via e-mail."
856
+
857
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1350
858
+ msgid "Add User"
859
+ msgstr "Tilføj bruger"
860
+
861
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1352
862
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:41
863
+ msgid "Register"
864
+ msgstr "Tilmeld"
865
+
866
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
867
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
868
+ msgid "Show/Hide the Admin Bar on Front End"
869
+ msgstr "Vis/skjul admin baren på frontend"
870
+
871
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
872
+ msgid "User-group"
873
+ msgstr "Brugergruppe"
874
+
875
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
876
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
877
+ msgid "Visibility"
878
+ msgstr "Synlighed"
879
+
880
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
881
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:13
882
+ msgid "Default"
883
+ msgstr "Standard"
884
+
885
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
886
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
887
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
888
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
889
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
890
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
891
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
892
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
893
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
894
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
895
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
896
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
897
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
898
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:32
899
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:92
900
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:147
901
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:206
902
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:261
903
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:388
904
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:447
905
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:500
906
+ msgid "Show"
907
+ msgstr "Vis"
908
+
909
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
910
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
911
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
912
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
913
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
914
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
915
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
916
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
917
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
918
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
919
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
920
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
921
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
922
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:33
923
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:389
924
+ msgid "Hide"
925
+ msgstr "Skjul"
926
+
927
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
928
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
929
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:120
930
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:59
931
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
932
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:376
933
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:567
934
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
935
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:436
936
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
937
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
938
+ msgid "Save Changes"
939
+ msgstr "Gem ændringer"
940
+
941
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
942
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
943
+ msgid "Profile Builder"
944
+ msgstr "Profile Builder"
945
+
946
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
947
+ msgid "Welcome to Profile Builder!"
948
+ msgstr "Velkommen til Profile Builder!"
949
+
950
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
951
+ msgid ""
952
+ " lets you customize your website by adding a front-end menu for all your "
953
+ "users, giving them a more flexible way to modify their user-information or "
954
+ "to register new users."
955
+ msgstr ""
956
+ " lader dig tilpasse din hjemmeside ved at tilføje en frontend menu for alle "
957
+ "dine brugere, hvilket giver dem en mere fleksibel måde at ændre deres "
958
+ "brugerinformation eller tilmelde sig som ny bruger."
959
+
960
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
961
+ msgid ""
962
+ "Also, grants users with administrator rights to customize basic fields or to "
963
+ "add new ones."
964
+ msgstr ""
965
+ "Også give brugere med administrationsrettigheder ret til at tilpasse "
966
+ "basisfelter eller tilføje nye."
967
+
968
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
969
+ msgid ""
970
+ "To achieve this, just create a new page, and give it an intuitive name(e.g. "
971
+ "Edit Profile)."
972
+ msgstr ""
973
+ "For at opnå dette, opret blot en ny side og giv den et intuitivt navn (f."
974
+ "eks. Rediger profil)."
975
+
976
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
977
+ msgid ""
978
+ "Now all you need to do is add the following shortcode(for the previous "
979
+ "example): "
980
+ msgstr ""
981
+ "Det eneste du nu skal gøre er at tilføje følgende shortcode (fra det "
982
+ "tidligere eksempel):"
983
+
984
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
985
+ msgid "Publish your page and you are ready to go!"
986
+ msgstr "Udgiv din side og du er klar!"
987
+
988
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
989
+ msgid "You can use the following shortcodes:"
990
+ msgstr "Du kan benytte følgende shortcodes:"
991
+
992
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
993
+ msgid "for a log-in form."
994
+ msgstr "for login form."
995
+
996
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
997
+ msgid "to add a registration form."
998
+ msgstr "til at oprette en registeringsformular."
999
+
1000
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
1001
+ msgid ""
1002
+ "to grant users a front-end acces to their personal information(requires user "
1003
+ "to be logged in)."
1004
+ msgstr ""
1005
+ "til at give brugerne en front-end adgang til deres personlige informationer "
1006
+ "(kræver at brugeren er logget ind)."
1007
+
1008
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
1009
+ msgid "to add a password recovery form."
1010
+ msgstr "til at tilføje en mistet-adgangskode formular."
1011
+
1012
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
1013
+ msgid ""
1014
+ "With the <strong>Pro</strong> version, users with administrator rights have "
1015
+ "access to the following features:"
1016
+ msgstr ""
1017
+ "Med <strong>Pro</strong> versionen, brugere med administrationsrettigheder "
1018
+ "kan få adgang til følgende funktioner:"
1019
+
1020
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
1021
+ msgid ""
1022
+ "add a custom stylesheet/inherit values from the current theme or use one of "
1023
+ "the following built into this plugin: default, white or black."
1024
+ msgstr ""
1025
+ "tilføj en tilpasset stylesheet/arvet værdi fra det nuværende tema eller brug "
1026
+ "et af de følgende indbygget: standard, hvid eller sort."
1027
+
1028
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
1029
+ msgid ""
1030
+ "select whether to display or not the admin bar in the front end for a "
1031
+ "specific user-group registered to the site."
1032
+ msgstr ""
1033
+ "vælg hvorvidt admin baren skal vises eller ej på frontend for en specifik "
1034
+ "brugergruppe registeret på hjemmesiden."
1035
+
1036
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
1037
+ msgid ""
1038
+ "select which information-field can users see/modify. The hidden fields' "
1039
+ "values remain unmodified."
1040
+ msgstr ""
1041
+ "vælg hvilket informationsfelt brugere kan se/ændre. Skjulte felters værdier "
1042
+ "forbliver uændret."
1043
+
1044
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
1045
+ msgid ""
1046
+ "add custom fields to the existing ones, with several types to choose from: "
1047
+ "heading, text, textarea, select, checkbox, radio, and/or upload."
1048
+ msgstr ""
1049
+ "tilføj tilpasset felt to ét eksisterende med forskellige typer at vælge fra: "
1050
+ "overskrift, tekst, tekstboks, valgmulighed, checkbox, radio og/eller upload."
1051
+
1052
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
1053
+ msgid "add an avatar field."
1054
+ msgstr "tilføj et avatar felt."
1055
+
1056
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
1057
+ msgid "create custom redirects."
1058
+ msgstr "opret brugerdefineret viderestillinger"
1059
+
1060
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1061
+ msgid "front-end userlisting using the"
1062
+ msgstr "front-end brugerliste bruger"
1063
+
1064
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1065
+ msgid "shortcode."
1066
+ msgstr "shortcode."
1067
+
1068
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
1069
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:75
1070
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:92
1071
+ msgid "NOTE:"
1072
+ msgstr "NOTE:"
1073
+
1074
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
1075
+ msgid "this plugin only adds/removes fields in the front-end."
1076
+ msgstr "dette plugin tilføjer/fjerner kun felter på frontend."
1077
+
1078
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
1079
+ msgid ""
1080
+ "The default information-fields will still be visible(and thus modifiable)"
1081
+ msgstr ""
1082
+ "Standard informationsfelter vil stadig være synlige (og dermed med mulighed "
1083
+ "for at blive ændret)"
1084
+
1085
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
1086
+ msgid ""
1087
+ "from the back-end, while custom fields will only be visible in the front-end."
1088
+ msgstr ""
1089
+ "fra kontrolpanelet, mens tilpasset felter vil kun blive synlige i frontend."
1090
+
1091
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
1092
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
1093
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
1094
+ msgid "Default Profile Fields"
1095
+ msgstr "Standard profil felt"
1096
+
1097
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
1098
+ msgid "Input Field Name"
1099
+ msgstr "Input felt navn"
1100
+
1101
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
1102
+ msgid "Required"
1103
+ msgstr "Påkrævet"
1104
+
1105
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
1106
+ msgid "Name:"
1107
+ msgstr "Navn:"
1108
+
1109
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
1110
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
1111
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
1112
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
1113
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
1114
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
1115
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
1116
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
1117
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
1118
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
1119
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
1120
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
1121
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:30
1122
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:67
1123
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
1124
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
1125
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
1126
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
1127
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
1128
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
1129
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
1130
+ msgid "Yes"
1131
+ msgstr "Ja"
1132
+
1133
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
1134
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
1135
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
1136
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
1137
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
1138
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
1139
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
1140
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
1141
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
1142
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
1143
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
1144
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
1145
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
1146
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:68
1147
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
1148
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
1149
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
1150
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
1151
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
1152
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
1153
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
1154
+ msgid "No"
1155
+ msgstr "Nej"
1156
+
1157
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1158
+ msgid "Display name publicly as..."
1159
+ msgstr "Vis navn offentligt som..."
1160
+
1161
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1162
+ msgid "Contact Info:"
1163
+ msgstr "Kontaktoplysninger:"
1164
+
1165
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1166
+ msgid "About Yourself:"
1167
+ msgstr "Om dig:"
1168
+
1169
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
1170
+ msgid "(New) Password"
1171
+ msgstr "(Ny) Adgangskode"
1172
+
1173
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:59
1174
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:22
1175
+ msgid "Do you want to"
1176
+ msgstr "Vil du"
1177
+
1178
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:108
1179
+ #, fuzzy
1180
+ msgid "The selected user couldn't be deleted"
1181
+ msgstr "Det indtastede serienummer kunne ikke blive valideret!"
1182
+
1183
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:128
1184
+ msgid "Email notification resent to user"
1185
+ msgstr ""
1186
+
1187
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:136
1188
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:75
1189
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:140
1190
+ msgid "You either don't have permission for that action or there was an error!"
1191
+ msgstr ""
1192
+
1193
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:333
1194
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:14
1195
+ #, php-format
1196
+ msgid "[%1$s] Activate %2$s"
1197
+ msgstr "[%1$s] Aktiver %2$s"
1198
+
1199
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:334
1200
+ #, php-format
1201
+ msgid ""
1202
+ "To activate your user, please click the following link:\n"
1203
+ "\n"
1204
+ "%s%s%s\n"
1205
+ "\n"
1206
+ "After you activate, you will receive *another email* with your login.\n"
1207
+ "\n"
1208
+ msgstr ""
1209
+ "For at aktivere din bruger, venligst klik på følgende link:\n"
1210
+ "\n"
1211
+ "%s%s%s\n"
1212
+ "\n"
1213
+ "Efter du har aktiveret, vil du modtaget *endnu en e-mail* med dit login.\n"
1214
+ "\n"
1215
+
1216
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:395
1217
+ #, fuzzy
1218
+ msgid "There was an error while trying to activate the user"
1219
+ msgstr "Der skete en fejl ved aktivering af brugeren."
1220
+
1221
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:429
1222
+ msgid "A new subscriber has (been) registered!"
1223
+ msgstr "En ny abonnement er (blevet) registeret!"
1224
+
1225
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:432
1226
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:19
1227
+ #, php-format
1228
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1229
+ msgstr "Ny abonnement på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
1230
+
1231
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:437
1232
+ msgid ""
1233
+ "The \"Admin Approval\" feature was activated at the time of registration, so "
1234
+ "please remember that you need to approve this user before he/she can log in!"
1235
+ msgstr ""
1236
+ "\"Admin Godkendelses\" funktionen var aktiveret ved registering, så husk "
1237
+ "venligst at du skal godkende denne bruger før han/hun kan logge ind!"
1238
+
1239
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:453
1240
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:8
1241
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:10
1242
+ msgid "A new account has been created for you."
1243
+ msgstr "En ny konto er blevet lavet for dig."
1244
+
1245
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:456
1246
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:9
1247
+ #, php-format
1248
+ msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
1249
+ msgstr ""
1250
+ "Velkommen til %1$s!<br/><br/> Dit brugernavn er:%2$s og adgangskode:%3$s"
1251
+
1252
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:461
1253
+ msgid ""
1254
+ "Before you can access your account, an administrator needs to approve it. "
1255
+ "You will be notified via email."
1256
+ msgstr ""
1257
+ "Før du kan få adgang til din konto, skal en administrator godkende den. Du "
1258
+ "vil få besked via e-mail."
1259
+
1260
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:9
1261
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1262
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1263
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
1264
+ msgid "General Settings"
1265
+ msgstr "Generelle indstillinger"
1266
+
1267
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1268
+ msgid "Stylesheet Used on the Front-End:"
1269
+ msgstr "Stylesheet brugt på front-end:"
1270
+
1271
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:17
1272
+ msgid "White"
1273
+ msgstr "Hvid"
1274
+
1275
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1276
+ msgid "Black"
1277
+ msgstr "Sort"
1278
+
1279
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:22
1280
+ msgid "None"
1281
+ msgstr "Ingen"
1282
+
1283
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:28
1284
+ msgid "\"Email Confirmation\" Feature Activated:"
1285
+ msgstr "\"Email bekræftigelse\" funktion aktiveret:"
1286
+
1287
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:40
1288
+ msgid "Account Activation Landing Page:"
1289
+ msgstr ""
1290
+
1291
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:43
1292
+ #, fuzzy
1293
+ msgid "Existing Pages"
1294
+ msgstr "Efter registering:"
1295
+
1296
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
1297
+ msgid ""
1298
+ "You need to (create) and specify the page where the users will see when "
1299
+ "trying to activate their account. This page can differ from the register page"
1300
+ "(s), and can be changed at any time, but if none selected, a simple, blank "
1301
+ "page will be displayed for the user."
1302
+ msgstr ""
1303
+
1304
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:65
1305
+ msgid "\"Admin Approval\" Feature Activated:"
1306
+ msgstr "\"Admin Godkendelse\" funktionalitet aktiveret:"
1307
+
1308
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:76
1309
+ msgid ""
1310
+ "The black stylesheet is intended for sites/blogs with a dark background."
1311
+ msgstr ""
1312
+ "Det sorte stylesheet er beregnet til hjemmesider/blogs med en mørk "
1313
+ "baggrundsfarve."
1314
+
1315
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:77
1316
+ msgid ""
1317
+ "The white stylesheet is intended for a sites/blogs with a light background "
1318
+ "color."
1319
+ msgstr ""
1320
+ "Det hvide stylesheet er beregnet til hjemmesider/blogs med en lys "
1321
+ "baggrundsfarve."
1322
+
1323
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:78
1324
+ msgid ""
1325
+ "On single-site installations the \"Email Confirmation\" feature only works "
1326
+ "in the front-end, so make sure you also use the \"Custom Redirects\" feature."
1327
+ msgstr ""
1328
+ "På enkelt-hjemmeside installationer virker \"Email bekræftigelses\" "
1329
+ "funktionen kun på frontend, så sikre dig at du også benytter \"Tilpasset "
1330
+ "viderestillings\" funktionen."
1331
+
1332
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:79
1333
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:94
1334
+ msgid ""
1335
+ "The \"Email Confirmation\" feature is active (by default) on WPMU "
1336
+ "installations."
1337
+ msgstr ""
1338
+
1339
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:81
1340
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:96
1341
+ #, php-format
1342
+ msgid "You can find a list of unconfirmed email addresses %1$shere%2$s."
1343
+ msgstr ""
1344
+
1345
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:93
1346
+ #, fuzzy
1347
+ msgid ""
1348
+ "On single-site installations the \"Email Confirmation\" feature only works "
1349
+ "in the front-end."
1350
+ msgstr ""
1351
+ "På enkelt-hjemmeside installationer virker \"Email bekræftigelses\" "
1352
+ "funktionen kun på frontend, så sikre dig at du også benytter \"Tilpasset "
1353
+ "viderestillings\" funktionen."
1354
+
1355
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:106
1356
+ msgid "Allow Users to Log in With:"
1357
+ msgstr ""
1358
+
1359
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1360
+ #, php-format
1361
+ msgid ""
1362
+ "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1363
+ "Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
1364
+ "access to automatic updates and support. Need a license key? %3$sPurchase "
1365
+ "one now%4$s"
1366
+ msgstr ""
1367
+ "Dit <strong>Profile Builder</strong> serienummer er ikke gyldigt eller "
1368
+ "manglende. Venligst %1$sregistre din kopi%2$s af <b>Profile Builder</b> for "
1369
+ "at modtage adgang til automatiske opdateringer og teknisk hjælp. Behov for "
1370
+ "en nøgle? %3$sKøb en nu%4$s"
1371
+
1372
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1373
+ #, php-format
1374
+ msgid ""
1375
+ "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1376
+ "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1377
+ "priority support. %3$sPurchase one now%4$s"
1378
+ msgstr ""
1379
+ "Din <strong>Profile Builder</strong> 1 års licens er udløbet. Venligst "
1380
+ "%1$sForny din licens%2$s for at modtage automatiske opdateringer og "
1381
+ "prioriteret teknisk hjælp. %3$sKøb en nu%4$s"
1382
+
1383
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1384
+ msgid "Basic Information"
1385
+ msgstr "Grundlæggende informationer"
1386
+
1387
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1388
+ msgid "Show/Hide the Admin Bar on Front-end"
1389
+ msgstr "Vis/skjul admin baren på front-end"
1390
+
1391
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1392
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1393
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1394
+ msgid "Extra Profile Fields"
1395
+ msgstr "Ekstra profil felter"
1396
+
1397
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1398
+ msgid "Addons"
1399
+ msgstr "Udvidelser"
1400
+
1401
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1402
+ msgid "Register Your Version"
1403
+ msgstr "Register din version"
1404
+
1405
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1406
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
1407
+ msgid "Activate/Deactivate Addons"
1408
+ msgstr "Aktiver/Deaktiver udvidelser"
1409
+
1410
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
1411
+ msgid "Name/Description"
1412
+ msgstr "Navn/beskrivelse"
1413
+
1414
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
1415
+ msgid "Status"
1416
+ msgstr "Status"
1417
+
1418
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
1419
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:32
1420
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
1421
+ msgid "User-Listing"
1422
+ msgstr "Brugerliste"
1423
+
1424
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
1425
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1426
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1427
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:43
1428
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:50
1429
+ msgid "Active"
1430
+ msgstr "Aktiv"
1431
+
1432
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1433
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1434
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1435
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:44
1436
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:51
1437
+ msgid "Inactive"
1438
+ msgstr "Inaktiv"
1439
+
1440
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1441
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
1442
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
1443
+ msgid "Custom Redirects"
1444
+ msgstr "Brugerdefineret viderestilling"
1445
+
1446
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
1447
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
1448
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
1449
+ msgid "reCAPTCHA"
1450
+ msgstr "reCAPTCHA"
1451
+
1452
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:41
1453
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:41
1454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:42
1455
+ msgid "User Email Customizer"
1456
+ msgstr ""
1457
+
1458
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:48
1459
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:397
1460
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:398
1461
+ msgid "Admin Email Customizer"
1462
+ msgstr ""
1463
+
1464
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
1465
+ msgid "Redirects on custom page requests:"
1466
+ msgstr "Viderestillingerbrugerdefineret sideforespørgsler:"
1467
+
1468
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
1469
+ msgid "Action"
1470
+ msgstr "Handling"
1471
+
1472
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
1473
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
1474
+ msgid "Redirect"
1475
+ msgstr "Viderestilling"
1476
+
1477
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
1478
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
1479
+ msgid "URL"
1480
+ msgstr "URL"
1481
+
1482
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
1483
+ msgid "After Registration:"
1484
+ msgstr "Efter registering:"
1485
+
1486
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
1487
+ msgid "After Login:"
1488
+ msgstr "Efter login:"
1489
+
1490
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
1491
+ msgid "Recover Password (*)"
1492
+ msgstr "Genskab adgangskode (*)"
1493
+
1494
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
1495
+ msgid ""
1496
+ "When activated this feature will redirect the user on both the default "
1497
+ "Wordpress password recovery page and the \"Lost password?\" link used by "
1498
+ "Profile Builder on the front-end login page."
1499
+ msgstr ""
1500
+ "Når du aktiverer denne funktion vil brugere blive viderestillet på både "
1501
+ "WordPress' standard adgangskode nulstillings side og \"Mistet adgangskode?\" "
1502
+ "linket brugt af Profile Builder på front-end login siden."
1503
+
1504
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
1505
+ msgid "Redirects on default WordPress page requests:"
1506
+ msgstr "Viderestillinger standard WordPress sideforespørgsler:"
1507
+
1508
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
1509
+ msgid "Requested WP Page"
1510
+ msgstr "Forespurgt WP side"
1511
+
1512
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
1513
+ msgid "Default WP Login Page (*)"
1514
+ msgstr "Standard WP login side (*)"
1515
+
1516
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
1517
+ msgid "Default WP Logout Page (**)"
1518
+ msgstr "Standard WP log ud side (**)"
1519
+
1520
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
1521
+ msgid "Default WP Register Page"
1522
+ msgstr "Standard WP registeringsside"
1523
+
1524
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
1525
+ msgid "Default WP Dashboard (***)"
1526
+ msgstr "Standard WP administrationsside"
1527
+
1528
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
1529
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1530
+ msgstr "Før login. Virker best hvis brugt sammen med \"Efter log ud\"."
1531
+
1532
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
1533
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1534
+ msgstr "Efter log ud. Virker best hvis brugt sammen med \"Før login\"."
1535
+
1536
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
1537
+ msgid ""
1538
+ "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1539
+ "manage options)."
1540
+ msgstr ""
1541
+ "Viderestil alle brugerroller UDENTAGEN dem med administratorrettigheder (kan "
1542
+ "håndtere indstillinger)."
1543
+
1544
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:11
1545
+ #, fuzzy, php-format
1546
+ msgid ""
1547
+ "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s<br/"
1548
+ ">Before you can access your account, an administrator needs to approve it. "
1549
+ "You will be notified via email."
1550
+ msgstr ""
1551
+ "Før du kan få adgang til din konto, skal en administrator godkende den. Du "
1552
+ "vil besked via e-mail."
1553
+
1554
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:12
1555
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:150
1556
+ #, php-format
1557
+ msgid "Your account on %1$s has been approved!"
1558
+ msgstr "Din konto på %1$s er blevet godkendt!"
1559
+
1560
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:13
1561
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:153
1562
+ #, php-format
1563
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1564
+ msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
1565
+
1566
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:15
1567
+ #, fuzzy, php-format
1568
+ msgid ""
1569
+ "To activate your user, please click the following link:\n"
1570
+ "\n"
1571
+ "%s\n"
1572
+ "\n"
1573
+ "After you activate, you will receive *another email* with your login.\n"
1574
+ "\n"
1575
+ msgstr ""
1576
+ "For at aktivere din bruger, venligst klik på følgende link:\n"
1577
+ "\n"
1578
+ "%s%s%s\n"
1579
+ "\n"
1580
+ "Efter du har aktiveret, vil du modtaget *endnu en e-mail* med dit login.\n"
1581
+ "\n"
1582
+
1583
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:16
1584
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:157
1585
+ #, php-format
1586
+ msgid "Your account on %1$s has been unapproved!"
1587
+ msgstr "Din konto på %1$s er blevet afvist!"
1588
+
1589
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:17
1590
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:160
1591
+ #, php-format
1592
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1593
+ msgstr "En administrator har netop afvis din konto på %1$s (%2$s)."
1594
+
1595
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:18
1596
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:20
1597
+ #, fuzzy, php-format
1598
+ msgid "[%1$s] A new subscriber has (been) registered!"
1599
+ msgstr "En ny abonnement er (blevet) registeret!"
1600
+
1601
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:21
1602
+ #, fuzzy, php-format
1603
+ msgid ""
1604
+ "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/><br/>The "
1605
+ "\"Admin Approval\" feature was activated at the time of registration, so "
1606
+ "please remember that you need to approve this user before he/she can log in!"
1607
+ msgstr ""
1608
+ "\"Admin Godkendelses\" funktionen var aktiveret ved registering, så husk "
1609
+ "venligst at du skal godkende denne bruger før han/hun kan logge ind!"
1610
+
1611
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:45
1612
+ msgid "Here you can customize all the emails sent to the users."
1613
+ msgstr ""
1614
+
1615
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:48
1616
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:404
1617
+ #, fuzzy
1618
+ msgid "Common Settings:"
1619
+ msgstr "Generelle indstillinger"
1620
+
1621
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:48
1622
+ msgid ""
1623
+ "These settings are also replicated in the \"Admin Email Customizer\" "
1624
+ "settings-page upon save."
1625
+ msgstr ""
1626
+
1627
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:51
1628
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:407
1629
+ msgid "From (name): "
1630
+ msgstr ""
1631
+
1632
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:59
1633
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:75
1634
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:118
1635
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:174
1636
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:233
1637
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:292
1638
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:337
1639
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:415
1640
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:431
1641
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:473
1642
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:526
1643
+ msgid "Available Merge Tags"
1644
+ msgstr ""
1645
+
1646
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:60
1647
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:120
1648
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:179
1649
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:235
1650
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:294
1651
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:339
1652
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:416
1653
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:475
1654
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:528
1655
+ #, fuzzy
1656
+ msgid "Display the site name"
1657
+ msgstr "Visningsnavn"
1658
+
1659
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:67
1660
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:423
1661
+ msgid "From (reply-to email): "
1662
+ msgstr ""
1663
+
1664
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:83
1665
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:367
1666
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:439
1667
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:560
1668
+ msgid "Email Message Type"
1669
+ msgstr ""
1670
+
1671
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:84
1672
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:368
1673
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:440
1674
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:561
1675
+ msgid "Show / Hide"
1676
+ msgstr ""
1677
+
1678
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:91
1679
+ #, fuzzy
1680
+ msgid "Default Registration"
1681
+ msgstr "Efter registering:"
1682
+
1683
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:99
1684
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:155
1685
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:214
1686
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:273
1687
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:318
1688
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:454
1689
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:507
1690
+ msgid "Email Subject: "
1691
+ msgstr ""
1692
+
1693
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:107
1694
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:163
1695
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:222
1696
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:281
1697
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:326
1698
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:462
1699
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:515
1700
+ msgid "Email Content:"
1701
+ msgstr ""
1702
+
1703
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:107
1704
+ msgid ""
1705
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1706
+ "span> upon registration."
1707
+ msgstr ""
1708
+
1709
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:119
1710
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:178
1711
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:234
1712
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:293
1713
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:338
1714
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:474
1715
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:527
1716
+ msgid "Display the site URL"
1717
+ msgstr ""
1718
+
1719
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:121
1720
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:236
1721
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:295
1722
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:340
1723
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:476
1724
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:529
1725
+ #, fuzzy
1726
+ msgid "Display the userID"
1727
+ msgstr "Visningsnavn"
1728
+
1729
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:122
1730
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:180
1731
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:237
1732
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:296
1733
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:341
1734
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:477
1735
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:530
1736
+ #, fuzzy
1737
+ msgid "Display the username"
1738
+ msgstr "Visningsnavn"
1739
+
1740
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:123
1741
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:181
1742
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:238
1743
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:297
1744
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:342
1745
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:478
1746
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:531
1747
+ #, fuzzy
1748
+ msgid "Display the email-address of the user"
1749
+ msgstr "Beklager, men e-mail adressen er allerede i brug!"
1750
+
1751
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:124
1752
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:182
1753
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:239
1754
+ #, fuzzy
1755
+ msgid "Display the user's password"
1756
+ msgstr "Glemt adgangskode?"
1757
+
1758
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:125
1759
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:183
1760
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:240
1761
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:299
1762
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:344
1763
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:480
1764
+ #, fuzzy
1765
+ msgid "Display the user's first name"
1766
+ msgstr "Visningsnavn"
1767
+
1768
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:126
1769
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:184
1770
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:241
1771
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:300
1772
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:345
1773
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:481
1774
+ #, fuzzy
1775
+ msgid "Display the user's last name"
1776
+ msgstr "Visningsnavn"
1777
+
1778
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:127
1779
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:185
1780
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:242
1781
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:301
1782
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:346
1783
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:482
1784
+ #, fuzzy
1785
+ msgid "Display the user's nickname"
1786
+ msgstr "Visningsnavn"
1787
+
1788
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:128
1789
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:186
1790
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:243
1791
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:302
1792
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:347
1793
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:483
1794
+ #, fuzzy
1795
+ msgid "Display the user's website"
1796
+ msgstr "Visningsnavn"
1797
+
1798
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:129
1799
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:187
1800
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:244
1801
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:303
1802
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:348
1803
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:484
1804
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:536
1805
+ msgid "Display the \"about yourself\" content"
1806
+ msgstr ""
1807
+
1808
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:130
1809
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:188
1810
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:245
1811
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:304
1812
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:349
1813
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:485
1814
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:537
1815
+ #, fuzzy
1816
+ msgid "Display the aim value"
1817
+ msgstr "Visningsnavn"
1818
+
1819
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:131
1820
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:189
1821
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:246
1822
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:305
1823
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:350
1824
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:486
1825
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:538
1826
+ #, fuzzy
1827
+ msgid "Display the yim value"
1828
+ msgstr "Visningsnavn"
1829
+
1830
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:132
1831
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:190
1832
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:247
1833
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:306
1834
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:351
1835
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:487
1836
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:539
1837
+ msgid "Display the jabber value"
1838
+ msgstr ""
1839
+
1840
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:133
1841
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:191
1842
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:248
1843
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:307
1844
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:352
1845
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:488
1846
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:540
1847
+ msgid ""
1848
+ "Display any extra field by replacing the meta_name with the fields' meta-name"
1849
+ msgstr ""
1850
+
1851
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:146
1852
+ msgid "Registration with Email Confirmation"
1853
+ msgstr ""
1854
+
1855
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:163
1856
+ msgid ""
1857
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1858
+ "span> upon registration with email confirmation."
1859
+ msgstr ""
1860
+
1861
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:175
1862
+ #, php-format
1863
+ msgid "Display the activation key ( register_page/?key=%%activation_key%% )"
1864
+ msgstr ""
1865
+
1866
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:176
1867
+ #, fuzzy
1868
+ msgid "Display the activation url"
1869
+ msgstr "Visningsnavn"
1870
+
1871
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:177
1872
+ msgid "Display a clickable activation link"
1873
+ msgstr ""
1874
+
1875
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:205
1876
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:499
1877
+ msgid "Registration with Admin Approval"
1878
+ msgstr ""
1879
+
1880
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:222
1881
+ msgid ""
1882
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1883
+ "span> upon registration with admin approval."
1884
+ msgstr ""
1885
+
1886
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:260
1887
+ msgid "Admin Approval Notifications (on status change)"
1888
+ msgstr ""
1889
+
1890
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:268
1891
+ msgid "Message Sent to the User Upon Approval"
1892
+ msgstr ""
1893
+
1894
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:281
1895
+ msgid ""
1896
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1897
+ "span> upon approval."
1898
+ msgstr ""
1899
+
1900
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:298
1901
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:343
1902
+ msgid "Display the new user-status"
1903
+ msgstr ""
1904
+
1905
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:313
1906
+ msgid "Message Sent to the User Upon Unapproval"
1907
+ msgstr ""
1908
+
1909
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:326
1910
+ msgid ""
1911
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1912
+ "span> upon unapproval."
1913
+ msgstr ""
1914
+
1915
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:401
1916
+ msgid "Here you can customize all the emails sent to the administrator."
1917
+ msgstr ""
1918
+
1919
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:404
1920
+ msgid ""
1921
+ "These settings are also replicated in the \"User Email Customizer\" settings-"
1922
+ "page upon save."
1923
+ msgstr ""
1924
+
1925
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:432
1926
+ #, fuzzy
1927
+ msgid "Display the default email address"
1928
+ msgstr "Du skal indtaste en gyldig e-mail adresse."
1929
+
1930
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:446
1931
+ msgid "Default Registration & Registration with Email Confirmation"
1932
+ msgstr ""
1933
+
1934
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:462
1935
+ msgid ""
1936
+ "This is the email sent to the <span class=\"email_customizer_red"
1937
+ "\">administrator</span> upon registration."
1938
+ msgstr ""
1939
+
1940
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:479
1941
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:532
1942
+ #, fuzzy
1943
+ msgid "Display the password"
1944
+ msgstr "Glemt adgangskode?"
1945
+
1946
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:515
1947
+ msgid ""
1948
+ "This is the email sent to the <span class=\"email_customizer_red"
1949
+ "\">administrator</span> upon user registration with admin approval."
1950
+ msgstr ""
1951
+
1952
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:533
1953
+ #, fuzzy
1954
+ msgid "Display the first name"
1955
+ msgstr "Visningsnavn"
1956
+
1957
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:534
1958
+ #, fuzzy
1959
+ msgid "Display the last name"
1960
+ msgstr "Visningsnavn"
1961
+
1962
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:535
1963
+ #, fuzzy
1964
+ msgid "Display the nickname"
1965
+ msgstr "Visningsnavn"
1966
+
1967
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
1968
+ msgid "Could not open socket!"
1969
+ msgstr "Kunne ikke åbner \"socket\"!"
1970
+
1971
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
1972
+ msgid "To use reCAPTCHA you must get an API key from"
1973
+ msgstr "For at kunne brug reCAPTCHA skal du bruge en API key fra"
1974
+
1975
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
1976
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1977
+ msgstr ""
1978
+ "Af sikkerhedsmæssige årsager er du nødt til at indtaste fjern IP adressen "
1979
+ "til reCAPTCHA!"
1980
+
1981
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
1982
+ msgid ""
1983
+ "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1984
+ msgstr ""
1985
+ "For at bruge reCAPTCHA Mailhide, er det nødvendigt at du har mcrypt php "
1986
+ "modulet installeret!"
1987
+
1988
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
1989
+ msgid ""
1990
+ "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
1991
+ "you can do so at"
1992
+ msgstr ""
1993
+ "For at bruge reCAPTCHA Mailhide, er det nødvendigt tilmelde sig for at få en "
1994
+ "offentlig og privat nøgle; du kan gøre dette på"
1995
+
1996
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
1997
+ msgid ""
1998
+ "Adds a reCAPTCHA form on the registration page created in the front-end "
1999
+ "(only)."
2000
+ msgstr ""
2001
+ "Tilføjer en reCAPTCHA formular på tilmeldingssiden oprettet (kun) på "
2002
+ "frontend."
2003
+
2004
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
2005
+ msgid "For this you must get a public and private key from Google:"
2006
+ msgstr "For dette har du behov for en offentlig og en privat nøgle fra Google:"
2007
+
2008
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
2009
+ msgid "Key"
2010
+ msgstr "Nøgle"
2011
+
2012
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
2013
+ msgid "Code"
2014
+ msgstr "Kode"
2015
+
2016
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
2017
+ msgid "Public Key:"
2018
+ msgstr "Offentlig nøgle:"
2019
+
2020
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
2021
+ msgid "Private Key:"
2022
+ msgstr "Privat nøgle:"
2023
+
2024
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
2025
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
2026
+ msgstr "reCAPTCHA var ikke indtastet korrekt. Gå tilbage og prøv igen!"
2027
+
2028
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
2029
+ msgid ""
2030
+ "To create a page containing the users registered to this current site/blog, "
2031
+ "insert the following shortcode in a (blank) page: "
2032
+ msgstr ""
2033
+ "For at oprette en side indeholdende brugere tilmeldt denne hjemmeside/blog, "
2034
+ "indsæt følgende shortcode en tom side:"
2035
+
2036
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
2037
+ msgid ""
2038
+ "For instance, to create a userlisting shortcode listing only the editors and "
2039
+ "authors, visible to only the users currently logged in, you would use:"
2040
+ msgstr ""
2041
+ "For eksempel, for at oprette en brugerliste over kun redaktører og "
2042
+ "forfattere, synligt kun for brugere som er logget ind, skal du bruge:"
2043
+
2044
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
2045
+ msgid ""
2046
+ "You can also create a userlisting page that displays users having a certain "
2047
+ "meta-value within a certain (extra) meta-field like so:"
2048
+ msgstr ""
2049
+ "Du kan således også oprette en brugerliste side der viser brugere som har en "
2050
+ "bestemt meta-værdi med en bestemt (ekstra) meta-felt:"
2051
+
2052
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
2053
+ msgid ""
2054
+ "Remember though, that the field-value combination must exist in the database."
2055
+ msgstr "Husk dog at felt-værdi kombinationen skal eksistere i databasen."
2056
+
2057
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:42
2058
+ msgid "These settings are applied to the front-end userlisting."
2059
+ msgstr "Disse indstillinger er tildelt til frontend brugerliste."
2060
+
2061
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:48
2062
+ msgid "Number of Users/Page: "
2063
+ msgstr "Antal brugere/sider:"
2064
+
2065
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:65
2066
+ #, fuzzy
2067
+ msgid "Default Sorting Criteria: "
2068
+ msgstr "Standard sortings rækkefølge:"
2069
+
2070
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
2071
+ #, fuzzy
2072
+ msgid "Registration Date"
2073
+ msgstr "Efter registering:"
2074
+
2075
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
2076
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:600
2077
+ msgid "Display Name"
2078
+ msgstr "Visningsnavn"
2079
+
2080
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:78
2081
+ #, fuzzy
2082
+ msgid "Number of Posts"
2083
+ msgstr "Antal brugere/sider:"
2084
+
2085
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:79
2086
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:623
2087
+ msgid "Aim"
2088
+ msgstr ""
2089
+
2090
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
2091
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:628
2092
+ msgid "Yim"
2093
+ msgstr ""
2094
+
2095
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
2096
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:633
2097
+ msgid "Jabber"
2098
+ msgstr ""
2099
+
2100
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:83
2101
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:152
2102
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:308
2103
+ #, fuzzy
2104
+ msgid "Custom Fields"
2105
+ msgstr "\" brugerdefineret felt."
2106
+
2107
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:99
2108
+ msgid "Default Sorting Order: "
2109
+ msgstr "Standard sortings rækkefølge:"
2110
+
2111
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:102
2112
+ #, fuzzy
2113
+ msgid "Ascending"
2114
+ msgstr "overskrift"
2115
+
2116
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:103
2117
+ msgid "Descending"
2118
+ msgstr ""
2119
+
2120
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:110
2121
+ msgid "\"All-Userlisting\" Template"
2122
+ msgstr "\"Alle-Brugerliste\" skabelon"
2123
+
2124
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:112
2125
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:263
2126
+ msgid ""
2127
+ "With the userlisting templates you can customize the look, feel and "
2128
+ "information listed by the shortcode."
2129
+ msgstr ""
2130
+ "Med brugerliste skabeloner kan du tilpasse udseende og følelsen af "
2131
+ "information listet af shortkoden. "
2132
+
2133
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:113
2134
+ msgid ""
2135
+ "The \"All Users Listing\" template is used to list all users. It's displayed "
2136
+ "on each page access where the shortcode is present."
2137
+ msgstr ""
2138
+ "\"Alle brugerlisten\" skabelon er brugt til at liste alle brugere. Det vises "
2139
+ " hver side hvor shortkoden er tilstede."
2140
+
2141
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:117
2142
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:269
2143
+ #, fuzzy
2144
+ msgid "Avatar/Gravatar Size: "
2145
+ msgstr "Avatar størrelse:"
2146
+
2147
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:133
2148
+ msgid "Insert \"Sort By\" Field:"
2149
+ msgstr "Indsæt \"Sortér efter\" felt:"
2150
+
2151
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:138
2152
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:291
2153
+ #, fuzzy
2154
+ msgid "Default WordPress Fields"
2155
+ msgstr "Standard profil felt"
2156
+
2157
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:164
2158
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:286
2159
+ msgid "Insert \"User-Meta\" Field:"
2160
+ msgstr "Indsæt \"Bruger-Meta\" felt:"
2161
+
2162
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:201
2163
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:328
2164
+ msgid "Insert Extra Functions:"
2165
+ msgstr "Indsæt ekstra funktioner:"
2166
+
2167
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
2168
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
2169
+ msgstr "Vis/Skjul standard \"Alle-brugerliste\" kode"
2170
+
2171
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
2172
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:342
2173
+ msgid ""
2174
+ "If you wish to use a default userlisting, just copy the following code and "
2175
+ "paste it in the textarea below:"
2176
+ msgstr ""
2177
+ "Hvis du ønsker at bruge en standard brugerliste, kopier blot følgende kode "
2178
+ "og indsæt den i tekstboksen herunder:"
2179
+
2180
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:227
2181
+ #, fuzzy
2182
+ msgid "More"
2183
+ msgstr "Mere..."
2184
+
2185
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
2186
+ msgid "\"Single-Userlisting\" Template"
2187
+ msgstr "\"Enkel-Brugerliste\" skabelon"
2188
+
2189
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:264
2190
+ msgid ""
2191
+ "The \"Single User Listing\" template is used to list an individual user. "
2192
+ "It's displayed when clickin on the \"more info\" link."
2193
+ msgstr ""
2194
+ "\"Enkelt brugerliste\" skabelonen er brugt til at liste en individuel "
2195
+ "bruger. Den vises når man klikker på \"mere infonformations\" linket."
2196
+
2197
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:317
2198
+ #, fuzzy
2199
+ msgid "Custom Fields(Description)"
2200
+ msgstr "\" brugerdefineret felt."
2201
+
2202
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:340
2203
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
2204
+ msgstr "Vis/Skjul standard \"Enkel-brugerliste\" kode"
2205
+
2206
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:446
2207
+ msgid ""
2208
+ "You need to activate the User-Listing feature from within the \"Addons\" tab!"
2209
+ msgstr ""
2210
+ "Du er nødt til at aktivere brugerliste funktionen fra \"Udvidelser\" fanen"
2211
+
2212
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:446
2213
+ msgid "You can find it in Profile Builder's menu."
2214
+ msgstr "Du kan finde dét i Profile Builders menu."
2215
+
2216
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:476
2217
+ msgid "You need to be logged in to view the userlisting!"
2218
+ msgstr "Du skal være logget ind for at kunne se brugerliste!"
2219
+
2220
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
2221
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:530
2222
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1907
2223
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1942
2224
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/userlisting.class.php:445
2225
+ msgid "Search Users by All Fields"
2226
+ msgstr "Søg brugere efter Alle felter"
2227
+
2228
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
2229
+ msgid "Leave Blank and Press Search to List All Users"
2230
+ msgstr "Efterlad blank og tryk på Søg til liste med alle brugere"
2231
+
2232
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:556
2233
+ msgid "Search"
2234
+ msgstr "Søg"
2235
+
2236
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:557
2237
+ msgid "Clear Results"
2238
+ msgstr ""
2239
+
2240
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:570
2241
+ msgid "First/Lastname"
2242
+ msgstr "Fornavn/efternavn"
2243
+
2244
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:582
2245
+ msgid "Sign-up Date"
2246
+ msgstr "Registeringsdato"
2247
+
2248
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:618
2249
+ msgid "Posts"
2250
+ msgstr "Indlæg"
2251
+
2252
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:683
2253
+ msgid "Click here to see more information about this user"
2254
+ msgstr "Klik her for at se mere information om denne bruger"
2255
+
2256
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:683
2257
+ msgid "More..."
2258
+ msgstr "Mere..."
2259
+
2260
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:685
2261
+ #, fuzzy
2262
+ msgid "Click here to see more information about this user."
2263
+ msgstr "Klik her for at se mere information om denne bruger"
2264
+
2265
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:948
2266
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1100
2267
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1501
2268
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1710
2269
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:658
2270
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:691
2271
+ msgid "No uploaded attachment"
2272
+ msgstr "Ingen uploadet vedhæftninger"
2273
+
2274
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:950
2275
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
2276
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1503
2277
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1560
2278
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1712
2279
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1769
2280
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2281
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2282
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2283
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2284
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:804
2285
+ msgid "Click to see the current attachment"
2286
+ msgstr "Klik for at se den aktuelle vedhæftning"
2287
+
2288
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1241
2289
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1243
2290
+ msgid "Click here to go back"
2291
+ msgstr "Klik her for at tilbage"
2292
+
2293
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1241
2294
+ msgid "Back"
2295
+ msgstr "Tilbage"
2296
+
2297
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1501
2298
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1503
2299
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1710
2300
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1712
2301
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:658
2302
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2303
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:691
2304
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2305
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2306
+ msgid "Current file"
2307
+ msgstr "Aktuelle fil"
2308
+
2309
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1558
2310
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1767
2311
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:770
2312
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:801
2313
+ msgid "Avatar"
2314
+ msgstr "Avatar"
2315
+
2316
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1826
2317
+ msgid "No results found!"
2318
+ msgstr "Ingen resultater fundet!"
2319
+
2320
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1929
2321
+ msgid "&laquo;&laquo; First"
2322
+ msgstr "&laquo;&laquo; Først"
2323
+
2324
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1930
2325
+ msgid "&laquo; Prev"
2326
+ msgstr "&laquo; Forrige"
2327
+
2328
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1931
2329
+ msgid "Next &raquo; "
2330
+ msgstr "Næste &raquo; "
2331
+
2332
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1932
2333
+ msgid "Last &raquo;&raquo;"
2334
+ msgstr "Sidst &raquo;&raquo;"
2335
+
2336
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
2337
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:458
2338
+ msgid "You must give your option a title."
2339
+ msgstr "Du skal give din valgmulighed en titel."
2340
+
2341
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
2342
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:462
2343
+ msgid "You have entered an invalid meta-key format!"
2344
+ msgstr "Du har indtastet et ugyldig meta-nøgle format!"
2345
+
2346
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:311
2347
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:466
2348
+ msgid "You must enter a valid meta-key."
2349
+ msgstr "Du skal indtaste en gyldig meta-nøgle."
2350
+
2351
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
2352
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
2353
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
2354
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
2355
+ msgid "That meta-key is already in use."
2356
+ msgstr "Den meta-nøgle er allerede i brug."
2357
+
2358
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:334
2359
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
2360
+ msgid ""
2361
+ "There is already an avatar input-type. You can only have one avatar present."
2362
+ msgstr ""
2363
+ "Der er allerede en avatar inputtype. Du kan kun have én avatar tilstedet."
2364
+
2365
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:341
2366
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
2367
+ msgid ""
2368
+ "There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
2369
+ "have one present."
2370
+ msgstr ""
2371
+ "Der er allerede én \"Enig i betingelserne\" checkbox. Du kan kun have én "
2372
+ "tilstede."
2373
+
2374
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
2375
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:508
2376
+ msgid "The textarea row value must be numeric."
2377
+ msgstr "Textarea række værdien skal være nummerisk."
2378
+
2379
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
2380
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:512
2381
+ msgid "The maxlength attribute must be numeric."
2382
+ msgstr "Maxlength attributen skal være nummerisk."
2383
+
2384
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:357
2385
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:519
2386
+ msgid "The value must be between 20 and 200!"
2387
+ msgstr "Værdien skal være mellem 20 og 200!"
2388
+
2389
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:362
2390
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:524
2391
+ msgid "The width component of the entered value must be numeric!"
2392
+ msgstr "Bredden den indtastede værdi skal være nummerisk!"
2393
+
2394
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:364
2395
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:526
2396
+ msgid "The height component of the entered value must be numeric!"
2397
+ msgstr "Højden på den værdi du indtastede skal være nummerisk!"
2398
+
2399
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:366
2400
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:528
2401
+ msgid "The width component of the entered value must be between 20 and 200!"
2402
+ msgstr "Bredden på den værdi du indtastede skal være mellem 20 og 200!"
2403
+
2404
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:368
2405
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:530
2406
+ msgid "The height component of the entered value must be between 20 and 200!"
2407
+ msgstr "Højden på den værdi du indtastede skal være mellem 20 og 200!"
2408
+
2409
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:370
2410
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:532
2411
+ msgid "The pair of values entered didn't have the right format (width,height)!"
2412
+ msgstr "De to indtastede værdier har ikke det rigtige format (bredde,højde)!"
2413
+
2414
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:373
2415
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:535
2416
+ msgid "The entered avatar size must be numeric!"
2417
+ msgstr "Den indtastede svatar størrelse skal være nummerisk!"
2418
+
2419
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:417
2420
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:606
2421
+ msgid "There was an error, please try again."
2422
+ msgstr "Der var en fejl, prøv venligst igen."
2423
+
2424
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:45
2425
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:87
2426
+ msgid "Your session has expired! Please refresh the page and try again."
2427
+ msgstr ""
2428
+
2429
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:56
2430
+ #, fuzzy
2431
+ msgid "User successfully approved!"
2432
+ msgstr "Brugeren var succesfuldt aktiveret."
2433
+
2434
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:64
2435
+ #, fuzzy
2436
+ msgid "User successfully unapproved!"
2437
+ msgstr "Brugeren var succesfuldt aktiveret."
2438
+
2439
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:70
2440
+ #, fuzzy
2441
+ msgid "User successfully deleted!"
2442
+ msgstr "Brugeren var succesfuldt aktiveret."
2443
+
2444
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:107
2445
+ #, fuzzy
2446
+ msgid "Users successfully approved!"
2447
+ msgstr "Brugeren var succesfuldt aktiveret."
2448
+
2449
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:122
2450
+ #, fuzzy
2451
+ msgid "Users successfully unapproved!"
2452
+ msgstr "Brugeren var succesfuldt aktiveret."
2453
+
2454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:135
2455
+ #, fuzzy
2456
+ msgid "Users successfully deleted!"
2457
+ msgstr "Brugeren var succesfuldt aktiveret."
2458
+
2459
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:151
2460
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:154
2461
+ #, fuzzy
2462
+ msgid "approved"
2463
+ msgstr "godkend"
2464
+
2465
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:158
2466
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:161
2467
+ #, fuzzy
2468
+ msgid "unapproved"
2469
+ msgstr "Afvis"
2470
+
2471
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:177
2472
+ msgid ""
2473
+ "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2474
+ "before you can log in."
2475
+ msgstr ""
2476
+ "<strong>FEJL</strong>: Din konto skal godkendes af en administrator før du "
2477
+ "kan logge ind."
2478
+
2479
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:189
2480
+ #, fuzzy
2481
+ msgid ""
2482
+ "Your account has to be confirmed by an administrator before you can use the "
2483
+ "\"Password Recovery\" feature."
2484
+ msgstr ""
2485
+ "Din konto skal godkendes af en administrator før du kan bruge \"Nulstil "
2486
+ "adgangskode\" funktionen."
2487
+
2488
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2489
+ msgid ""
2490
+ "You can create as many extra fields as your project requires. To break your "
2491
+ "custom fields into sections (on the front-end), add a \""
2492
+ msgstr ""
2493
+ "Du kan oprette lige så mange ekstra felter som dit projekt påkræver. For at "
2494
+ "opdele dine tilpasset felter i seksioner (på front-end), tilføj en \""
2495
+
2496
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2497
+ msgid "heading"
2498
+ msgstr "overskrift"
2499
+
2500
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2501
+ msgid "\" custom field."
2502
+ msgstr "\" brugerdefineret felt."
2503
+
2504
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2505
+ msgid "All of the fields can be sorted and rearranged to your liking with"
2506
+ msgstr "Alle felter kan blive sorteret og ombyttet til dit ønske med"
2507
+
2508
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2509
+ msgid "Drag"
2510
+ msgstr "Træk"
2511
+
2512
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2513
+ msgid "Drop"
2514
+ msgstr "Slip"
2515
+
2516
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2517
+ msgid ""
2518
+ "Don't worry about the order in which you create your custom fields, you can "
2519
+ "always reorder them."
2520
+ msgstr ""
2521
+ "Du behøver ikke bekymre dig om rækkefølgen, som du opretter dine "
2522
+ "brugerdefineret felter. Du kan altid ændre rækkefølgen."
2523
+
2524
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
2525
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
2526
+ msgid "Title"
2527
+ msgstr "Titel"
2528
+
2529
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
2530
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
2531
+ msgid "Type"
2532
+ msgstr "Type"
2533
+
2534
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
2535
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
2536
+ msgid "Meta-Key"
2537
+ msgstr "Meta-nøgle"
2538
+
2539
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
2540
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
2541
+ msgid "ID"
2542
+ msgstr "ID"
2543
+
2544
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
2545
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
2546
+ msgid "Req'd"
2547
+ msgstr "Req'd"
2548
+
2549
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
2550
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
2551
+ msgid "Add Option"
2552
+ msgstr "Tilføj valgmulighed"
2553
+
2554
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
2555
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
2556
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:217
2557
+ msgid "Edit"
2558
+ msgstr "Rediger"
2559
+
2560
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:101
2561
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:82
2562
+ msgid "Title:"
2563
+ msgstr "Titel:"
2564
+
2565
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:101
2566
+ msgid "The title of the item."
2567
+ msgstr "Titlen på genstanden."
2568
+
2569
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:111
2570
+ msgid "Meta-Key:"
2571
+ msgstr "Meta-nøgle:"
2572
+
2573
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:111
2574
+ msgid ""
2575
+ "Use this in conjuction with WordPress functions to display the value in the "
2576
+ "page of your choosing. Auto-completed but editable - in this case it must be "
2577
+ "uniqe.<br/>Changing this might take long in case of a very big user-count."
2578
+ msgstr ""
2579
+ "Brug dette sammen med WordPress funktioner til at vise værdien på din valgte "
2580
+ "side. Auto-fuldført men kan ændres - i dette tilfælde skal det være unikt."
2581
+ "<br/>Ved ændringer af dette kan det tage lang tid hvis der er et stort antal "
2582
+ "brugere."
2583
+
2584
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:144
2585
+ msgid "Option Type:"
2586
+ msgstr "Valgmulighedstype:"
2587
+
2588
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:144
2589
+ msgid "Choose one of the supported option types."
2590
+ msgstr "Vælg en af de understøttede valgmulighedstyper."
2591
+
2592
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2593
+ msgid "Description:"
2594
+ msgstr "Beskrivelse:"
2595
+
2596
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2597
+ msgid ""
2598
+ "Enter a detailed description of the option for end users to read(optional)."
2599
+ msgstr ""
2600
+ "Indtast en detalieret beskrivelse af valgmuligheden som slutbrugere kan læse "
2601
+ "(valgfrit)."
2602
+
2603
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2604
+ msgid "You can only insert links using standard HTML syntax:"
2605
+ msgstr "Du kan kun indsætte links ved at benytte standard HTML syntaks:"
2606
+
2607
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2608
+ msgid "address"
2609
+ msgstr "adresse"
2610
+
2611
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2612
+ msgid "name"
2613
+ msgstr "navn"
2614
+
2615
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:165
2616
+ msgid "Options:"
2617
+ msgstr "Valgmuligheder:"
2618
+
2619
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:165
2620
+ msgid ""
2621
+ "Enter a comma separated list of options.<br/>These can be anything, as it is "
2622
+ "hidden from the user, but should not contain special characters, spaces or "
2623
+ "apostrophes."
2624
+ msgstr ""
2625
+
2626
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:176
2627
+ msgid "Labels:"
2628
+ msgstr ""
2629
+
2630
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:176
2631
+ #, fuzzy
2632
+ msgid ""
2633
+ "Enter a comma separated list of labels for the above options.<br/>For "
2634
+ "example, you could have \"One,Two,Three\" or just a single value like \"Yes"
2635
+ "\" for a checkbox.<br/>Visible for the user, and if no labels are specified, "
2636
+ "the values from the options are used instead."
2637
+ msgstr ""
2638
+ "Indtast en kommaseperaret liste med valgmuligheder. For eksempel kunne du "
2639
+ "have \"En,To,Tre\" eller blot én enkelt værdi som \"Ja\" ved en checkbox."
2640
+
2641
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:187
2642
+ msgid "ID:"
2643
+ msgstr "ID:"
2644
+
2645
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:187
2646
+ msgid ""
2647
+ "This is the internal ID for this input. You can use this in conjuction with "
2648
+ "filters to target this element if needed.<br/>Can't be edited."
2649
+ msgstr ""
2650
+ "Dette er det interne ID for dette input. Du kan bruge dette sammen med "
2651
+ "filtre til at målrette dette element hvis det skulle være nødvendigt.<br/"
2652
+ ">Kan ikke redigeres."
2653
+
2654
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:198
2655
+ msgid "Required:"
2656
+ msgstr "Påkrævet:"
2657
+
2658
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:198
2659
+ msgid "Check this box to make this field required."
2660
+ msgstr "Sæt flueben ved denne boks for at påkræve dette felt."
2661
+
2662
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
2663
+ msgid "Cancel"
2664
+ msgstr "Annuller"
2665
+
2666
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
2667
+ msgid "Save"
2668
+ msgstr "Gem"
2669
+
2670
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:71
2671
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:186
2672
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:275
2673
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:363
2674
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:437
2675
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:505
2676
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:560
2677
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
2678
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:677
2679
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:787
2680
+ msgid ""
2681
+ "This field wasn't updated because you entered and empty string (It was "
2682
+ "marked as required by the administrator)"
2683
+ msgstr ""
2684
+ "Dette felt var ikke opdateret fordi du indtastede en tom streng (Det var "
2685
+ "markeret som påkrævet af administratoren)"
2686
+
2687
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:655
2688
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
2689
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:763
2690
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:793
2691
+ msgid "max upload size"
2692
+ msgstr "max upload størrelse"
2693
+
2694
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:661
2695
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:697
2696
+ msgid "Are you sure you want to delete this attachment?"
2697
+ msgstr "Er du sikker på at du vil slette denne vedhæftning?"
2698
+
2699
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2700
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2701
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2702
+ msgid "Click to delete the current attachment"
2703
+ msgstr "Klik for at slette den aktuelle vedhæftning"
2704
+
2705
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2706
+ msgid ""
2707
+ "The attachment can't be deleted (It was marked as required by the "
2708
+ "administrator)"
2709
+ msgstr ""
2710
+ "Vedhæftningen kan ikke slettes (Det var markeret som påkrævet af "
2711
+ "administratoren)"
2712
+
2713
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:766
2714
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:797
2715
+ msgid "Current avatar"
2716
+ msgstr "Aktuelle avatar"
2717
+
2718
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:766
2719
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:797
2720
+ msgid "No uploaded avatar"
2721
+ msgstr "Ingen uploadet avatar"
2722
+
2723
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2724
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2725
+ msgid "Are you sure you want to delete this avatar?"
2726
+ msgstr "Er du sikker på at du vil slette denne avatar?"
2727
+
2728
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:804
2729
+ msgid ""
2730
+ "The avatar image can't be deleted (It was marked as required by the "
2731
+ "administrator)."
2732
+ msgstr ""
2733
+ "Avartar billedet kan ikke slettes (Det var markeret som påkrævet af "
2734
+ "administratoren)."
2735
+
2736
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2737
+ msgid "Click to see the current avatar"
2738
+ msgstr "Klik for at se den aktuelle avatar"
2739
+
2740
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2741
+ msgid "Click to delete the avatar"
2742
+ msgstr "Klik for at slette avatar"
2743
+
2744
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:860
2745
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:952
2746
+ #, fuzzy
2747
+ msgid "The avatar was successfully deleted!"
2748
+ msgstr "Avataren var successfuldt slettet."
2749
+
2750
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:862
2751
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:954
2752
+ #, fuzzy
2753
+ msgid "The following attachment was successfully deleted:"
2754
+ msgstr "Vedhæftningen \"%1$s\" var successfuldt slettet."
2755
+
2756
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
2757
+ msgid "This login widget lets you add a login form in the sidebar."
2758
+ msgstr "Denne login widget lader sig tilføje en login formular i sidebaren."
2759
+
2760
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
2761
+ msgid "Profile Builder Login Widget"
2762
+ msgstr "Profile Builder Login Widget"
2763
+
2764
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:42
2765
+ msgid "Don't have an account?"
2766
+ msgstr "Har du ikke en konto?"
2767
+
2768
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2769
+ msgid "Lost Password"
2770
+ msgstr "Glemt adgangskode"
2771
+
2772
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2773
+ msgid "Lost Your Password?"
2774
+ msgstr "Glemt din adgangskode?"
2775
+
2776
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:78
2777
+ msgid "Login"
2778
+ msgstr "Login"
2779
+
2780
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:87
2781
+ msgid "After login redirect URL (optional):"
2782
+ msgstr "Viderestilling efter login URL (valgfri):"
2783
+
2784
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:92
2785
+ msgid "Register page URL (optional):"
2786
+ msgstr "Registrationsside URL (valgfri):"
2787
+
2788
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:97
2789
+ msgid "Password Recovery page URL (optional):"
2790
+ msgstr "Adgangskode gendannelsesside URL (valgfri):"
2791
+
2792
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
2793
+ msgid "The user-validation has failed - the avatar was not deleted!"
2794
+ msgstr "Brugervalidering har fejlet - avartaren var ikke slettet!"
2795
+
2796
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
2797
+ msgid "The user-validation has failed - the attachment was not deleted!"
2798
+ msgstr "Brugervalidering har fejlet - vedhæftningen var ikke slettet!"
2799
+
2800
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:339
2801
+ #, php-format
2802
+ msgid ""
2803
+ "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
2804
+ "Please %1$sregister your copy%2$s of Profile Builder to receive access to "
2805
+ "automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
2806
+ "%5$sDismiss%6$s"
2807
+ msgstr ""
2808
+ "Dit <strong>Profile Builder</strong> serienummer er ikke gyldigt eller "
2809
+ "manglende. Venligst %1$sregistre din kopi%2$s af Profile Builder for at "
2810
+ "modtaget automatiske opdateringer og teknisk hjælp. Brug for en nøgle? "
2811
+ "%3$sKøb en nu%4$s %5$sAfvis%6$s"
2812
+
2813
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:343
2814
+ #, php-format
2815
+ msgid ""
2816
+ "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
2817
+ "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
2818
+ "priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
2819
+ msgstr ""
2820
+ "Din <strong>Profile Builder</strong> 1 års licens er udløbet. Venligst "
2821
+ "%1$sForny din licens%2$s for at få adgang til automatiske opdateringer and "
2822
+ "prioriteret teknisk hjælp. %3$sKøb en licens nu%4$s %5$sAfvis%6$s"
2823
+
2824
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
2825
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
2826
+ msgid "Register your version of Profile Builder Pro"
2827
+ msgstr "Register din version af Profile Builder Pro"
2828
+
2829
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
2830
+ msgid ""
2831
+ "Now that you acquired a copy of Profile Builder Pro, you should take the "
2832
+ "time and register it with the serial number you received in the e-mail."
2833
+ msgstr ""
2834
+ "Nu hvor du har anskaffer dig en kopi af Profile Builder Pro, bør du "
2835
+ "registere dén med serienummeret, som du har modtaget på e-mail."
2836
+
2837
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
2838
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
2839
+ msgid ""
2840
+ "If you register this version of Profile Builder, you'll receive information "
2841
+ "regarding eventual upgrades, patches, and - if needed - technical support."
2842
+ msgstr ""
2843
+ "Hvis du registerer din version af Profile Buillder, vil du modtage "
2844
+ "information om eventuelle opgraderinger, opdateringer og - hvis det bliver "
2845
+ "nødvendigt - teknisk hjælp."
2846
+
2847
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
2848
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
2849
+ msgid "Serial Number:"
2850
+ msgstr "Serienummer:"
2851
+
2852
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
2853
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
2854
+ msgid "The serial number was successfully validated!"
2855
+ msgstr "Serienummeret var succesfuldt valideret!"
2856
+
2857
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
2858
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
2859
+ msgid "The serial number entered couldn't be validated!"
2860
+ msgstr "Det indtastede serienummer kunne ikke blive valideret!"
2861
+
2862
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
2863
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
2864
+ msgid "The serial number couldn't be validated because it is no longer valid!"
2865
+ msgstr ""
2866
+ "Serienummeret kunne ikke blive valideret fordi det ikke længere er valid!"
2867
+
2868
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
2869
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
2870
+ msgid ""
2871
+ "The serial number couldn't be validated because process timed out. This is "
2872
+ "possible due to the server being down. Please try again later!"
2873
+ msgstr ""
2874
+ "Serienummeret kunne ikke blive valideret fordi processen fik timeout. Dette "
2875
+ "kan muligvis skyldes at serveren er nede. Prøv igen senere!"
2876
+
2877
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
2878
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2879
+ msgstr "(f.eks. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2880
+
2881
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
2882
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
2883
+ msgid "Register your version of Profile Builder Hobbyist"
2884
+ msgstr "Register din version af Profile Builder Hobbyist"
2885
+
2886
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
2887
+ msgid ""
2888
+ "Now that you acquired a copy of Profile Builder Hobbyist, you should take "
2889
+ "the time and register it with the serial number you received in the e-mail."
2890
+ msgstr ""
2891
+ "Nu hvor du har anskaffer dig en kopi af Profile Builder Hobbyist, bør du "
2892
+ "registere dén med serienummeret, som du har modtaget på e-mail."
2893
+
2894
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
2895
+ msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2896
+ msgstr "(f.eks. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2897
+
2898
+ #~ msgid ""
2899
+ #~ "The email address you entered is already registered to a different user."
2900
+ #~ msgstr ""
2901
+ #~ "Den indtastede e-mail adresse er allerede registeret til en anden bruger."
2902
+
2903
+ #~ msgid "The email address was"
2904
+ #~ msgstr "E-mail adressen var"
2905
+
2906
+ #~ msgid "The email address you entered is invalid."
2907
+ #~ msgstr "Den indtastede e-mail adresse er ikke gyldig."
2908
+
2909
+ #~ msgid "The passwords you entered do not match."
2910
+ #~ msgstr "De indtastede adgangskoder er ikke ens."
2911
+
2912
+ #~ msgid "The password was"
2913
+ #~ msgstr "Adgangskoden var"
2914
+
2915
+ #~ msgid "You didn't complete both password fields."
2916
+ #~ msgstr "Du har ikke fuldent indtastet begge adgangskoder."
2917
+
2918
+ #~ msgid "Your profile was NOT updated!"
2919
+ #~ msgstr "Din profil blev IKKE opdateret!"
2920
+
2921
+ #~ msgid "the current user?"
2922
+ #~ msgstr "den aktuelle bruger?"
2923
+
2924
+ #~ msgid "approve"
2925
+ #~ msgstr "godkend"
2926
+
2927
+ #~ msgid "Are you sure you want to %1$s this user?"
2928
+ #~ msgstr "Er du sikker på at du vil %1$s denne bruger?"
translation/profilebuilder-de_DE.mo CHANGED
Binary file
translation/profilebuilder-de_DE.po CHANGED
@@ -1,2574 +1,2973 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: ProfileBuilder\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-14 14:34+0200\n"
6
- "PO-Revision-Date: 2013-05-14 14:34+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"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.5\n"
15
- "X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
16
- "pro\n"
17
-
18
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
19
- #, fuzzy
20
- msgid "unapprove this user?"
21
- msgstr "diesen Benutzer"
22
-
23
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
24
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:218
25
- msgid "Unapprove"
26
- msgstr "Nicht genehmigt"
27
-
28
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
29
- #, fuzzy
30
- msgid "approve this user?"
31
- msgstr "diesen Benutzer"
32
-
33
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
34
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:217
35
- msgid "Approve"
36
- msgstr "Genehmigt"
37
-
38
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:166
39
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:153
40
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:889
41
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:155
42
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1076
43
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
44
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:79
45
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:525
46
- msgid "Username"
47
- msgstr "Benutzername"
48
-
49
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:167
50
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:154
51
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1022
52
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1064
53
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1178
54
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
55
- msgid "E-mail"
56
- msgstr "E-Mail"
57
-
58
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:168
59
- msgid "Role"
60
- msgstr ""
61
-
62
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:169
63
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:155
64
- #, fuzzy
65
- msgid "Registered"
66
- msgstr "Regstrieren"
67
-
68
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:170
69
- #, fuzzy
70
- msgid "User-status"
71
- msgstr "User-Listing"
72
-
73
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:244
74
- msgid "Do you want to bulk approve the selected users?"
75
- msgstr ""
76
-
77
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:252
78
- msgid "Do you want to bulk unapprove the selected users?"
79
- msgstr ""
80
-
81
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:260
82
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:263
83
- msgid "Sorry, but you don't have permission to do that!"
84
- msgstr ""
85
-
86
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:294
87
- msgid "Approved"
88
- msgstr "Genehmigt"
89
-
90
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:296
91
- msgid "Unapproved"
92
- msgstr "Nicht genehmigt"
93
-
94
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:466
95
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:8
96
- msgid "Admin Approval"
97
- msgstr ""
98
-
99
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:469
100
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:456
101
- #, fuzzy
102
- msgid "All Users"
103
- msgstr "Benutzer hinzufügen"
104
-
105
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
106
- msgid "delete this user from the _signups table?"
107
- msgstr ""
108
-
109
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
110
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:200
111
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
112
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
113
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
114
- msgid "Delete"
115
- msgstr "Löschen"
116
-
117
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
118
- msgid "confirm this email yourself?"
119
- msgstr ""
120
-
121
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
122
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:201
123
- msgid "Confirm Email"
124
- msgstr ""
125
-
126
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:228
127
- #, fuzzy
128
- msgid "couldn't be deleted."
129
- msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
130
-
131
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:239
132
- #, fuzzy
133
- msgid "All users have been successfully deleted."
134
- msgstr "Die Änderungen wurden gespeichert"
135
-
136
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:254
137
- #, fuzzy
138
- msgid "The selected users have been activated."
139
- msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
140
-
141
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:453
142
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:48
143
- msgid "Users with Unconfirmed Email Address"
144
- msgstr ""
145
-
146
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:83
147
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:320
148
- #, php-format
149
- msgid ""
150
- "The information size you were trying to submit was larger than %1$sb!<br/"
151
- ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
152
- "it was also larger than %2$sb no additional information is available.<br/"
153
- ">The user was NOT created!"
154
- msgstr ""
155
-
156
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:769
157
- msgid "You must be logged in to edit your profile."
158
- msgstr "Sie müssen angemeldet sein um Ihr Profil zu ändern"
159
-
160
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:777
161
- msgid "The avatar was successfully deleted."
162
- msgstr "Der Avatar wurde gelöscht"
163
-
164
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:782
165
- #, fuzzy, php-format
166
- msgid "The attachment \"%1$s\" was successfully deleted."
167
- msgstr "Der Avatar wurde gelöscht"
168
-
169
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:795
170
- msgid "The changes have been successfully saved."
171
- msgstr "Die Änderungen wurden gespeichert"
172
-
173
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
174
- #, fuzzy, php-format
175
- msgid ""
176
- "The email address you entered is already registered to a different user."
177
- "%1$sThe email address was %2$sNOT%3$s updated along with the rest of the "
178
- "information."
179
- msgstr "Die eingegebene E-Mail Adresse ist bereits registriert"
180
-
181
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:804
182
- #, php-format
183
- msgid ""
184
- "The email address you entered is invalid.%1$sThe email address was %2$sNOT"
185
- "%3$s updated along with the rest of the information."
186
- msgstr ""
187
-
188
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:809
189
- #, php-format
190
- msgid ""
191
- "The passwords you entered do not match.%1$sThe password was %2$sNOT%3$s "
192
- "updated along with the rest of the information."
193
- msgstr ""
194
-
195
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:814
196
- #, php-format
197
- msgid ""
198
- "You didn't complete both password fields.%1$sThe password was %2$sNOT%3$s "
199
- "updated along with the rest of the information."
200
- msgstr ""
201
-
202
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
203
- msgid ""
204
- "Your profile was NOT updated, since not all required fields were completed!"
205
- msgstr ""
206
-
207
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
208
- msgid "There was an error while trying to upload the following attachments:"
209
- msgstr "Es gab einen Fehler beim hochladen der folgenden Datei:"
210
-
211
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:836
212
- #, php-format
213
- msgid ""
214
- "Possible cause: the size was bigger than %1$sb. The listed attachements were "
215
- "%2$sNOT%3$s updated along with the rest of the information."
216
- msgstr ""
217
-
218
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
219
- msgid "There was an error while trying to upload your avatar picture."
220
- msgstr "Es gab einen Fehler beim Hochladen des Avartars."
221
-
222
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
223
- msgid "Possible cause: size/incorrect file-type."
224
- msgstr "Möglicher Grund: Größe oder falscher Dateityp."
225
-
226
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
227
- msgid "The avatar was"
228
- msgstr "Der Avatar ist"
229
-
230
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
231
- msgid "NOT"
232
- msgstr "NICHT"
233
-
234
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
235
- msgid "updated along with the rest of the information."
236
- msgstr "mit den restlichen Informationen aktualisiert."
237
-
238
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:851
239
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:646
240
- msgid "There was an error while trying to upload the following attachment(s)"
241
- msgstr "Es gab einen Fehler beim Hochladen der/des folgenden Anhang/e:"
242
-
243
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:858
244
- #, php-format
245
- msgid ""
246
- "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
247
- "file was %2$sNOT%3$s updated along with the rest of the information."
248
- msgstr ""
249
-
250
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
251
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1029
252
- msgid "Name"
253
- msgstr "Name"
254
-
255
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:880
256
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:153
257
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:80
258
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:537
259
- msgid "Email"
260
- msgstr "E-Mail"
261
-
262
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:881
263
- #, fuzzy
264
- msgid "The email cannot be changed."
265
- msgstr "Benutzernamen können nicht geändert werden"
266
-
267
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:890
268
- #, fuzzy
269
- msgid "The usernames cannot be changed."
270
- msgstr "Benutzernamen können nicht geändert werden"
271
-
272
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
273
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:920
274
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:940
275
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:960
276
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1012
277
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1034
278
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1052
279
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1070
280
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1088
281
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1109
282
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:68
283
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:174
284
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:243
285
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:311
286
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:378
287
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:446
288
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:501
289
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:551
290
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
291
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:727
292
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:774
293
- msgid "This field is marked as required by the administrator."
294
- msgstr "Dieses Feld wird benötigt."
295
-
296
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:903
297
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:923
298
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:943
299
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:963
300
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1015
301
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1036
302
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1054
303
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1072
304
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1090
305
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1111
306
- msgid ""
307
- "This field wasn't updated because you entered and empty string (It was "
308
- "marked as required by the administrator."
309
- msgstr ""
310
- "Das Feld wurde nicht aktualisiert da es leer ist, jedoch benötigt wird."
311
-
312
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
313
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1101
314
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
315
- msgid "First Name"
316
- msgstr "Vorname"
317
-
318
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:930
319
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1125
320
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
321
- msgid "Last Name"
322
- msgstr "Nachname"
323
-
324
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:950
325
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1149
326
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
327
- msgid "Nickname"
328
- msgstr "Nickname"
329
-
330
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:971
331
- msgid "Display name publicly as"
332
- msgstr "angezeigter Name..."
333
-
334
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1003
335
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
336
- msgid "Contact Info"
337
- msgstr "E-Mail"
338
-
339
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1024
340
- msgid "(required)"
341
- msgstr "erforderlich"
342
-
343
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1042
344
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1203
345
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
346
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:567
347
- msgid "Website"
348
- msgstr "Website"
349
-
350
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1060
351
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1227
352
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
353
- msgid "AIM"
354
- msgstr "AIM"
355
-
356
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1078
357
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
358
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
359
- msgid "Yahoo IM"
360
- msgstr "Yahoo IM"
361
-
362
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1096
363
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1275
364
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
365
- msgid "Jabber / Google Talk"
366
- msgstr "Jabber / Google Talk"
367
-
368
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1102
369
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1281
370
- msgid "About Yourself"
371
- msgstr "Über Sie"
372
-
373
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1117
374
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1302
375
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
376
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:573
377
- msgid "Biographical Info"
378
- msgstr "Sonstige Angaben"
379
-
380
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1127
381
- msgid "New Password"
382
- msgstr "Neues Passwort"
383
-
384
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1132
385
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
386
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
387
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1341
388
- msgid "Repeat Password"
389
- msgstr "Passwort wiederholen"
390
-
391
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1163
392
- msgid "Update"
393
- msgstr "Aktualisieren"
394
-
395
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
396
- #, fuzzy, php-format
397
- msgid "You are currently logged in as %1$s. %2$s"
398
- msgstr "Sie sind eingeloggt als"
399
-
400
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
401
- msgid "Log out of this account"
402
- msgstr "Aus diesem Profil ausloggen"
403
-
404
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
405
- msgid "Log out"
406
- msgstr "Ausloggen"
407
-
408
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
409
- #, fuzzy, php-format
410
- msgid "You have successfully logged in as %1$s"
411
- msgstr "Sie sind eingeloggt als"
412
-
413
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
414
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
415
- #, fuzzy, php-format
416
- msgid ""
417
- "You will soon be redirected automatically. If you see this page for more "
418
- "than 1 second, please click %1$s"
419
- msgstr ""
420
- "Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
421
- "Sekunden sehen klicken Sie bitte "
422
-
423
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
424
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
425
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
426
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
427
- msgid "here"
428
- msgstr "hier"
429
-
430
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
431
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
432
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
433
- msgid "ERROR:"
434
- msgstr "FEHLER"
435
-
436
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
437
- #, fuzzy
438
- msgid "The email field is empty"
439
- msgstr "Das Feld Benutzername ist leer"
440
-
441
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
442
- msgid "The username field is empty"
443
- msgstr "Das Feld Benutzername ist leer"
444
-
445
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:167
446
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
447
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
448
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1336
449
- msgid "Password"
450
- msgstr "Passwort"
451
-
452
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:175
453
- msgid "Log in"
454
- msgstr "Einloggen"
455
-
456
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:179
457
- msgid "Remember me"
458
- msgstr "Daten merken"
459
-
460
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:194
461
- msgid "Lost password?"
462
- msgstr "Passwort vergessen"
463
-
464
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
465
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
466
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
467
- msgid "ERROR"
468
- msgstr "FEHLER"
469
-
470
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
471
- msgid ""
472
- "Your account has to be confirmed by an administrator before you can use the "
473
- "\"Password Reset\" feature."
474
- msgstr ""
475
- "Ihr Account muss erst durch den Administrator freigegeben werden bevor Sie "
476
- "das Passwort ändern können."
477
-
478
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
479
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
480
- #, fuzzy, php-format
481
- msgid ""
482
- "A password reset email has been sent to %1$s.<br/>Following the link sent in "
483
- "the email address will reset the password."
484
- msgstr "Folgen Sie dem Link in der E-Mail um Ihr Passwort zurückzusetzen."
485
-
486
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
487
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
488
- #, php-format
489
- msgid ""
490
- "Someone requested that the password be reset for the following account: <b>"
491
- "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
492
- "happen.<br/>To reset your password, visit the following link:%2$s"
493
- msgstr ""
494
-
495
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
496
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
497
- #, fuzzy, php-format
498
- msgid "Password Reset Feature from \"%1$s\""
499
- msgstr "Passwort zurücksetzen von"
500
-
501
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
502
- #, fuzzy, php-format
503
- msgid "There was an error while trying to send the activation link to %1$s!"
504
- msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
505
-
506
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
507
- msgid "The email address entered wasn't found in the database!"
508
- msgstr ""
509
- "Die angegebene E-Mail-Adresse konnte nicht in unserer Datenbank gefunden "
510
- "werden!"
511
-
512
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
513
- msgid "Please check that you entered the correct email address."
514
- msgstr "Bitte überprüfen Sie die eingegebene E-Mail-Adresse."
515
-
516
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
517
- msgid "There was an error while trying to send the activation link to "
518
- msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
519
-
520
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
521
- msgid "The username entered wasn't found in the database!"
522
- msgstr ""
523
- "Der angegebene Benutzername konnte nicht in unserer Datenbank gefunden "
524
- "werden!"
525
-
526
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
527
- msgid "Please check that you entered the correct username."
528
- msgstr "Bitte überprüfen Sie den eingegebenen Benutzernamen."
529
-
530
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
531
- msgid "Your password has been successfully changed!"
532
- msgstr "Ihr Passwort wurde erfolgreich geändert!"
533
-
534
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
535
- #, fuzzy, php-format
536
- msgid "You have successfully reset your password to: %1$s"
537
- msgstr "Ihr neues Passwort lautet:"
538
-
539
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
540
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
541
- #, fuzzy, php-format
542
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
543
- msgstr "Passwort zurückgesetzt für:"
544
-
545
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
546
- #, fuzzy, php-format
547
- msgid ""
548
- "%1$s has requested a password change via the password reset feature.<br/>His/"
549
- "her new password is:%2$s"
550
- msgstr "hat eine Anfrage zum Zurücksetzen des Passwortes gesendet."
551
-
552
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
553
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
554
- msgid "The entered passwords don't match!"
555
- msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
556
-
557
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
558
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
559
- msgid "Reset Password"
560
- msgstr "Passwort zurücksetzen"
561
-
562
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
563
- msgid "Invalid key!"
564
- msgstr "Ungültige Eingabe"
565
-
566
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
567
- msgid "Please enter your username or email address."
568
- msgstr ""
569
- "Bitte geben Sie Ihren Benutzernamen oder Ihre E-Mail-Adresse ein mit der Sie "
570
- "sich registriert haben."
571
-
572
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
573
- msgid "You will receive a link to create a new password via email."
574
- msgstr ""
575
- "Sie erhalten eine E-Mail mit einem Link zum Zurücksetzen des Passwortes."
576
-
577
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
578
- msgid "Username or E-mail"
579
- msgstr "Benutzername oder E-Mail"
580
-
581
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
582
- msgid "Get New Password"
583
- msgstr "Neues Passwort anfordern"
584
-
585
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:217
586
- msgid "Invalid activation key!"
587
- msgstr "Falscher Aktivierungsschlüssel"
588
-
589
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:221
590
- msgid "The user is already active!"
591
- msgstr "Der Benutzer ist bereits aktiviert."
592
-
593
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:239
594
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:381
595
- msgid "Could not create user!"
596
- msgstr "Benutzer kann nicht erstellt werden."
597
-
598
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:242
599
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:384
600
- msgid "That username is already activated!"
601
- msgstr "Der Benutzername ist bereits aktiviert."
602
-
603
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:268
604
- msgid "The user was successfully activated."
605
- msgstr "Der Benutzer wurde erfolgreich aktiviert"
606
-
607
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:270
608
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:410
609
- msgid "There was an error while trying to activate the user."
610
- msgstr "Es gab einen Fehler bei der Aktivierung des Benutzers."
611
-
612
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:630
613
- msgid "A username is required for registration."
614
- msgstr "Ein Benutzername ist zur Registrierung notwendig."
615
-
616
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:634
617
- msgid "Sorry, that username already exists!"
618
- msgstr "Der Benutzername ist bereits registriert."
619
-
620
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:636
621
- msgid "You must enter a valid email address."
622
- msgstr "Sie müssen eine gültige E-Mail-Adresse eingeben."
623
-
624
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:638
625
- msgid "Sorry, that email address is already used!"
626
- msgstr "Diese E-Mail-Adresse ist bereits registriert."
627
-
628
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:641
629
- msgid "You didn't complete one of the password-fields!"
630
- msgstr "Eines der Passwortfelder wurde nicht ausgefüllt."
631
-
632
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
633
- msgid "Only files with the following extension(s) can be uploaded:"
634
- msgstr "Nur Dateien mit den folgenden Anhängen sind verwendbar:"
635
-
636
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
637
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
638
- msgid "The account was NOT created!"
639
- msgstr "Der Benutzer wurde nicht erstellt."
640
-
641
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:657
642
- msgid "You must agree to the terms and conditions before registering!"
643
- msgstr "Sie müssen den AGB zustimmen!"
644
-
645
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
646
- msgid "(Several required fields were left uncompleted)"
647
- msgstr "Einige zur Registrierung notwendige Felder wurde nicht ausgefüllt."
648
-
649
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
650
- msgid "This username is already reserved to be used soon."
651
- msgstr "Dieser Benutzername ist reserviert."
652
-
653
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
654
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
655
- msgid "Please try a different one!"
656
- msgstr "Bitte wählen Sie einen anderen."
657
-
658
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
659
- msgid "This email address is already reserved to be used soon."
660
- msgstr "Dieser E-Mail-Adresse ist reserviert."
661
-
662
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
663
- msgid "You are logged in as"
664
- msgstr "Sie sind eingeloggt als "
665
-
666
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
667
- msgid "You don't need another account."
668
- msgstr "Sie benötigen keinen weiteren Account."
669
-
670
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
671
- msgid "Log out of this account."
672
- msgstr "Aus diesem Profil ausloggen."
673
-
674
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
675
- msgid "Logout"
676
- msgstr "Ausloggen"
677
-
678
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:919
679
- #, fuzzy, php-format
680
- msgid ""
681
- "An email has been sent to %1$s with information on how to activate his/her "
682
- "account."
683
- msgstr ""
684
- "Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie "
685
- "gesendet"
686
-
687
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:923
688
- #, fuzzy, php-format
689
- msgid "A user account has been created for %1$s."
690
- msgstr "Ein Benutzer wurde erstellt für"
691
-
692
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
693
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
694
- #, fuzzy, php-format
695
- msgid ""
696
- "You will soon be redirected automatically. If you see this page for more "
697
- "than 3 seconds, please click %1$s.%2$s"
698
- msgstr ""
699
- "Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
700
- "Sekunden sehen klicken Sie bitte "
701
-
702
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:949
703
- #, fuzzy
704
- msgid ""
705
- "An email has been sent to you with information on how to activate your "
706
- "account."
707
- msgstr ""
708
- "Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie "
709
- "gesendet"
710
-
711
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:953
712
- #, fuzzy, php-format
713
- msgid "Thank you for registering %1$s."
714
- msgstr "Vielen Dank für die Registrierung."
715
-
716
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:980
717
- msgid "An error occured while trying to send the notification email."
718
- msgstr ""
719
- "Ein Fehler ist aufgetreten beim Versuch, die Benachrichtigungs-Email zu "
720
- "senden."
721
-
722
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:985
723
- msgid "An email containing activation instructions was successfully sent."
724
- msgstr ""
725
- "Eine E-Mail mit Anweisungen zur Aktivierung wurde erfolgreich gesendet."
726
-
727
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:990
728
- msgid "An email containing the username and password was successfully sent."
729
- msgstr ""
730
- "Eine E-Mail mit dem Benutzernamen und Passwort wurde erfolgreich gesendet."
731
-
732
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1006
733
- msgid "Users can register themselves or you can manually create users here."
734
- msgstr ""
735
- "Benutzer können sich selbstständig registrieren oder manuell angelegt werden."
736
-
737
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1011
738
- msgid ""
739
- "Users cannot currently register themselves, but you can manually create "
740
- "users here."
741
- msgstr ""
742
- "Benutzer können sich nicht selbstständig registrieren jedoch manuell "
743
- "angelegt werden."
744
-
745
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1016
746
- msgid "Only an administrator can add new users."
747
- msgstr "Nur Administratoren können neue Benutze anlegen."
748
-
749
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1039
750
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1090
751
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1114
752
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1138
753
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
754
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1216
755
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1240
756
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
757
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1291
758
- msgid ""
759
- "This field must be filled out before registering (It was marked as required "
760
- "by the administrator)"
761
- msgstr "Dieses Feld wird zur Registrierung benötigt."
762
-
763
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1050
764
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1087
765
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1111
766
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1135
767
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1164
768
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1189
769
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1213
770
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
771
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1261
772
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1288
773
- msgid "This field is marked as required by the administrator"
774
- msgstr "Dieses Feld wird zur Registrierung benötigt."
775
-
776
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
777
- msgid "Anti-Spam"
778
- msgstr "Anti-Spam"
779
-
780
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1385
781
- msgid "Send these credentials via email."
782
- msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
783
-
784
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
785
- msgid "Add User"
786
- msgstr "Benutzer hinzufügen"
787
-
788
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
789
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:41
790
- msgid "Register"
791
- msgstr "Regstrieren"
792
-
793
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
794
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
795
- msgid "Show/Hide the Admin Bar on Front End"
796
- msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
797
-
798
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
799
- msgid "User-group"
800
- msgstr "Benutzergruppe"
801
-
802
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
803
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
804
- msgid "Visibility"
805
- msgstr "Sichtbarkeit"
806
-
807
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
808
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
809
- msgid "Default"
810
- msgstr "Standart"
811
-
812
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
813
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
814
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
815
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
816
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
817
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
818
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
819
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
820
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
821
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
822
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
823
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
824
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
825
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:33
826
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:415
827
- msgid "Show"
828
- msgstr "Anzeigen"
829
-
830
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
831
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
832
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
833
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
834
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
835
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
836
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
837
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
838
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
839
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
840
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
841
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
842
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
843
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:34
844
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:416
845
- msgid "Hide"
846
- msgstr "Verbergen"
847
-
848
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
849
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
850
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:89
851
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:59
852
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
853
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:377
854
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:650
855
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
856
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
857
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
858
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
859
- msgid "Save Changes"
860
- msgstr "Einstellungen speichern"
861
-
862
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
863
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
864
- msgid "Profile Builder"
865
- msgstr "Profile Builder"
866
-
867
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
868
- msgid "Welcome to Profile Builder!"
869
- msgstr "Willkommen im Profile Builder"
870
-
871
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
872
- msgid ""
873
- " lets you customize your website by adding a front-end menu for all your "
874
- "users, giving them a more flexible way to modify their user-information or "
875
- "to register new users."
876
- msgstr ""
877
- " erlaubt es Ihnen, Ihre Website durch Hinzufügen eines Front-End-Menü für "
878
- "alle Benutzer, um Ihnen eine flexible Möglichkeit zu geben, ihre Benutzer-"
879
- "Informationen zu ändern oder neue Benutzer zu registrieren."
880
-
881
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
882
- msgid ""
883
- "Also, grants users with administrator rights to customize basic fields or to "
884
- "add new ones."
885
- msgstr ""
886
- "Ebenso gewährt es Benutzern mit Administratorrechten grundlegende Bereichen "
887
- "anzupassen oder neue hinzuzufügen."
888
-
889
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
890
- msgid ""
891
- "To achieve this, just create a new page, and give it an intuitive name(e.g. "
892
- "Edit Profile)."
893
- msgstr ""
894
- "Um dies zu erreichen, erstellen Sie einfach eine neue Seite, und geben Sie "
895
- "dieser einen intuitiven Namen (z.B. Profil bearbeiten)"
896
-
897
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
898
- msgid ""
899
- "Now all you need to do is add the following shortcode(for the previous "
900
- "example): "
901
- msgstr ""
902
- "Alles was Sie jetzt tun müssen, ist den folgenden Shortcode (für das "
903
- "vorherige Beispiel): "
904
-
905
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
906
- msgid "Publish your page and you are ready to go!"
907
- msgstr "Veröffentlichen Sie Ihre Seite und los geht´s."
908
-
909
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
910
- msgid "You can use the following shortcodes:"
911
- msgstr "Sie können die folgenden Shortcodes nutzen:"
912
-
913
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
914
- msgid "for a log-in form."
915
- msgstr "Log-In-Formular"
916
-
917
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
918
- msgid "to add a registration form."
919
- msgstr "Registrierungs-Formular"
920
-
921
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
922
- msgid ""
923
- "to grant users a front-end acces to their personal information(requires user "
924
- "to be logged in)."
925
- msgstr ""
926
- "um Benutzern einen Front-End-Zugang zu ihren persönlichen Daten zu gewähren "
927
- "(erfordert dass der Benutzer angemeldet ist)."
928
-
929
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
930
- msgid "to add a password recovery form."
931
- msgstr "um ein Passwort-vergessen-Formular hinzuzufügen"
932
-
933
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
934
- #, fuzzy
935
- msgid ""
936
- "With the <strong>Pro</strong> version, users with administrator rights have "
937
- "access to the following features:"
938
- msgstr ""
939
- "Benutzer mit Administratorrechten haben Zugriff auf die folgenden Funktionen:"
940
-
941
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
942
- msgid ""
943
- "add a custom stylesheet/inherit values from the current theme or use one of "
944
- "the following built into this plugin: default, white or black."
945
- msgstr ""
946
- "Hinzufügen eines Standart Stylesheet oder Nutzung des Theme-Stylesheetsder "
947
- "dargestellten. Black/White/default."
948
-
949
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
950
- msgid ""
951
- "select whether to display or not the admin bar in the front end for a "
952
- "specific user-group registered to the site."
953
- msgstr "Anzeigen der WP Admin Bar verhindern/nicht verhindern."
954
-
955
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
956
- msgid ""
957
- "select which information-field can users see/modify. The hidden fields' "
958
- "values remain unmodified."
959
- msgstr "auswählen welche Felder angezeigt werden sollen."
960
-
961
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
962
- msgid ""
963
- "add custom fields to the existing ones, with several types to choose from: "
964
- "heading, text, textarea, select, checkbox, radio, and/or upload."
965
- msgstr "hinzufügen von benutzerdefinierten Feldern."
966
-
967
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
968
- msgid "add an avatar field."
969
- msgstr "hinzufügen eines Avartar-Feldes."
970
-
971
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
972
- msgid "create custom redirects."
973
- msgstr "eigene Umleitungen erstellen"
974
-
975
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
976
- msgid "front-end userlisting using the"
977
- msgstr "ein User-Listing Frontend erstellen -"
978
-
979
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
980
- msgid "shortcode."
981
- msgstr "Shortcode"
982
-
983
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
984
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
985
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:65
986
- msgid "NOTE:"
987
- msgstr "Hinweis"
988
-
989
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
990
- msgid "this plugin only adds/removes fields in the front-end."
991
- msgstr "dieses Plugin entfernt oder fügt die Felder nur im Frontend hinzu."
992
-
993
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
994
- msgid ""
995
- "The default information-fields will still be visible(and thus modifiable)"
996
- msgstr "Die Standardinformationsfelder sind weiterhin"
997
-
998
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
999
- msgid ""
1000
- "from the back-end, while custom fields will only be visible in the front-end."
1001
- msgstr ""
1002
- "vom Backende aus sichtbar, während Benutzerdefinierte Felder nur über das "
1003
- "Frontend sichtbar sind."
1004
-
1005
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
1006
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
1007
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
1008
- msgid "Default Profile Fields"
1009
- msgstr "Standart Profil Felder"
1010
-
1011
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
1012
- msgid "Input Field Name"
1013
- msgstr "Eingabe Feld Name"
1014
-
1015
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
1016
- msgid "Required"
1017
- msgstr "Benötigt"
1018
-
1019
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
1020
- msgid "Name:"
1021
- msgstr "Name"
1022
-
1023
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
1024
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
1025
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
1026
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
1027
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
1028
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
1029
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
1030
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
1031
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
1032
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
1033
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
1034
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
1035
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
1036
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
1037
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
1038
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
1039
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
1040
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
1041
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
1042
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
1043
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
1044
- msgid "Yes"
1045
- msgstr "Ja"
1046
-
1047
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
1048
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
1049
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
1050
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
1051
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
1052
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
1053
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
1054
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
1055
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
1056
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
1057
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
1058
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
1059
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
1060
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
1061
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
1062
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
1063
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
1064
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
1065
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
1066
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
1067
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
1068
- msgid "No"
1069
- msgstr "Nein"
1070
-
1071
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1072
- msgid "Display name publicly as..."
1073
- msgstr "angezeigter Name..."
1074
-
1075
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1076
- msgid "Contact Info:"
1077
- msgstr "Kontakt"
1078
-
1079
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1080
- msgid "About Yourself:"
1081
- msgstr "Passwort"
1082
-
1083
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
1084
- #, fuzzy
1085
- msgid "(New) Password"
1086
- msgstr "Neues Passwort"
1087
-
1088
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:60
1089
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:24
1090
- msgid "Do you want to"
1091
- msgstr "Wollen Sie"
1092
-
1093
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:112
1094
- #, fuzzy
1095
- msgid "The selected user couldn't be deleted."
1096
- msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
1097
-
1098
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:129
1099
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:84
1100
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:132
1101
- msgid "You either don't have permission for that action or there was an error!"
1102
- msgstr ""
1103
-
1104
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:342
1105
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:14
1106
- #, php-format
1107
- msgid "[%1$s] Activate %2$s"
1108
- msgstr "[%1$s] Aktivieren %2$s"
1109
-
1110
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:343
1111
- #, fuzzy, php-format
1112
- msgid ""
1113
- "To activate your user, please click the following link:\n"
1114
- "\n"
1115
- "%s%s%s\n"
1116
- "\n"
1117
- "After you activate, you will receive *another email* with your login.\n"
1118
- "\n"
1119
- msgstr ""
1120
- "Um Ihr Profil zu aktivieren klicken Sie bitte auf den folgenden Link:\n"
1121
- "\n"
1122
- "%s\n"
1123
- "\n"
1124
- "Nach der Aktivierung erhalten Sie eine E-Mail mit Ihren Benutzerdaten.\n"
1125
-
1126
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:443
1127
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:19
1128
- #, php-format
1129
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1130
- msgstr ""
1131
-
1132
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:445
1133
- msgid ""
1134
- "The \"Admin Approval\" feature was activated at the time of registration, so "
1135
- "please remember that you need to approve this user before he/she can log in!"
1136
- msgstr ""
1137
- "Die \"Zustimmung des Administrators\" ist zur Aktivierung des Benutzers "
1138
- "erforderlich."
1139
-
1140
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:448
1141
- msgid "A new subscriber has (been) registered!"
1142
- msgstr "Ein neuer Benutzer hat sich angemeldet!"
1143
-
1144
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:462
1145
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:8
1146
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:10
1147
- msgid "A new account has been created for you."
1148
- msgstr "Ein neues Benutzerprofil wurde für Sie erstellt."
1149
-
1150
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:465
1151
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:9
1152
- #, php-format
1153
- msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
1154
- msgstr ""
1155
-
1156
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:467
1157
- msgid ""
1158
- "Before you can access your account, an administrator needs to approve it. "
1159
- "You will be notified via email."
1160
- msgstr ""
1161
- "Bevor Sie auf Ihr Benutzerprofil zugreifen können ist die Zustimmung eines "
1162
- "Administrators nötig. Sie werden per E-Mail über die Zustimmung informiert."
1163
-
1164
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1165
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1166
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1167
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
1168
- msgid "General Settings"
1169
- msgstr "Allgemeine Einstellungen"
1170
-
1171
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
1172
- msgid "Stylesheet Used on the Front-End:"
1173
- msgstr "Genutztes Stylesheet im Frontend"
1174
-
1175
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1176
- msgid "White"
1177
- msgstr "Weiss"
1178
-
1179
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
1180
- msgid "Black"
1181
- msgstr "Schwarz"
1182
-
1183
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
1184
- msgid "None"
1185
- msgstr "Keins"
1186
-
1187
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
1188
- msgid "\"Email Confirmation\" Feature Activated:"
1189
- msgstr "\"E-Mail Bestätigung\" aktiviert:"
1190
-
1191
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
1192
- msgid "\"Admin Approval\" Feature Activated:"
1193
- msgstr "\"Admin Bestätigung\" aktiviert:"
1194
-
1195
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
1196
- msgid ""
1197
- "The black stylesheet is intended for sites/blogs with a dark background."
1198
- msgstr "Das schwarze Stylesheet wird bei dunklen Themes empfohlen."
1199
-
1200
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:51
1201
- msgid ""
1202
- "The white stylesheet is intended for a sites/blogs with a light background "
1203
- "color."
1204
- msgstr "Das weisse Stylesheet wird bei hellen Themes empfohlen."
1205
-
1206
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:52
1207
- msgid ""
1208
- "On single-site installations the \"Email Confirmation\" feature only works "
1209
- "in the front-end, so make sure you also use the \"Custom Redirects\" feature."
1210
- msgstr ""
1211
- "Auf Einzelseiteninstallationen funktioniert die E-Mail-Bestätigung nur im "
1212
- "Frontend. Stellen Sie also sicher, dass die \"Weiterleitungen\" aktiviert "
1213
- "sind. "
1214
-
1215
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:53
1216
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:67
1217
- msgid ""
1218
- "The \"Email Confirmation\" feature is active (by default) on WPMU "
1219
- "installations."
1220
- msgstr ""
1221
-
1222
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:55
1223
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:69
1224
- #, php-format
1225
- msgid "You can find a list of unconfirmed email addresses %1$shere%2$s."
1226
- msgstr ""
1227
-
1228
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:66
1229
- #, fuzzy
1230
- msgid ""
1231
- "On single-site installations the \"Email Confirmation\" feature only works "
1232
- "in the front-end."
1233
- msgstr ""
1234
- "Auf Einzelseiteninstallationen funktioniert die E-Mail-Bestätigung nur im "
1235
- "Frontend. Stellen Sie also sicher, dass die \"Weiterleitungen\" aktiviert "
1236
- "sind. "
1237
-
1238
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:77
1239
- msgid "Allow Users to Log in With:"
1240
- msgstr ""
1241
-
1242
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1243
- #, php-format
1244
- msgid ""
1245
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1246
- "Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
1247
- "access to automatic updates and support. Need a license key? %3$sPurchase "
1248
- "one now%4$s"
1249
- msgstr ""
1250
-
1251
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1252
- #, php-format
1253
- msgid ""
1254
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1255
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1256
- "priority support. %3$sPurchase one now%4$s"
1257
- msgstr ""
1258
-
1259
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1260
- msgid "Basic Information"
1261
- msgstr "Allgemeine Informationen"
1262
-
1263
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1264
- msgid "Show/Hide the Admin Bar on Front-end"
1265
- msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
1266
-
1267
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1268
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1269
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1270
- msgid "Extra Profile Fields"
1271
- msgstr "Extra Profil Felder"
1272
-
1273
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1274
- msgid "Addons"
1275
- msgstr "Add-Ons"
1276
-
1277
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1278
- msgid "Register Your Version"
1279
- msgstr "Registrieren Sie Ihre Version"
1280
-
1281
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1282
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
1283
- msgid "Activate/Deactivate Addons"
1284
- msgstr "Aktivieren/Deaktivieren von Add-Ons"
1285
-
1286
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
1287
- msgid "Name/Description"
1288
- msgstr "Name/Beschreibung"
1289
-
1290
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
1291
- msgid "Status"
1292
- msgstr "Status"
1293
-
1294
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
1295
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
1296
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:32
1297
- msgid "User-Listing"
1298
- msgstr "User-Listing"
1299
-
1300
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
1301
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1302
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1303
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:43
1304
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:50
1305
- msgid "Active"
1306
- msgstr "Aktiv"
1307
-
1308
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1309
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1310
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1311
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:44
1312
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:51
1313
- msgid "Inactive"
1314
- msgstr "Inaktiv"
1315
-
1316
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1317
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
1318
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
1319
- msgid "Custom Redirects"
1320
- msgstr "Weiterleitungen"
1321
-
1322
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
1323
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
1324
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
1325
- msgid "reCAPTCHA"
1326
- msgstr "reCAPTCHA"
1327
-
1328
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:41
1329
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:42
1330
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:43
1331
- msgid "User Email Customizer"
1332
- msgstr ""
1333
-
1334
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:48
1335
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:424
1336
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:425
1337
- msgid "Admin Email Customizer"
1338
- msgstr ""
1339
-
1340
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
1341
- msgid "Redirects on custom page requests:"
1342
- msgstr "Weiterleitung auf benutzerdefinierte Seiten:"
1343
-
1344
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
1345
- msgid "Action"
1346
- msgstr "Aktion"
1347
-
1348
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
1349
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
1350
- msgid "Redirect"
1351
- msgstr "Weiterleiten"
1352
-
1353
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
1354
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
1355
- msgid "URL"
1356
- msgstr "URL"
1357
-
1358
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
1359
- msgid "After Registration:"
1360
- msgstr "Nach Registrierung"
1361
-
1362
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
1363
- #, fuzzy
1364
- msgid "After Login:"
1365
- msgstr "Nach Login"
1366
-
1367
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
1368
- #, fuzzy
1369
- msgid "Recover Password (*)"
1370
- msgstr "Passowrt wiederherstellen"
1371
-
1372
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
1373
- msgid ""
1374
- "When activated this feature will redirect the user on both the default "
1375
- "Wordpress password recovery page and the \"Lost password?\" link used by "
1376
- "Profile Builder on the front-end login page."
1377
- msgstr ""
1378
- "Wenn dieses Feature aktiviert ist, wird der Benutzer bei den Seiten /"
1379
- "\"Wordpress Passwort wiederherstellen/\"und /\"Passwort vergessen/\" auf die "
1380
- "im Front-End eingestellte Seite weitergeleitet."
1381
-
1382
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
1383
- msgid "Redirects on default WordPress page requests:"
1384
- msgstr "Weiterleitung der Standart-Wordpress-Seite"
1385
-
1386
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
1387
- msgid "Requested WP Page"
1388
- msgstr "Angefragte WP Seite"
1389
-
1390
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
1391
- #, fuzzy
1392
- msgid "Default WP Login Page (*)"
1393
- msgstr "Standart WP Login Seite(*)"
1394
-
1395
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
1396
- #, fuzzy
1397
- msgid "Default WP Logout Page (**)"
1398
- msgstr "Standart WP Logout Seite (**)"
1399
-
1400
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
1401
- msgid "Default WP Register Page"
1402
- msgstr "Standart WP Registrierung"
1403
-
1404
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
1405
- msgid "Default WP Dashboard (***)"
1406
- msgstr "Standart WP Dashboard (***)"
1407
-
1408
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
1409
- msgid "Before login. Works best if used in conjuction with \"After logout\"."
1410
- msgstr ""
1411
- "Vor dem Login. Arbeitet am besten wenn es mit dem \"Nach dem Logout\" "
1412
- "zusammen eingestellt ist."
1413
-
1414
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
1415
- msgid "After logout. Works best if used in conjuction with \"Before login\"."
1416
- msgstr ""
1417
- "Nach dem Logout. Arbeitet am besten wenn es mit dem \"Vor dem Login\" "
1418
- "zusammen eingestellt ist."
1419
-
1420
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
1421
- msgid ""
1422
- "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1423
- "manage options)."
1424
- msgstr "Leitet jeden Berechtigungstufe weiter, ausser dem Admin."
1425
-
1426
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:11
1427
- #, fuzzy, php-format
1428
- msgid ""
1429
- "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s<br/"
1430
- ">Before you can access your account, an administrator needs to approve it. "
1431
- "You will be notified via email."
1432
- msgstr ""
1433
- "Bevor Sie auf Ihr Benutzerprofil zugreifen können ist die Zustimmung eines "
1434
- "Administrators nötig. Sie werden per E-Mail über die Zustimmung informiert."
1435
-
1436
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:12
1437
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:145
1438
- #, fuzzy, php-format
1439
- msgid "Your account on %1$s has been approved!"
1440
- msgstr "wurde genehmigt"
1441
-
1442
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:13
1443
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:146
1444
- #, fuzzy, php-format
1445
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1446
- msgstr "Ein Administrator hat Ihr Profil soeben genehmigt."
1447
-
1448
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:15
1449
- #, fuzzy, php-format
1450
- msgid ""
1451
- "To activate your user, please click the following link:\n"
1452
- "\n"
1453
- "%s\n"
1454
- "\n"
1455
- "After you activate, you will receive *another email* with your login.\n"
1456
- "\n"
1457
- msgstr ""
1458
- "Um Ihr Profil zu aktivieren klicken Sie bitte auf den folgenden Link:\n"
1459
- "\n"
1460
- "%s\n"
1461
- "\n"
1462
- "Nach der Aktivierung erhalten Sie eine E-Mail mit Ihren Benutzerdaten.\n"
1463
-
1464
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:16
1465
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:152
1466
- #, fuzzy, php-format
1467
- msgid "Your account on %1$s has been unapproved!"
1468
- msgstr "wurde nicht genehmigt."
1469
-
1470
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:17
1471
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:153
1472
- #, fuzzy, php-format
1473
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1474
- msgstr "Ein Administrator hat Ihr Profil nicht genehmigt auf"
1475
-
1476
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:18
1477
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:20
1478
- #, fuzzy, php-format
1479
- msgid "[%1$s] A new subscriber has (been) registered!"
1480
- msgstr "Ein neuer Benutzer hat sich angemeldet!"
1481
-
1482
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:21
1483
- #, fuzzy, php-format
1484
- msgid ""
1485
- "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/><br/>The "
1486
- "\"Admin Approval\" feature was activated at the time of registration, so "
1487
- "please remember that you need to approve this user before he/she can log in!"
1488
- msgstr ""
1489
- "Die \"Zustimmung des Administrators\" ist zur Aktivierung des Benutzers "
1490
- "erforderlich."
1491
-
1492
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:46
1493
- msgid "Here you can customize all the emails sent the users."
1494
- msgstr ""
1495
-
1496
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:49
1497
- msgid ""
1498
- "Common Settings: <span style=\"color:gray; font-size:11px;\">These settings "
1499
- "are also replicated in the \"Admin Email Customizer\" settings-page upon "
1500
- "save.</span>"
1501
- msgstr ""
1502
-
1503
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:52
1504
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:434
1505
- msgid "From (name): "
1506
- msgstr ""
1507
-
1508
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:60
1509
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:76
1510
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:119
1511
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:175
1512
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:231
1513
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:291
1514
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:336
1515
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:442
1516
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:458
1517
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:502
1518
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:555
1519
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:609
1520
- msgid "Available Merge Tags"
1521
- msgstr ""
1522
-
1523
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:68
1524
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:450
1525
- msgid "From (reply-to email): "
1526
- msgstr ""
1527
-
1528
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:92
1529
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:475
1530
- #, fuzzy
1531
- msgid "Default Registration"
1532
- msgstr "Nach Registrierung"
1533
-
1534
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:100
1535
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:156
1536
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:212
1537
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:272
1538
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:317
1539
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:483
1540
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:536
1541
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:590
1542
- msgid "Email Subject: "
1543
- msgstr ""
1544
-
1545
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:108
1546
- msgid ""
1547
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1548
- "<span style=\"color:red\">user</span> upon registration.</span>"
1549
- msgstr ""
1550
-
1551
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:147
1552
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:528
1553
- msgid "Registration with Email Confirmation"
1554
- msgstr ""
1555
-
1556
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:164
1557
- msgid ""
1558
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1559
- "<span style=\"color:red\">user</span> upon registration with email "
1560
- "confirmation.</span>"
1561
- msgstr ""
1562
-
1563
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:203
1564
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:582
1565
- msgid "Registration with Admin Approval"
1566
- msgstr ""
1567
-
1568
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:220
1569
- msgid ""
1570
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1571
- "<span style=\"color:red\">user</span> upon registration with admin approval."
1572
- "</span>"
1573
- msgstr ""
1574
-
1575
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:259
1576
- msgid "Admin Approval Notifications (on status change)"
1577
- msgstr ""
1578
-
1579
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:267
1580
- msgid "Message Sent to the User Upon Approval"
1581
- msgstr ""
1582
-
1583
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:280
1584
- msgid ""
1585
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1586
- "<span style=\"color:red\">user</span> upon approval.</span>"
1587
- msgstr ""
1588
-
1589
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:312
1590
- msgid "Message Sent to the User Upon Unapproval"
1591
- msgstr ""
1592
-
1593
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:325
1594
- msgid ""
1595
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1596
- "<span style=\"color:red\">user</span> upon unapproval.</span>"
1597
- msgstr ""
1598
-
1599
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:428
1600
- msgid "Here you can customize all the emails sent the administrator."
1601
- msgstr ""
1602
-
1603
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:431
1604
- msgid ""
1605
- "Common Settings: <span style=\"color:gray; font-size:11px;\">These settings "
1606
- "are also replicated in the \"User Email Customizer\" settings-page upon save."
1607
- "</span>"
1608
- msgstr ""
1609
-
1610
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:491
1611
- msgid ""
1612
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1613
- "<span style=\"color:red\">administrator</span> upon user registration.</span>"
1614
- msgstr ""
1615
-
1616
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:544
1617
- msgid ""
1618
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1619
- "<span style=\"color:red\">administrator</span> upon user registration with "
1620
- "email confirmation.</span>"
1621
- msgstr ""
1622
-
1623
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:598
1624
- msgid ""
1625
- "Email Content: <span style=\"color:gray\">This is the email sent to the "
1626
- "<span style=\"color:red\">administrator</span> upon user registration with "
1627
- "admin approval.</span>"
1628
- msgstr ""
1629
-
1630
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:752
1631
- #, fuzzy
1632
- msgid "approved"
1633
- msgstr "genehmigt"
1634
-
1635
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:761
1636
- #, fuzzy
1637
- msgid "unapproved"
1638
- msgstr "nicht genehmigt"
1639
-
1640
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
1641
- msgid "Could not open socket!"
1642
- msgstr "Sockel kann nicht geöffnet werden"
1643
-
1644
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
1645
- msgid "To use reCAPTCHA you must get an API key from"
1646
- msgstr "Um den reCAPTCHA zu nutzen benötigen Sie einen Schlüssel von"
1647
-
1648
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
1649
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1650
- msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP von reCAPTCHA nutzen."
1651
-
1652
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
1653
- msgid ""
1654
- "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1655
- msgstr ""
1656
- "Um reCAPTCHA Mailhide zu nutzen, muss das \"MCRYPT PHP Modul\" installiert "
1657
- "sein."
1658
-
1659
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
1660
- msgid ""
1661
- "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
1662
- "you can do so at"
1663
- msgstr ""
1664
- "Um reCAPTCHA Mailhide nutzen zu können, müssen Sie sich für einen "
1665
- "öffentlichen und privaten Schlüssel registrieren. Hier:"
1666
-
1667
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
1668
- msgid ""
1669
- "Adds a reCAPTCHA form on the registration page created in the front-end "
1670
- "(only)."
1671
- msgstr "Fügt einen reCAPTCHA auf der Registrierungsseite hinzu"
1672
-
1673
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
1674
- msgid "For this you must get a public and private key from Google:"
1675
- msgstr ""
1676
- "Hierfür benötigen Sie einen privaten und öffentlichen Schlüssel von Google."
1677
-
1678
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
1679
- msgid "Key"
1680
- msgstr "Schlüssel"
1681
-
1682
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
1683
- msgid "Code"
1684
- msgstr "Code"
1685
-
1686
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
1687
- msgid "Public Key:"
1688
- msgstr "Öffentlicher Schlüssel"
1689
-
1690
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
1691
- msgid "Private Key:"
1692
- msgstr "Privater Schlüssel"
1693
-
1694
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
1695
- msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1696
- msgstr ""
1697
- "Das reCaptcha wurde nicht erfolgreich eingegeben. Bitte gehen Sie zurück und "
1698
- "probieren Sie es erneut."
1699
-
1700
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
1701
- msgid ""
1702
- "To create a page containing the users registered to this current site/blog, "
1703
- "insert the following shortcode in a (blank) page: "
1704
- msgstr ""
1705
- "Um eine Seite mit dem User-Listing zu erstellen, fügend Sie den folgenden "
1706
- "Code in aine leere Seite ein."
1707
-
1708
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
1709
- msgid ""
1710
- "For instance, to create a userlisting shortcode listing only the editors and "
1711
- "authors, visible to only the users currently logged in, you would use:"
1712
- msgstr ""
1713
- "Wenn Sie das User-Listing nur eingeloggten Benutzern anzeigen wollen, fügen "
1714
- "Sie bitte folgenden Code ein:"
1715
-
1716
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
1717
- msgid ""
1718
- "You can also create a userlisting page that displays users having a certain "
1719
- "meta-value within a certain (extra) meta-field like so:"
1720
- msgstr ""
1721
-
1722
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
1723
- msgid ""
1724
- "Remember though, that the field-value combination must exist in the database."
1725
- msgstr ""
1726
-
1727
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:41
1728
- msgid "These settings are applied to the front-end userlisting."
1729
- msgstr "Diese Einstellungen werden im Front End des User-Listings angezeigt."
1730
-
1731
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:47
1732
- msgid "Number of Users/Page: "
1733
- msgstr "Anzahl Benutzer/Seite"
1734
-
1735
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:64
1736
- #, fuzzy
1737
- msgid "Default Sorting Criteria: "
1738
- msgstr "Standart Sortierfolge"
1739
-
1740
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:93
1741
- msgid "Default Sorting Order: "
1742
- msgstr "Standart Sortierfolge"
1743
-
1744
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:104
1745
- msgid "\"All-Userlisting\" Template"
1746
- msgstr "\"All-Userlisting\" Template"
1747
-
1748
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:106
1749
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:250
1750
- msgid ""
1751
- "With the userlisting templates you can customize the look, feel and "
1752
- "information listed by the shortcode."
1753
- msgstr ""
1754
- "Mit dem User-Listing Template können Sie das Aussehen und die Informationen "
1755
- "per Shortcode anzeigen lassen."
1756
-
1757
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:107
1758
- msgid ""
1759
- "The \"All Users Listing\" template is used to list all users. It's displayed "
1760
- "on each page access where the shortcode is present."
1761
- msgstr ""
1762
- "Das \"All User Listing\"-Template zeigt die Liste aller Benutzer an. Es wird "
1763
- "überall angezeigt wo der Shortcode implementiert ist"
1764
-
1765
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:111
1766
- msgid "Avatar size: "
1767
- msgstr "Avatar Größe"
1768
-
1769
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:127
1770
- msgid "Insert \"Sort By\" Field:"
1771
- msgstr "\"Sortieren nach\" Feld einfügen"
1772
-
1773
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:154
1774
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:256
1775
- msgid "Insert \"User-Meta\" Field:"
1776
- msgstr "\"User Meta\" Feld einfügen"
1777
-
1778
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:188
1779
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:297
1780
- msgid "Insert Extra Functions:"
1781
- msgstr "Extra Funktionen einfügen"
1782
-
1783
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:203
1784
- msgid "Show/Hide Default \"All-Userlisting\" Code"
1785
- msgstr "Zeige/Verberge Standart-\"All-User-Listing\"-Code"
1786
-
1787
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:205
1788
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:311
1789
- msgid ""
1790
- "If you wish to use a default userlisting, just copy the following code and "
1791
- "paste it in the textarea below:"
1792
- msgstr ""
1793
- "Wenn Sie das Standart Userlisting nutzen möchten, kopieren Sie den Code in "
1794
- "die untere Textfläche:"
1795
-
1796
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:248
1797
- msgid "\"Single-Userlisting\" Template"
1798
- msgstr "\"Single-Userlisting\"-Template"
1799
-
1800
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:251
1801
- msgid ""
1802
- "The \"Single User Listing\" template is used to list an individual user. "
1803
- "It's displayed when clickin on the \"more info\" link."
1804
- msgstr ""
1805
- "Das \"Single-User-List\"-Template zeigt die Daten eines einzelnen Benutzers "
1806
- "an. Es wird angezeigt sobald man auf \"Mehr Infos\" klickt."
1807
-
1808
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:309
1809
- msgid "Show/Hide Default \"Single-Userlisting\" Code"
1810
- msgstr "Zeige/Verberge Standart-\"Single-User-Listing\"-Code"
1811
-
1812
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:415
1813
- msgid ""
1814
- "You need to activate the User-Listing feature from within the \"Addons\" tab!"
1815
- msgstr "Sie müssen das User-Listing im \"Addons\" aktivieren!"
1816
-
1817
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:415
1818
- msgid "You can find it in Profile Builder's menu."
1819
- msgstr "Sie finden es im Profile Builder Menü."
1820
-
1821
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:445
1822
- msgid "You need to be logged in to view the userlisting!"
1823
- msgstr "Sie müssen eingeloggt sein um die User-Listings sehen zu können."
1824
-
1825
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:477
1826
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:492
1827
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1641
1828
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1730
1829
- msgid "Search Users by All Fields"
1830
- msgstr "Suche Benutzer nach alle Felder"
1831
-
1832
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:514
1833
- msgid "Leave Blank and Press Search to List All Users"
1834
- msgstr "Lassen Sie dieses Feld frei um nach allen Benutzern zu suchen."
1835
-
1836
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:518
1837
- msgid "Search"
1838
- msgstr "Suche"
1839
-
1840
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:531
1841
- msgid "First/Lastname"
1842
- msgstr "Vor/Nachname"
1843
-
1844
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:543
1845
- msgid "Sign-up Date"
1846
- msgstr "Registrierungsdatum"
1847
-
1848
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:549
1849
- msgid "Firstname"
1850
- msgstr "Vorname"
1851
-
1852
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:555
1853
- msgid "Lastname"
1854
- msgstr "Nachname"
1855
-
1856
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:561
1857
- msgid "Display Name"
1858
- msgstr "Angezeigter Name"
1859
-
1860
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:579
1861
- msgid "Posts"
1862
- msgstr "Posts"
1863
-
1864
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:624
1865
- msgid "Click here to see more information about this user"
1866
- msgstr "Klicken Sie hie rum weitere Informationen über den Benutzer zu sehen"
1867
-
1868
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:624
1869
- msgid "More..."
1870
- msgstr "Mehr..."
1871
-
1872
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:626
1873
- #, fuzzy
1874
- msgid "Click here to see more information about this user."
1875
- msgstr "Klicken Sie hie rum weitere Informationen über den Benutzer zu sehen"
1876
-
1877
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:829
1878
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:939
1879
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1251
1880
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1417
1881
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:600
1882
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:633
1883
- msgid "No uploaded attachment"
1884
- msgstr "Keine hochgeladenen Anhänge"
1885
-
1886
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:831
1887
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:941
1888
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1253
1889
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1309
1890
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1419
1891
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1475
1892
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
1893
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
1894
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
1895
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1896
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
1897
- msgid "Click to see the current attachment"
1898
- msgstr "Klicken um Anhänge zu sehen"
1899
-
1900
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1070
1901
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1072
1902
- msgid "Click here to go back"
1903
- msgstr "Hier klicken um zurück zu gehen"
1904
-
1905
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1070
1906
- msgid "Back"
1907
- msgstr "Zurück"
1908
-
1909
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1251
1910
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1253
1911
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1417
1912
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1419
1913
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:600
1914
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
1915
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:633
1916
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
1917
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
1918
- msgid "Current file"
1919
- msgstr "Aktuelle Datei"
1920
-
1921
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1307
1922
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1473
1923
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:712
1924
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:744
1925
- msgid "Avatar"
1926
- msgstr "Avatar"
1927
-
1928
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1532
1929
- msgid "No results found!"
1930
- msgstr "Keine Ergebnisse gefunden"
1931
-
1932
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1628
1933
- msgid "&laquo;&laquo; First"
1934
- msgstr "&laquo;&laquo; Erster"
1935
-
1936
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1629
1937
- msgid "&laquo; Prev"
1938
- msgstr "Letzter"
1939
-
1940
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1630
1941
- msgid "Next &raquo; "
1942
- msgstr "Nächster &raquo; "
1943
-
1944
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1631
1945
- msgid "Last &raquo;&raquo;"
1946
- msgstr "Letzter &raquo;&raquo;"
1947
-
1948
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:302
1949
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:455
1950
- msgid "You must give your option a title."
1951
- msgstr "Sie müssen der Option einen Titel geben."
1952
-
1953
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:306
1954
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
1955
- msgid "You have entered an invalid meta-key format!"
1956
- msgstr "Sie haben ein ungültiges Format des Meta-Keys eingegeben."
1957
-
1958
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
1959
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:463
1960
- msgid "You must enter a valid meta-key."
1961
- msgstr "Geben Sie einen gültigen Meta-Key ein."
1962
-
1963
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:316
1964
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
1965
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:473
1966
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:485
1967
- msgid "That meta-key is already in use."
1968
- msgstr "Der Meta-Key wird bereits verwendet."
1969
-
1970
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
1971
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
1972
- msgid ""
1973
- "There is already an avatar input-type. You can only have one avatar present."
1974
- msgstr "Es ist bereits ein Avatar vorhanden."
1975
-
1976
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
1977
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:500
1978
- msgid ""
1979
- "There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
1980
- "have one present."
1981
- msgstr "Es existiert bereits eine \"Agree to Terms and Conditions\"-Checkbox."
1982
-
1983
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
1984
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:505
1985
- msgid "The textarea row value must be numeric."
1986
- msgstr "Der Wert der Zeilenanzahl muss numerisch sein."
1987
-
1988
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
1989
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:509
1990
- msgid "The maxlength attribute must be numeric."
1991
- msgstr "Das \"maxlength\"-Attribut muss numerisch sein."
1992
-
1993
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
1994
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:516
1995
- msgid "The value must be between 20 and 200!"
1996
- msgstr "Der Wert muss zwischen 20 und 200 liegen."
1997
-
1998
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:361
1999
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:521
2000
- msgid "The width component of the entered value must be numeric!"
2001
- msgstr "Der Wert \"Breite\" muss numerisch sein."
2002
-
2003
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:363
2004
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:523
2005
- msgid "The height component of the entered value must be numeric!"
2006
- msgstr "Der Wert \"Höhe\" muss numerisch sein."
2007
-
2008
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:365
2009
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:525
2010
- msgid "The width component of the entered value must be between 20 and 200!"
2011
- msgstr "Der Wert \"Breite\" muss zwischen 20 und 200 liegen."
2012
-
2013
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:367
2014
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:527
2015
- msgid "The height component of the entered value must be between 20 and 200!"
2016
- msgstr "Der Wert \"Höhe\" muss zwischen 20 und 200 liegen."
2017
-
2018
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:369
2019
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:529
2020
- msgid "The pair of values entered didn't have the right format (width,height)!"
2021
- msgstr "Die eingegebenen Werte haben nicht das richtige Format (Breite/Höhe)"
2022
-
2023
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:372
2024
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:532
2025
- msgid "The entered avatar size must be numeric!"
2026
- msgstr "Die eingegebene Größe des Avatars muss numerisch sein"
2027
-
2028
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:416
2029
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:602
2030
- msgid "There was an error, please try again."
2031
- msgstr "Fehler, bitte versuchen Sie es erneut."
2032
-
2033
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:60
2034
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:96
2035
- msgid "Your session has expired! Please refresh the page and try again."
2036
- msgstr ""
2037
-
2038
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:71
2039
- #, fuzzy
2040
- msgid "User successfully approved!"
2041
- msgstr "Der Benutzer wurde erfolgreich aktiviert"
2042
-
2043
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:79
2044
- #, fuzzy
2045
- msgid "User successfully unapproved!"
2046
- msgstr "Der Benutzer wurde erfolgreich aktiviert"
2047
-
2048
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:114
2049
- #, fuzzy
2050
- msgid "Users successfully approved!"
2051
- msgstr "Der Benutzer wurde erfolgreich aktiviert"
2052
-
2053
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
2054
- #, fuzzy
2055
- msgid "Users successfully unapproved!"
2056
- msgstr "Der Benutzer wurde erfolgreich aktiviert"
2057
-
2058
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:174
2059
- msgid ""
2060
- "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2061
- "before you can log in."
2062
- msgstr ""
2063
- "<strong>FEHLER</strong>: Das Profil muss durch einen Administrator genehmigt "
2064
- "werden bevor Sie sich einloggen können."
2065
-
2066
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:186
2067
- #, fuzzy
2068
- msgid ""
2069
- "Your account has to be confirmed by an administrator before you can use the "
2070
- "\"Password Recovery\" feature."
2071
- msgstr ""
2072
- "Ihr Account muss erst durch den Administrator freigegeben werden bevor Sie "
2073
- "das Passwort ändern können."
2074
-
2075
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2076
- msgid ""
2077
- "You can create as many extra fields as your project requires. To break your "
2078
- "custom fields into sections (on the front-end), add a \""
2079
- msgstr ""
2080
- "Sie können so viele zusätzliche Felder erstellen, wie Ihr Projekt erfordert. "
2081
- "Um Ihre benutzerdefinierte Felder in Abschnitte (auf dem Front-End) zu "
2082
- "unterteilen, fügen Sie ein \""
2083
-
2084
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2085
- msgid "heading"
2086
- msgstr "Überschrift"
2087
-
2088
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2089
- msgid "\" custom field."
2090
- msgstr "\" benutzerdefiniertes Feld ein."
2091
-
2092
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2093
- msgid "All of the fields can be sorted and rearranged to your liking with"
2094
- msgstr ""
2095
- "Alle Felder können sortiert und nach Ihren Wünschen umgestaltet werden mit"
2096
-
2097
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2098
- msgid "Drag"
2099
- msgstr "Drag"
2100
-
2101
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2102
- msgid "Drop"
2103
- msgstr "Drop"
2104
-
2105
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2106
- msgid ""
2107
- "Don't worry about the order in which you create your custom fields, you can "
2108
- "always reorder them."
2109
- msgstr ""
2110
- "Keine Sorge über die Reihenfolge der Felder. Sie können Sie jederzeit "
2111
- "umsortieren."
2112
-
2113
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
2114
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
2115
- msgid "Title"
2116
- msgstr "Titel"
2117
-
2118
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
2119
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
2120
- msgid "Type"
2121
- msgstr "Typ"
2122
-
2123
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
2124
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
2125
- msgid "Meta-Key"
2126
- msgstr "Meta-Key"
2127
-
2128
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
2129
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
2130
- msgid "ID"
2131
- msgstr "ID"
2132
-
2133
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
2134
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
2135
- msgid "Req'd"
2136
- msgstr "Erforderlich"
2137
-
2138
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
2139
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
2140
- msgid "Add Option"
2141
- msgstr "Option Hinzufügen"
2142
-
2143
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
2144
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
2145
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
2146
- msgid "Edit"
2147
- msgstr "Bearbeiten"
2148
-
2149
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
2150
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:82
2151
- msgid "Title:"
2152
- msgstr "Titel:"
2153
-
2154
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
2155
- msgid "The title of the item."
2156
- msgstr "Titel des Artikels"
2157
-
2158
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
2159
- msgid "Meta-Key:"
2160
- msgstr "Meta-Key:"
2161
-
2162
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
2163
- msgid ""
2164
- "Use this in conjuction with WordPress functions to display the value in the "
2165
- "page of your choosing. Auto-completed but editable - in this case it must be "
2166
- "uniqe.<br/>Changing this might take long in case of a very big user-count."
2167
- msgstr ""
2168
- "Verwenden Sie diese Verbindung mit Wordpress Funktionen um den Wert in der "
2169
- "Seite Ihrer Wahl anzuzeigen. Auto-Vervollständigung ist editierbar. In "
2170
- "diesem Fall muss die Angabe einmalig sein.<br/> Änderungen können bei hoher "
2171
- "Benutzerzahl eine lange Zeit in Anspruch nehmen."
2172
-
2173
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
2174
- msgid "Option Type:"
2175
- msgstr "Option-Typ"
2176
-
2177
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
2178
- msgid "Choose one of the supported option types."
2179
- msgstr "Wählen Sie eine der gewählten Optionen"
2180
-
2181
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
2182
- msgid "Description:"
2183
- msgstr "Beschreibung"
2184
-
2185
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
2186
- msgid ""
2187
- "Enter a detailed description of the option for end users to read(optional)."
2188
- msgstr ""
2189
- "Geben Sie eine detailierte Beschreibung ein (Benutzer sehen diese (optional)"
2190
-
2191
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2192
- msgid "You can only insert links using standard HTML syntax:"
2193
- msgstr "Sie können Links nur mit dem Standart-HTML-Syntax einfügen:"
2194
-
2195
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2196
- msgid "address"
2197
- msgstr "Adresse"
2198
-
2199
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2200
- msgid "name"
2201
- msgstr "Name"
2202
-
2203
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
2204
- msgid "Options:"
2205
- msgstr "Optionen:"
2206
-
2207
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
2208
- msgid ""
2209
- "Enter a comma separated list of options. For example, you could have \"One,"
2210
- "Two,Three\" or just a single value like \"Yes\" for a checkbox."
2211
- msgstr "Geben Sie eine kommagetrennte Liste der Optionen ein."
2212
-
2213
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
2214
- msgid "ID:"
2215
- msgstr "ID:"
2216
-
2217
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
2218
- msgid ""
2219
- "This is the internal ID for this input. You can use this in conjuction with "
2220
- "filters to target this element if needed.<br/>Can't be edited."
2221
- msgstr "Dies ist die interne ID für dieses Feld."
2222
-
2223
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
2224
- msgid "Required:"
2225
- msgstr "Benötigt:"
2226
-
2227
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
2228
- msgid "Check this box to make this field required."
2229
- msgstr "Anhaken um dieses Feld als erforderlich zu markieren."
2230
-
2231
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
2232
- msgid "Cancel"
2233
- msgstr "Abbrechen"
2234
-
2235
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
2236
- msgid "Save"
2237
- msgstr "Speichern"
2238
-
2239
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:71
2240
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:177
2241
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:246
2242
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:314
2243
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:381
2244
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:449
2245
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:504
2246
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:554
2247
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:619
2248
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:730
2249
- msgid ""
2250
- "This field wasn't updated because you entered and empty string (It was "
2251
- "marked as required by the administrator)"
2252
- msgstr "Das Feld konnte nicht aktualisiert werden da es leer ist."
2253
-
2254
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:597
2255
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:629
2256
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
2257
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:736
2258
- msgid "max upload size"
2259
- msgstr "Maximale Upload Größe"
2260
-
2261
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:603
2262
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:639
2263
- msgid "Are you sure you want to delete this attachment?"
2264
- msgstr "Sind Sie sicher dass Sie den Anhang löschen möchten?"
2265
-
2266
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:604
2267
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:640
2268
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
2269
- msgid "Click to delete the current attachment"
2270
- msgstr "Klicken Sie um den Anhang zu löschen."
2271
-
2272
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:637
2273
- msgid ""
2274
- "The attachment can't be deleted (It was marked as required by the "
2275
- "administrator)"
2276
- msgstr "Der Anhang kann nicht gelöscht werden."
2277
-
2278
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:708
2279
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:740
2280
- msgid "Current avatar"
2281
- msgstr "Derzeitiger Avatar"
2282
-
2283
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:708
2284
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:740
2285
- msgid "No uploaded avatar"
2286
- msgstr "Kein hochgeladener Avatar"
2287
-
2288
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:714
2289
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:749
2290
- msgid "Are you sure you want to delete this avatar?"
2291
- msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
2292
-
2293
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
2294
- msgid ""
2295
- "The avatar image can't be deleted (It was marked as required by the "
2296
- "administrator)."
2297
- msgstr "Der Avatar kann nicht gelöscht werden."
2298
-
2299
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:750
2300
- msgid "Click to see the current avatar"
2301
- msgstr "Klicken Sie um den aktuellen Avatar zu sehen."
2302
-
2303
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:750
2304
- msgid "Click to delete the avatar"
2305
- msgstr "Klicken Sie um den Avatar zu löschen."
2306
-
2307
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
2308
- msgid "This login widget lets you add a login form in the sidebar."
2309
- msgstr "Dieses Widget lässt ein Login-Formular in die Sidebar erscheinen."
2310
-
2311
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
2312
- msgid "Profile Builder Login Widget"
2313
- msgstr "Profile Login Builder Widget"
2314
-
2315
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:42
2316
- msgid "Don't have an account?"
2317
- msgstr "Sie haben noch kein Profil?"
2318
-
2319
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2320
- #, fuzzy
2321
- msgid "Lost Password"
2322
- msgstr "Passwort vergessen"
2323
-
2324
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2325
- msgid "Lost Your Password?"
2326
- msgstr "Sie haben Ihr Passwort vergessen?"
2327
-
2328
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:78
2329
- msgid "Login"
2330
- msgstr "Einloggen"
2331
-
2332
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:87
2333
- #, fuzzy
2334
- msgid "After login redirect URL (optional):"
2335
- msgstr "Weiterleitungs-URL nach dem Einloggen:"
2336
-
2337
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:92
2338
- #, fuzzy
2339
- msgid "Register page URL (optional):"
2340
- msgstr "URL zur Registrierungsseite:"
2341
-
2342
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:97
2343
- #, fuzzy
2344
- msgid "Password Recovery page URL (optional):"
2345
- msgstr "URL zur \"Passwort vergessen\"-Seite"
2346
-
2347
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
2348
- msgid "The user-validation has failed - the avatar was not deleted!"
2349
- msgstr ""
2350
- "Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
2351
-
2352
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
2353
- msgid "The user-validation has failed - the attachment was not deleted!"
2354
- msgstr ""
2355
- "Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
2356
-
2357
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:354
2358
- #, php-format
2359
- msgid ""
2360
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
2361
- "Please %1$sregister your copy%2$s of Profile Builder to receive access to "
2362
- "automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
2363
- "%5$sDismiss%6$s"
2364
- msgstr ""
2365
-
2366
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:358
2367
- #, php-format
2368
- msgid ""
2369
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
2370
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
2371
- "priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
2372
- msgstr ""
2373
-
2374
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
2375
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
2376
- msgid "Register your version of Profile Builder Pro"
2377
- msgstr "Registrieren Sie Ihre Version."
2378
-
2379
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
2380
- msgid ""
2381
- "Now that you acquired a copy of Profile Builder Pro, you should take the "
2382
- "time and register it with the serial number you received in the e-mail."
2383
- msgstr ""
2384
- "Geben Sie den Registrierungsschlüssel ein der Ihnen mit der Bestätigungsmail "
2385
- "zugesandt wurde."
2386
-
2387
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
2388
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
2389
- msgid ""
2390
- "If you register this version of Profile Builder, you'll receive information "
2391
- "regarding eventual upgrades, patches, and - if needed - technical support."
2392
- msgstr ""
2393
- "Wenn Sie sich registrieren, erhalten Sie Informationen über Upgrades, "
2394
- "Patches und technischen Support."
2395
-
2396
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
2397
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
2398
- msgid "Serial Number:"
2399
- msgstr "Seriennummer:"
2400
-
2401
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
2402
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
2403
- msgid "The serial number was successfully validated!"
2404
- msgstr "Die Seriennummer wurde bestätigt."
2405
-
2406
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
2407
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
2408
- #, fuzzy
2409
- msgid "The serial number entered couldn't be validated!"
2410
- msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
2411
-
2412
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
2413
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
2414
- #, fuzzy
2415
- msgid "The serial number couldn't be validated because it is no longer valid!"
2416
- msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
2417
-
2418
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
2419
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
2420
- msgid ""
2421
- "The serial number couldn't be validated because process timed out. This is "
2422
- "possible due to the server being down. Please try again later!"
2423
- msgstr ""
2424
- "Die Seriennummer wurde nicht bestätigt weil ein Problem mit dem Server "
2425
- "besteht. Bitte versuchen Sie es später noch einmal. "
2426
-
2427
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
2428
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2429
- msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2430
-
2431
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
2432
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
2433
- #, fuzzy
2434
- msgid "Register your version of Profile Builder Hobbyist"
2435
- msgstr "Registrieren Sie Ihre Version."
2436
-
2437
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
2438
- #, fuzzy
2439
- msgid ""
2440
- "Now that you acquired a copy of Profile Builder Hobbyist, you should take "
2441
- "the time and register it with the serial number you received in the e-mail."
2442
- msgstr ""
2443
- "Geben Sie den Registrierungsschlüssel ein der Ihnen mit der Bestätigungsmail "
2444
- "zugesandt wurde."
2445
-
2446
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
2447
- #, fuzzy
2448
- msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2449
- msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2450
-
2451
- #~ msgid "The email address was"
2452
- #~ msgstr "Diese E-Mail wurde"
2453
-
2454
- #~ msgid "The email address you entered is invalid."
2455
- #~ msgstr "Die eingegebene E-Mail Adresse ist ungültig!"
2456
-
2457
- #~ msgid "The passwords you entered do not match."
2458
- #~ msgstr "Die eingegebenen Passwörter stimmen nicht überein"
2459
-
2460
- #~ msgid "The password was"
2461
- #~ msgstr "Das Passwort ist"
2462
-
2463
- #~ msgid "You didn't complete both password fields."
2464
- #~ msgstr "Sie haben die beiden Passwort Felder nicht ausgefüllt"
2465
-
2466
- #~ msgid "Your profile was NOT updated!"
2467
- #~ msgstr "Ihr Profil wurde NICHT aktualisiert"
2468
-
2469
- #~ msgid "the current user?"
2470
- #~ msgstr "den aktuellen Benutzer?"
2471
-
2472
- #~ msgid "unapprove"
2473
- #~ msgstr "nicht genehmigt"
2474
-
2475
- #~ msgid "approve"
2476
- #~ msgstr "genehmigt"
2477
-
2478
- #, fuzzy
2479
- #~ msgid "Are you sure you want to %1$s this user?"
2480
- #~ msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
2481
-
2482
- #~ msgid ""
2483
- #~ "If you added new roles (via another plugin) <u>after</u> Profile Builder "
2484
- #~ "was activated, please reactivate it, since the roles are initialized "
2485
- #~ "during plugin activation."
2486
- #~ msgstr ""
2487
- #~ "Wenn Sie neue Benutzerollen (ueber ein anderes Plugin) erstellt haben "
2488
- #~ "<u>nachdem</u> Profile Builder aktiviert wurde, muessen Sie es "
2489
- #~ "reaktivieren. "
2490
-
2491
- #~ msgid "The information size you were trying to submit was larger than"
2492
- #~ msgstr "Die Information die Sie übertragen wollen ist größer als"
2493
-
2494
- #~ msgid "This is usually caused by a large file(s) trying to be uploaded."
2495
- #~ msgstr ""
2496
- #~ "Dies wird für gewöhnlich verursacht wenn große Dateien hochgeladen werden "
2497
- #~ "sollen."
2498
-
2499
- #~ msgid "Since it was also larger than"
2500
- #~ msgstr "Es war größer als:"
2501
-
2502
- #~ msgid "no additional information is available."
2503
- #~ msgstr "keine weiteren Informationen verfügbar."
2504
-
2505
- #~ msgid "The attachment"
2506
- #~ msgstr "Der Anhang"
2507
-
2508
- #~ msgid "was successfully deleted."
2509
- #~ msgstr "wurde erfolgreich gelöscht"
2510
-
2511
- #~ msgid "Possible cause: the size was bigger than"
2512
- #~ msgstr "Möglicher Grund: die Datei war größer als"
2513
-
2514
- #~ msgid "The listed attachements were"
2515
- #~ msgstr "Die augelisteten Anhänger sind"
2516
-
2517
- #~ msgid "This file was"
2518
- #~ msgstr "Der Anhang ist"
2519
-
2520
- #~ msgid "A password reset email has been sent to "
2521
- #~ msgstr "Eine E-Mail zum zurücsetzen Ihres Passwortes wurde gesendet an:"
2522
-
2523
- #~ msgid ""
2524
- #~ "Someone requested that the password be reset for the following account: "
2525
- #~ msgstr ""
2526
- #~ "Es wurde ein Anfrage zum Zurücksetzen Ihres Passwortes gestellt. Die "
2527
- #~ "Anfrage bezieht sich auf folgenden Account:"
2528
-
2529
- #~ msgid ""
2530
- #~ "If this was a mistake, just ignore this email and nothing will happen."
2531
- #~ msgstr ""
2532
- #~ "Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese E-"
2533
- #~ "Mail!"
2534
-
2535
- #~ msgid "To reset your password, visit the following link:"
2536
- #~ msgstr "Um Ihr Passwort zurückzusetzen folgen Sie bitte dem folgenden Link:"
2537
-
2538
- #~ msgid "from"
2539
- #~ msgstr "von"
2540
-
2541
- #~ msgid "His/her new password is:"
2542
- #~ msgstr "Ihr neues Passwort lautet:"
2543
-
2544
- #~ msgid "New subscriber on"
2545
- #~ msgstr "Neue Registreirung bei:"
2546
-
2547
- #~ msgid "Welcome to"
2548
- #~ msgstr "Willkommen bei"
2549
-
2550
- #~ msgid "Your username is:"
2551
- #~ msgstr "Ihr Benutzername ist:"
2552
-
2553
- #~ msgid "and password:"
2554
- #~ msgstr "und das Passwort:"
2555
-
2556
- #~ msgid "The user was NOT created!"
2557
- #~ msgstr "Der Benutzer wurde nicht erstellt."
2558
-
2559
- #~ msgid "An email has been sent to "
2560
- #~ msgstr "An "
2561
-
2562
- #~ msgid "with information on how to activate his/her account"
2563
- #~ msgstr ""
2564
- #~ "wurde eine E-Mail mit der Information wie das Profil aktiviert wird "
2565
- #~ "gesendet."
2566
-
2567
- #~ msgid "Your account on"
2568
- #~ msgstr "Ihr Profil auf"
2569
-
2570
- #~ msgid "Are you sure you want to"
2571
- #~ msgstr "Sind Sie sicher dass Sie"
2572
-
2573
- #~ msgid "Does not."
2574
- #~ msgstr "Nicht"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: ProfileBuilder\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-02 17:39+0200\n"
6
+ "PO-Revision-Date: 2013-12-02 17:39+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"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Generator: Poedit 1.5.5\n"
15
+ "X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
16
+ "pro\n"
17
+
18
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:119
19
+ msgid "View or Edit"
20
+ msgstr ""
21
+
22
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:124
23
+ #, fuzzy
24
+ msgid "delete this user?"
25
+ msgstr "diesen Benutzer"
26
+
27
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:124
28
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:235
29
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
30
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:202
31
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
32
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
33
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:218
34
+ msgid "Delete"
35
+ msgstr "Löschen"
36
+
37
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:127
38
+ #, fuzzy
39
+ msgid "unapprove this user?"
40
+ msgstr "diesen Benutzer"
41
+
42
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:127
43
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:234
44
+ msgid "Unapprove"
45
+ msgstr "Nicht genehmigt"
46
+
47
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:129
48
+ #, fuzzy
49
+ msgid "approve this user?"
50
+ msgstr "diesen Benutzer"
51
+
52
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:129
53
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:233
54
+ msgid "Approve"
55
+ msgstr "Genehmigt"
56
+
57
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:177
58
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:153
59
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
60
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
61
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1025
62
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
63
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:108
64
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:70
65
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:352
66
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:564
67
+ msgid "Username"
68
+ msgstr "Benutzername"
69
+
70
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:178
71
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
72
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:588
73
+ msgid "Firstname"
74
+ msgstr "Vorname"
75
+
76
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:179
77
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
78
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
79
+ msgid "Lastname"
80
+ msgstr "Nachname"
81
+
82
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:180
83
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:154
84
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1016
85
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1013
86
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1127
87
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
88
+ msgid "E-mail"
89
+ msgstr "E-Mail"
90
+
91
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:181
92
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
93
+ msgid "Role"
94
+ msgstr ""
95
+
96
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:182
97
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:155
98
+ #, fuzzy
99
+ msgid "Registered"
100
+ msgstr "Regstrieren"
101
+
102
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:183
103
+ #, fuzzy
104
+ msgid "User-status"
105
+ msgstr "User-Listing"
106
+
107
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:263
108
+ msgid "Do you want to bulk approve the selected users?"
109
+ msgstr ""
110
+
111
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:271
112
+ msgid "Do you want to bulk unapprove the selected users?"
113
+ msgstr ""
114
+
115
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:277
116
+ #, fuzzy
117
+ msgid "Do you want to bulk delete the selected users?"
118
+ msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
119
+
120
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:285
121
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:273
122
+ msgid "Sorry, but you don't have permission to do that!"
123
+ msgstr ""
124
+
125
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:318
126
+ msgid "Approved"
127
+ msgstr "Genehmigt"
128
+
129
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:320
130
+ msgid "Unapproved"
131
+ msgstr "Nicht genehmigt"
132
+
133
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:492
134
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:7
135
+ msgid "Admin Approval"
136
+ msgstr ""
137
+
138
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:495
139
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:458
140
+ #, fuzzy
141
+ msgid "All Users"
142
+ msgstr "Benutzer hinzufügen"
143
+
144
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
145
+ msgid "delete this user from the _signups table?"
146
+ msgstr ""
147
+
148
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
149
+ msgid "confirm this email yourself?"
150
+ msgstr ""
151
+
152
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
153
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:203
154
+ msgid "Confirm Email"
155
+ msgstr ""
156
+
157
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:108
158
+ #, fuzzy
159
+ msgid "resend the activation link?"
160
+ msgstr "Falscher Aktivierungsschlüssel"
161
+
162
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:108
163
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:204
164
+ msgid "Resend Activation Email"
165
+ msgstr ""
166
+
167
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:240
168
+ #, fuzzy, php-format
169
+ msgid "%s couldn't be deleted"
170
+ msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
171
+
172
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:245
173
+ #, fuzzy
174
+ msgid "All users have been successfully deleted"
175
+ msgstr "Die Änderungen wurden gespeichert"
176
+
177
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:255
178
+ #, fuzzy
179
+ msgid "The selected users have been activated"
180
+ msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
181
+
182
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:269
183
+ #, fuzzy
184
+ msgid "The selected users have had their activation emails resent"
185
+ msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
186
+
187
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:455
188
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:48
189
+ msgid "Users with Unconfirmed Email Address"
190
+ msgstr ""
191
+
192
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:78
193
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:277
194
+ #, php-format
195
+ msgid ""
196
+ "The information size you were trying to submit was larger than %1$sb!<br/"
197
+ ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
198
+ "it was also larger than %2$sb no additional information is available.<br/"
199
+ ">The user was NOT created!"
200
+ msgstr ""
201
+
202
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:307
203
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:564
204
+ msgid "The following image extensions are NOT supported: bmp"
205
+ msgstr ""
206
+
207
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:778
208
+ msgid "You must be logged in to edit your profile."
209
+ msgstr "Sie müssen angemeldet sein um Ihr Profil zu ändern"
210
+
211
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:788
212
+ msgid "The changes have been successfully saved."
213
+ msgstr "Die Änderungen wurden gespeichert"
214
+
215
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:792
216
+ #, fuzzy, php-format
217
+ msgid ""
218
+ "The email address you entered is already registered to a different user."
219
+ "%1$sThe email address was %2$sNOT%3$s updated along with the rest of the "
220
+ "information."
221
+ msgstr "Die eingegebene E-Mail Adresse ist bereits registriert"
222
+
223
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:797
224
+ #, php-format
225
+ msgid ""
226
+ "The email address you entered is invalid.%1$sThe email address was %2$sNOT"
227
+ "%3$s updated along with the rest of the information."
228
+ msgstr ""
229
+
230
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:802
231
+ #, php-format
232
+ msgid ""
233
+ "The passwords you entered do not match.%1$sThe password was %2$sNOT%3$s "
234
+ "updated along with the rest of the information."
235
+ msgstr ""
236
+
237
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:807
238
+ #, php-format
239
+ msgid ""
240
+ "You didn't complete both password fields.%1$sThe password was %2$sNOT%3$s "
241
+ "updated along with the rest of the information."
242
+ msgstr ""
243
+
244
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:812
245
+ msgid ""
246
+ "Your profile was NOT updated, since not all required fields were completed!"
247
+ msgstr ""
248
+
249
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:822
250
+ msgid "There was an error while trying to upload the following attachments:"
251
+ msgstr "Es gab einen Fehler beim hochladen der folgenden Datei:"
252
+
253
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
254
+ #, php-format
255
+ msgid ""
256
+ "Possible cause: the size was bigger than %1$sb. The listed attachements were "
257
+ "%2$sNOT%3$s updated along with the rest of the information."
258
+ msgstr ""
259
+
260
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
261
+ msgid "There was an error while trying to upload your avatar picture."
262
+ msgstr "Es gab einen Fehler beim Hochladen des Avartars."
263
+
264
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
265
+ msgid "Possible cause: size/incorrect file-type."
266
+ msgstr "Möglicher Grund: Größe oder falscher Dateityp."
267
+
268
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
269
+ msgid "The avatar was"
270
+ msgstr "Der Avatar ist"
271
+
272
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
273
+ msgid "NOT"
274
+ msgstr "NICHT"
275
+
276
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
277
+ msgid "updated along with the rest of the information."
278
+ msgstr "mit den restlichen Informationen aktualisiert."
279
+
280
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:845
281
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:606
282
+ msgid "There was an error while trying to upload the following attachment(s)"
283
+ msgstr "Es gab einen Fehler beim Hochladen der/des folgenden Anhang/e:"
284
+
285
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:852
286
+ #, php-format
287
+ msgid ""
288
+ "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
289
+ "file was %2$sNOT%3$s updated along with the rest of the information."
290
+ msgstr ""
291
+
292
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:867
293
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:978
294
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:347
295
+ msgid "Name"
296
+ msgstr "Name"
297
+
298
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:874
299
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:156
300
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:109
301
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:71
302
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:576
303
+ msgid "Email"
304
+ msgstr "E-Mail"
305
+
306
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
307
+ #, fuzzy
308
+ msgid "The email cannot be changed."
309
+ msgstr "Benutzernamen können nicht geändert werden"
310
+
311
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:884
312
+ #, fuzzy
313
+ msgid "The usernames cannot be changed."
314
+ msgstr "Benutzernamen können nicht geändert werden"
315
+
316
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
317
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
318
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:934
319
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:954
320
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1006
321
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1028
322
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1046
323
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1064
324
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1082
325
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1103
326
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:68
327
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:183
328
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:272
329
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:360
330
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:434
331
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:502
332
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:557
333
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:607
334
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:674
335
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:784
336
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:829
337
+ msgid "This field is marked as required by the administrator."
338
+ msgstr "Dieses Feld wird benötigt."
339
+
340
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:897
341
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:917
342
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
343
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:957
344
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1009
345
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1030
346
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1048
347
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1066
348
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1084
349
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1105
350
+ msgid ""
351
+ "This field wasn't updated because you entered and empty string (It was "
352
+ "marked as required by the administrator."
353
+ msgstr ""
354
+ "Das Feld wurde nicht aktualisiert da es leer ist, jedoch benötigt wird."
355
+
356
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:904
357
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1050
358
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
359
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:360
360
+ msgid "First Name"
361
+ msgstr "Vorname"
362
+
363
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:924
364
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1074
365
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
366
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:368
367
+ msgid "Last Name"
368
+ msgstr "Nachname"
369
+
370
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:944
371
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1098
372
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
373
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:376
374
+ msgid "Nickname"
375
+ msgstr "Nickname"
376
+
377
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:965
378
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:384
379
+ msgid "Display name publicly as"
380
+ msgstr "angezeigter Name..."
381
+
382
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:997
383
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1104
384
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:392
385
+ msgid "Contact Info"
386
+ msgstr "E-Mail"
387
+
388
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1018
389
+ msgid "(required)"
390
+ msgstr "erforderlich"
391
+
392
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1036
393
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1152
394
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
395
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:72
396
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:397
397
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:606
398
+ msgid "Website"
399
+ msgstr "Website"
400
+
401
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1054
402
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1176
403
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
404
+ msgid "AIM"
405
+ msgstr "AIM"
406
+
407
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1072
408
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
409
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
410
+ msgid "Yahoo IM"
411
+ msgstr "Yahoo IM"
412
+
413
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1090
414
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1224
415
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
416
+ msgid "Jabber / Google Talk"
417
+ msgstr "Jabber / Google Talk"
418
+
419
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1096
420
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1230
421
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
422
+ msgid "About Yourself"
423
+ msgstr "Über Sie"
424
+
425
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1111
426
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
427
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
428
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
429
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:410
430
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:612
431
+ msgid "Biographical Info"
432
+ msgstr "Sonstige Angaben"
433
+
434
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1121
435
+ msgid "New Password"
436
+ msgstr "Neues Passwort"
437
+
438
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1126
439
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
440
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:280
441
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1290
442
+ msgid "Repeat Password"
443
+ msgstr "Passwort wiederholen"
444
+
445
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1157
446
+ msgid "Update"
447
+ msgstr "Aktualisieren"
448
+
449
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
450
+ #, fuzzy, php-format
451
+ msgid "You are currently logged in as %1$s. %2$s"
452
+ msgstr "Sie sind eingeloggt als"
453
+
454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
455
+ msgid "Log out of this account"
456
+ msgstr "Aus diesem Profil ausloggen"
457
+
458
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:63
459
+ msgid "Log out"
460
+ msgstr "Ausloggen"
461
+
462
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:74
463
+ #, fuzzy, php-format
464
+ msgid "You have successfully logged in as %1$s"
465
+ msgstr "Sie sind eingeloggt als"
466
+
467
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:93
468
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:102
469
+ #, fuzzy, php-format
470
+ msgid ""
471
+ "You will soon be redirected automatically. If you see this page for more "
472
+ "than 1 second, please click %1$s"
473
+ msgstr ""
474
+ "Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
475
+ "Sekunden sehen klicken Sie bitte "
476
+
477
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:93
478
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:102
479
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
480
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:922
481
+ msgid "here"
482
+ msgstr "hier"
483
+
484
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:118
485
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
486
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:129
487
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:305
488
+ msgid "ERROR:"
489
+ msgstr "FEHLER"
490
+
491
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:118
492
+ #, fuzzy
493
+ msgid "The email field is empty"
494
+ msgstr "Das Feld Benutzername ist leer"
495
+
496
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
497
+ msgid "The username field is empty"
498
+ msgstr "Das Feld Benutzername ist leer"
499
+
500
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:129
501
+ #, fuzzy
502
+ msgid "The password field is empty"
503
+ msgstr "Das Feld Benutzername ist leer"
504
+
505
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
506
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:244
507
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:275
508
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1285
509
+ msgid "Password"
510
+ msgstr "Passwort"
511
+
512
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:178
513
+ msgid "Log in"
514
+ msgstr "Einloggen"
515
+
516
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:183
517
+ msgid "Remember me"
518
+ msgstr "Daten merken"
519
+
520
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:198
521
+ msgid "Lost password?"
522
+ msgstr "Passwort vergessen"
523
+
524
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:22
525
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:86
526
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:145
527
+ msgid "ERROR"
528
+ msgstr "FEHLER"
529
+
530
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:22
531
+ msgid ""
532
+ "Your account has to be confirmed by an administrator before you can use the "
533
+ "\"Password Reset\" feature."
534
+ msgstr ""
535
+ "Ihr Account muss erst durch den Administrator freigegeben werden bevor Sie "
536
+ "das Passwort ändern können."
537
+
538
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:62
539
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:109
540
+ #, fuzzy, php-format
541
+ msgid ""
542
+ "A password reset email has been sent to %1$s.<br/>Following the link sent in "
543
+ "the email address will reset the password."
544
+ msgstr "Folgen Sie dem Link in der E-Mail um Ihr Passwort zurückzusetzen."
545
+
546
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:74
547
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:133
548
+ #, php-format
549
+ msgid ""
550
+ "Someone requested that the password be reset for the following account: <b>"
551
+ "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
552
+ "happen.<br/>To reset your password, visit the following link:%2$s"
553
+ msgstr ""
554
+
555
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:77
556
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:136
557
+ #, fuzzy, php-format
558
+ msgid "Password Reset Feature from \"%1$s\""
559
+ msgstr "Passwort zurücksetzen von"
560
+
561
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:86
562
+ #, fuzzy, php-format
563
+ msgid "There was an error while trying to send the activation link to %1$s!"
564
+ msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
565
+
566
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:96
567
+ msgid "The email address entered wasn't found in the database!"
568
+ msgstr ""
569
+ "Die angegebene E-Mail-Adresse konnte nicht in unserer Datenbank gefunden "
570
+ "werden!"
571
+
572
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:96
573
+ msgid "Please check that you entered the correct email address."
574
+ msgstr "Bitte überprüfen Sie die eingegebene E-Mail-Adresse."
575
+
576
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:145
577
+ msgid "There was an error while trying to send the activation link to "
578
+ msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
579
+
580
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
581
+ msgid "The username entered wasn't found in the database!"
582
+ msgstr ""
583
+ "Der angegebene Benutzername konnte nicht in unserer Datenbank gefunden "
584
+ "werden!"
585
+
586
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
587
+ msgid "Please check that you entered the correct username."
588
+ msgstr "Bitte überprüfen Sie den eingegebenen Benutzernamen."
589
+
590
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:164
591
+ msgid "Your password has been successfully changed!"
592
+ msgstr "Ihr Passwort wurde erfolgreich geändert!"
593
+
594
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:178
595
+ #, fuzzy, php-format
596
+ msgid "You have successfully reset your password to: %1$s"
597
+ msgstr "Ihr neues Passwort lautet:"
598
+
599
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:181
600
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:194
601
+ #, fuzzy, php-format
602
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
603
+ msgstr "Passwort zurückgesetzt für:"
604
+
605
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:191
606
+ #, fuzzy, php-format
607
+ msgid ""
608
+ "%1$s has requested a password change via the password reset feature.<br/>His/"
609
+ "her new password is:%2$s"
610
+ msgstr "hat eine Anfrage zum Zurücksetzen des Passwortes gesendet."
611
+
612
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:209
613
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:603
614
+ msgid "The entered passwords don't match!"
615
+ msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
616
+
617
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:256
618
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:287
619
+ msgid "Reset Password"
620
+ msgstr "Passwort zurücksetzen"
621
+
622
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:305
623
+ msgid "Invalid key!"
624
+ msgstr "Ungültige Eingabe"
625
+
626
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:320
627
+ msgid "Please enter your username or email address."
628
+ msgstr ""
629
+ "Bitte geben Sie Ihren Benutzernamen oder Ihre E-Mail-Adresse ein mit der Sie "
630
+ "sich registriert haben."
631
+
632
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:320
633
+ msgid "You will receive a link to create a new password via email."
634
+ msgstr ""
635
+ "Sie erhalten eine E-Mail mit einem Link zum Zurücksetzen des Passwortes."
636
+
637
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
638
+ msgid "Username or E-mail"
639
+ msgstr "Benutzername oder E-Mail"
640
+
641
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:337
642
+ msgid "Get New Password"
643
+ msgstr "Neues Passwort anfordern"
644
+
645
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:177
646
+ msgid "Invalid activation key!"
647
+ msgstr "Falscher Aktivierungsschlüssel"
648
+
649
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:181
650
+ msgid "The user is already active!"
651
+ msgstr "Der Benutzer ist bereits aktiviert."
652
+
653
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:198
654
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:372
655
+ msgid "Could not create user!"
656
+ msgstr "Benutzer kann nicht erstellt werden."
657
+
658
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:201
659
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:375
660
+ msgid "That username is already activated!"
661
+ msgstr "Der Benutzername ist bereits aktiviert."
662
+
663
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:225
664
+ msgid "The user was successfully activated."
665
+ msgstr "Der Benutzer wurde erfolgreich aktiviert"
666
+
667
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:227
668
+ msgid "There was an error while trying to activate the user."
669
+ msgstr "Es gab einen Fehler bei der Aktivierung des Benutzers."
670
+
671
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
672
+ msgid "A username is required for registration."
673
+ msgstr "Ein Benutzername ist zur Registrierung notwendig."
674
+
675
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:594
676
+ msgid "Sorry, that username already exists!"
677
+ msgstr "Der Benutzername ist bereits registriert."
678
+
679
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:596
680
+ msgid "You must enter a valid email address."
681
+ msgstr "Sie müssen eine gültige E-Mail-Adresse eingeben."
682
+
683
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:598
684
+ msgid "Sorry, that email address is already used!"
685
+ msgstr "Diese E-Mail-Adresse ist bereits registriert."
686
+
687
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:601
688
+ msgid "You didn't complete one of the password-fields!"
689
+ msgstr "Eines der Passwortfelder wurde nicht ausgefüllt."
690
+
691
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:613
692
+ msgid "Only files with the following extension(s) can be uploaded:"
693
+ msgstr "Nur Dateien mit den folgenden Anhängen sind verwendbar:"
694
+
695
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:613
696
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:619
697
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:621
698
+ msgid "The account was NOT created!"
699
+ msgstr "Der Benutzer wurde nicht erstellt."
700
+
701
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:617
702
+ msgid "You must agree to the terms and conditions before registering!"
703
+ msgstr "Sie müssen den AGB zustimmen!"
704
+
705
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:621
706
+ msgid "(Several required fields were left uncompleted)"
707
+ msgstr "Einige zur Registrierung notwendige Felder wurde nicht ausgefüllt."
708
+
709
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:639
710
+ msgid "This username is already reserved to be used soon."
711
+ msgstr "Dieser Benutzername ist reserviert."
712
+
713
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:639
714
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
715
+ msgid "Please try a different one!"
716
+ msgstr "Bitte wählen Sie einen anderen."
717
+
718
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
719
+ msgid "This email address is already reserved to be used soon."
720
+ msgstr "Dieser E-Mail-Adresse ist reserviert."
721
+
722
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
723
+ msgid "You are logged in as"
724
+ msgstr "Sie sind eingeloggt als "
725
+
726
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
727
+ msgid "You don't need another account."
728
+ msgstr "Sie benötigen keinen weiteren Account."
729
+
730
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
731
+ msgid "Log out of this account."
732
+ msgstr "Aus diesem Profil ausloggen."
733
+
734
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:860
735
+ msgid "Logout"
736
+ msgstr "Ausloggen"
737
+
738
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:868
739
+ #, fuzzy, php-format
740
+ msgid ""
741
+ "An email has been sent to %1$s with information on how to activate his/her "
742
+ "account."
743
+ msgstr ""
744
+ "Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie "
745
+ "gesendet"
746
+
747
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:872
748
+ #, fuzzy, php-format
749
+ msgid "A user account has been created for %1$s."
750
+ msgstr "Ein Benutzer wurde erstellt für"
751
+
752
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
753
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:922
754
+ #, fuzzy, php-format
755
+ msgid ""
756
+ "You will soon be redirected automatically. If you see this page for more "
757
+ "than 3 seconds, please click %1$s.%2$s"
758
+ msgstr ""
759
+ "Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
760
+ "Sekunden sehen klicken Sie bitte "
761
+
762
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
763
+ #, fuzzy
764
+ msgid ""
765
+ "An email has been sent to you with information on how to activate your "
766
+ "account."
767
+ msgstr ""
768
+ "Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie "
769
+ "gesendet"
770
+
771
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:902
772
+ #, fuzzy, php-format
773
+ msgid "Thank you for registering %1$s."
774
+ msgstr "Vielen Dank für die Registrierung."
775
+
776
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
777
+ msgid "An error occured while trying to send the notification email."
778
+ msgstr ""
779
+ "Ein Fehler ist aufgetreten beim Versuch, die Benachrichtigungs-Email zu "
780
+ "senden."
781
+
782
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:934
783
+ msgid "An email containing activation instructions was successfully sent."
784
+ msgstr ""
785
+ "Eine E-Mail mit Anweisungen zur Aktivierung wurde erfolgreich gesendet."
786
+
787
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:939
788
+ msgid "An email containing the username and password was successfully sent."
789
+ msgstr ""
790
+ "Eine E-Mail mit dem Benutzernamen und Passwort wurde erfolgreich gesendet."
791
+
792
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:955
793
+ msgid "Users can register themselves or you can manually create users here."
794
+ msgstr ""
795
+ "Benutzer können sich selbstständig registrieren oder manuell angelegt werden."
796
+
797
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:960
798
+ msgid ""
799
+ "Users cannot currently register themselves, but you can manually create "
800
+ "users here."
801
+ msgstr ""
802
+ "Benutzer können sich nicht selbstständig registrieren jedoch manuell "
803
+ "angelegt werden."
804
+
805
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:965
806
+ msgid "Only an administrator can add new users."
807
+ msgstr "Nur Administratoren können neue Benutze anlegen."
808
+
809
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:988
810
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1039
811
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1063
812
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1087
813
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1141
814
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1165
815
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1189
816
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1213
817
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1240
818
+ msgid ""
819
+ "This field must be filled out before registering (It was marked as required "
820
+ "by the administrator)"
821
+ msgstr "Dieses Feld wird zur Registrierung benötigt."
822
+
823
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:999
824
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1036
825
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1060
826
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1084
827
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1113
828
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1138
829
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1162
830
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1186
831
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1210
832
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
833
+ msgid "This field is marked as required by the administrator"
834
+ msgstr "Dieses Feld wird zur Registrierung benötigt."
835
+
836
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
837
+ msgid "Anti-Spam"
838
+ msgstr "Anti-Spam"
839
+
840
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1334
841
+ msgid "Send these credentials via email."
842
+ msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
843
+
844
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1350
845
+ msgid "Add User"
846
+ msgstr "Benutzer hinzufügen"
847
+
848
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1352
849
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:41
850
+ msgid "Register"
851
+ msgstr "Regstrieren"
852
+
853
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
854
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
855
+ msgid "Show/Hide the Admin Bar on Front End"
856
+ msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
857
+
858
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
859
+ msgid "User-group"
860
+ msgstr "Benutzergruppe"
861
+
862
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
863
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
864
+ msgid "Visibility"
865
+ msgstr "Sichtbarkeit"
866
+
867
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
868
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:13
869
+ msgid "Default"
870
+ msgstr "Standart"
871
+
872
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
873
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
874
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
875
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
876
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
877
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
878
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
879
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
880
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
881
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
882
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
883
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
884
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
885
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:32
886
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:92
887
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:147
888
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:206
889
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:261
890
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:388
891
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:447
892
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:500
893
+ msgid "Show"
894
+ msgstr "Anzeigen"
895
+
896
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
897
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
898
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
899
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
900
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
901
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
902
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
903
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
904
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
905
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
906
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
907
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
908
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
909
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:33
910
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:389
911
+ msgid "Hide"
912
+ msgstr "Verbergen"
913
+
914
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
915
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
916
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:120
917
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:59
918
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
919
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:376
920
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:567
921
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
922
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:436
923
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
924
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
925
+ msgid "Save Changes"
926
+ msgstr "Einstellungen speichern"
927
+
928
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
929
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
930
+ msgid "Profile Builder"
931
+ msgstr "Profile Builder"
932
+
933
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
934
+ msgid "Welcome to Profile Builder!"
935
+ msgstr "Willkommen im Profile Builder"
936
+
937
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
938
+ msgid ""
939
+ " lets you customize your website by adding a front-end menu for all your "
940
+ "users, giving them a more flexible way to modify their user-information or "
941
+ "to register new users."
942
+ msgstr ""
943
+ " erlaubt es Ihnen, Ihre Website durch Hinzufügen eines Front-End-Menü für "
944
+ "alle Benutzer, um Ihnen eine flexible Möglichkeit zu geben, ihre Benutzer-"
945
+ "Informationen zu ändern oder neue Benutzer zu registrieren."
946
+
947
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
948
+ msgid ""
949
+ "Also, grants users with administrator rights to customize basic fields or to "
950
+ "add new ones."
951
+ msgstr ""
952
+ "Ebenso gewährt es Benutzern mit Administratorrechten grundlegende Bereichen "
953
+ "anzupassen oder neue hinzuzufügen."
954
+
955
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
956
+ msgid ""
957
+ "To achieve this, just create a new page, and give it an intuitive name(e.g. "
958
+ "Edit Profile)."
959
+ msgstr ""
960
+ "Um dies zu erreichen, erstellen Sie einfach eine neue Seite, und geben Sie "
961
+ "dieser einen intuitiven Namen (z.B. Profil bearbeiten)"
962
+
963
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
964
+ msgid ""
965
+ "Now all you need to do is add the following shortcode(for the previous "
966
+ "example): "
967
+ msgstr ""
968
+ "Alles was Sie jetzt tun müssen, ist den folgenden Shortcode (für das "
969
+ "vorherige Beispiel): "
970
+
971
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
972
+ msgid "Publish your page and you are ready to go!"
973
+ msgstr "Veröffentlichen Sie Ihre Seite und los geht´s."
974
+
975
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
976
+ msgid "You can use the following shortcodes:"
977
+ msgstr "Sie können die folgenden Shortcodes nutzen:"
978
+
979
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
980
+ msgid "for a log-in form."
981
+ msgstr "Log-In-Formular"
982
+
983
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
984
+ msgid "to add a registration form."
985
+ msgstr "Registrierungs-Formular"
986
+
987
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
988
+ msgid ""
989
+ "to grant users a front-end acces to their personal information(requires user "
990
+ "to be logged in)."
991
+ msgstr ""
992
+ "um Benutzern einen Front-End-Zugang zu ihren persönlichen Daten zu gewähren "
993
+ "(erfordert dass der Benutzer angemeldet ist)."
994
+
995
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
996
+ msgid "to add a password recovery form."
997
+ msgstr "um ein Passwort-vergessen-Formular hinzuzufügen"
998
+
999
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
1000
+ #, fuzzy
1001
+ msgid ""
1002
+ "With the <strong>Pro</strong> version, users with administrator rights have "
1003
+ "access to the following features:"
1004
+ msgstr ""
1005
+ "Benutzer mit Administratorrechten haben Zugriff auf die folgenden Funktionen:"
1006
+
1007
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
1008
+ msgid ""
1009
+ "add a custom stylesheet/inherit values from the current theme or use one of "
1010
+ "the following built into this plugin: default, white or black."
1011
+ msgstr ""
1012
+ "Hinzufügen eines Standart Stylesheet oder Nutzung des Theme-Stylesheetsder "
1013
+ "dargestellten. Black/White/default."
1014
+
1015
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
1016
+ msgid ""
1017
+ "select whether to display or not the admin bar in the front end for a "
1018
+ "specific user-group registered to the site."
1019
+ msgstr "Anzeigen der WP Admin Bar verhindern/nicht verhindern."
1020
+
1021
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
1022
+ msgid ""
1023
+ "select which information-field can users see/modify. The hidden fields' "
1024
+ "values remain unmodified."
1025
+ msgstr "auswählen welche Felder angezeigt werden sollen."
1026
+
1027
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
1028
+ msgid ""
1029
+ "add custom fields to the existing ones, with several types to choose from: "
1030
+ "heading, text, textarea, select, checkbox, radio, and/or upload."
1031
+ msgstr "hinzufügen von benutzerdefinierten Feldern."
1032
+
1033
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
1034
+ msgid "add an avatar field."
1035
+ msgstr "hinzufügen eines Avartar-Feldes."
1036
+
1037
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
1038
+ msgid "create custom redirects."
1039
+ msgstr "eigene Umleitungen erstellen"
1040
+
1041
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1042
+ msgid "front-end userlisting using the"
1043
+ msgstr "ein User-Listing Frontend erstellen -"
1044
+
1045
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
1046
+ msgid "shortcode."
1047
+ msgstr "Shortcode"
1048
+
1049
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
1050
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:75
1051
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:92
1052
+ msgid "NOTE:"
1053
+ msgstr "Hinweis"
1054
+
1055
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
1056
+ msgid "this plugin only adds/removes fields in the front-end."
1057
+ msgstr "dieses Plugin entfernt oder fügt die Felder nur im Frontend hinzu."
1058
+
1059
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
1060
+ msgid ""
1061
+ "The default information-fields will still be visible(and thus modifiable)"
1062
+ msgstr "Die Standardinformationsfelder sind weiterhin"
1063
+
1064
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
1065
+ msgid ""
1066
+ "from the back-end, while custom fields will only be visible in the front-end."
1067
+ msgstr ""
1068
+ "vom Backende aus sichtbar, während Benutzerdefinierte Felder nur über das "
1069
+ "Frontend sichtbar sind."
1070
+
1071
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
1072
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
1073
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
1074
+ msgid "Default Profile Fields"
1075
+ msgstr "Standart Profil Felder"
1076
+
1077
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
1078
+ msgid "Input Field Name"
1079
+ msgstr "Eingabe Feld Name"
1080
+
1081
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
1082
+ msgid "Required"
1083
+ msgstr "Benötigt"
1084
+
1085
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
1086
+ msgid "Name:"
1087
+ msgstr "Name"
1088
+
1089
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
1090
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
1091
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
1092
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
1093
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
1094
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
1095
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
1096
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
1097
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
1098
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
1099
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
1100
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
1101
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:30
1102
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:67
1103
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
1104
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
1105
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
1106
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
1107
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
1108
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
1109
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
1110
+ msgid "Yes"
1111
+ msgstr "Ja"
1112
+
1113
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
1114
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
1115
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
1116
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
1117
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
1118
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
1119
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
1120
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
1121
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
1122
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
1123
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
1124
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
1125
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
1126
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:68
1127
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
1128
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
1129
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
1130
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
1131
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
1132
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
1133
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
1134
+ msgid "No"
1135
+ msgstr "Nein"
1136
+
1137
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1138
+ msgid "Display name publicly as..."
1139
+ msgstr "angezeigter Name..."
1140
+
1141
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1142
+ msgid "Contact Info:"
1143
+ msgstr "Kontakt"
1144
+
1145
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1146
+ msgid "About Yourself:"
1147
+ msgstr "Passwort"
1148
+
1149
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
1150
+ #, fuzzy
1151
+ msgid "(New) Password"
1152
+ msgstr "Neues Passwort"
1153
+
1154
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:59
1155
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:22
1156
+ msgid "Do you want to"
1157
+ msgstr "Wollen Sie"
1158
+
1159
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:108
1160
+ #, fuzzy
1161
+ msgid "The selected user couldn't be deleted"
1162
+ msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
1163
+
1164
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:128
1165
+ msgid "Email notification resent to user"
1166
+ msgstr ""
1167
+
1168
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:136
1169
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:75
1170
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:140
1171
+ msgid "You either don't have permission for that action or there was an error!"
1172
+ msgstr ""
1173
+
1174
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:333
1175
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:14
1176
+ #, php-format
1177
+ msgid "[%1$s] Activate %2$s"
1178
+ msgstr "[%1$s] Aktivieren %2$s"
1179
+
1180
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:334
1181
+ #, fuzzy, php-format
1182
+ msgid ""
1183
+ "To activate your user, please click the following link:\n"
1184
+ "\n"
1185
+ "%s%s%s\n"
1186
+ "\n"
1187
+ "After you activate, you will receive *another email* with your login.\n"
1188
+ "\n"
1189
+ msgstr ""
1190
+ "Um Ihr Profil zu aktivieren klicken Sie bitte auf den folgenden Link:\n"
1191
+ "\n"
1192
+ "%s\n"
1193
+ "\n"
1194
+ "Nach der Aktivierung erhalten Sie eine E-Mail mit Ihren Benutzerdaten.\n"
1195
+
1196
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:395
1197
+ #, fuzzy
1198
+ msgid "There was an error while trying to activate the user"
1199
+ msgstr "Es gab einen Fehler bei der Aktivierung des Benutzers."
1200
+
1201
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:429
1202
+ msgid "A new subscriber has (been) registered!"
1203
+ msgstr "Ein neuer Benutzer hat sich angemeldet!"
1204
+
1205
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:432
1206
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:19
1207
+ #, php-format
1208
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1209
+ msgstr ""
1210
+
1211
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:437
1212
+ msgid ""
1213
+ "The \"Admin Approval\" feature was activated at the time of registration, so "
1214
+ "please remember that you need to approve this user before he/she can log in!"
1215
+ msgstr ""
1216
+ "Die \"Zustimmung des Administrators\" ist zur Aktivierung des Benutzers "
1217
+ "erforderlich."
1218
+
1219
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:453
1220
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:8
1221
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:10
1222
+ msgid "A new account has been created for you."
1223
+ msgstr "Ein neues Benutzerprofil wurde für Sie erstellt."
1224
+
1225
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:456
1226
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:9
1227
+ #, php-format
1228
+ msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
1229
+ msgstr ""
1230
+
1231
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:461
1232
+ msgid ""
1233
+ "Before you can access your account, an administrator needs to approve it. "
1234
+ "You will be notified via email."
1235
+ msgstr ""
1236
+ "Bevor Sie auf Ihr Benutzerprofil zugreifen können ist die Zustimmung eines "
1237
+ "Administrators nötig. Sie werden per E-Mail über die Zustimmung informiert."
1238
+
1239
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:9
1240
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1241
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1242
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
1243
+ msgid "General Settings"
1244
+ msgstr "Allgemeine Einstellungen"
1245
+
1246
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1247
+ msgid "Stylesheet Used on the Front-End:"
1248
+ msgstr "Genutztes Stylesheet im Frontend"
1249
+
1250
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:17
1251
+ msgid "White"
1252
+ msgstr "Weiss"
1253
+
1254
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1255
+ msgid "Black"
1256
+ msgstr "Schwarz"
1257
+
1258
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:22
1259
+ msgid "None"
1260
+ msgstr "Keins"
1261
+
1262
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:28
1263
+ msgid "\"Email Confirmation\" Feature Activated:"
1264
+ msgstr "\"E-Mail Bestätigung\" aktiviert:"
1265
+
1266
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:40
1267
+ msgid "Account Activation Landing Page:"
1268
+ msgstr ""
1269
+
1270
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:43
1271
+ #, fuzzy
1272
+ msgid "Existing Pages"
1273
+ msgstr "Nach Registrierung"
1274
+
1275
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
1276
+ msgid ""
1277
+ "You need to (create) and specify the page where the users will see when "
1278
+ "trying to activate their account. This page can differ from the register page"
1279
+ "(s), and can be changed at any time, but if none selected, a simple, blank "
1280
+ "page will be displayed for the user."
1281
+ msgstr ""
1282
+
1283
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:65
1284
+ msgid "\"Admin Approval\" Feature Activated:"
1285
+ msgstr "\"Admin Bestätigung\" aktiviert:"
1286
+
1287
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:76
1288
+ msgid ""
1289
+ "The black stylesheet is intended for sites/blogs with a dark background."
1290
+ msgstr "Das schwarze Stylesheet wird bei dunklen Themes empfohlen."
1291
+
1292
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:77
1293
+ msgid ""
1294
+ "The white stylesheet is intended for a sites/blogs with a light background "
1295
+ "color."
1296
+ msgstr "Das weisse Stylesheet wird bei hellen Themes empfohlen."
1297
+
1298
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:78
1299
+ msgid ""
1300
+ "On single-site installations the \"Email Confirmation\" feature only works "
1301
+ "in the front-end, so make sure you also use the \"Custom Redirects\" feature."
1302
+ msgstr ""
1303
+ "Auf Einzelseiteninstallationen funktioniert die E-Mail-Bestätigung nur im "
1304
+ "Frontend. Stellen Sie also sicher, dass die \"Weiterleitungen\" aktiviert "
1305
+ "sind. "
1306
+
1307
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:79
1308
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:94
1309
+ msgid ""
1310
+ "The \"Email Confirmation\" feature is active (by default) on WPMU "
1311
+ "installations."
1312
+ msgstr ""
1313
+
1314
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:81
1315
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:96
1316
+ #, php-format
1317
+ msgid "You can find a list of unconfirmed email addresses %1$shere%2$s."
1318
+ msgstr ""
1319
+
1320
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:93
1321
+ #, fuzzy
1322
+ msgid ""
1323
+ "On single-site installations the \"Email Confirmation\" feature only works "
1324
+ "in the front-end."
1325
+ msgstr ""
1326
+ "Auf Einzelseiteninstallationen funktioniert die E-Mail-Bestätigung nur im "
1327
+ "Frontend. Stellen Sie also sicher, dass die \"Weiterleitungen\" aktiviert "
1328
+ "sind. "
1329
+
1330
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:106
1331
+ msgid "Allow Users to Log in With:"
1332
+ msgstr ""
1333
+
1334
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1335
+ #, php-format
1336
+ msgid ""
1337
+ "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1338
+ "Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
1339
+ "access to automatic updates and support. Need a license key? %3$sPurchase "
1340
+ "one now%4$s"
1341
+ msgstr ""
1342
+
1343
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1344
+ #, php-format
1345
+ msgid ""
1346
+ "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1347
+ "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1348
+ "priority support. %3$sPurchase one now%4$s"
1349
+ msgstr ""
1350
+
1351
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1352
+ msgid "Basic Information"
1353
+ msgstr "Allgemeine Informationen"
1354
+
1355
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1356
+ msgid "Show/Hide the Admin Bar on Front-end"
1357
+ msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
1358
+
1359
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1360
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1361
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1362
+ msgid "Extra Profile Fields"
1363
+ msgstr "Extra Profil Felder"
1364
+
1365
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1366
+ msgid "Addons"
1367
+ msgstr "Add-Ons"
1368
+
1369
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1370
+ msgid "Register Your Version"
1371
+ msgstr "Registrieren Sie Ihre Version"
1372
+
1373
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1374
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
1375
+ msgid "Activate/Deactivate Addons"
1376
+ msgstr "Aktivieren/Deaktivieren von Add-Ons"
1377
+
1378
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
1379
+ msgid "Name/Description"
1380
+ msgstr "Name/Beschreibung"
1381
+
1382
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
1383
+ msgid "Status"
1384
+ msgstr "Status"
1385
+
1386
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
1387
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:32
1388
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
1389
+ msgid "User-Listing"
1390
+ msgstr "User-Listing"
1391
+
1392
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
1393
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1394
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1395
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:43
1396
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:50
1397
+ msgid "Active"
1398
+ msgstr "Aktiv"
1399
+
1400
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1401
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1402
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1403
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:44
1404
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:51
1405
+ msgid "Inactive"
1406
+ msgstr "Inaktiv"
1407
+
1408
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1409
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
1410
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
1411
+ msgid "Custom Redirects"
1412
+ msgstr "Weiterleitungen"
1413
+
1414
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
1415
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
1416
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
1417
+ msgid "reCAPTCHA"
1418
+ msgstr "reCAPTCHA"
1419
+
1420
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:41
1421
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:41
1422
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:42
1423
+ msgid "User Email Customizer"
1424
+ msgstr ""
1425
+
1426
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:48
1427
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:397
1428
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:398
1429
+ msgid "Admin Email Customizer"
1430
+ msgstr ""
1431
+
1432
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
1433
+ msgid "Redirects on custom page requests:"
1434
+ msgstr "Weiterleitung auf benutzerdefinierte Seiten:"
1435
+
1436
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
1437
+ msgid "Action"
1438
+ msgstr "Aktion"
1439
+
1440
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
1441
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
1442
+ msgid "Redirect"
1443
+ msgstr "Weiterleiten"
1444
+
1445
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
1446
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
1447
+ msgid "URL"
1448
+ msgstr "URL"
1449
+
1450
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
1451
+ msgid "After Registration:"
1452
+ msgstr "Nach Registrierung"
1453
+
1454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
1455
+ #, fuzzy
1456
+ msgid "After Login:"
1457
+ msgstr "Nach Login"
1458
+
1459
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
1460
+ #, fuzzy
1461
+ msgid "Recover Password (*)"
1462
+ msgstr "Passowrt wiederherstellen"
1463
+
1464
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
1465
+ msgid ""
1466
+ "When activated this feature will redirect the user on both the default "
1467
+ "Wordpress password recovery page and the \"Lost password?\" link used by "
1468
+ "Profile Builder on the front-end login page."
1469
+ msgstr ""
1470
+ "Wenn dieses Feature aktiviert ist, wird der Benutzer bei den Seiten /"
1471
+ "\"Wordpress Passwort wiederherstellen/\"und /\"Passwort vergessen/\" auf die "
1472
+ "im Front-End eingestellte Seite weitergeleitet."
1473
+
1474
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
1475
+ msgid "Redirects on default WordPress page requests:"
1476
+ msgstr "Weiterleitung der Standart-Wordpress-Seite"
1477
+
1478
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
1479
+ msgid "Requested WP Page"
1480
+ msgstr "Angefragte WP Seite"
1481
+
1482
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
1483
+ #, fuzzy
1484
+ msgid "Default WP Login Page (*)"
1485
+ msgstr "Standart WP Login Seite(*)"
1486
+
1487
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
1488
+ #, fuzzy
1489
+ msgid "Default WP Logout Page (**)"
1490
+ msgstr "Standart WP Logout Seite (**)"
1491
+
1492
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
1493
+ msgid "Default WP Register Page"
1494
+ msgstr "Standart WP Registrierung"
1495
+
1496
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
1497
+ msgid "Default WP Dashboard (***)"
1498
+ msgstr "Standart WP Dashboard (***)"
1499
+
1500
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
1501
+ msgid "Before login. Works best if used in conjuction with \"After logout\"."
1502
+ msgstr ""
1503
+ "Vor dem Login. Arbeitet am besten wenn es mit dem \"Nach dem Logout\" "
1504
+ "zusammen eingestellt ist."
1505
+
1506
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
1507
+ msgid "After logout. Works best if used in conjuction with \"Before login\"."
1508
+ msgstr ""
1509
+ "Nach dem Logout. Arbeitet am besten wenn es mit dem \"Vor dem Login\" "
1510
+ "zusammen eingestellt ist."
1511
+
1512
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
1513
+ msgid ""
1514
+ "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1515
+ "manage options)."
1516
+ msgstr "Leitet jeden Berechtigungstufe weiter, ausser dem Admin."
1517
+
1518
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:11
1519
+ #, fuzzy, php-format
1520
+ msgid ""
1521
+ "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s<br/"
1522
+ ">Before you can access your account, an administrator needs to approve it. "
1523
+ "You will be notified via email."
1524
+ msgstr ""
1525
+ "Bevor Sie auf Ihr Benutzerprofil zugreifen können ist die Zustimmung eines "
1526
+ "Administrators nötig. Sie werden per E-Mail über die Zustimmung informiert."
1527
+
1528
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:12
1529
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:150
1530
+ #, fuzzy, php-format
1531
+ msgid "Your account on %1$s has been approved!"
1532
+ msgstr "wurde genehmigt"
1533
+
1534
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:13
1535
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:153
1536
+ #, fuzzy, php-format
1537
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1538
+ msgstr "Ein Administrator hat Ihr Profil soeben genehmigt."
1539
+
1540
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:15
1541
+ #, fuzzy, php-format
1542
+ msgid ""
1543
+ "To activate your user, please click the following link:\n"
1544
+ "\n"
1545
+ "%s\n"
1546
+ "\n"
1547
+ "After you activate, you will receive *another email* with your login.\n"
1548
+ "\n"
1549
+ msgstr ""
1550
+ "Um Ihr Profil zu aktivieren klicken Sie bitte auf den folgenden Link:\n"
1551
+ "\n"
1552
+ "%s\n"
1553
+ "\n"
1554
+ "Nach der Aktivierung erhalten Sie eine E-Mail mit Ihren Benutzerdaten.\n"
1555
+
1556
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:16
1557
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:157
1558
+ #, fuzzy, php-format
1559
+ msgid "Your account on %1$s has been unapproved!"
1560
+ msgstr "wurde nicht genehmigt."
1561
+
1562
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:17
1563
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:160
1564
+ #, fuzzy, php-format
1565
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1566
+ msgstr "Ein Administrator hat Ihr Profil nicht genehmigt auf"
1567
+
1568
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:18
1569
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:20
1570
+ #, fuzzy, php-format
1571
+ msgid "[%1$s] A new subscriber has (been) registered!"
1572
+ msgstr "Ein neuer Benutzer hat sich angemeldet!"
1573
+
1574
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:21
1575
+ #, fuzzy, php-format
1576
+ msgid ""
1577
+ "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/><br/>The "
1578
+ "\"Admin Approval\" feature was activated at the time of registration, so "
1579
+ "please remember that you need to approve this user before he/she can log in!"
1580
+ msgstr ""
1581
+ "Die \"Zustimmung des Administrators\" ist zur Aktivierung des Benutzers "
1582
+ "erforderlich."
1583
+
1584
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:45
1585
+ msgid "Here you can customize all the emails sent to the users."
1586
+ msgstr ""
1587
+
1588
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:48
1589
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:404
1590
+ #, fuzzy
1591
+ msgid "Common Settings:"
1592
+ msgstr "Allgemeine Einstellungen"
1593
+
1594
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:48
1595
+ msgid ""
1596
+ "These settings are also replicated in the \"Admin Email Customizer\" "
1597
+ "settings-page upon save."
1598
+ msgstr ""
1599
+
1600
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:51
1601
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:407
1602
+ msgid "From (name): "
1603
+ msgstr ""
1604
+
1605
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:59
1606
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:75
1607
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:118
1608
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:174
1609
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:233
1610
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:292
1611
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:337
1612
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:415
1613
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:431
1614
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:473
1615
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:526
1616
+ msgid "Available Merge Tags"
1617
+ msgstr ""
1618
+
1619
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:60
1620
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:120
1621
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:179
1622
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:235
1623
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:294
1624
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:339
1625
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:416
1626
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:475
1627
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:528
1628
+ #, fuzzy
1629
+ msgid "Display the site name"
1630
+ msgstr "Angezeigter Name"
1631
+
1632
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:67
1633
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:423
1634
+ msgid "From (reply-to email): "
1635
+ msgstr ""
1636
+
1637
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:83
1638
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:367
1639
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:439
1640
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:560
1641
+ msgid "Email Message Type"
1642
+ msgstr ""
1643
+
1644
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:84
1645
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:368
1646
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:440
1647
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:561
1648
+ msgid "Show / Hide"
1649
+ msgstr ""
1650
+
1651
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:91
1652
+ #, fuzzy
1653
+ msgid "Default Registration"
1654
+ msgstr "Nach Registrierung"
1655
+
1656
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:99
1657
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:155
1658
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:214
1659
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:273
1660
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:318
1661
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:454
1662
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:507
1663
+ msgid "Email Subject: "
1664
+ msgstr ""
1665
+
1666
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:107
1667
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:163
1668
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:222
1669
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:281
1670
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:326
1671
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:462
1672
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:515
1673
+ msgid "Email Content:"
1674
+ msgstr ""
1675
+
1676
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:107
1677
+ msgid ""
1678
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1679
+ "span> upon registration."
1680
+ msgstr ""
1681
+
1682
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:119
1683
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:178
1684
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:234
1685
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:293
1686
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:338
1687
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:474
1688
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:527
1689
+ msgid "Display the site URL"
1690
+ msgstr ""
1691
+
1692
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:121
1693
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:236
1694
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:295
1695
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:340
1696
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:476
1697
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:529
1698
+ #, fuzzy
1699
+ msgid "Display the userID"
1700
+ msgstr "Angezeigter Name"
1701
+
1702
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:122
1703
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:180
1704
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:237
1705
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:296
1706
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:341
1707
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:477
1708
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:530
1709
+ #, fuzzy
1710
+ msgid "Display the username"
1711
+ msgstr "Angezeigter Name"
1712
+
1713
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:123
1714
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:181
1715
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:238
1716
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:297
1717
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:342
1718
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:478
1719
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:531
1720
+ #, fuzzy
1721
+ msgid "Display the email-address of the user"
1722
+ msgstr "Diese E-Mail-Adresse ist bereits registriert."
1723
+
1724
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:124
1725
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:182
1726
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:239
1727
+ #, fuzzy
1728
+ msgid "Display the user's password"
1729
+ msgstr "Ihr neues Passwort lautet:"
1730
+
1731
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:125
1732
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:183
1733
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:240
1734
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:299
1735
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:344
1736
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:480
1737
+ #, fuzzy
1738
+ msgid "Display the user's first name"
1739
+ msgstr "Angezeigter Name"
1740
+
1741
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:126
1742
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:184
1743
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:241
1744
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:300
1745
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:345
1746
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:481
1747
+ #, fuzzy
1748
+ msgid "Display the user's last name"
1749
+ msgstr "Angezeigter Name"
1750
+
1751
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:127
1752
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:185
1753
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:242
1754
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:301
1755
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:346
1756
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:482
1757
+ #, fuzzy
1758
+ msgid "Display the user's nickname"
1759
+ msgstr "Angezeigter Name"
1760
+
1761
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:128
1762
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:186
1763
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:243
1764
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:302
1765
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:347
1766
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:483
1767
+ #, fuzzy
1768
+ msgid "Display the user's website"
1769
+ msgstr "Angezeigter Name"
1770
+
1771
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:129
1772
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:187
1773
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:244
1774
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:303
1775
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:348
1776
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:484
1777
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:536
1778
+ msgid "Display the \"about yourself\" content"
1779
+ msgstr ""
1780
+
1781
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:130
1782
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:188
1783
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:245
1784
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:304
1785
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:349
1786
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:485
1787
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:537
1788
+ #, fuzzy
1789
+ msgid "Display the aim value"
1790
+ msgstr "Angezeigter Name"
1791
+
1792
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:131
1793
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:189
1794
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:246
1795
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:305
1796
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:350
1797
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:486
1798
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:538
1799
+ #, fuzzy
1800
+ msgid "Display the yim value"
1801
+ msgstr "Angezeigter Name"
1802
+
1803
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:132
1804
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:190
1805
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:247
1806
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:306
1807
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:351
1808
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:487
1809
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:539
1810
+ msgid "Display the jabber value"
1811
+ msgstr ""
1812
+
1813
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:133
1814
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:191
1815
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:248
1816
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:307
1817
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:352
1818
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:488
1819
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:540
1820
+ msgid ""
1821
+ "Display any extra field by replacing the meta_name with the fields' meta-name"
1822
+ msgstr ""
1823
+
1824
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:146
1825
+ msgid "Registration with Email Confirmation"
1826
+ msgstr ""
1827
+
1828
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:163
1829
+ msgid ""
1830
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1831
+ "span> upon registration with email confirmation."
1832
+ msgstr ""
1833
+
1834
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:175
1835
+ #, php-format
1836
+ msgid "Display the activation key ( register_page/?key=%%activation_key%% )"
1837
+ msgstr ""
1838
+
1839
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:176
1840
+ #, fuzzy
1841
+ msgid "Display the activation url"
1842
+ msgstr "Angezeigter Name"
1843
+
1844
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:177
1845
+ msgid "Display a clickable activation link"
1846
+ msgstr ""
1847
+
1848
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:205
1849
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:499
1850
+ msgid "Registration with Admin Approval"
1851
+ msgstr ""
1852
+
1853
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:222
1854
+ msgid ""
1855
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1856
+ "span> upon registration with admin approval."
1857
+ msgstr ""
1858
+
1859
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:260
1860
+ msgid "Admin Approval Notifications (on status change)"
1861
+ msgstr ""
1862
+
1863
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:268
1864
+ msgid "Message Sent to the User Upon Approval"
1865
+ msgstr ""
1866
+
1867
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:281
1868
+ msgid ""
1869
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1870
+ "span> upon approval."
1871
+ msgstr ""
1872
+
1873
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:298
1874
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:343
1875
+ msgid "Display the new user-status"
1876
+ msgstr ""
1877
+
1878
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:313
1879
+ msgid "Message Sent to the User Upon Unapproval"
1880
+ msgstr ""
1881
+
1882
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:326
1883
+ msgid ""
1884
+ "This is the email sent to the <span class=\"email_customizer_red\">user</"
1885
+ "span> upon unapproval."
1886
+ msgstr ""
1887
+
1888
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:401
1889
+ msgid "Here you can customize all the emails sent to the administrator."
1890
+ msgstr ""
1891
+
1892
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:404
1893
+ msgid ""
1894
+ "These settings are also replicated in the \"User Email Customizer\" settings-"
1895
+ "page upon save."
1896
+ msgstr ""
1897
+
1898
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:432
1899
+ #, fuzzy
1900
+ msgid "Display the default email address"
1901
+ msgstr "Sie müssen eine gültige E-Mail-Adresse eingeben."
1902
+
1903
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:446
1904
+ msgid "Default Registration & Registration with Email Confirmation"
1905
+ msgstr ""
1906
+
1907
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:462
1908
+ msgid ""
1909
+ "This is the email sent to the <span class=\"email_customizer_red"
1910
+ "\">administrator</span> upon registration."
1911
+ msgstr ""
1912
+
1913
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:479
1914
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:532
1915
+ #, fuzzy
1916
+ msgid "Display the password"
1917
+ msgstr "Passwort vergessen"
1918
+
1919
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:515
1920
+ msgid ""
1921
+ "This is the email sent to the <span class=\"email_customizer_red"
1922
+ "\">administrator</span> upon user registration with admin approval."
1923
+ msgstr ""
1924
+
1925
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:533
1926
+ #, fuzzy
1927
+ msgid "Display the first name"
1928
+ msgstr "Angezeigter Name"
1929
+
1930
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:534
1931
+ #, fuzzy
1932
+ msgid "Display the last name"
1933
+ msgstr "Angezeigter Name"
1934
+
1935
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:535
1936
+ #, fuzzy
1937
+ msgid "Display the nickname"
1938
+ msgstr "Angezeigter Name"
1939
+
1940
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
1941
+ msgid "Could not open socket!"
1942
+ msgstr "Sockel kann nicht geöffnet werden"
1943
+
1944
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
1945
+ msgid "To use reCAPTCHA you must get an API key from"
1946
+ msgstr "Um den reCAPTCHA zu nutzen benötigen Sie einen Schlüssel von"
1947
+
1948
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
1949
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1950
+ msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP von reCAPTCHA nutzen."
1951
+
1952
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
1953
+ msgid ""
1954
+ "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1955
+ msgstr ""
1956
+ "Um reCAPTCHA Mailhide zu nutzen, muss das \"MCRYPT PHP Modul\" installiert "
1957
+ "sein."
1958
+
1959
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
1960
+ msgid ""
1961
+ "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
1962
+ "you can do so at"
1963
+ msgstr ""
1964
+ "Um reCAPTCHA Mailhide nutzen zu können, müssen Sie sich für einen "
1965
+ "öffentlichen und privaten Schlüssel registrieren. Hier:"
1966
+
1967
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
1968
+ msgid ""
1969
+ "Adds a reCAPTCHA form on the registration page created in the front-end "
1970
+ "(only)."
1971
+ msgstr "Fügt einen reCAPTCHA auf der Registrierungsseite hinzu"
1972
+
1973
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
1974
+ msgid "For this you must get a public and private key from Google:"
1975
+ msgstr ""
1976
+ "Hierfür benötigen Sie einen privaten und öffentlichen Schlüssel von Google."
1977
+
1978
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
1979
+ msgid "Key"
1980
+ msgstr "Schlüssel"
1981
+
1982
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
1983
+ msgid "Code"
1984
+ msgstr "Code"
1985
+
1986
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
1987
+ msgid "Public Key:"
1988
+ msgstr "Öffentlicher Schlüssel"
1989
+
1990
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
1991
+ msgid "Private Key:"
1992
+ msgstr "Privater Schlüssel"
1993
+
1994
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
1995
+ msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1996
+ msgstr ""
1997
+ "Das reCaptcha wurde nicht erfolgreich eingegeben. Bitte gehen Sie zurück und "
1998
+ "probieren Sie es erneut."
1999
+
2000
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
2001
+ msgid ""
2002
+ "To create a page containing the users registered to this current site/blog, "
2003
+ "insert the following shortcode in a (blank) page: "
2004
+ msgstr ""
2005
+ "Um eine Seite mit dem User-Listing zu erstellen, fügend Sie den folgenden "
2006
+ "Code in aine leere Seite ein."
2007
+
2008
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:36
2009
+ msgid ""
2010
+ "For instance, to create a userlisting shortcode listing only the editors and "
2011
+ "authors, visible to only the users currently logged in, you would use:"
2012
+ msgstr ""
2013
+ "Wenn Sie das User-Listing nur eingeloggten Benutzern anzeigen wollen, fügen "
2014
+ "Sie bitte folgenden Code ein:"
2015
+
2016
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
2017
+ msgid ""
2018
+ "You can also create a userlisting page that displays users having a certain "
2019
+ "meta-value within a certain (extra) meta-field like so:"
2020
+ msgstr ""
2021
+
2022
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
2023
+ msgid ""
2024
+ "Remember though, that the field-value combination must exist in the database."
2025
+ msgstr ""
2026
+
2027
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:42
2028
+ msgid "These settings are applied to the front-end userlisting."
2029
+ msgstr "Diese Einstellungen werden im Front End des User-Listings angezeigt."
2030
+
2031
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:48
2032
+ msgid "Number of Users/Page: "
2033
+ msgstr "Anzahl Benutzer/Seite"
2034
+
2035
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:65
2036
+ #, fuzzy
2037
+ msgid "Default Sorting Criteria: "
2038
+ msgstr "Standart Sortierfolge"
2039
+
2040
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
2041
+ #, fuzzy
2042
+ msgid "Registration Date"
2043
+ msgstr "Nach Registrierung"
2044
+
2045
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
2046
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:600
2047
+ msgid "Display Name"
2048
+ msgstr "Angezeigter Name"
2049
+
2050
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:78
2051
+ #, fuzzy
2052
+ msgid "Number of Posts"
2053
+ msgstr "Anzahl Benutzer/Seite"
2054
+
2055
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:79
2056
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:623
2057
+ msgid "Aim"
2058
+ msgstr ""
2059
+
2060
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
2061
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:628
2062
+ msgid "Yim"
2063
+ msgstr ""
2064
+
2065
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
2066
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:633
2067
+ msgid "Jabber"
2068
+ msgstr ""
2069
+
2070
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:83
2071
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:152
2072
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:308
2073
+ #, fuzzy
2074
+ msgid "Custom Fields"
2075
+ msgstr "\" benutzerdefiniertes Feld ein."
2076
+
2077
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:99
2078
+ msgid "Default Sorting Order: "
2079
+ msgstr "Standart Sortierfolge"
2080
+
2081
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:102
2082
+ #, fuzzy
2083
+ msgid "Ascending"
2084
+ msgstr "Überschrift"
2085
+
2086
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:103
2087
+ msgid "Descending"
2088
+ msgstr ""
2089
+
2090
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:110
2091
+ msgid "\"All-Userlisting\" Template"
2092
+ msgstr "\"All-Userlisting\" Template"
2093
+
2094
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:112
2095
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:263
2096
+ msgid ""
2097
+ "With the userlisting templates you can customize the look, feel and "
2098
+ "information listed by the shortcode."
2099
+ msgstr ""
2100
+ "Mit dem User-Listing Template können Sie das Aussehen und die Informationen "
2101
+ "per Shortcode anzeigen lassen."
2102
+
2103
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:113
2104
+ msgid ""
2105
+ "The \"All Users Listing\" template is used to list all users. It's displayed "
2106
+ "on each page access where the shortcode is present."
2107
+ msgstr ""
2108
+ "Das \"All User Listing\"-Template zeigt die Liste aller Benutzer an. Es wird "
2109
+ "überall angezeigt wo der Shortcode implementiert ist"
2110
+
2111
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:117
2112
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:269
2113
+ #, fuzzy
2114
+ msgid "Avatar/Gravatar Size: "
2115
+ msgstr "Avatar Größe"
2116
+
2117
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:133
2118
+ msgid "Insert \"Sort By\" Field:"
2119
+ msgstr "\"Sortieren nach\" Feld einfügen"
2120
+
2121
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:138
2122
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:291
2123
+ #, fuzzy
2124
+ msgid "Default WordPress Fields"
2125
+ msgstr "Standart Profil Felder"
2126
+
2127
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:164
2128
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:286
2129
+ msgid "Insert \"User-Meta\" Field:"
2130
+ msgstr "\"User Meta\" Feld einfügen"
2131
+
2132
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:201
2133
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:328
2134
+ msgid "Insert Extra Functions:"
2135
+ msgstr "Extra Funktionen einfügen"
2136
+
2137
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
2138
+ msgid "Show/Hide Default \"All-Userlisting\" Code"
2139
+ msgstr "Zeige/Verberge Standart-\"All-User-Listing\"-Code"
2140
+
2141
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
2142
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:342
2143
+ msgid ""
2144
+ "If you wish to use a default userlisting, just copy the following code and "
2145
+ "paste it in the textarea below:"
2146
+ msgstr ""
2147
+ "Wenn Sie das Standart Userlisting nutzen möchten, kopieren Sie den Code in "
2148
+ "die untere Textfläche:"
2149
+
2150
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:227
2151
+ #, fuzzy
2152
+ msgid "More"
2153
+ msgstr "Mehr..."
2154
+
2155
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
2156
+ msgid "\"Single-Userlisting\" Template"
2157
+ msgstr "\"Single-Userlisting\"-Template"
2158
+
2159
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:264
2160
+ msgid ""
2161
+ "The \"Single User Listing\" template is used to list an individual user. "
2162
+ "It's displayed when clickin on the \"more info\" link."
2163
+ msgstr ""
2164
+ "Das \"Single-User-List\"-Template zeigt die Daten eines einzelnen Benutzers "
2165
+ "an. Es wird angezeigt sobald man auf \"Mehr Infos\" klickt."
2166
+
2167
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:317
2168
+ #, fuzzy
2169
+ msgid "Custom Fields(Description)"
2170
+ msgstr "\" benutzerdefiniertes Feld ein."
2171
+
2172
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:340
2173
+ msgid "Show/Hide Default \"Single-Userlisting\" Code"
2174
+ msgstr "Zeige/Verberge Standart-\"Single-User-Listing\"-Code"
2175
+
2176
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:446
2177
+ msgid ""
2178
+ "You need to activate the User-Listing feature from within the \"Addons\" tab!"
2179
+ msgstr "Sie müssen das User-Listing im \"Addons\" aktivieren!"
2180
+
2181
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:446
2182
+ msgid "You can find it in Profile Builder's menu."
2183
+ msgstr "Sie finden es im Profile Builder Menü."
2184
+
2185
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:476
2186
+ msgid "You need to be logged in to view the userlisting!"
2187
+ msgstr "Sie müssen eingeloggt sein um die User-Listings sehen zu können."
2188
+
2189
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
2190
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:530
2191
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1907
2192
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1942
2193
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/userlisting.class.php:445
2194
+ msgid "Search Users by All Fields"
2195
+ msgstr "Suche Benutzer nach alle Felder"
2196
+
2197
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
2198
+ msgid "Leave Blank and Press Search to List All Users"
2199
+ msgstr "Lassen Sie dieses Feld frei um nach allen Benutzern zu suchen."
2200
+
2201
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:556
2202
+ msgid "Search"
2203
+ msgstr "Suche"
2204
+
2205
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:557
2206
+ msgid "Clear Results"
2207
+ msgstr ""
2208
+
2209
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:570
2210
+ msgid "First/Lastname"
2211
+ msgstr "Vor/Nachname"
2212
+
2213
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:582
2214
+ msgid "Sign-up Date"
2215
+ msgstr "Registrierungsdatum"
2216
+
2217
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:618
2218
+ msgid "Posts"
2219
+ msgstr "Posts"
2220
+
2221
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:683
2222
+ msgid "Click here to see more information about this user"
2223
+ msgstr "Klicken Sie hie rum weitere Informationen über den Benutzer zu sehen"
2224
+
2225
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:683
2226
+ msgid "More..."
2227
+ msgstr "Mehr..."
2228
+
2229
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:685
2230
+ #, fuzzy
2231
+ msgid "Click here to see more information about this user."
2232
+ msgstr "Klicken Sie hie rum weitere Informationen über den Benutzer zu sehen"
2233
+
2234
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:948
2235
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1100
2236
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1501
2237
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1710
2238
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:658
2239
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:691
2240
+ msgid "No uploaded attachment"
2241
+ msgstr "Keine hochgeladenen Anhänge"
2242
+
2243
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:950
2244
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
2245
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1503
2246
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1560
2247
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1712
2248
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1769
2249
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2250
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2251
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2252
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2253
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:804
2254
+ msgid "Click to see the current attachment"
2255
+ msgstr "Klicken um Anhänge zu sehen"
2256
+
2257
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1241
2258
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1243
2259
+ msgid "Click here to go back"
2260
+ msgstr "Hier klicken um zurück zu gehen"
2261
+
2262
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1241
2263
+ msgid "Back"
2264
+ msgstr "Zurück"
2265
+
2266
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1501
2267
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1503
2268
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1710
2269
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1712
2270
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:658
2271
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2272
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:691
2273
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2274
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2275
+ msgid "Current file"
2276
+ msgstr "Aktuelle Datei"
2277
+
2278
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1558
2279
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1767
2280
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:770
2281
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:801
2282
+ msgid "Avatar"
2283
+ msgstr "Avatar"
2284
+
2285
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1826
2286
+ msgid "No results found!"
2287
+ msgstr "Keine Ergebnisse gefunden"
2288
+
2289
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1929
2290
+ msgid "&laquo;&laquo; First"
2291
+ msgstr "&laquo;&laquo; Erster"
2292
+
2293
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1930
2294
+ msgid "&laquo; Prev"
2295
+ msgstr "Letzter"
2296
+
2297
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1931
2298
+ msgid "Next &raquo; "
2299
+ msgstr "Nächster &raquo; "
2300
+
2301
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1932
2302
+ msgid "Last &raquo;&raquo;"
2303
+ msgstr "Letzter &raquo;&raquo;"
2304
+
2305
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
2306
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:458
2307
+ msgid "You must give your option a title."
2308
+ msgstr "Sie müssen der Option einen Titel geben."
2309
+
2310
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:307
2311
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:462
2312
+ msgid "You have entered an invalid meta-key format!"
2313
+ msgstr "Sie haben ein ungültiges Format des Meta-Keys eingegeben."
2314
+
2315
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:311
2316
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:466
2317
+ msgid "You must enter a valid meta-key."
2318
+ msgstr "Geben Sie einen gültigen Meta-Key ein."
2319
+
2320
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
2321
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
2322
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
2323
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
2324
+ msgid "That meta-key is already in use."
2325
+ msgstr "Der Meta-Key wird bereits verwendet."
2326
+
2327
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:334
2328
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
2329
+ msgid ""
2330
+ "There is already an avatar input-type. You can only have one avatar present."
2331
+ msgstr "Es ist bereits ein Avatar vorhanden."
2332
+
2333
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:341
2334
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
2335
+ msgid ""
2336
+ "There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
2337
+ "have one present."
2338
+ msgstr "Es existiert bereits eine \"Agree to Terms and Conditions\"-Checkbox."
2339
+
2340
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
2341
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:508
2342
+ msgid "The textarea row value must be numeric."
2343
+ msgstr "Der Wert der Zeilenanzahl muss numerisch sein."
2344
+
2345
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:350
2346
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:512
2347
+ msgid "The maxlength attribute must be numeric."
2348
+ msgstr "Das \"maxlength\"-Attribut muss numerisch sein."
2349
+
2350
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:357
2351
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:519
2352
+ msgid "The value must be between 20 and 200!"
2353
+ msgstr "Der Wert muss zwischen 20 und 200 liegen."
2354
+
2355
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:362
2356
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:524
2357
+ msgid "The width component of the entered value must be numeric!"
2358
+ msgstr "Der Wert \"Breite\" muss numerisch sein."
2359
+
2360
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:364
2361
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:526
2362
+ msgid "The height component of the entered value must be numeric!"
2363
+ msgstr "Der Wert \"Höhe\" muss numerisch sein."
2364
+
2365
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:366
2366
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:528
2367
+ msgid "The width component of the entered value must be between 20 and 200!"
2368
+ msgstr "Der Wert \"Breite\" muss zwischen 20 und 200 liegen."
2369
+
2370
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:368
2371
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:530
2372
+ msgid "The height component of the entered value must be between 20 and 200!"
2373
+ msgstr "Der Wert \"Höhe\" muss zwischen 20 und 200 liegen."
2374
+
2375
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:370
2376
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:532
2377
+ msgid "The pair of values entered didn't have the right format (width,height)!"
2378
+ msgstr "Die eingegebenen Werte haben nicht das richtige Format (Breite/Höhe)"
2379
+
2380
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:373
2381
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:535
2382
+ msgid "The entered avatar size must be numeric!"
2383
+ msgstr "Die eingegebene Größe des Avatars muss numerisch sein"
2384
+
2385
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:417
2386
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:606
2387
+ msgid "There was an error, please try again."
2388
+ msgstr "Fehler, bitte versuchen Sie es erneut."
2389
+
2390
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:45
2391
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:87
2392
+ msgid "Your session has expired! Please refresh the page and try again."
2393
+ msgstr ""
2394
+
2395
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:56
2396
+ #, fuzzy
2397
+ msgid "User successfully approved!"
2398
+ msgstr "Der Benutzer wurde erfolgreich aktiviert"
2399
+
2400
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:64
2401
+ #, fuzzy
2402
+ msgid "User successfully unapproved!"
2403
+ msgstr "Der Benutzer wurde erfolgreich aktiviert"
2404
+
2405
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:70
2406
+ #, fuzzy
2407
+ msgid "User successfully deleted!"
2408
+ msgstr "wurde erfolgreich gelöscht"
2409
+
2410
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:107
2411
+ #, fuzzy
2412
+ msgid "Users successfully approved!"
2413
+ msgstr "Der Benutzer wurde erfolgreich aktiviert"
2414
+
2415
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:122
2416
+ #, fuzzy
2417
+ msgid "Users successfully unapproved!"
2418
+ msgstr "Der Benutzer wurde erfolgreich aktiviert"
2419
+
2420
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:135
2421
+ #, fuzzy
2422
+ msgid "Users successfully deleted!"
2423
+ msgstr "wurde erfolgreich gelöscht"
2424
+
2425
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:151
2426
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:154
2427
+ #, fuzzy
2428
+ msgid "approved"
2429
+ msgstr "genehmigt"
2430
+
2431
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:158
2432
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:161
2433
+ #, fuzzy
2434
+ msgid "unapproved"
2435
+ msgstr "nicht genehmigt"
2436
+
2437
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:177
2438
+ msgid ""
2439
+ "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2440
+ "before you can log in."
2441
+ msgstr ""
2442
+ "<strong>FEHLER</strong>: Das Profil muss durch einen Administrator genehmigt "
2443
+ "werden bevor Sie sich einloggen können."
2444
+
2445
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:189
2446
+ #, fuzzy
2447
+ msgid ""
2448
+ "Your account has to be confirmed by an administrator before you can use the "
2449
+ "\"Password Recovery\" feature."
2450
+ msgstr ""
2451
+ "Ihr Account muss erst durch den Administrator freigegeben werden bevor Sie "
2452
+ "das Passwort ändern können."
2453
+
2454
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2455
+ msgid ""
2456
+ "You can create as many extra fields as your project requires. To break your "
2457
+ "custom fields into sections (on the front-end), add a \""
2458
+ msgstr ""
2459
+ "Sie können so viele zusätzliche Felder erstellen, wie Ihr Projekt erfordert. "
2460
+ "Um Ihre benutzerdefinierte Felder in Abschnitte (auf dem Front-End) zu "
2461
+ "unterteilen, fügen Sie ein \""
2462
+
2463
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2464
+ msgid "heading"
2465
+ msgstr "Überschrift"
2466
+
2467
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
2468
+ msgid "\" custom field."
2469
+ msgstr "\" benutzerdefiniertes Feld ein."
2470
+
2471
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2472
+ msgid "All of the fields can be sorted and rearranged to your liking with"
2473
+ msgstr ""
2474
+ "Alle Felder können sortiert und nach Ihren Wünschen umgestaltet werden mit"
2475
+
2476
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2477
+ msgid "Drag"
2478
+ msgstr "Drag"
2479
+
2480
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2481
+ msgid "Drop"
2482
+ msgstr "Drop"
2483
+
2484
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
2485
+ msgid ""
2486
+ "Don't worry about the order in which you create your custom fields, you can "
2487
+ "always reorder them."
2488
+ msgstr ""
2489
+ "Keine Sorge über die Reihenfolge der Felder. Sie können Sie jederzeit "
2490
+ "umsortieren."
2491
+
2492
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
2493
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
2494
+ msgid "Title"
2495
+ msgstr "Titel"
2496
+
2497
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
2498
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
2499
+ msgid "Type"
2500
+ msgstr "Typ"
2501
+
2502
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
2503
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
2504
+ msgid "Meta-Key"
2505
+ msgstr "Meta-Key"
2506
+
2507
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
2508
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
2509
+ msgid "ID"
2510
+ msgstr "ID"
2511
+
2512
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
2513
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
2514
+ msgid "Req'd"
2515
+ msgstr "Erforderlich"
2516
+
2517
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
2518
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
2519
+ msgid "Add Option"
2520
+ msgstr "Option Hinzufügen"
2521
+
2522
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
2523
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
2524
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:217
2525
+ msgid "Edit"
2526
+ msgstr "Bearbeiten"
2527
+
2528
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:101
2529
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:82
2530
+ msgid "Title:"
2531
+ msgstr "Titel:"
2532
+
2533
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:101
2534
+ msgid "The title of the item."
2535
+ msgstr "Titel des Artikels"
2536
+
2537
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:111
2538
+ msgid "Meta-Key:"
2539
+ msgstr "Meta-Key:"
2540
+
2541
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:111
2542
+ msgid ""
2543
+ "Use this in conjuction with WordPress functions to display the value in the "
2544
+ "page of your choosing. Auto-completed but editable - in this case it must be "
2545
+ "uniqe.<br/>Changing this might take long in case of a very big user-count."
2546
+ msgstr ""
2547
+ "Verwenden Sie diese Verbindung mit Wordpress Funktionen um den Wert in der "
2548
+ "Seite Ihrer Wahl anzuzeigen. Auto-Vervollständigung ist editierbar. In "
2549
+ "diesem Fall muss die Angabe einmalig sein.<br/> Änderungen können bei hoher "
2550
+ "Benutzerzahl eine lange Zeit in Anspruch nehmen."
2551
+
2552
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:144
2553
+ msgid "Option Type:"
2554
+ msgstr "Option-Typ"
2555
+
2556
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:144
2557
+ msgid "Choose one of the supported option types."
2558
+ msgstr "Wählen Sie eine der gewählten Optionen"
2559
+
2560
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2561
+ msgid "Description:"
2562
+ msgstr "Beschreibung"
2563
+
2564
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
2565
+ msgid ""
2566
+ "Enter a detailed description of the option for end users to read(optional)."
2567
+ msgstr ""
2568
+ "Geben Sie eine detailierte Beschreibung ein (Benutzer sehen diese (optional)"
2569
+
2570
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2571
+ msgid "You can only insert links using standard HTML syntax:"
2572
+ msgstr "Sie können Links nur mit dem Standart-HTML-Syntax einfügen:"
2573
+
2574
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2575
+ msgid "address"
2576
+ msgstr "Adresse"
2577
+
2578
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:155
2579
+ msgid "name"
2580
+ msgstr "Name"
2581
+
2582
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:165
2583
+ msgid "Options:"
2584
+ msgstr "Optionen:"
2585
+
2586
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:165
2587
+ msgid ""
2588
+ "Enter a comma separated list of options.<br/>These can be anything, as it is "
2589
+ "hidden from the user, but should not contain special characters, spaces or "
2590
+ "apostrophes."
2591
+ msgstr ""
2592
+
2593
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:176
2594
+ msgid "Labels:"
2595
+ msgstr ""
2596
+
2597
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:176
2598
+ #, fuzzy
2599
+ msgid ""
2600
+ "Enter a comma separated list of labels for the above options.<br/>For "
2601
+ "example, you could have \"One,Two,Three\" or just a single value like \"Yes"
2602
+ "\" for a checkbox.<br/>Visible for the user, and if no labels are specified, "
2603
+ "the values from the options are used instead."
2604
+ msgstr "Geben Sie eine kommagetrennte Liste der Optionen ein."
2605
+
2606
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:187
2607
+ msgid "ID:"
2608
+ msgstr "ID:"
2609
+
2610
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:187
2611
+ msgid ""
2612
+ "This is the internal ID for this input. You can use this in conjuction with "
2613
+ "filters to target this element if needed.<br/>Can't be edited."
2614
+ msgstr "Dies ist die interne ID für dieses Feld."
2615
+
2616
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:198
2617
+ msgid "Required:"
2618
+ msgstr "Benötigt:"
2619
+
2620
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:198
2621
+ msgid "Check this box to make this field required."
2622
+ msgstr "Anhaken um dieses Feld als erforderlich zu markieren."
2623
+
2624
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
2625
+ msgid "Cancel"
2626
+ msgstr "Abbrechen"
2627
+
2628
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
2629
+ msgid "Save"
2630
+ msgstr "Speichern"
2631
+
2632
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:71
2633
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:186
2634
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:275
2635
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:363
2636
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:437
2637
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:505
2638
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:560
2639
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
2640
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:677
2641
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:787
2642
+ msgid ""
2643
+ "This field wasn't updated because you entered and empty string (It was "
2644
+ "marked as required by the administrator)"
2645
+ msgstr "Das Feld konnte nicht aktualisiert werden da es leer ist."
2646
+
2647
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:655
2648
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
2649
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:763
2650
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:793
2651
+ msgid "max upload size"
2652
+ msgstr "Maximale Upload Größe"
2653
+
2654
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:661
2655
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:697
2656
+ msgid "Are you sure you want to delete this attachment?"
2657
+ msgstr "Sind Sie sicher dass Sie den Anhang löschen möchten?"
2658
+
2659
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:662
2660
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:698
2661
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2662
+ msgid "Click to delete the current attachment"
2663
+ msgstr "Klicken Sie um den Anhang zu löschen."
2664
+
2665
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:695
2666
+ msgid ""
2667
+ "The attachment can't be deleted (It was marked as required by the "
2668
+ "administrator)"
2669
+ msgstr "Der Anhang kann nicht gelöscht werden."
2670
+
2671
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:766
2672
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:797
2673
+ msgid "Current avatar"
2674
+ msgstr "Derzeitiger Avatar"
2675
+
2676
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:766
2677
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:797
2678
+ msgid "No uploaded avatar"
2679
+ msgstr "Kein hochgeladener Avatar"
2680
+
2681
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:772
2682
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2683
+ msgid "Are you sure you want to delete this avatar?"
2684
+ msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
2685
+
2686
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:804
2687
+ msgid ""
2688
+ "The avatar image can't be deleted (It was marked as required by the "
2689
+ "administrator)."
2690
+ msgstr "Der Avatar kann nicht gelöscht werden."
2691
+
2692
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2693
+ msgid "Click to see the current avatar"
2694
+ msgstr "Klicken Sie um den aktuellen Avatar zu sehen."
2695
+
2696
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:806
2697
+ msgid "Click to delete the avatar"
2698
+ msgstr "Klicken Sie um den Avatar zu löschen."
2699
+
2700
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:860
2701
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:952
2702
+ #, fuzzy
2703
+ msgid "The avatar was successfully deleted!"
2704
+ msgstr "Der Avatar wurde gelöscht"
2705
+
2706
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:862
2707
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:954
2708
+ #, fuzzy
2709
+ msgid "The following attachment was successfully deleted:"
2710
+ msgstr "Der Avatar wurde gelöscht"
2711
+
2712
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
2713
+ msgid "This login widget lets you add a login form in the sidebar."
2714
+ msgstr "Dieses Widget lässt ein Login-Formular in die Sidebar erscheinen."
2715
+
2716
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
2717
+ msgid "Profile Builder Login Widget"
2718
+ msgstr "Profile Login Builder Widget"
2719
+
2720
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:42
2721
+ msgid "Don't have an account?"
2722
+ msgstr "Sie haben noch kein Profil?"
2723
+
2724
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2725
+ #, fuzzy
2726
+ msgid "Lost Password"
2727
+ msgstr "Passwort vergessen"
2728
+
2729
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:49
2730
+ msgid "Lost Your Password?"
2731
+ msgstr "Sie haben Ihr Passwort vergessen?"
2732
+
2733
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:78
2734
+ msgid "Login"
2735
+ msgstr "Einloggen"
2736
+
2737
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:87
2738
+ #, fuzzy
2739
+ msgid "After login redirect URL (optional):"
2740
+ msgstr "Weiterleitungs-URL nach dem Einloggen:"
2741
+
2742
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:92
2743
+ #, fuzzy
2744
+ msgid "Register page URL (optional):"
2745
+ msgstr "URL zur Registrierungsseite:"
2746
+
2747
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:97
2748
+ #, fuzzy
2749
+ msgid "Password Recovery page URL (optional):"
2750
+ msgstr "URL zur \"Passwort vergessen\"-Seite"
2751
+
2752
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
2753
+ msgid "The user-validation has failed - the avatar was not deleted!"
2754
+ msgstr ""
2755
+ "Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
2756
+
2757
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
2758
+ msgid "The user-validation has failed - the attachment was not deleted!"
2759
+ msgstr ""
2760
+ "Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
2761
+
2762
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:339
2763
+ #, php-format
2764
+ msgid ""
2765
+ "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
2766
+ "Please %1$sregister your copy%2$s of Profile Builder to receive access to "
2767
+ "automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
2768
+ "%5$sDismiss%6$s"
2769
+ msgstr ""
2770
+
2771
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:343
2772
+ #, php-format
2773
+ msgid ""
2774
+ "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
2775
+ "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
2776
+ "priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
2777
+ msgstr ""
2778
+
2779
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
2780
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
2781
+ msgid "Register your version of Profile Builder Pro"
2782
+ msgstr "Registrieren Sie Ihre Version."
2783
+
2784
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
2785
+ msgid ""
2786
+ "Now that you acquired a copy of Profile Builder Pro, you should take the "
2787
+ "time and register it with the serial number you received in the e-mail."
2788
+ msgstr ""
2789
+ "Geben Sie den Registrierungsschlüssel ein der Ihnen mit der Bestätigungsmail "
2790
+ "zugesandt wurde."
2791
+
2792
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
2793
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
2794
+ msgid ""
2795
+ "If you register this version of Profile Builder, you'll receive information "
2796
+ "regarding eventual upgrades, patches, and - if needed - technical support."
2797
+ msgstr ""
2798
+ "Wenn Sie sich registrieren, erhalten Sie Informationen über Upgrades, "
2799
+ "Patches und technischen Support."
2800
+
2801
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
2802
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
2803
+ msgid "Serial Number:"
2804
+ msgstr "Seriennummer:"
2805
+
2806
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
2807
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
2808
+ msgid "The serial number was successfully validated!"
2809
+ msgstr "Die Seriennummer wurde bestätigt."
2810
+
2811
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
2812
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
2813
+ #, fuzzy
2814
+ msgid "The serial number entered couldn't be validated!"
2815
+ msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
2816
+
2817
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
2818
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
2819
+ #, fuzzy
2820
+ msgid "The serial number couldn't be validated because it is no longer valid!"
2821
+ msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
2822
+
2823
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
2824
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
2825
+ msgid ""
2826
+ "The serial number couldn't be validated because process timed out. This is "
2827
+ "possible due to the server being down. Please try again later!"
2828
+ msgstr ""
2829
+ "Die Seriennummer wurde nicht bestätigt weil ein Problem mit dem Server "
2830
+ "besteht. Bitte versuchen Sie es später noch einmal. "
2831
+
2832
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
2833
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2834
+ msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2835
+
2836
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
2837
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
2838
+ #, fuzzy
2839
+ msgid "Register your version of Profile Builder Hobbyist"
2840
+ msgstr "Registrieren Sie Ihre Version."
2841
+
2842
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
2843
+ #, fuzzy
2844
+ msgid ""
2845
+ "Now that you acquired a copy of Profile Builder Hobbyist, you should take "
2846
+ "the time and register it with the serial number you received in the e-mail."
2847
+ msgstr ""
2848
+ "Geben Sie den Registrierungsschlüssel ein der Ihnen mit der Bestätigungsmail "
2849
+ "zugesandt wurde."
2850
+
2851
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
2852
+ #, fuzzy
2853
+ msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2854
+ msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2855
+
2856
+ #~ msgid "The email address was"
2857
+ #~ msgstr "Diese E-Mail wurde"
2858
+
2859
+ #~ msgid "The email address you entered is invalid."
2860
+ #~ msgstr "Die eingegebene E-Mail Adresse ist ungültig!"
2861
+
2862
+ #~ msgid "The passwords you entered do not match."
2863
+ #~ msgstr "Die eingegebenen Passwörter stimmen nicht überein"
2864
+
2865
+ #~ msgid "The password was"
2866
+ #~ msgstr "Das Passwort ist"
2867
+
2868
+ #~ msgid "You didn't complete both password fields."
2869
+ #~ msgstr "Sie haben die beiden Passwort Felder nicht ausgefüllt"
2870
+
2871
+ #~ msgid "Your profile was NOT updated!"
2872
+ #~ msgstr "Ihr Profil wurde NICHT aktualisiert"
2873
+
2874
+ #~ msgid "the current user?"
2875
+ #~ msgstr "den aktuellen Benutzer?"
2876
+
2877
+ #~ msgid "unapprove"
2878
+ #~ msgstr "nicht genehmigt"
2879
+
2880
+ #~ msgid "approve"
2881
+ #~ msgstr "genehmigt"
2882
+
2883
+ #, fuzzy
2884
+ #~ msgid "Are you sure you want to %1$s this user?"
2885
+ #~ msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
2886
+
2887
+ #~ msgid ""
2888
+ #~ "If you added new roles (via another plugin) <u>after</u> Profile Builder "
2889
+ #~ "was activated, please reactivate it, since the roles are initialized "
2890
+ #~ "during plugin activation."
2891
+ #~ msgstr ""
2892
+ #~ "Wenn Sie neue Benutzerollen (ueber ein anderes Plugin) erstellt haben "
2893
+ #~ "<u>nachdem</u> Profile Builder aktiviert wurde, muessen Sie es "
2894
+ #~ "reaktivieren. "
2895
+
2896
+ #~ msgid "The information size you were trying to submit was larger than"
2897
+ #~ msgstr "Die Information die Sie übertragen wollen ist größer als"
2898
+
2899
+ #~ msgid "This is usually caused by a large file(s) trying to be uploaded."
2900
+ #~ msgstr ""
2901
+ #~ "Dies wird für gewöhnlich verursacht wenn große Dateien hochgeladen werden "
2902
+ #~ "sollen."
2903
+
2904
+ #~ msgid "Since it was also larger than"
2905
+ #~ msgstr "Es war größer als:"
2906
+
2907
+ #~ msgid "no additional information is available."
2908
+ #~ msgstr "keine weiteren Informationen verfügbar."
2909
+
2910
+ #~ msgid "The attachment"
2911
+ #~ msgstr "Der Anhang"
2912
+
2913
+ #~ msgid "Possible cause: the size was bigger than"
2914
+ #~ msgstr "Möglicher Grund: die Datei war größer als"
2915
+
2916
+ #~ msgid "The listed attachements were"
2917
+ #~ msgstr "Die augelisteten Anhänger sind"
2918
+
2919
+ #~ msgid "This file was"
2920
+ #~ msgstr "Der Anhang ist"
2921
+
2922
+ #~ msgid "A password reset email has been sent to "
2923
+ #~ msgstr "Eine E-Mail zum zurücsetzen Ihres Passwortes wurde gesendet an:"
2924
+
2925
+ #~ msgid ""
2926
+ #~ "Someone requested that the password be reset for the following account: "
2927
+ #~ msgstr ""
2928
+ #~ "Es wurde ein Anfrage zum Zurücksetzen Ihres Passwortes gestellt. Die "
2929
+ #~ "Anfrage bezieht sich auf folgenden Account:"
2930
+
2931
+ #~ msgid ""
2932
+ #~ "If this was a mistake, just ignore this email and nothing will happen."
2933
+ #~ msgstr ""
2934
+ #~ "Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese E-"
2935
+ #~ "Mail!"
2936
+
2937
+ #~ msgid "To reset your password, visit the following link:"
2938
+ #~ msgstr "Um Ihr Passwort zurückzusetzen folgen Sie bitte dem folgenden Link:"
2939
+
2940
+ #~ msgid "from"
2941
+ #~ msgstr "von"
2942
+
2943
+ #~ msgid "New subscriber on"
2944
+ #~ msgstr "Neue Registreirung bei:"
2945
+
2946
+ #~ msgid "Welcome to"
2947
+ #~ msgstr "Willkommen bei"
2948
+
2949
+ #~ msgid "Your username is:"
2950
+ #~ msgstr "Ihr Benutzername ist:"
2951
+
2952
+ #~ msgid "and password:"
2953
+ #~ msgstr "und das Passwort:"
2954
+
2955
+ #~ msgid "The user was NOT created!"
2956
+ #~ msgstr "Der Benutzer wurde nicht erstellt."
2957
+
2958
+ #~ msgid "An email has been sent to "
2959
+ #~ msgstr "An "
2960
+
2961
+ #~ msgid "with information on how to activate his/her account"
2962
+ #~ msgstr ""
2963
+ #~ "wurde eine E-Mail mit der Information wie das Profil aktiviert wird "
2964
+ #~ "gesendet."
2965
+
2966
+ #~ msgid "Your account on"
2967
+ #~ msgstr "Ihr Profil auf"
2968
+
2969
+ #~ msgid "Are you sure you want to"
2970
+ #~ msgstr "Sind Sie sicher dass Sie"
2971
+
2972
+ #~ msgid "Does not."
2973
+ #~ msgstr "Nicht"
translation/profilebuilder-en_US.mo CHANGED
Binary file
translation/profilebuilder-en_US.po CHANGED
@@ -1,2294 +1,2662 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: ProfileBuilder\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-14 14:34+0200\n"
6
- "PO-Revision-Date: 2013-05-14 14:34+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"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.5\n"
15
- "X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
16
- "pro\n"
17
-
18
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
19
- msgid "unapprove this user?"
20
- msgstr ""
21
-
22
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:116
23
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:218
24
- msgid "Unapprove"
25
- msgstr ""
26
-
27
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
28
- msgid "approve this user?"
29
- msgstr ""
30
-
31
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:118
32
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:217
33
- msgid "Approve"
34
- msgstr ""
35
-
36
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:166
37
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:153
38
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:889
39
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:155
40
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1076
41
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
42
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:79
43
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:525
44
- msgid "Username"
45
- msgstr ""
46
-
47
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:167
48
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:154
49
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1022
50
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1064
51
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1178
52
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
53
- msgid "E-mail"
54
- msgstr ""
55
-
56
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:168
57
- msgid "Role"
58
- msgstr ""
59
-
60
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:169
61
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:155
62
- msgid "Registered"
63
- msgstr ""
64
-
65
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:170
66
- msgid "User-status"
67
- msgstr ""
68
-
69
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:244
70
- msgid "Do you want to bulk approve the selected users?"
71
- msgstr ""
72
-
73
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:252
74
- msgid "Do you want to bulk unapprove the selected users?"
75
- msgstr ""
76
-
77
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:260
78
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:263
79
- msgid "Sorry, but you don't have permission to do that!"
80
- msgstr ""
81
-
82
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:294
83
- msgid "Approved"
84
- msgstr ""
85
-
86
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:296
87
- msgid "Unapproved"
88
- msgstr ""
89
-
90
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:466
91
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:8
92
- msgid "Admin Approval"
93
- msgstr ""
94
-
95
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.bulk.approve.unapprove.php:469
96
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:456
97
- msgid "All Users"
98
- msgstr ""
99
-
100
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
101
- msgid "delete this user from the _signups table?"
102
- msgstr ""
103
-
104
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:106
105
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:200
106
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
107
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
108
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
109
- msgid "Delete"
110
- msgstr ""
111
-
112
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
113
- msgid "confirm this email yourself?"
114
- msgstr ""
115
-
116
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:107
117
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:201
118
- msgid "Confirm Email"
119
- msgstr ""
120
-
121
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:228
122
- msgid "couldn't be deleted."
123
- msgstr ""
124
-
125
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:239
126
- msgid "All users have been successfully deleted."
127
- msgstr ""
128
-
129
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:254
130
- msgid "The selected users have been activated."
131
- msgstr ""
132
-
133
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/classes/class.email.confirmation.php:453
134
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:48
135
- msgid "Users with Unconfirmed Email Address"
136
- msgstr ""
137
-
138
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:83
139
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:320
140
- #, php-format
141
- msgid ""
142
- "The information size you were trying to submit was larger than %1$sb!<br/"
143
- ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
144
- "it was also larger than %2$sb no additional information is available.<br/"
145
- ">The user was NOT created!"
146
- msgstr ""
147
-
148
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:769
149
- msgid "You must be logged in to edit your profile."
150
- msgstr ""
151
-
152
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:777
153
- msgid "The avatar was successfully deleted."
154
- msgstr ""
155
-
156
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:782
157
- #, php-format
158
- msgid "The attachment \"%1$s\" was successfully deleted."
159
- msgstr ""
160
-
161
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:795
162
- msgid "The changes have been successfully saved."
163
- msgstr ""
164
-
165
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
166
- #, php-format
167
- msgid ""
168
- "The email address you entered is already registered to a different user."
169
- "%1$sThe email address was %2$sNOT%3$s updated along with the rest of the "
170
- "information."
171
- msgstr ""
172
-
173
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:804
174
- #, php-format
175
- msgid ""
176
- "The email address you entered is invalid.%1$sThe email address was %2$sNOT"
177
- "%3$s updated along with the rest of the information."
178
- msgstr ""
179
-
180
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:809
181
- #, php-format
182
- msgid ""
183
- "The passwords you entered do not match.%1$sThe password was %2$sNOT%3$s "
184
- "updated along with the rest of the information."
185
- msgstr ""
186
-
187
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:814
188
- #, php-format
189
- msgid ""
190
- "You didn't complete both password fields.%1$sThe password was %2$sNOT%3$s "
191
- "updated along with the rest of the information."
192
- msgstr ""
193
-
194
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
195
- msgid ""
196
- "Your profile was NOT updated, since not all required fields were completed!"
197
- msgstr ""
198
-
199
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
200
- msgid "There was an error while trying to upload the following attachments:"
201
- msgstr ""
202
-
203
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:836
204
- #, php-format
205
- msgid ""
206
- "Possible cause: the size was bigger than %1$sb. The listed attachements were "
207
- "%2$sNOT%3$s updated along with the rest of the information."
208
- msgstr ""
209
-
210
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
211
- msgid "There was an error while trying to upload your avatar picture."
212
- msgstr ""
213
-
214
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
215
- msgid "Possible cause: size/incorrect file-type."
216
- msgstr ""
217
-
218
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
219
- msgid "The avatar was"
220
- msgstr ""
221
-
222
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
223
- msgid "NOT"
224
- msgstr ""
225
-
226
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
227
- msgid "updated along with the rest of the information."
228
- msgstr ""
229
-
230
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:851
231
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:646
232
- msgid "There was an error while trying to upload the following attachment(s)"
233
- msgstr ""
234
-
235
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:858
236
- #, php-format
237
- msgid ""
238
- "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
239
- "file was %2$sNOT%3$s updated along with the rest of the information."
240
- msgstr ""
241
-
242
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
243
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1029
244
- msgid "Name"
245
- msgstr ""
246
-
247
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:880
248
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:153
249
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:80
250
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:537
251
- msgid "Email"
252
- msgstr ""
253
-
254
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:881
255
- msgid "The email cannot be changed."
256
- msgstr ""
257
-
258
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:890
259
- msgid "The usernames cannot be changed."
260
- msgstr ""
261
-
262
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
263
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:920
264
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:940
265
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:960
266
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1012
267
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1034
268
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1052
269
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1070
270
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1088
271
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1109
272
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:68
273
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:174
274
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:243
275
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:311
276
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:378
277
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:446
278
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:501
279
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:551
280
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
281
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:727
282
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:774
283
- msgid "This field is marked as required by the administrator."
284
- msgstr ""
285
-
286
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:903
287
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:923
288
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:943
289
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:963
290
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1015
291
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1036
292
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1054
293
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1072
294
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1090
295
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1111
296
- msgid ""
297
- "This field wasn't updated because you entered and empty string (It was "
298
- "marked as required by the administrator."
299
- msgstr ""
300
-
301
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
302
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1101
303
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
304
- msgid "First Name"
305
- msgstr ""
306
-
307
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:930
308
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1125
309
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
310
- msgid "Last Name"
311
- msgstr ""
312
-
313
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:950
314
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1149
315
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
316
- msgid "Nickname"
317
- msgstr ""
318
-
319
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:971
320
- msgid "Display name publicly as"
321
- msgstr ""
322
-
323
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1003
324
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1155
325
- msgid "Contact Info"
326
- msgstr ""
327
-
328
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1024
329
- msgid "(required)"
330
- msgstr ""
331
-
332
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1042
333
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1203
334
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
335
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:567
336
- msgid "Website"
337
- msgstr ""
338
-
339
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1060
340
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1227
341
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
342
- msgid "AIM"
343
- msgstr ""
344
-
345
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1078
346
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1251
347
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
348
- msgid "Yahoo IM"
349
- msgstr ""
350
-
351
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1096
352
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1275
353
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
354
- msgid "Jabber / Google Talk"
355
- msgstr ""
356
-
357
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1102
358
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1281
359
- msgid "About Yourself"
360
- msgstr ""
361
-
362
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1117
363
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1302
364
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
365
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:573
366
- msgid "Biographical Info"
367
- msgstr ""
368
-
369
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1127
370
- msgid "New Password"
371
- msgstr ""
372
-
373
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1132
374
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
375
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
376
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1341
377
- msgid "Repeat Password"
378
- msgstr ""
379
-
380
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:1163
381
- msgid "Update"
382
- msgstr ""
383
-
384
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
385
- #, php-format
386
- msgid "You are currently logged in as %1$s. %2$s"
387
- msgstr ""
388
-
389
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
390
- msgid "Log out of this account"
391
- msgstr ""
392
-
393
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:67
394
- msgid "Log out"
395
- msgstr ""
396
-
397
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:78
398
- #, php-format
399
- msgid "You have successfully logged in as %1$s"
400
- msgstr ""
401
-
402
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
403
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
404
- #, php-format
405
- msgid ""
406
- "You will soon be redirected automatically. If you see this page for more "
407
- "than 1 second, please click %1$s"
408
- msgstr ""
409
-
410
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:97
411
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:106
412
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
413
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
414
- msgid "here"
415
- msgstr ""
416
-
417
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
418
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
419
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
420
- msgid "ERROR:"
421
- msgstr ""
422
-
423
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
424
- msgid "The email field is empty"
425
- msgstr ""
426
-
427
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:126
428
- msgid "The username field is empty"
429
- msgstr ""
430
-
431
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:167
432
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
433
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
434
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1336
435
- msgid "Password"
436
- msgstr ""
437
-
438
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:175
439
- msgid "Log in"
440
- msgstr ""
441
-
442
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:179
443
- msgid "Remember me"
444
- msgstr ""
445
-
446
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:194
447
- msgid "Lost password?"
448
- msgstr ""
449
-
450
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
451
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
452
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
453
- msgid "ERROR"
454
- msgstr ""
455
-
456
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
457
- msgid ""
458
- "Your account has to be confirmed by an administrator before you can use the "
459
- "\"Password Reset\" feature."
460
- msgstr ""
461
-
462
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
463
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
464
- #, php-format
465
- msgid ""
466
- "A password reset email has been sent to %1$s.<br/>Following the link sent in "
467
- "the email address will reset the password."
468
- msgstr ""
469
-
470
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
471
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
472
- #, php-format
473
- msgid ""
474
- "Someone requested that the password be reset for the following account: <b>"
475
- "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
476
- "happen.<br/>To reset your password, visit the following link:%2$s"
477
- msgstr ""
478
-
479
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
480
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
481
- #, php-format
482
- msgid "Password Reset Feature from \"%1$s\""
483
- msgstr ""
484
-
485
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
486
- #, php-format
487
- msgid "There was an error while trying to send the activation link to %1$s!"
488
- msgstr ""
489
-
490
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
491
- msgid "The email address entered wasn't found in the database!"
492
- msgstr ""
493
-
494
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
495
- msgid "Please check that you entered the correct email address."
496
- msgstr ""
497
-
498
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
499
- msgid "There was an error while trying to send the activation link to "
500
- msgstr ""
501
-
502
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
503
- msgid "The username entered wasn't found in the database!"
504
- msgstr ""
505
-
506
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
507
- msgid "Please check that you entered the correct username."
508
- msgstr ""
509
-
510
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
511
- msgid "Your password has been successfully changed!"
512
- msgstr ""
513
-
514
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
515
- #, php-format
516
- msgid "You have successfully reset your password to: %1$s"
517
- msgstr ""
518
-
519
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
520
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
521
- #, php-format
522
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
523
- msgstr ""
524
-
525
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
526
- #, php-format
527
- msgid ""
528
- "%1$s has requested a password change via the password reset feature.<br/>His/"
529
- "her new password is:%2$s"
530
- msgstr ""
531
-
532
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
533
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:643
534
- msgid "The entered passwords don't match!"
535
- msgstr ""
536
-
537
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
538
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
539
- msgid "Reset Password"
540
- msgstr ""
541
-
542
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
543
- msgid "Invalid key!"
544
- msgstr ""
545
-
546
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
547
- msgid "Please enter your username or email address."
548
- msgstr ""
549
-
550
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
551
- msgid "You will receive a link to create a new password via email."
552
- msgstr ""
553
-
554
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
555
- msgid "Username or E-mail"
556
- msgstr ""
557
-
558
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
559
- msgid "Get New Password"
560
- msgstr ""
561
-
562
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:217
563
- msgid "Invalid activation key!"
564
- msgstr ""
565
-
566
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:221
567
- msgid "The user is already active!"
568
- msgstr ""
569
-
570
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:239
571
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:381
572
- msgid "Could not create user!"
573
- msgstr ""
574
-
575
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:242
576
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:384
577
- msgid "That username is already activated!"
578
- msgstr ""
579
-
580
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:268
581
- msgid "The user was successfully activated."
582
- msgstr ""
583
-
584
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:270
585
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/email.confirmation.php:410
586
- msgid "There was an error while trying to activate the user."
587
- msgstr ""
588
-
589
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:630
590
- msgid "A username is required for registration."
591
- msgstr ""
592
-
593
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:634
594
- msgid "Sorry, that username already exists!"
595
- msgstr ""
596
-
597
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:636
598
- msgid "You must enter a valid email address."
599
- msgstr ""
600
-
601
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:638
602
- msgid "Sorry, that email address is already used!"
603
- msgstr ""
604
-
605
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:641
606
- msgid "You didn't complete one of the password-fields!"
607
- msgstr ""
608
-
609
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
610
- msgid "Only files with the following extension(s) can be uploaded:"
611
- msgstr ""
612
-
613
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:653
614
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
615
- msgid "The account was NOT created!"
616
- msgstr ""
617
-
618
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:657
619
- msgid "You must agree to the terms and conditions before registering!"
620
- msgstr ""
621
-
622
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:659
623
- msgid "(Several required fields were left uncompleted)"
624
- msgstr ""
625
-
626
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
627
- msgid "This username is already reserved to be used soon."
628
- msgstr ""
629
-
630
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:677
631
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
632
- msgid "Please try a different one!"
633
- msgstr ""
634
-
635
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:681
636
- msgid "This email address is already reserved to be used soon."
637
- msgstr ""
638
-
639
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
640
- msgid "You are logged in as"
641
- msgstr ""
642
-
643
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
644
- msgid "You don't need another account."
645
- msgstr ""
646
-
647
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
648
- msgid "Log out of this account."
649
- msgstr ""
650
-
651
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
652
- msgid "Logout"
653
- msgstr ""
654
-
655
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:919
656
- #, php-format
657
- msgid ""
658
- "An email has been sent to %1$s with information on how to activate his/her "
659
- "account."
660
- msgstr ""
661
-
662
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:923
663
- #, php-format
664
- msgid "A user account has been created for %1$s."
665
- msgstr ""
666
-
667
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:943
668
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:973
669
- #, php-format
670
- msgid ""
671
- "You will soon be redirected automatically. If you see this page for more "
672
- "than 3 seconds, please click %1$s.%2$s"
673
- msgstr ""
674
-
675
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:949
676
- msgid ""
677
- "An email has been sent to you with information on how to activate your "
678
- "account."
679
- msgstr ""
680
-
681
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:953
682
- #, php-format
683
- msgid "Thank you for registering %1$s."
684
- msgstr ""
685
-
686
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:980
687
- msgid "An error occured while trying to send the notification email."
688
- msgstr ""
689
-
690
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:985
691
- msgid "An email containing activation instructions was successfully sent."
692
- msgstr ""
693
-
694
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:990
695
- msgid "An email containing the username and password was successfully sent."
696
- msgstr ""
697
-
698
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1006
699
- msgid "Users can register themselves or you can manually create users here."
700
- msgstr ""
701
-
702
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1011
703
- msgid ""
704
- "Users cannot currently register themselves, but you can manually create "
705
- "users here."
706
- msgstr ""
707
-
708
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1016
709
- msgid "Only an administrator can add new users."
710
- msgstr ""
711
-
712
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1039
713
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1090
714
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1114
715
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1138
716
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
717
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1216
718
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1240
719
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
720
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1291
721
- msgid ""
722
- "This field must be filled out before registering (It was marked as required "
723
- "by the administrator)"
724
- msgstr ""
725
-
726
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1050
727
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1087
728
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1111
729
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1135
730
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1164
731
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1189
732
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1213
733
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1237
734
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1261
735
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1288
736
- msgid "This field is marked as required by the administrator"
737
- msgstr ""
738
-
739
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
740
- msgid "Anti-Spam"
741
- msgstr ""
742
-
743
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1385
744
- msgid "Send these credentials via email."
745
- msgstr ""
746
-
747
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
748
- msgid "Add User"
749
- msgstr ""
750
-
751
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1399
752
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:41
753
- msgid "Register"
754
- msgstr ""
755
-
756
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
757
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
758
- msgid "Show/Hide the Admin Bar on Front End"
759
- msgstr ""
760
-
761
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
762
- msgid "User-group"
763
- msgstr ""
764
-
765
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
766
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
767
- msgid "Visibility"
768
- msgstr ""
769
-
770
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
771
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
772
- msgid "Default"
773
- msgstr ""
774
-
775
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
776
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
777
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
778
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
779
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
780
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
781
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
782
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
783
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
784
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
785
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
786
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
787
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
788
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:33
789
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:415
790
- msgid "Show"
791
- msgstr ""
792
-
793
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
794
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
795
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
796
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
797
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
798
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
799
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
800
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
801
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
802
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
803
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
804
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
805
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
806
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:34
807
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:416
808
- msgid "Hide"
809
- msgstr ""
810
-
811
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
812
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
813
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:89
814
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:59
815
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
816
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:377
817
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/email.customizer.php:650
818
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
819
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
820
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
821
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
822
- msgid "Save Changes"
823
- msgstr ""
824
-
825
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
826
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
827
- msgid "Profile Builder"
828
- msgstr ""
829
-
830
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
831
- msgid "Welcome to Profile Builder!"
832
- msgstr ""
833
-
834
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
835
- msgid ""
836
- " lets you customize your website by adding a front-end menu for all your "
837
- "users, giving them a more flexible way to modify their user-information or "
838
- "to register new users."
839
- msgstr ""
840
-
841
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
842
- msgid ""
843
- "Also, grants users with administrator rights to customize basic fields or to "
844
- "add new ones."
845
- msgstr ""
846
-
847
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
848
- msgid ""
849
- "To achieve this, just create a new page, and give it an intuitive name(e.g. "
850
- "Edit Profile)."
851
- msgstr ""
852
-
853
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
854
- msgid ""
855
- "Now all you need to do is add the following shortcode(for the previous "
856
- "example): "
857
- msgstr ""
858
-
859
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
860
- msgid "Publish your page and you are ready to go!"
861
- msgstr ""
862
-
863
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
864
- msgid "You can use the following shortcodes:"
865
- msgstr ""
866
-
867
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
868
- msgid "for a log-in form."
869
- msgstr ""
870
-
871
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
872
- msgid "to add a registration form."
873
- msgstr ""
874
-
875
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
876
- msgid ""
877
- "to grant users a front-end acces to their personal information(requires user "
878
- "to be logged in)."
879
- msgstr ""
880
-
881
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
882
- msgid "to add a password recovery form."
883
- msgstr ""
884
-
885
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
886
- msgid ""
887
- "With the <strong>Pro</strong> version, users with administrator rights have "
888
- "access to the following features:"
889
- msgstr ""
890
-
891
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
892
- msgid ""
893
- "add a custom stylesheet/inherit values from the current theme or use one of "
894
- "the following built into this plugin: default, white or black."
895
- msgstr ""
896
-
897
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
898
- msgid ""
899
- "select whether to display or not the admin bar in the front end for a "
900
- "specific user-group registered to the site."
901
- msgstr ""
902
-
903
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
904
- msgid ""
905
- "select which information-field can users see/modify. The hidden fields' "
906
- "values remain unmodified."
907
- msgstr ""
908
-
909
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
910
- msgid ""
911
- "add custom fields to the existing ones, with several types to choose from: "
912
- "heading, text, textarea, select, checkbox, radio, and/or upload."
913
- msgstr ""
914
-
915
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
916
- msgid "add an avatar field."
917
- msgstr ""
918
-
919
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
920
- msgid "create custom redirects."
921
- msgstr ""
922
-
923
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
924
- msgid "front-end userlisting using the"
925
- msgstr ""
926
-
927
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
928
- msgid "shortcode."
929
- msgstr ""
930
-
931
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
932
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
933
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:65
934
- msgid "NOTE:"
935
- msgstr ""
936
-
937
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
938
- msgid "this plugin only adds/removes fields in the front-end."
939
- msgstr ""
940
-
941
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
942
- msgid ""
943
- "The default information-fields will still be visible(and thus modifiable)"
944
- msgstr ""
945
-
946
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
947
- msgid ""
948
- "from the back-end, while custom fields will only be visible in the front-end."
949
- msgstr ""
950
-
951
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
952
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
953
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
954
- msgid "Default Profile Fields"
955
- msgstr ""
956
-
957
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
958
- msgid "Input Field Name"
959
- msgstr ""
960
-
961
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
962
- msgid "Required"
963
- msgstr ""
964
-
965
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
966
- msgid "Name:"
967
- msgstr ""
968
-
969
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
970
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
971
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
972
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
973
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
974
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
975
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
976
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
977
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
978
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
979
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
980
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
981
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
982
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
983
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
984
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
985
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
986
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
987
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
988
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
989
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
990
- msgid "Yes"
991
- msgstr ""
992
-
993
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
994
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
995
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
996
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
997
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
998
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
999
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
1000
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
1001
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functi