User registration & user profile – Profile Builder - Version 2.7.0

Version Description

  • Added [wppb-restrict] shortcode for Content Restriction
  • Password Strength Indicator improvements
  • Added an extra filter (wppb_mail) to wppb_mail function that gives the possibility to also send headers
  • Updated German translation files.
  • Added context to the 3 wppb_mail calls so we can identify the recover password emails being sent using the filters/actions from wppb_mail.
  • Fixed content restriction meta-box for attachments
Download this release

Release Info

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

Code changes from version 2.6.9 to 2.7.0

admin/basic-info.php CHANGED
@@ -65,6 +65,10 @@ function wppb_basic_info_content() {
65
  <h3><?php _e( 'Email Confirmation', 'profile-builder' ); ?></h3>
66
  <p><?php _e( 'Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.', 'profile-builder' ); ?></p>
67
  </div>
 
 
 
 
68
  <div>
69
  <h3><?php _e( 'Minimum Password Length and Strength Meter', 'profile-builder' ); ?></h3>
70
  <p><?php _e( 'Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.', 'profile-builder' ); ?></p>
65
  <h3><?php _e( 'Email Confirmation', 'profile-builder' ); ?></h3>
66
  <p><?php _e( 'Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.', 'profile-builder' ); ?></p>
67
  </div>
68
+ <div>
69
+ <h3><?php _e( 'Content Restriction', 'profile-builder' ); ?></h3>
70
+ <p><?php _e( 'Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status.', 'profile-builder' ); ?></p>
71
+ </div>
72
  <div>
73
  <h3><?php _e( 'Minimum Password Length and Strength Meter', 'profile-builder' ); ?></h3>
74
  <p><?php _e( 'Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.', 'profile-builder' ); ?></p>
admin/manage-fields.php CHANGED
@@ -187,7 +187,7 @@ function wppb_manage_fields_submenu(){
187
  );
188
  new Wordpress_Creation_Kit_PB( $args );
189
  }
190
- add_action( 'init', 'wppb_manage_fields_submenu', 10 );
191
 
192
  /**
193
  * Function that prepopulates the manage fields list with the default fields of WP
187
  );
188
  new Wordpress_Creation_Kit_PB( $args );
189
  }
190
+ add_action( 'init', 'wppb_manage_fields_submenu', 11 );
191
 
192
  /**
193
  * Function that prepopulates the manage fields list with the default fields of WP
features/content-restriction/content-restriction-filtering.php CHANGED
@@ -39,7 +39,7 @@ function wppb_content_restriction_filter_content( $content, $post = null ) {
39
  return $content;
40
  } else if( $user_status == 'loggedin' ) {
41
  if( is_user_logged_in() ) {
42
- if( ! empty($post_user_roles ) ) {
43
  $user_data = get_userdata( $user_ID );
44
 
45
  foreach( $post_user_roles as $post_user_role ) {
39
  return $content;
40
  } else if( $user_status == 'loggedin' ) {
41
  if( is_user_logged_in() ) {
42
+ if( ! empty( $post_user_roles ) ) {
43
  $user_data = get_userdata( $user_ID );
44
 
45
  foreach( $post_user_roles as $post_user_role ) {
features/content-restriction/content-restriction-functions.php CHANGED
@@ -158,6 +158,7 @@ function wppb_content_restriction_post_redirect() {
158
  }
159
  add_action( 'wp', 'wppb_content_restriction_post_redirect' );
160
 
 
161
  function wppb_content_restriction_merge_tags( $text, $user_info, $post_id = 0 ) {
162
 
163
  $merge_tags = apply_filters( 'wppb_content_restriction_merge_tags', array( 'display_name', 'unrestricted_user_roles', 'current_user_role' ) );
@@ -172,6 +173,7 @@ function wppb_content_restriction_merge_tags( $text, $user_info, $post_id = 0 )
172
 
173
  }
174
 
 
175
  function wppb_content_restriction_tag_display_name( $value, $user_info, $post_id = 0 ) {
176
 
177
  if( ! empty( $user_info->display_name ) ) {
@@ -185,6 +187,7 @@ function wppb_content_restriction_tag_display_name( $value, $user_info, $post_id
185
  }
186
  add_filter( 'wppb_content_restriction_merge_tag_display_name', 'wppb_content_restriction_tag_display_name', 10, 3 );
187
 
 
188
  function wppb_content_restriction_tag_unrestricted_user_roles( $value, $user_info, $post_id = 0 ) {
189
 
190
  if( $post_id != 0 ) {
@@ -204,6 +207,7 @@ function wppb_content_restriction_tag_unrestricted_user_roles( $value, $user_inf
204
  }
205
  add_filter( 'wppb_content_restriction_merge_tag_unrestricted_user_roles', 'wppb_content_restriction_tag_unrestricted_user_roles', 10, 3 );
206
 
 
207
  function wppb_content_restriction_tag_current_user_role( $value, $user_info, $post_id = 0 ) {
208
 
209
  if( ! empty( $user_info ) && ! empty( $user_info->roles ) ) {
@@ -215,4 +219,71 @@ function wppb_content_restriction_tag_current_user_role( $value, $user_info, $po
215
  }
216
 
217
  }
218
- add_filter( 'wppb_content_restriction_merge_tag_current_user_role', 'wppb_content_restriction_tag_current_user_role', 10, 3 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  }
159
  add_action( 'wp', 'wppb_content_restriction_post_redirect' );
160
 
161
+ /* Function that searches and replaces merge tags with their values */
162
  function wppb_content_restriction_merge_tags( $text, $user_info, $post_id = 0 ) {
163
 
164
  $merge_tags = apply_filters( 'wppb_content_restriction_merge_tags', array( 'display_name', 'unrestricted_user_roles', 'current_user_role' ) );
173
 
174
  }
175
 
176
+ /* Add functionality for display_name tag */
177
  function wppb_content_restriction_tag_display_name( $value, $user_info, $post_id = 0 ) {
178
 
179
  if( ! empty( $user_info->display_name ) ) {
187
  }
188
  add_filter( 'wppb_content_restriction_merge_tag_display_name', 'wppb_content_restriction_tag_display_name', 10, 3 );
189
 
190
+ /* Add functionality for unrestricted_user_roles tag */
191
  function wppb_content_restriction_tag_unrestricted_user_roles( $value, $user_info, $post_id = 0 ) {
192
 
193
  if( $post_id != 0 ) {
207
  }
208
  add_filter( 'wppb_content_restriction_merge_tag_unrestricted_user_roles', 'wppb_content_restriction_tag_unrestricted_user_roles', 10, 3 );
209
 
210
+ /* Add functionality for current_user_role tag */
211
  function wppb_content_restriction_tag_current_user_role( $value, $user_info, $post_id = 0 ) {
212
 
213
  if( ! empty( $user_info ) && ! empty( $user_info->roles ) ) {
219
  }
220
 
221
  }
222
+ add_filter( 'wppb_content_restriction_merge_tag_current_user_role', 'wppb_content_restriction_tag_current_user_role', 10, 3 );
223
+
224
+ /* Content restriction shortcode */
225
+ function wppb_content_restriction_shortcode( $atts, $content = null ) {
226
+
227
+ $args = shortcode_atts(
228
+ array(
229
+ 'user_roles' => array(),
230
+ 'display_to' => '',
231
+ 'message' => ''
232
+ ),
233
+ $atts
234
+ );
235
+
236
+ // Message to replace the content of checks do not match
237
+ if( ! empty( $args['message'] ) ) {
238
+ $message = '<span class="wppb-shortcode-restriction-message">' . $args['message'] . '</span>';
239
+ } else {
240
+ $type = ( is_user_logged_in() ? 'logged_in' : 'logged_out' );
241
+ $message = wpautop( wppb_get_restriction_content_message( $type ) );
242
+ }
243
+
244
+ /*
245
+ * Filter the message
246
+ *
247
+ * @param string $message - the current message, whether it is the default one from the settings or
248
+ * the one set in the shortcode attributes
249
+ * @param array $args - the shortcode attributes
250
+ *
251
+ */
252
+ $message = apply_filters( 'wppb_content_restriction_shortcode_message', $message, $args );
253
+
254
+ if( is_user_logged_in() ) {
255
+ // Show for administrators
256
+ if( current_user_can( 'manage_options' ) ) {
257
+ return do_shortcode( $content );
258
+ }
259
+
260
+ if( $args['display_to'] == 'not_logged_in' ) {
261
+ return $message;
262
+ }
263
+
264
+ if( ! empty( $args['user_roles'] ) ) {
265
+ $user_roles = array_map( 'trim', explode( ',', $args['user_roles'] ) );
266
+ $user_data = get_userdata( get_current_user_id() );
267
+
268
+ if( ! empty( $user_data->roles ) ) {
269
+ $common_user_roles = array_intersect( $user_roles, $user_data->roles );
270
+
271
+ if( ! empty( $common_user_roles ) ) {
272
+ return do_shortcode( $content );
273
+ } else {
274
+ return $message;
275
+ }
276
+ }
277
+ } else {
278
+ return do_shortcode( $content );
279
+ }
280
+ } else {
281
+ if( $args['display_to'] == 'not_logged_in' ) {
282
+ return do_shortcode( $content );
283
+ } else {
284
+ return $message;
285
+ }
286
+ }
287
+
288
+ }
289
+ add_shortcode( 'wppb-restrict', 'wppb_content_restriction_shortcode' );
features/content-restriction/content-restriction-meta-box.php CHANGED
@@ -146,7 +146,7 @@ function wppb_content_restriction_meta_box_output( $post ) {
146
 
147
  }
148
 
149
- function wppb_content_restriction_save_data( $post_id, $post ) {
150
 
151
  if( empty( $_POST['wppb_content_restriction_token'] ) || ! wp_verify_nonce( $_POST['wppb_content_restriction_token'], 'wppb_meta_box_single_content_restriction_nonce' ) ) {
152
  return;
@@ -197,4 +197,5 @@ function wppb_content_restriction_save_data( $post_id, $post ) {
197
  update_post_meta( $post_id, 'wppb-content-restrict-message-logged_in', ( ! empty( $_POST['wppb-content-restrict-message-logged_in'] ) ? wp_kses_post( $_POST['wppb-content-restrict-message-logged_in'] ) : '' ) );
198
 
199
  }
200
- add_action( 'save_post', 'wppb_content_restriction_save_data', 10, 2 );
 
146
 
147
  }
148
 
149
+ function wppb_content_restriction_save_data( $post_id ) {
150
 
151
  if( empty( $_POST['wppb_content_restriction_token'] ) || ! wp_verify_nonce( $_POST['wppb_content_restriction_token'], 'wppb_meta_box_single_content_restriction_nonce' ) ) {
152
  return;
197
  update_post_meta( $post_id, 'wppb-content-restrict-message-logged_in', ( ! empty( $_POST['wppb-content-restrict-message-logged_in'] ) ? wp_kses_post( $_POST['wppb-content-restrict-message-logged_in'] ) : '' ) );
198
 
199
  }
200
+ add_action( 'save_post', 'wppb_content_restriction_save_data' );
201
+ add_action( 'edit_attachment', 'wppb_content_restriction_save_data' );
features/functions.php CHANGED
@@ -159,7 +159,7 @@ if ( is_admin() ){
159
  * @param string $message_from
160
  *
161
  */
162
- function wppb_mail( $to, $subject, $message, $message_from = null, $context = null ) {
163
  $to = apply_filters( 'wppb_send_email_to', $to );
164
  $send_email = apply_filters( 'wppb_send_email', true, $to, $subject, $message, $context );
165
 
@@ -171,7 +171,9 @@ function wppb_mail( $to, $subject, $message, $message_from = null, $context = nu
171
  //we add this filter to enable html encoding
172
  add_filter( 'wp_mail_content_type', create_function( '', 'return "text/html"; ' ) );
173
 
174
- $sent = wp_mail( $to , html_entity_decode( htmlspecialchars_decode( $subject, ENT_QUOTES ), ENT_QUOTES ), $message );
 
 
175
 
176
  do_action( 'wppb_after_sending_email', $sent, $to, $subject, $message, $send_email, $context );
177
 
@@ -564,11 +566,25 @@ function wppb_check_password_strength(){
564
  function wppb_password_length_text(){
565
  $wppb_generalSettings = get_option( 'wppb_general_settings' );
566
  if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){
567
- return sprintf(__('Minimum length of %d characters', 'profile-builder'), $wppb_generalSettings['minimum_password_length']);
568
  }
569
  return '';
570
  }
571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  /**
573
  * Include password strength check scripts on frontend where we have shortoces present
574
  */
159
  * @param string $message_from
160
  *
161
  */
162
+ function wppb_mail( $to, $subject, $message, $message_from = null, $context = null, $headers = '' ) {
163
  $to = apply_filters( 'wppb_send_email_to', $to );
164
  $send_email = apply_filters( 'wppb_send_email', true, $to, $subject, $message, $context );
165
 
171
  //we add this filter to enable html encoding
172
  add_filter( 'wp_mail_content_type', create_function( '', 'return "text/html"; ' ) );
173
 
174
+ $atts = apply_filters( 'wppb_mail', compact( 'to', 'subject', 'message', 'headers' ), $context );
175
+
176
+ $sent = wp_mail( $atts['to'] , html_entity_decode( htmlspecialchars_decode( $atts['subject'], ENT_QUOTES ), ENT_QUOTES ), $atts['message'], $atts['headers'] );
177
 
178
  do_action( 'wppb_after_sending_email', $sent, $to, $subject, $message, $send_email, $context );
179
 
566
  function wppb_password_length_text(){
567
  $wppb_generalSettings = get_option( 'wppb_general_settings' );
568
  if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){
569
+ return sprintf(__('Minimum length of %d characters.', 'profile-builder'), $wppb_generalSettings['minimum_password_length']);
570
  }
571
  return '';
572
  }
573
 
574
+ /* function to output password strength requirements text */
575
+ function wppb_password_strength_description() {
576
+ $wppb_generalSettings = get_option( 'wppb_general_settings' );
577
+
578
+ if( ! empty( $wppb_generalSettings['minimum_password_strength'] ) ) {
579
+ $password_strength_text = array( 'short' => __( 'Very Weak', 'profile-builder' ), 'bad' => __( 'Weak', 'profile-builder' ), 'good' => __( 'Medium', 'profile-builder' ), 'strong' => __( 'Strong', 'profile-builder' ) );
580
+ $password_strength_description = '<br>'. sprintf( __( 'The password must have a minimum strength of %s.', 'profile-builder' ), $password_strength_text[$wppb_generalSettings['minimum_password_strength']] );
581
+
582
+ return $password_strength_description;
583
+ } else {
584
+ return '';
585
+ }
586
+ }
587
+
588
  /**
589
  * Include password strength check scripts on frontend where we have shortoces present
590
  */
front-end/default-fields/password/password.php CHANGED
@@ -15,10 +15,11 @@ function wppb_password_handler( $output, $form_location, $field, $user_id, $fiel
15
  $output = '
16
  <label for="passw1">' . $item_title.$error_mark . '</label>
17
  <input class="text-input '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="passw1" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="password" id="passw1" value="" autocomplete="off" '. $extra_attr .'/>';
18
- if( !empty( $item_description ) )
19
- $output .= '<span class="wppb-description-delimiter">'.$item_description.' '.wppb_password_length_text().'</span>';
 
20
  else
21
- $output .= '<span class="wppb-description-delimiter">'.wppb_password_length_text().'</span>';
22
 
23
  /* if we have active the password strength checker */
24
  $output .= wppb_password_strength_checker_html();
15
  $output = '
16
  <label for="passw1">' . $item_title.$error_mark . '</label>
17
  <input class="text-input '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="passw1" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="password" id="passw1" value="" autocomplete="off" '. $extra_attr .'/>';
18
+
19
+ if( ! empty( $item_description ) )
20
+ $output .= '<span class="wppb-description-delimiter">'. $item_description .' '. wppb_password_length_text() .' '. wppb_password_strength_description() .'</span>';
21
  else
22
+ $output .= '<span class="wppb-description-delimiter">'. wppb_password_length_text() .' '. wppb_password_strength_description() .'</span>';
23
 
24
  /* if we have active the password strength checker */
25
  $output .= wppb_password_strength_checker_html();
front-end/default-fields/user-role/user-role.php CHANGED
@@ -108,6 +108,9 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
108
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
109
 
110
  }
 
 
 
111
 
112
  return apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data, $input_value, $input_value_multiple );
113
  }
@@ -118,9 +121,14 @@ add_filter( 'wppb_output_form_field_select-user-role', 'wppb_user_role_handler',
118
  /* handle field validation */
119
  function wppb_check_user_role_value( $message, $field, $request_data, $form_location ) {
120
 
 
 
121
  if( $form_location == 'back_end' )
122
  return $message;
123
 
 
 
 
124
  $roles_editor_active = false;
125
  $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
126
  if( $wppb_generalSettings != 'not_found' ) {
@@ -129,8 +137,6 @@ function wppb_check_user_role_value( $message, $field, $request_data, $form_loca
129
  }
130
  }
131
 
132
- $field['meta-name'] = 'custom_field_user_role';
133
-
134
  if( $field['field'] == 'Select (User Role)' ){
135
 
136
  if( $form_location == 'register' && $field['required'] == 'Yes' && current_user_can( 'manage_options' ) === false ) {
108
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
109
 
110
  }
111
+ else{
112
+ $output .= '<input type="hidden" disabled="disabled" readonly="readonly" value="'.$input_value.'">';
113
+ }
114
 
115
  return apply_filters( 'wppb_'.$form_location.'_user_role_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data, $input_value, $input_value_multiple );
116
  }
121
  /* handle field validation */
122
  function wppb_check_user_role_value( $message, $field, $request_data, $form_location ) {
123
 
124
+ $field['meta-name'] = 'custom_field_user_role';
125
+
126
  if( $form_location == 'back_end' )
127
  return $message;
128
 
129
+ if( $form_location == 'edit_profile' && !current_user_can( 'manage_options' ) && ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ) )
130
+ return __( 'You cannot register this user role', 'profile-builder');
131
+
132
  $roles_editor_active = false;
133
  $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
134
  if( $wppb_generalSettings != 'not_found' ) {
137
  }
138
  }
139
 
 
 
140
  if( $field['field'] == 'Select (User Role)' ){
141
 
142
  if( $form_location == 'register' && $field['required'] == 'Yes' && current_user_can( 'manage_options' ) === false ) {
front-end/recover.php CHANGED
@@ -77,6 +77,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
77
  <li class="wppb-form-field passw1">
78
  <label for="passw1">'. $password_label .'</label>
79
  <input class="password" name="passw1" type="password" id="passw1" value="" autocomplete="off" title="'. wppb_password_length_text() .'" '. apply_filters( 'wppb_recover_password_extra_attr', '', $password_label, 'password' ) .' />
 
80
  </li><!-- .passw1 -->
81
  <input type="hidden" name="userData" value="'.$user->ID.'"/>
82
  <li class="wppb-form-field passw2">
@@ -238,9 +239,12 @@ function wppb_front_end_password_recovery(){
238
  $recoveruserMailMessageTitle1 = sprintf(__('Password Reset from "%1$s"', 'profile-builder'), $blogname = get_option('blogname') );
239
  $recoveruserMailMessageTitle1 = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoveruserMailMessageTitle1, $requestedUserLogin);
240
 
 
 
 
241
  //send mail to the user notifying him of the reset request
242
  if (trim($recoveruserMailMessageTitle1) != ''){
243
- $sent = wppb_mail($requestedUserEmail, $recoveruserMailMessageTitle1, $recoveruserMailMessage1);
244
  if ($sent === false){
245
  $message = '<b>'. __( 'ERROR', 'profile-builder' ) .': </b>' . sprintf( __( 'There was an error while trying to send the activation link to %1$s!', 'profile-builder' ), $postedData );
246
  $message = apply_filters( 'wppb_recover_password_sent_message_error_sending', $message );
@@ -295,9 +299,12 @@ function wppb_front_end_password_recovery(){
295
  $recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname') );
296
  $recoveruserMailMessageTitle2 = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recoveruserMailMessageTitle2, $display_username_email );
297
 
 
 
 
298
  //send mail to the user notifying him of the reset request
299
  if ( trim( $recoveruserMailMessageTitle2 ) != '' )
300
- wppb_mail( $user_info->user_email, $recoveruserMailMessageTitle2, $recoveruserMailMessage2 );
301
 
302
  //send email to admin
303
  $recoveradminMailMessage = sprintf( __( '%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s', 'profile-builder' ), $display_username_email, $_POST['passw1'] );
@@ -311,9 +318,11 @@ function wppb_front_end_password_recovery(){
311
  $recoveradminMailMessageTitle = '';
312
  $recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle, $display_username_email );
313
 
 
 
314
  //send mail to the admin notifying him of of a user with a password reset request
315
  if (trim($recoveradminMailMessageTitle) != '')
316
- wppb_mail(get_option('admin_email'), $recoveradminMailMessageTitle, $recoveradminMailMessage);
317
  }
318
  }
319
  else{
77
  <li class="wppb-form-field passw1">
78
  <label for="passw1">'. $password_label .'</label>
79
  <input class="password" name="passw1" type="password" id="passw1" value="" autocomplete="off" title="'. wppb_password_length_text() .'" '. apply_filters( 'wppb_recover_password_extra_attr', '', $password_label, 'password' ) .' />
80
+ <span class="wppb-description-delimiter">'. wppb_password_length_text() .' '. wppb_password_strength_description() .'</span>
81
  </li><!-- .passw1 -->
82
  <input type="hidden" name="userData" value="'.$user->ID.'"/>
83
  <li class="wppb-form-field passw2">
239
  $recoveruserMailMessageTitle1 = sprintf(__('Password Reset from "%1$s"', 'profile-builder'), $blogname = get_option('blogname') );
240
  $recoveruserMailMessageTitle1 = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoveruserMailMessageTitle1, $requestedUserLogin);
241
 
242
+ $recoveruserMailFrom = apply_filters ( 'wppb_recover_password_notification_email_from_field', get_bloginfo( 'name' ) );
243
+ $recoveruserMailContext = 'email_user_recover';
244
+
245
  //send mail to the user notifying him of the reset request
246
  if (trim($recoveruserMailMessageTitle1) != ''){
247
+ $sent = wppb_mail($requestedUserEmail, $recoveruserMailMessageTitle1, $recoveruserMailMessage1, $recoveruserMailFrom, $recoveruserMailContext);
248
  if ($sent === false){
249
  $message = '<b>'. __( 'ERROR', 'profile-builder' ) .': </b>' . sprintf( __( 'There was an error while trying to send the activation link to %1$s!', 'profile-builder' ), $postedData );
250
  $message = apply_filters( 'wppb_recover_password_sent_message_error_sending', $message );
299
  $recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname') );
300
  $recoveruserMailMessageTitle2 = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recoveruserMailMessageTitle2, $display_username_email );
301
 
302
+ $recoveruserMailFrom2 = apply_filters ( 'wppb_recover_password_success_notification_email_from_field', get_bloginfo( 'name' ) );
303
+ $recoveruserMailContext2 = 'email_user_recover_success';
304
+
305
  //send mail to the user notifying him of the reset request
306
  if ( trim( $recoveruserMailMessageTitle2 ) != '' )
307
+ wppb_mail( $user_info->user_email, $recoveruserMailMessageTitle2, $recoveruserMailMessage2, $recoveruserMailFrom2, $recoveruserMailContext2 );
308
 
309
  //send email to admin
310
  $recoveradminMailMessage = sprintf( __( '%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s', 'profile-builder' ), $display_username_email, $_POST['passw1'] );
318
  $recoveradminMailMessageTitle = '';
319
  $recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle, $display_username_email );
320
 
321
+ $recoveradminMailContext = 'email_admin_recover_success';
322
+
323
  //send mail to the admin notifying him of of a user with a password reset request
324
  if (trim($recoveradminMailMessageTitle) != '')
325
+ wppb_mail(get_option('admin_email'), $recoveradminMailMessageTitle, $recoveradminMailMessage, $recoveruserMailFrom2, $recoveradminMailContext);
326
  }
327
  }
328
  else{
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.6.9
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.6.9' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.7.0
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.7.0' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === User registration & user profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
- Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction
5
  Requires at least: 3.1
6
- Tested up to: 4.8.3
7
- Stable tag: 2.6.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,10 +14,13 @@ Simple to use profile plugin allowing front-end login, user registration and edi
14
 
15
  **Profile Builder is WordPress user registration done right.**
16
 
 
 
 
 
17
  **Like this plugin?** Consider leaving a [5 star review](https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5).
18
 
19
- It lets you customize your website by adding a front-end menu for all your users,
20
- giving them a more flexible way to modify their user profile or register users (front-end user registration).
21
  Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
22
 
23
  To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
@@ -32,6 +35,7 @@ You can use the following shortcode list:
32
  * **[wppb-logout]** - to add logout functionality.
33
  * **[wppb-register]** - register users via a front-end register form.
34
  * **[wppb-recover-password]** - to add a password recovery form.
 
35
 
36
  Users with administrator rights have access to the following features:
37
 
@@ -50,7 +54,7 @@ Users with administrator rights have access to the following features:
50
  * role editor: add, remove, clone and edit roles and also capabilities for these roles.
51
  * reacaptcha for Profile Builder forms and WordPress default forms
52
  * user role select field on register and edit profile forms
53
- * content restriction based on user role
54
 
55
  **PROFILE BUILDER PRO**
56
 
@@ -159,6 +163,14 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
159
  12. Role Editor
160
 
161
  == Changelog ==
 
 
 
 
 
 
 
 
162
  = 2.6.9 =
163
  * Implemented Content Restriction feature
164
  * Added nonce field on Profile Builder login form for security check
1
  === User registration & user profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
+ Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
+ Tested up to: 4.9.0
7
+ Stable tag: 2.7.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
14
 
15
  **Profile Builder is WordPress user registration done right.**
16
 
17
+ Easy to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
18
+
19
+ Restrict Content based on user role or logged in status & manage user roles and capabilities using the built in Role Editor.
20
+
21
  **Like this plugin?** Consider leaving a [5 star review](https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5).
22
 
23
+ It lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user profile or register users (front-end user registration).
 
24
  Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
25
 
26
  To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
35
  * **[wppb-logout]** - to add logout functionality.
36
  * **[wppb-register]** - register users via a front-end register form.
37
  * **[wppb-recover-password]** - to add a password recovery form.
38
+ * **[wppb-restrict]**Content to restrict**[/wppb-restrict]** - to restrict blocks of content
39
 
40
  Users with administrator rights have access to the following features:
41
 
54
  * role editor: add, remove, clone and edit roles and also capabilities for these roles.
55
  * reacaptcha for Profile Builder forms and WordPress default forms
56
  * user role select field on register and edit profile forms
57
+ * content restriction - restrict content based on user role or logged in status
58
 
59
  **PROFILE BUILDER PRO**
60
 
163
  12. Role Editor
164
 
165
  == Changelog ==
166
+ = 2.7.0 =
167
+ * Added [wppb-restrict] shortcode for Content Restriction
168
+ * Password Strength Indicator improvements
169
+ * Added an extra filter (wppb_mail) to wppb_mail function that gives the possibility to also send headers
170
+ * Updated German translation files.
171
+ * Added context to the 3 wppb_mail calls so we can identify the recover password emails being sent using the filters/actions from wppb_mail.
172
+ * Fixed content restriction meta-box for attachments
173
+
174
  = 2.6.9 =
175
  * Implemented Content Restriction feature
176
  * Added nonce field on Profile Builder login form for security check
translation/profile-builder-de_DE.mo CHANGED
Binary file
translation/profile-builder-de_DE.po CHANGED
@@ -1,5594 +1,5603 @@
1
- # Translation of Profile Builder in German
2
- # This file is distributed under the same license as the Profile Builder package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2017-08-01 13:42:38+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Profile Builder\n"
12
-
13
- #: profile-builder-2.0/admin/general-settings.php:154
14
- msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
15
- msgstr ""
16
-
17
- #: profile-builder-2.0/admin/general-settings.php:146
18
- msgid "\"Roles Editor\" Activated:"
19
- msgstr ""
20
-
21
- #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
22
- msgid "M j, Y @ G:i"
23
- msgstr ""
24
-
25
- #: profile-builder-2.0/front-end/recover.php:117
26
- msgid "Please enter your email address."
27
- msgstr ""
28
-
29
- #: profile-builder-2.0/admin/manage-fields.php:127
30
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
31
- msgstr ""
32
-
33
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
34
- msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
35
- msgstr ""
36
-
37
- #: profile-builder-2.0/admin/manage-fields.php:1217
38
- msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
39
- msgstr ""
40
-
41
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
42
- msgid "Multiple Registration and Edit Profile form settings Redirects"
43
- msgstr ""
44
-
45
- #: profile-builder-2.0/admin/register-version.php:251
46
- msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
47
- msgstr ""
48
-
49
- #: profile-builder-2.0/admin/register-version.php:246
50
- msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
51
- msgstr ""
52
-
53
- #: profile-builder-2.0/front-end/recover.php:159
54
- msgid "You are already logged in. You can change your password on the edit profile form."
55
- msgstr ""
56
-
57
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
58
- msgid "Your site url will look like this:<br>"
59
- msgstr ""
60
-
61
- #: profile-builder-2.0/features/functions.php:909
62
- msgid "<br><br>You can visit your site at "
63
- msgstr ""
64
-
65
- #: profile-builder-2.0/features/functions.php:896
66
- msgid "<br><br>Also, you will be able to visit your site at "
67
- msgstr ""
68
-
69
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
70
- msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
71
- msgstr ""
72
-
73
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
74
- msgid "Site Title"
75
- msgstr ""
76
-
77
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
78
- msgid "Site URL slug"
79
- msgstr ""
80
-
81
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
82
- msgid "Yes, I'd like to create a new site"
83
- msgstr ""
84
-
85
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
86
- #: profile-builder-2.0/modules/user-listing/userlisting.php:118
87
- msgid "Blog URL"
88
- msgstr ""
89
-
90
- #: profile-builder-2.0/admin/admin-functions.php:44
91
- msgid "Blog Details - only appears on the Registration page!"
92
- msgstr ""
93
-
94
- #: profile-builder-2.0/admin/manage-fields.php:222
95
- msgid "Blog Details"
96
- msgstr ""
97
-
98
- #: profile-builder-2.0/admin/pms-cross-promotion.php:239
99
- msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
100
- msgstr ""
101
-
102
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
103
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
104
- msgstr "Willkommen bei %1$s!<br/><br/><br/>Ihr Benutzername lautet:%2$s"
105
-
106
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
- msgid "View Map"
108
- msgstr "Karte ansehen"
109
-
110
- #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
111
- #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
112
- #: pb-add-on-woocommerce/index.php:493
113
- msgid "Address line 2"
114
- msgstr ""
115
-
116
- #: pb-add-on-woocommerce/index.php:256
117
- msgid "Billing Fields"
118
- msgstr ""
119
-
120
- #: pb-add-on-woocommerce/index.php:256
121
- msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
122
- msgstr ""
123
-
124
- #: pb-add-on-woocommerce/index.php:257
125
- msgid "Billing Fields Order"
126
- msgstr ""
127
-
128
- #: pb-add-on-woocommerce/index.php:257
129
- msgid "Save the billing fields order from the billing fields checkboxes"
130
- msgstr ""
131
-
132
- #: pb-add-on-woocommerce/index.php:258
133
- msgid "Billing Fields Name"
134
- msgstr ""
135
-
136
- #: pb-add-on-woocommerce/index.php:258
137
- msgid "Save the billing fields names"
138
- msgstr ""
139
-
140
- #: pb-add-on-woocommerce/index.php:275
141
- msgid "Shipping Fields"
142
- msgstr ""
143
-
144
- #: pb-add-on-woocommerce/index.php:275
145
- msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
146
- msgstr ""
147
-
148
- #: pb-add-on-woocommerce/index.php:276
149
- msgid "Shipping Fields Order"
150
- msgstr ""
151
-
152
- #: pb-add-on-woocommerce/index.php:276
153
- msgid "Save the shipping fields order from the billing fields checkboxes"
154
- msgstr ""
155
-
156
- #: pb-add-on-woocommerce/index.php:277
157
- msgid "Shipping Fields Name"
158
- msgstr ""
159
-
160
- #: pb-add-on-woocommerce/index.php:277
161
- msgid "Save the shipping fields names"
162
- msgstr ""
163
-
164
- #: pb-add-on-woocommerce/index.php:305
165
- msgid "Field Name"
166
- msgstr ""
167
-
168
- #: pb-add-on-woocommerce/index.php:369
169
- msgid "Click to edit "
170
- msgstr ""
171
-
172
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
173
- msgid "is not a valid phone number."
174
- msgstr ""
175
-
176
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
177
- msgid "is not a number."
178
- msgstr ""
179
-
180
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
181
- msgid "must be a multiplier of "
182
- msgstr ""
183
-
184
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
185
- msgid "must be a greater than or equal to "
186
- msgstr ""
187
-
188
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
189
- msgid "must be less than or equal to "
190
- msgstr ""
191
-
192
- #: profile-builder-2.0/admin/add-ons.php:103
193
- msgid "Available in Hobbyist and Pro Versions"
194
- msgstr "Verfügbar in den Versionen Hobbyist und Pro"
195
-
196
- #: profile-builder-2.0/admin/add-ons.php:105
197
- msgid "Available in All Versions"
198
- msgstr "In allen Versionen verfügbar"
199
-
200
- #: profile-builder-2.0/admin/add-ons.php:148
201
- msgid "Learn More"
202
- msgstr "Weitere Informationen"
203
-
204
- #: profile-builder-2.0/admin/basic-info.php:99
205
- msgid "Timepicker"
206
- msgstr "Zeit wählen"
207
-
208
- #: profile-builder-2.0/admin/basic-info.php:100
209
- msgid "Colorpicker"
210
- msgstr "Farbe wählen"
211
-
212
- #: profile-builder-2.0/admin/basic-info.php:103
213
- msgid "Currency Select"
214
- msgstr "Währung wählen"
215
-
216
- #: profile-builder-2.0/admin/basic-info.php:109
217
- msgid "Number"
218
- msgstr "Nummer"
219
-
220
- #: profile-builder-2.0/admin/basic-info.php:114
221
- msgid "Validation"
222
- msgstr "Validierung"
223
-
224
- #: profile-builder-2.0/admin/basic-info.php:115
225
- msgid "Map"
226
- msgstr "Karte"
227
-
228
- #: profile-builder-2.0/admin/basic-info.php:116
229
- msgid "HTML"
230
- msgstr "HTML"
231
-
232
- #: profile-builder-2.0/admin/basic-info.php:162
233
- #: profile-builder-2.0/modules/modules.php:117
234
- msgid "Repeater Fields"
235
- msgstr ""
236
-
237
- #: profile-builder-2.0/admin/basic-info.php:163
238
- msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
239
- msgstr ""
240
-
241
- #: profile-builder-2.0/admin/general-settings.php:59
242
- msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
243
- msgstr ""
244
-
245
- #: profile-builder-2.0/admin/manage-fields.php:120
246
- msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
247
- msgstr ""
248
-
249
- #: profile-builder-2.0/admin/manage-fields.php:143
250
- msgid "Show Currency Symbol"
251
- msgstr "Währungssymbol anzeigen"
252
-
253
- #: profile-builder-2.0/admin/manage-fields.php:143
254
- msgid "Whether the currency symbol should be displayed after the currency name in the select option."
255
- msgstr ""
256
-
257
- #: profile-builder-2.0/admin/manage-fields.php:144
258
- msgid "Show Post Type"
259
- msgstr "Beitragstyp anzeigen"
260
-
261
- #: profile-builder-2.0/admin/manage-fields.php:144
262
- msgid "Posts from what post type will be displayed in the select."
263
- msgstr "Diese Beitragstypen werden in der Auswahl angezeigt."
264
-
265
- #: profile-builder-2.0/admin/manage-fields.php:145
266
- msgid "Allowable Values"
267
- msgstr "Erlaubte Werte"
268
-
269
- #: profile-builder-2.0/admin/manage-fields.php:145
270
- msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
271
- msgstr "Geben Sie eine mit Kommas getrennte Liste von zulässigen Werten an. Nur wenn der Nutzer bei der Registrierung einen dieser Werte angibt wird die Registrierung durchgeführt."
272
-
273
- #: profile-builder-2.0/admin/manage-fields.php:146
274
- msgid "Error Message"
275
- msgstr "Fehlermeldung"
276
-
277
- #: profile-builder-2.0/admin/manage-fields.php:146
278
- msgid "Set a custom error message that will be displayed to the user."
279
- msgstr "Eigene Fehlermeldung angeben, die dem Nutzer angezeigt wird."
280
-
281
- #: profile-builder-2.0/admin/manage-fields.php:147
282
- msgid "Time Format"
283
- msgstr "Zeitformat"
284
-
285
- #: profile-builder-2.0/admin/manage-fields.php:147
286
- msgid "Specify the time format."
287
- msgstr "Zeitformat festlegen."
288
-
289
- #: profile-builder-2.0/admin/manage-fields.php:148
290
- msgid "Google Maps API Key"
291
- msgstr "Google Maps API Schlüssel"
292
-
293
- #: profile-builder-2.0/admin/manage-fields.php:148
294
- msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
295
- msgstr "Google Maps API Schlüssel angeben ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">API Schlüssel generieren</a> ). Falls mehr als ein Kartenfeld in einem Formular vorhanden ist, wird der API Schlüssel der ersten Karte benutzt."
296
-
297
- #: profile-builder-2.0/admin/manage-fields.php:149
298
- msgid "Default Latitude"
299
- msgstr "Standard Breitengrad (Latitude)"
300
-
301
- #: profile-builder-2.0/admin/manage-fields.php:149
302
- msgid "The latitude at which the map should be displayed when no pins are attached."
303
- msgstr "Auf der Karte angezeigter Breitengrad (Latitude) falls keine Pins vorhanden sind."
304
-
305
- #: profile-builder-2.0/admin/manage-fields.php:150
306
- msgid "Default Longitude"
307
- msgstr "Standard Längengrad (Longitude)"
308
-
309
- #: profile-builder-2.0/admin/manage-fields.php:150
310
- msgid "The longitude at which the map should be displayed when no pins are attached."
311
- msgstr "Auf der Karte angezeigter Längengrad (Longitude) falls keine Pins vorhanden sind."
312
-
313
- #: profile-builder-2.0/admin/manage-fields.php:151
314
- msgid "Default Zoom Level"
315
- msgstr "Standard Zoomstufe"
316
-
317
- #: profile-builder-2.0/admin/manage-fields.php:151
318
- msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
319
- msgstr ""
320
-
321
- #: profile-builder-2.0/admin/manage-fields.php:152
322
- msgid "Map Height"
323
- msgstr ""
324
-
325
- #: profile-builder-2.0/admin/manage-fields.php:152
326
- msgid "The height of the map."
327
- msgstr ""
328
-
329
- #: profile-builder-2.0/admin/manage-fields.php:154
330
- msgid "HTML Content"
331
- msgstr ""
332
-
333
- #: profile-builder-2.0/admin/manage-fields.php:154
334
- msgid "Add your HTML (or text) content"
335
- msgstr ""
336
-
337
- #: profile-builder-2.0/admin/manage-fields.php:155
338
- msgid "Phone Format"
339
- msgstr "Format der Telefonnummer"
340
-
341
- #: profile-builder-2.0/admin/manage-fields.php:155
342
- msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
343
- msgstr "Sie können folgendes nutzen: # für Nummern, Klammern ( ), - Zeichen, + Zeichen, Punkt . und Leerzeichen."
344
-
345
- #: profile-builder-2.0/admin/manage-fields.php:155
346
- msgid "Eg. (###) ###-####"
347
- msgstr "z.B. (###) ####-####"
348
-
349
- #: profile-builder-2.0/admin/manage-fields.php:155
350
- msgid "Empty field won't check for correct phone number."
351
- msgstr ""
352
-
353
- #: profile-builder-2.0/admin/manage-fields.php:156
354
- msgid "Heading Tag"
355
- msgstr ""
356
-
357
- #: profile-builder-2.0/admin/manage-fields.php:156
358
- msgid "Change heading field size on front-end forms"
359
- msgstr ""
360
-
361
- #: profile-builder-2.0/admin/manage-fields.php:157
362
- msgid "Min Number Value"
363
- msgstr ""
364
-
365
- #: profile-builder-2.0/admin/manage-fields.php:157
366
- msgid "Min allowed number value (0 to allow only positive numbers)"
367
- msgstr ""
368
-
369
- #: profile-builder-2.0/admin/manage-fields.php:157
370
- msgid "Leave it empty for no min value"
371
- msgstr ""
372
-
373
- #: profile-builder-2.0/admin/manage-fields.php:158
374
- msgid "Max Number Value"
375
- msgstr ""
376
-
377
- #: profile-builder-2.0/admin/manage-fields.php:158
378
- msgid "Max allowed number value (0 to allow only negative numbers)"
379
- msgstr ""
380
-
381
- #: profile-builder-2.0/admin/manage-fields.php:158
382
- msgid "Leave it empty for no max value"
383
- msgstr ""
384
-
385
- #: profile-builder-2.0/admin/manage-fields.php:159
386
- msgid "Number Step Value"
387
- msgstr ""
388
-
389
- #: profile-builder-2.0/admin/manage-fields.php:159
390
- msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
391
- msgstr ""
392
-
393
- #: profile-builder-2.0/admin/manage-fields.php:159
394
- msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
395
- msgstr ""
396
-
397
- #: profile-builder-2.0/admin/manage-fields.php:159
398
- msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
399
- msgstr ""
400
-
401
- #: profile-builder-2.0/admin/manage-fields.php:159
402
- msgid "Leave it empty for no restriction"
403
- msgstr ""
404
-
405
- #: profile-builder-2.0/admin/manage-fields.php:564
406
- msgid "Albania Lek"
407
- msgstr ""
408
-
409
- #: profile-builder-2.0/admin/manage-fields.php:565
410
- msgid "Afghanistan Afghani"
411
- msgstr ""
412
-
413
- #: profile-builder-2.0/admin/manage-fields.php:566
414
- msgid "Argentina Peso"
415
- msgstr ""
416
-
417
- #: profile-builder-2.0/admin/manage-fields.php:567
418
- msgid "Aruba Guilder"
419
- msgstr ""
420
-
421
- #: profile-builder-2.0/admin/manage-fields.php:568
422
- msgid "Australia Dollar"
423
- msgstr ""
424
-
425
- #: profile-builder-2.0/admin/manage-fields.php:569
426
- msgid "Azerbaijan New Manat"
427
- msgstr ""
428
-
429
- #: profile-builder-2.0/admin/manage-fields.php:570
430
- msgid "Bahamas Dollar"
431
- msgstr ""
432
-
433
- #: profile-builder-2.0/admin/manage-fields.php:571
434
- msgid "Barbados Dollar"
435
- msgstr ""
436
-
437
- #: profile-builder-2.0/admin/manage-fields.php:572
438
- msgid "Bangladeshi taka"
439
- msgstr ""
440
-
441
- #: profile-builder-2.0/admin/manage-fields.php:573
442
- msgid "Belarus Ruble"
443
- msgstr ""
444
-
445
- #: profile-builder-2.0/admin/manage-fields.php:574
446
- msgid "Belize Dollar"
447
- msgstr ""
448
-
449
- #: profile-builder-2.0/admin/manage-fields.php:575
450
- msgid "Bermuda Dollar"
451
- msgstr ""
452
-
453
- #: profile-builder-2.0/admin/manage-fields.php:576
454
- msgid "Bolivia Boliviano"
455
- msgstr ""
456
-
457
- #: profile-builder-2.0/admin/manage-fields.php:577
458
- msgid "Bosnia and Herzegovina Convertible Marka"
459
- msgstr ""
460
-
461
- #: profile-builder-2.0/admin/manage-fields.php:578
462
- msgid "Botswana Pula"
463
- msgstr ""
464
-
465
- #: profile-builder-2.0/admin/manage-fields.php:579
466
- msgid "Bulgaria Lev"
467
- msgstr ""
468
-
469
- #: profile-builder-2.0/admin/manage-fields.php:580
470
- msgid "Brazil Real"
471
- msgstr ""
472
-
473
- #: profile-builder-2.0/admin/manage-fields.php:581
474
- msgid "Brunei Darussalam Dollar"
475
- msgstr ""
476
-
477
- #: profile-builder-2.0/admin/manage-fields.php:582
478
- msgid "Cambodia Riel"
479
- msgstr ""
480
-
481
- #: profile-builder-2.0/admin/manage-fields.php:583
482
- msgid "Canada Dollar"
483
- msgstr ""
484
-
485
- #: profile-builder-2.0/admin/manage-fields.php:584
486
- msgid "Cayman Islands Dollar"
487
- msgstr ""
488
-
489
- #: profile-builder-2.0/admin/manage-fields.php:585
490
- msgid "Chile Peso"
491
- msgstr ""
492
-
493
- #: profile-builder-2.0/admin/manage-fields.php:586
494
- msgid "China Yuan Renminbi"
495
- msgstr ""
496
-
497
- #: profile-builder-2.0/admin/manage-fields.php:587
498
- msgid "Colombia Peso"
499
- msgstr ""
500
-
501
- #: profile-builder-2.0/admin/manage-fields.php:588
502
- msgid "Costa Rica Colon"
503
- msgstr ""
504
-
505
- #: profile-builder-2.0/admin/manage-fields.php:589
506
- msgid "Croatia Kuna"
507
- msgstr ""
508
-
509
- #: profile-builder-2.0/admin/manage-fields.php:590
510
- msgid "Cuba Peso"
511
- msgstr ""
512
-
513
- #: profile-builder-2.0/admin/manage-fields.php:591
514
- msgid "Czech Republic Koruna"
515
- msgstr ""
516
-
517
- #: profile-builder-2.0/admin/manage-fields.php:592
518
- msgid "Denmark Krone"
519
- msgstr ""
520
-
521
- #: profile-builder-2.0/admin/manage-fields.php:593
522
- msgid "Dominican Republic Peso"
523
- msgstr ""
524
-
525
- #: profile-builder-2.0/admin/manage-fields.php:594
526
- msgid "East Caribbean Dollar"
527
- msgstr ""
528
-
529
- #: profile-builder-2.0/admin/manage-fields.php:595
530
- msgid "Egypt Pound"
531
- msgstr ""
532
-
533
- #: profile-builder-2.0/admin/manage-fields.php:596
534
- msgid "El Salvador Colon"
535
- msgstr ""
536
-
537
- #: profile-builder-2.0/admin/manage-fields.php:597
538
- msgid "Estonia Kroon"
539
- msgstr ""
540
-
541
- #: profile-builder-2.0/admin/manage-fields.php:598
542
- msgid "Euro"
543
- msgstr "Euro"
544
-
545
- #: profile-builder-2.0/admin/manage-fields.php:599
546
- msgid "Falkland Islands (Malvinas) Pound"
547
- msgstr ""
548
-
549
- #: profile-builder-2.0/admin/manage-fields.php:600
550
- msgid "Fiji Dollar"
551
- msgstr ""
552
-
553
- #: profile-builder-2.0/admin/manage-fields.php:601
554
- msgid "Ghana Cedis"
555
- msgstr ""
556
-
557
- #: profile-builder-2.0/admin/manage-fields.php:602
558
- msgid "Gibraltar Pound"
559
- msgstr ""
560
-
561
- #: profile-builder-2.0/admin/manage-fields.php:603
562
- msgid "Guatemala Quetzal"
563
- msgstr ""
564
-
565
- #: profile-builder-2.0/admin/manage-fields.php:604
566
- msgid "Guernsey Pound"
567
- msgstr ""
568
-
569
- #: profile-builder-2.0/admin/manage-fields.php:605
570
- msgid "Guyana Dollar"
571
- msgstr ""
572
-
573
- #: profile-builder-2.0/admin/manage-fields.php:606
574
- msgid "Honduras Lempira"
575
- msgstr ""
576
-
577
- #: profile-builder-2.0/admin/manage-fields.php:607
578
- msgid "Hong Kong Dollar"
579
- msgstr ""
580
-
581
- #: profile-builder-2.0/admin/manage-fields.php:608
582
- msgid "Hungary Forint"
583
- msgstr ""
584
-
585
- #: profile-builder-2.0/admin/manage-fields.php:609
586
- msgid "Iceland Krona"
587
- msgstr "Isländische Krone"
588
-
589
- #: profile-builder-2.0/admin/manage-fields.php:610
590
- msgid "India Rupee"
591
- msgstr ""
592
-
593
- #: profile-builder-2.0/admin/manage-fields.php:611
594
- msgid "Indonesia Rupiah"
595
- msgstr ""
596
-
597
- #: profile-builder-2.0/admin/manage-fields.php:612
598
- msgid "Iran Rial"
599
- msgstr ""
600
-
601
- #: profile-builder-2.0/admin/manage-fields.php:613
602
- msgid "Isle of Man Pound"
603
- msgstr ""
604
-
605
- #: profile-builder-2.0/admin/manage-fields.php:614
606
- msgid "Israel Shekel"
607
- msgstr ""
608
-
609
- #: profile-builder-2.0/admin/manage-fields.php:615
610
- msgid "Jamaica Dollar"
611
- msgstr ""
612
-
613
- #: profile-builder-2.0/admin/manage-fields.php:616
614
- msgid "Japan Yen"
615
- msgstr ""
616
-
617
- #: profile-builder-2.0/admin/manage-fields.php:617
618
- msgid "Jersey Pound"
619
- msgstr ""
620
-
621
- #: profile-builder-2.0/admin/manage-fields.php:618
622
- msgid "Kazakhstan Tenge"
623
- msgstr ""
624
-
625
- #: profile-builder-2.0/admin/manage-fields.php:619
626
- msgid "Korea (North) Won"
627
- msgstr ""
628
-
629
- #: profile-builder-2.0/admin/manage-fields.php:620
630
- msgid "Korea (South) Won"
631
- msgstr ""
632
-
633
- #: profile-builder-2.0/admin/manage-fields.php:621
634
- msgid "Kyrgyzstan Som"
635
- msgstr ""
636
-
637
- #: profile-builder-2.0/admin/manage-fields.php:622
638
- msgid "Laos Kip"
639
- msgstr ""
640
-
641
- #: profile-builder-2.0/admin/manage-fields.php:623
642
- msgid "Latvia Lat"
643
- msgstr ""
644
-
645
- #: profile-builder-2.0/admin/manage-fields.php:624
646
- msgid "Lebanon Pound"
647
- msgstr ""
648
-
649
- #: profile-builder-2.0/admin/manage-fields.php:625
650
- msgid "Liberia Dollar"
651
- msgstr ""
652
-
653
- #: profile-builder-2.0/admin/manage-fields.php:626
654
- msgid "Lithuania Litas"
655
- msgstr ""
656
-
657
- #: profile-builder-2.0/admin/manage-fields.php:627
658
- msgid "Macedonia Denar"
659
- msgstr ""
660
-
661
- #: profile-builder-2.0/admin/manage-fields.php:628
662
- msgid "Malaysia Ringgit"
663
- msgstr ""
664
-
665
- #: profile-builder-2.0/admin/manage-fields.php:629
666
- msgid "Mauritius Rupee"
667
- msgstr ""
668
-
669
- #: profile-builder-2.0/admin/manage-fields.php:630
670
- msgid "Mexico Peso"
671
- msgstr ""
672
-
673
- #: profile-builder-2.0/admin/manage-fields.php:631
674
- msgid "Mongolia Tughrik"
675
- msgstr ""
676
-
677
- #: profile-builder-2.0/admin/manage-fields.php:632
678
- msgid "Mozambique Metical"
679
- msgstr ""
680
-
681
- #: profile-builder-2.0/admin/manage-fields.php:633
682
- msgid "Namibia Dollar"
683
- msgstr ""
684
-
685
- #: profile-builder-2.0/admin/manage-fields.php:634
686
- msgid "Nepal Rupee"
687
- msgstr ""
688
-
689
- #: profile-builder-2.0/admin/manage-fields.php:635
690
- msgid "Netherlands Antilles Guilder"
691
- msgstr ""
692
-
693
- #: profile-builder-2.0/admin/manage-fields.php:636
694
- msgid "New Zealand Dollar"
695
- msgstr ""
696
-
697
- #: profile-builder-2.0/admin/manage-fields.php:637
698
- msgid "Nicaragua Cordoba"
699
- msgstr ""
700
-
701
- #: profile-builder-2.0/admin/manage-fields.php:638
702
- msgid "Nigeria Naira"
703
- msgstr ""
704
-
705
- #: profile-builder-2.0/admin/manage-fields.php:639
706
- msgid "Norway Krone"
707
- msgstr ""
708
-
709
- #: profile-builder-2.0/admin/manage-fields.php:640
710
- msgid "Oman Rial"
711
- msgstr ""
712
-
713
- #: profile-builder-2.0/admin/manage-fields.php:641
714
- msgid "Pakistan Rupee"
715
- msgstr ""
716
-
717
- #: profile-builder-2.0/admin/manage-fields.php:642
718
- msgid "Panama Balboa"
719
- msgstr ""
720
-
721
- #: profile-builder-2.0/admin/manage-fields.php:643
722
- msgid "Paraguay Guarani"
723
- msgstr ""
724
-
725
- #: profile-builder-2.0/admin/manage-fields.php:644
726
- msgid "Peru Nuevo Sol"
727
- msgstr ""
728
-
729
- #: profile-builder-2.0/admin/manage-fields.php:645
730
- msgid "Philippines Peso"
731
- msgstr ""
732
-
733
- #: profile-builder-2.0/admin/manage-fields.php:646
734
- msgid "Poland Zloty"
735
- msgstr ""
736
-
737
- #: profile-builder-2.0/admin/manage-fields.php:647
738
- msgid "Qatar Riyal"
739
- msgstr ""
740
-
741
- #: profile-builder-2.0/admin/manage-fields.php:648
742
- msgid "Romania New Leu"
743
- msgstr ""
744
-
745
- #: profile-builder-2.0/admin/manage-fields.php:649
746
- msgid "Russia Ruble"
747
- msgstr ""
748
-
749
- #: profile-builder-2.0/admin/manage-fields.php:650
750
- msgid "Saint Helena Pound"
751
- msgstr ""
752
-
753
- #: profile-builder-2.0/admin/manage-fields.php:651
754
- msgid "Saudi Arabia Riyal"
755
- msgstr ""
756
-
757
- #: profile-builder-2.0/admin/manage-fields.php:652
758
- msgid "Serbia Dinar"
759
- msgstr ""
760
-
761
- #: profile-builder-2.0/admin/manage-fields.php:653
762
- msgid "Seychelles Rupee"
763
- msgstr ""
764
-
765
- #: profile-builder-2.0/admin/manage-fields.php:654
766
- msgid "Singapore Dollar"
767
- msgstr ""
768
-
769
- #: profile-builder-2.0/admin/manage-fields.php:655
770
- msgid "Solomon Islands Dollar"
771
- msgstr ""
772
-
773
- #: profile-builder-2.0/admin/manage-fields.php:656
774
- msgid "Somalia Shilling"
775
- msgstr ""
776
-
777
- #: profile-builder-2.0/admin/manage-fields.php:657
778
- msgid "South Africa Rand"
779
- msgstr ""
780
-
781
- #: profile-builder-2.0/admin/manage-fields.php:658
782
- msgid "Sri Lanka Rupee"
783
- msgstr ""
784
-
785
- #: profile-builder-2.0/admin/manage-fields.php:659
786
- msgid "Sweden Krona"
787
- msgstr ""
788
-
789
- #: profile-builder-2.0/admin/manage-fields.php:660
790
- msgid "Switzerland Franc"
791
- msgstr ""
792
-
793
- #: profile-builder-2.0/admin/manage-fields.php:661
794
- msgid "Suriname Dollar"
795
- msgstr ""
796
-
797
- #: profile-builder-2.0/admin/manage-fields.php:662
798
- msgid "Syria Pound"
799
- msgstr ""
800
-
801
- #: profile-builder-2.0/admin/manage-fields.php:663
802
- msgid "Taiwan New Dollar"
803
- msgstr ""
804
-
805
- #: profile-builder-2.0/admin/manage-fields.php:664
806
- msgid "Thailand Baht"
807
- msgstr ""
808
-
809
- #: profile-builder-2.0/admin/manage-fields.php:665
810
- msgid "Trinidad and Tobago Dollar"
811
- msgstr ""
812
-
813
- #: profile-builder-2.0/admin/manage-fields.php:666
814
- #: profile-builder-2.0/admin/manage-fields.php:667
815
- msgid "Turkey Lira"
816
- msgstr ""
817
-
818
- #: profile-builder-2.0/admin/manage-fields.php:668
819
- msgid "Tuvalu Dollar"
820
- msgstr ""
821
-
822
- #: profile-builder-2.0/admin/manage-fields.php:669
823
- msgid "Ukraine Hryvna"
824
- msgstr ""
825
-
826
- #: profile-builder-2.0/admin/manage-fields.php:670
827
- msgid "United Kingdom Pound"
828
- msgstr ""
829
-
830
- #: profile-builder-2.0/admin/manage-fields.php:671
831
- msgid "Uganda Shilling"
832
- msgstr ""
833
-
834
- #: profile-builder-2.0/admin/manage-fields.php:672
835
- msgid "US Dollar"
836
- msgstr ""
837
-
838
- #: profile-builder-2.0/admin/manage-fields.php:673
839
- msgid "Uruguay Peso"
840
- msgstr ""
841
-
842
- #: profile-builder-2.0/admin/manage-fields.php:674
843
- msgid "Uzbekistan Som"
844
- msgstr ""
845
-
846
- #: profile-builder-2.0/admin/manage-fields.php:675
847
- msgid "Venezuela Bolivar"
848
- msgstr ""
849
-
850
- #: profile-builder-2.0/admin/manage-fields.php:676
851
- msgid "Viet Nam Dong"
852
- msgstr ""
853
-
854
- #: profile-builder-2.0/admin/manage-fields.php:677
855
- msgid "Yemen Rial"
856
- msgstr ""
857
-
858
- #: profile-builder-2.0/admin/manage-fields.php:678
859
- msgid "Zimbabwe Dollar"
860
- msgstr ""
861
-
862
- #: profile-builder-2.0/admin/manage-fields.php:1097
863
- msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
864
- msgstr ""
865
-
866
- #: profile-builder-2.0/admin/manage-fields.php:1314
867
- msgid "Search Location"
868
- msgstr ""
869
-
870
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
871
- msgid "You are not allowed to do this."
872
- msgstr ""
873
-
874
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
875
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
876
- msgid "Search Users"
877
- msgstr ""
878
-
879
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
880
- msgid "Conditional Logic"
881
- msgstr ""
882
-
883
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
884
- msgid "Conditional Rules"
885
- msgstr ""
886
-
887
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
888
- msgid "This field has conditional logic enabled."
889
- msgstr ""
890
-
891
- #: profile-builder-2.0/features/functions.php:685
892
- msgid "Incorrect phone number"
893
- msgstr "Fehlerhafte Telefonnummer"
894
-
895
- #: profile-builder-2.0/front-end/class-formbuilder.php:124
896
- msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
897
- msgstr ""
898
-
899
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
900
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
901
- msgid "Please add the Google Maps API key for this field."
902
- msgstr ""
903
-
904
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
- msgid "Something went wrong. Please try again."
906
- msgstr "Irgendetwas ging schief. Bitte probieren Sie es erneut."
907
-
908
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
- msgid "Please enter numbers only"
910
- msgstr "Bitte geben Sie nur Zahlen ein"
911
-
912
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
913
- msgid "Value must be a multiplier of %1$s"
914
- msgstr ""
915
-
916
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
917
- msgid "Value must be greater than or equal to %1$s"
918
- msgstr ""
919
-
920
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
921
- msgid "Value must be less than or equal to %1$s"
922
- msgstr ""
923
-
924
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
925
- msgid "Required phone number format: "
926
- msgstr ""
927
-
928
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
929
- msgid "Bolivia, __( Plurinational State of"
930
- msgstr ""
931
-
932
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
933
- msgid "Bonaire, __( Sint Eustatius and Saba"
934
- msgstr ""
935
-
936
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
937
- msgid "Brunei Darussalam"
938
- msgstr ""
939
-
940
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
941
- msgid "Cabo Verde"
942
- msgstr ""
943
-
944
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
945
- msgid "Cocos (Keeling) Islands"
946
- msgstr ""
947
-
948
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
949
- msgid "Congo"
950
- msgstr ""
951
-
952
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
953
- msgid "Congo, __( the Democratic Republic of the"
954
- msgstr ""
955
-
956
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
957
- msgid "Cote dIvoire"
958
- msgstr ""
959
-
960
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
961
- msgid "Falkland Islands (Malvinas)"
962
- msgstr ""
963
-
964
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
965
- msgid "Holy See (Vatican City State)"
966
- msgstr ""
967
-
968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
969
- msgid "Iran, __( Islamic Republic of"
970
- msgstr ""
971
-
972
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
973
- msgid "Korea, __( Democratic Peoples Republic of"
974
- msgstr ""
975
-
976
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
977
- msgid "Korea, __( Republic of"
978
- msgstr ""
979
-
980
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
981
- msgid "Lao Peoples Democratic Republic"
982
- msgstr ""
983
-
984
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
985
- msgid "Macedonia, __( the former Yugoslav Republic of"
986
- msgstr ""
987
-
988
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
989
- msgid "Micronesia, __( Federated States of"
990
- msgstr ""
991
-
992
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
993
- msgid "Moldova, __( Republic of"
994
- msgstr ""
995
-
996
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
997
- msgid "Palestine, __( State of"
998
- msgstr ""
999
-
1000
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1001
- msgid "Russian Federation"
1002
- msgstr ""
1003
-
1004
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1005
- msgid "Saint Helena, __( Ascension and Tristan da Cunha"
1006
- msgstr ""
1007
-
1008
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1009
- msgid "Saint Martin (French part)"
1010
- msgstr ""
1011
-
1012
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1013
- msgid "Sint Maarten (Dutch part)"
1014
- msgstr ""
1015
-
1016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1017
- msgid "Syrian Arab Republic"
1018
- msgstr ""
1019
-
1020
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1021
- msgid "Taiwan, __( Province of China"
1022
- msgstr ""
1023
-
1024
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1025
- msgid "Tanzania, __( United Republic of"
1026
- msgstr ""
1027
-
1028
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1029
- msgid "Timor-Leste"
1030
- msgstr ""
1031
-
1032
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1033
- msgid "Venezuela, __( Bolivarian Republic of"
1034
- msgstr ""
1035
-
1036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1037
- msgid "Viet Nam"
1038
- msgstr ""
1039
-
1040
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1041
- msgid "Virgin Islands, __( British"
1042
- msgstr ""
1043
-
1044
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1045
- msgid "Virgin Islands, __( U.S."
1046
- msgstr ""
1047
-
1048
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
1049
- #: profile-builder-2.0/modules/user-listing/userlisting.php:186
1050
- msgid "User Fields Tags"
1051
- msgstr ""
1052
-
1053
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
1054
- msgid "The users selected password at signup"
1055
- msgstr ""
1056
-
1057
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
1058
- msgid "[{{site_name}}] Notice of Email Change"
1059
- msgstr ""
1060
-
1061
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
1062
- msgid "Changed Email Address Notification"
1063
- msgstr ""
1064
-
1065
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1066
- msgid "Limit"
1067
- msgstr ""
1068
-
1069
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1070
- msgid "Enable limit to the number of fields to be generated by users in front end forms "
1071
- msgstr ""
1072
-
1073
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1074
- msgid "General Limit"
1075
- msgstr ""
1076
-
1077
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1078
- msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
1079
- msgstr ""
1080
-
1081
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1082
- msgid "Limit reached message"
1083
- msgstr ""
1084
-
1085
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1086
- msgid "The maximum number of fields has been reached."
1087
- msgstr ""
1088
-
1089
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1090
- msgid "The popup message to display when the limit of repeater groups is reached."
1091
- msgstr ""
1092
-
1093
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1094
- msgid "Limit per Role"
1095
- msgstr ""
1096
-
1097
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1098
- msgid "Leave 0 for unlimited."
1099
- msgstr ""
1100
-
1101
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1102
- msgid "Repeated field group"
1103
- msgstr ""
1104
-
1105
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1106
- msgid "Manage field or group of fields that will be repeatable."
1107
- msgstr ""
1108
-
1109
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1110
- msgid "Edit field group"
1111
- msgstr ""
1112
-
1113
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
1114
- msgid "Repeatable fields saved!"
1115
- msgstr ""
1116
-
1117
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1118
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1119
- msgid "Please enter a unique field title.\n"
1120
- msgstr ""
1121
-
1122
- #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1123
- msgid "Are you sure you want to delete this?"
1124
- msgstr ""
1125
-
1126
- #: profile-builder-2.0/modules/user-listing/userlisting.php:192
1127
- msgid "Sort Tags"
1128
- msgstr ""
1129
-
1130
- #: profile-builder-2.0/modules/user-listing/userlisting.php:201
1131
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
1132
- msgid "Faceted Menus"
1133
- msgstr ""
1134
-
1135
- #: profile-builder-2.0/modules/user-listing/userlisting.php:202
1136
- msgid "User Count"
1137
- msgstr ""
1138
-
1139
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1140
- msgid "Show All"
1141
- msgstr "Alle zeigen"
1142
-
1143
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
- msgid "No options available"
1145
- msgstr "Keine Einstellungen verfügbar"
1146
-
1147
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
- msgid "Remove All Filters"
1149
- msgstr ""
1150
-
1151
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
- msgid "Label"
1153
- msgstr ""
1154
-
1155
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1156
- msgid "Choose the facet name that appears on the frontend"
1157
- msgstr ""
1158
-
1159
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1160
- msgid "Facet Type"
1161
- msgstr ""
1162
-
1163
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1164
- msgid "Choose the facet menu type"
1165
- msgstr ""
1166
-
1167
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1168
- msgid "Facet Meta"
1169
- msgstr ""
1170
-
1171
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1172
- msgid "Choose the meta field for the facet menu"
1173
- msgstr ""
1174
-
1175
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1176
- msgid "Behaviour"
1177
- msgstr ""
1178
-
1179
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1180
- msgid "Narrow the results"
1181
- msgstr ""
1182
-
1183
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1184
- msgid "Expand the results"
1185
- msgstr ""
1186
-
1187
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1188
- msgid "Choose how multiple selections affect the results"
1189
- msgstr ""
1190
-
1191
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1192
- msgid "Visible choices"
1193
- msgstr ""
1194
-
1195
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1196
- msgid "Show a toggle link after this many choices. Leave blank for all"
1197
- msgstr ""
1198
-
1199
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1200
- msgid "Search Fields"
1201
- msgstr ""
1202
-
1203
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1204
- msgid "Choose the fields in which the Search Field will look in"
1205
- msgstr ""
1206
-
1207
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
1208
- msgid "Search Settings"
1209
- msgstr ""
1210
-
1211
- #: pb-add-on-woocommerce/billing-fields.php:8
1212
- #: pb-add-on-woocommerce/shipping-fields.php:8
1213
- msgid "Company Name"
1214
- msgstr "Firmenname"
1215
-
1216
- #: pb-add-on-woocommerce/billing-fields.php:9
1217
- #: pb-add-on-woocommerce/shipping-fields.php:9
1218
- msgid "Address"
1219
- msgstr "Adresse"
1220
-
1221
- #: pb-add-on-woocommerce/billing-fields.php:5
1222
- #: pb-add-on-woocommerce/shipping-fields.php:5
1223
- msgid "Country"
1224
- msgstr "Staat"
1225
-
1226
- #: pb-add-on-woocommerce/billing-fields.php:11
1227
- #: pb-add-on-woocommerce/shipping-fields.php:11
1228
- msgid "Town / City"
1229
- msgstr "Ort"
1230
-
1231
- #: pb-add-on-woocommerce/billing-fields.php:12
1232
- #: pb-add-on-woocommerce/shipping-fields.php:12
1233
- msgid "State / County"
1234
- msgstr "Bundesland"
1235
-
1236
- #: pb-add-on-woocommerce/billing-fields.php:13
1237
- #: pb-add-on-woocommerce/shipping-fields.php:13
1238
- msgid "Postcode / Zip"
1239
- msgstr "PLZ"
1240
-
1241
- #: pb-add-on-woocommerce/billing-fields.php:14
1242
- msgid "Email Address"
1243
- msgstr "E-Mail Adresse"
1244
-
1245
- #: pb-add-on-woocommerce/billing-fields.php:15
1246
- msgid "Phone"
1247
- msgstr "Telefon"
1248
-
1249
- #: pb-add-on-woocommerce/billing-fields.php:278
1250
- msgid "Ship to a different address?"
1251
- msgstr "An andere Adresse liefern?"
1252
-
1253
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
- msgid "Billing Address"
1255
- msgstr "Rechnungsadresse"
1256
-
1257
- #: pb-add-on-woocommerce/index.php:169
1258
- msgid "Displays customer billing fields in front-end. "
1259
- msgstr "Zeigt die Bezahldaten des Kunden auf der Seite an."
1260
-
1261
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
- msgid "Shipping Address"
1263
- msgstr "Lieferadresse"
1264
-
1265
- #: pb-add-on-woocommerce/index.php:173
1266
- msgid "Displays customer shipping fields in front-end. "
1267
- msgstr "Zeigt die Lieferadresse des Kunden auf der Seite an."
1268
-
1269
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
- msgid "Display on WooCommerce Checkout"
1271
- msgstr "Im WooCommerce Bestellprozess anzeigen"
1272
-
1273
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1274
- msgid "Whether the field should be added to the WooCommerce checkout form or not"
1275
- msgstr "Ob das Feld zum WooCommerce Checkout hinzugefügt werden soll oder nicht"
1276
-
1277
- #: pb-add-on-woocommerce/index.php:541
1278
- msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1279
- msgstr "Für das Profile Builder - WooCommerce Sync Add-on muss WooCommerce installiert und aktiviert sein!"
1280
-
1281
- #: pb-add-on-woocommerce/woosync-page.php:23
1282
- #: pb-add-on-woocommerce/woosync-page.php:70
1283
- msgid "WooCommerce Sync"
1284
- msgstr "WooCommerce Synchronisierung"
1285
-
1286
- #: pb-add-on-woocommerce/woosync-page.php:76
1287
- msgid "Choose Register form to display on My Account page:"
1288
- msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll:"
1289
-
1290
- #: pb-add-on-woocommerce/woosync-page.php:81
1291
- msgid "Default Register"
1292
- msgstr "Standard Registrierungsformular"
1293
-
1294
- #: pb-add-on-woocommerce/woosync-page.php:103
1295
- msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1296
- msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll.<br/> Dadurch wird auch das Profile Builder Loginformular im Kundenkonto angezeigt."
1297
-
1298
- #: pb-add-on-woocommerce/woosync-page.php:110
1299
- msgid "Choose Edit Profile form to display on My Account page:"
1300
- msgstr "Wählen Sie das \"Profil editieren\"-Formular, welches im Kundenkonto (My Account) angezeigt werden soll:"
1301
-
1302
- #: pb-add-on-woocommerce/woosync-page.php:115
1303
- msgid "Default Edit Profile"
1304
- msgstr "Standard \"Profil editieren\"-Formular"
1305
-
1306
- #: pb-add-on-woocommerce/woosync-page.php:137
1307
- msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1308
- msgstr "Wählen Sie das \"Profil editieren\"-Formular aus Profile Builder, welches im Kundenkonto (My Account) von WooCommerce angezeigt werden soll:"
1309
-
1310
- #: profile-builder-2.0/admin/add-ons.php:190
1311
- msgid "Recommended Plugins"
1312
- msgstr "Empfohlene Erweiterungen"
1313
-
1314
- #: profile-builder-2.0/admin/add-ons.php:219
1315
- #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1316
- msgid "Free"
1317
- msgstr "Kostenlos"
1318
-
1319
- #: profile-builder-2.0/admin/add-ons.php:221
1320
- msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1321
- msgstr "Bezahlvorgänge, Abonnements und Inhaltsbeschränkungen für Ihre Mitgliedsseite."
1322
-
1323
- #: profile-builder-2.0/admin/add-ons.php:222
1324
- #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1325
- msgid "More Details"
1326
- msgstr "Weitere Details"
1327
-
1328
- #: profile-builder-2.0/admin/add-ons.php:240
1329
- #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1330
- #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1331
- #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1332
- msgid "Plugin is <strong>inactive</strong>"
1333
- msgstr "Die Erweiterung ist <strong>inaktiv</strong>"
1334
-
1335
- #: profile-builder-2.0/admin/add-ons.php:242
1336
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1337
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1338
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1339
- msgid "Plugin is <strong>active</strong>"
1340
- msgstr "Die Erweiterung ist <strong>aktiv</strong>"
1341
-
1342
- #: profile-builder-2.0/admin/add-ons.php:256
1343
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1344
- msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1345
- msgstr "Die Erweiterung konnte nicht installiert werden. Versuchen Sie es noch einmal oder <a href=\"%s\" target=\"_blank\">installieren Sie die Erweiterung manuell</a>."
1346
-
1347
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
- msgid "Paid Accounts"
1349
- msgstr "Paid Accounts"
1350
-
1351
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1352
- msgid "Paid Member Subscriptions - a free WordPress plugin"
1353
- msgstr "Paid Member Subscriptions - eine kostenloses WordPress Erweiterung"
1354
-
1355
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1356
- msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1357
- msgstr ""
1358
-
1359
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
- msgid "Paid & Free Subscriptions"
1361
- msgstr "Paid & Free Subscriptions"
1362
-
1363
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
- msgid "Restrict Content"
1365
- msgstr "Restrict Content"
1366
-
1367
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
- msgid "Member Management"
1369
- msgstr "Member Management"
1370
-
1371
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
- msgid "Email Templates"
1373
- msgstr "Emailvorlagen"
1374
-
1375
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
- msgid "Account Management"
1377
- msgstr "Account Management"
1378
-
1379
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
- msgid "Subscription Management"
1381
- msgstr "Subscription Management"
1382
-
1383
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
- msgid "Payment Management"
1385
- msgstr "Payment Management"
1386
-
1387
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
- msgid "Plugin is Active"
1389
- msgstr "Erweiterung aktiv"
1390
-
1391
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
- msgid "Plugin has been activated"
1393
- msgstr "Die Erweiterung wurde aktiviert."
1394
-
1395
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
- msgid "Plugin has been deactivated."
1397
- msgstr "Die Erweiterung wurde deaktiviert."
1398
-
1399
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1400
- msgid "Accept user payments, create subscription plans and restrict content on your website."
1401
- msgstr "Aktzeptiere Benutzerzahlungen, erstelle Abonnement-Pläne und schränke den Inhalt deiner Webseite ein."
1402
-
1403
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
- msgid "Step by Step Quick Setup"
1405
- msgstr "Schnelle Schritt für Schritt Einrichtung"
1406
-
1407
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1408
- msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1409
- msgstr "Klicken Sie bitte hier, um Ihr Benutzerkonto zu aktivieren:<br><br>%s%s%s<br><br>Im Anschluss erhalten Sie eine weitere Email mit Ihren Logindaten."
1410
-
1411
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
- msgid "After Login"
1413
- msgstr "Nach dem Login"
1414
-
1415
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
- msgid "After Logout"
1417
- msgstr "Nach dem Logout"
1418
-
1419
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
- msgid "After Registration"
1421
- msgstr "Nach der Registrierung"
1422
-
1423
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
- msgid "After Edit Profile"
1425
- msgstr "Nach dem Editieren eines Profils"
1426
-
1427
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
- msgid "After Successful Email Confirmation"
1429
- msgstr "Nach erfolgreicher Emailbestätigung"
1430
-
1431
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
- msgid "After Successful Password Reset"
1433
- msgstr "Nach erfolgreichem Zurücksetzen des Passworts"
1434
-
1435
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1436
- msgid "Dashboard (redirect users from accessing the dashboard)"
1437
- msgstr "Übersichtsseite (leitet Benutzer weiter, wenn sie auf diese Seite wollen)"
1438
-
1439
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
- msgid "User ID"
1441
- msgstr "Benutzer ID"
1442
-
1443
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
- msgid "User ID or Username"
1445
- msgstr "Benutzer ID oder Benutzername"
1446
-
1447
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
- msgid "User ID / Username"
1449
- msgstr "Benutzer ID / Benutzername"
1450
-
1451
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1452
- msgid "Please select and enter the ID or username of your user."
1453
- msgstr "Bitte geben Sie Ihre Benutzer ID oder Ihren Benutzernamen an."
1454
-
1455
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1456
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1457
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1458
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1459
- msgid "Redirect Type"
1460
- msgstr "Umleitungy Typ"
1461
-
1462
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1463
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1464
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1465
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1466
- msgid "Redirect URL"
1467
- msgstr "Umleitungs URL"
1468
-
1469
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1470
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1471
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1472
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1473
- msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1474
- msgstr "Kann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1475
-
1476
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1477
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1478
- msgid "Individual User Redirects"
1479
- msgstr "Individuelle Benutzer-Weiterleitungen"
1480
-
1481
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
- msgid "... Choose"
1483
- msgstr "... Auswählen"
1484
-
1485
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
- msgid "Select a user role."
1487
- msgstr "Wähle eine Benutzerrolle aus."
1488
-
1489
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1490
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1491
- msgid "User Role based Redirects"
1492
- msgstr "Benutzerrollen basierte Weiterleitungen"
1493
-
1494
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1495
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1496
- msgid "Global Redirects"
1497
- msgstr "Globale Weiterleitungen"
1498
-
1499
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
- msgid "Login ( wp_login.php )"
1501
- msgstr "Login ( wp_login.php )"
1502
-
1503
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1504
- msgid "Register ( wp-login.php?action=register )"
1505
- msgstr "Registrierung ( wp-login.php?action=register )"
1506
-
1507
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1508
- msgid "Lost Password ( wp-login.php?action=lostpassword )"
1509
- msgstr "Passwort vergessen ( wp-login.php?action=lostpassword )"
1510
-
1511
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1512
- msgid "Author Archive ( http://sitename.com/author/admin )"
1513
- msgstr "Autoren Archiv ( http://seitenname.com/autor/admin )"
1514
-
1515
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1516
- msgid "Redirect Default WordPress Forms and Pages"
1517
- msgstr "Standard WordPress Formulare und Seiten umleiten"
1518
-
1519
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
- msgid "How does this work?"
1521
- msgstr "Wie funktioniert das?"
1522
-
1523
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1524
- msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1525
- msgstr "<pre>Benutzer ID / Benutzername </pre><pre>Weiterleitung</pre><pre>URL</pre>"
1526
-
1527
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1528
- msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1529
- msgstr "<pre>Benutzer-Rolle</pre><pre>Weiterleitung</pre><pre>URL</pre>"
1530
-
1531
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1532
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1533
- msgid "<pre>Redirect</pre><pre>URL</pre>"
1534
- msgstr "<pre>Umleitung</pre><pre>URL</pre>"
1535
-
1536
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1537
- msgid "These redirects happen after a successful action, like registration or after a successful login."
1538
- msgstr "Die Weiterleitungen werden nach einer erfolgreichen Aktion ausgelöst, wie z.B. einer Registrierung oder einem Login."
1539
-
1540
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1541
- msgid "Which redirect happens depends on the following priority:"
1542
- msgstr "Welche Weiterleitung greift kommt auf die folgende Priorität an:"
1543
-
1544
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
- msgid "Redirect Default WordPress forms and pages"
1546
- msgstr "Standard WordPress Formulare und Seiten umleiten"
1547
-
1548
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1549
- msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1550
- msgstr "Damit können Sie verschiedene WordPress Formulare und Seiten zu den Profile Builder Äquivalenten umleiten."
1551
-
1552
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
- msgid "Available tags for dynamic URLs"
1554
- msgstr "Verfügbare Tags für dynamische URLs"
1555
-
1556
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1557
- msgid "You use the following tags in your URLs to redirect users to various pages."
1558
- msgstr "Sie nutzen folgende Tags in Ihren Umleitungs-URLs."
1559
-
1560
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1561
- msgid "generates a url of the current website homepage."
1562
- msgstr "Generiert eine URL der Startseite."
1563
-
1564
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1565
- msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1566
- msgstr "in WordPress kann die <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>Seiten URL</a> von der Startseiten URL abweichen."
1567
-
1568
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
- msgid "the ID of the user"
1570
- msgstr "die ID des Benutzers"
1571
-
1572
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1573
- msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1574
- msgstr "Die saubere URL version des Benutzernamens, der Benutzer \"nicename\" kann in URLs sicher verwendet werden, da er keine Spezialzeichen oder Leerschläge beinhalten kann."
1575
-
1576
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1577
- msgid "the URL of the previously visited page"
1578
- msgstr "die URL der vorherigen besuchten Seite"
1579
-
1580
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1581
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1582
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1583
- msgid "You can't add duplicate redirects!"
1584
- msgstr "Sie können keine doppelten Weiterleitungen anlegen!"
1585
-
1586
- #: profile-builder-2.0/admin/admin-functions.php:41
1587
- msgid "Display name publicly as - only appears on the Edit Profile page!"
1588
- msgstr "Den Namen öffentlich anzeigen - erscheint nur auf der Edit Profile Seite!"
1589
-
1590
- #: profile-builder-2.0/admin/basic-info.php:37
1591
- msgid "Friction-less login using %s shortcode or a widget."
1592
- msgstr "Reibungsloser Login indem man %s oder ein Widget benutzt."
1593
-
1594
- #: profile-builder-2.0/admin/basic-info.php:41
1595
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
- msgstr "Wunderschöne und voll anpassbare Registrierformulare mit der Nutzung von %s Shortcode."
1597
-
1598
- #: profile-builder-2.0/admin/basic-info.php:45
1599
- msgid "Straight forward edit profile forms using %s shortcode."
1600
- msgstr ""
1601
-
1602
- #: profile-builder-2.0/admin/basic-info.php:58
1603
- msgid "Allow users to recover their password in the front-end using the %s."
1604
- msgstr "Ermöglicht dem User, sein Passwort im Front-End-Bereich unter Anwendung von %s wiederherzustellen"
1605
-
1606
- #: profile-builder-2.0/admin/basic-info.php:140
1607
- msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1608
- msgstr ""
1609
-
1610
- #: profile-builder-2.0/admin/general-settings.php:115
1611
- msgid "\"Admin Approval\" on User Role:"
1612
- msgstr "\"Genehmigung durch Admin\" auf Benutzer-Rolle:"
1613
-
1614
- #: profile-builder-2.0/admin/general-settings.php:134
1615
- msgid "Select on what user roles to activate Admin Approval."
1616
- msgstr "Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen."
1617
-
1618
- #: profile-builder-2.0/admin/manage-fields.php:133
1619
- msgid "Display on PB forms"
1620
- msgstr "Zeige auf PB Formularen"
1621
-
1622
- #: profile-builder-2.0/admin/manage-fields.php:133
1623
- msgid "PB Login"
1624
- msgstr "PB Login"
1625
-
1626
- #: profile-builder-2.0/admin/manage-fields.php:133
1627
- msgid "PB Register"
1628
- msgstr "PB Registrierung"
1629
-
1630
- #: profile-builder-2.0/admin/manage-fields.php:133
1631
- msgid "PB Recover Password"
1632
- msgstr "PB Passwort wiederherstellen"
1633
-
1634
- #: profile-builder-2.0/admin/manage-fields.php:133
1635
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
- msgstr "Auswählen auf welchen Profile Builder Formularen reCSelect on which Profile Builder forms reCAPTCHA angezeigt werden soll."
1637
-
1638
- #: profile-builder-2.0/admin/manage-fields.php:134
1639
- msgid "Display on default WP forms"
1640
- msgstr "Zeige auf standardmäßigen WP Formularen"
1641
-
1642
- #: profile-builder-2.0/admin/manage-fields.php:134
1643
- msgid "Default WP Login"
1644
- msgstr "Standardmäßige WP Anmeldung"
1645
-
1646
- #: profile-builder-2.0/admin/manage-fields.php:134
1647
- msgid "Default WP Register"
1648
- msgstr "Standardmäßiges WP Register"
1649
-
1650
- #: profile-builder-2.0/admin/manage-fields.php:134
1651
- msgid "Default WP Recover Password"
1652
- msgstr "Standard WordPress \"Passwort wiederherstellen\""
1653
-
1654
- #: profile-builder-2.0/admin/manage-fields.php:134
1655
- msgid "Select on which default WP forms to display reCAPTCHA"
1656
- msgstr "Wählen Sie die Standard WordPress Formulare, auf denen ein reCAPTCHA angezeigt werden soll"
1657
-
1658
- #: profile-builder-2.0/admin/manage-fields.php:140
1659
- #: profile-builder-2.0/admin/manage-fields.php:141
1660
- #: profile-builder-2.0/admin/manage-fields.php:142
1661
- msgid "Default option of the field"
1662
- msgstr "Voreinstellung des Felds"
1663
-
1664
- #: profile-builder-2.0/admin/manage-fields.php:282
1665
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
- msgid "Afghanistan"
1667
- msgstr "Afghanistan"
1668
-
1669
- #: profile-builder-2.0/admin/manage-fields.php:283
1670
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
- msgid "Aland Islands"
1672
- msgstr "Aland Islands"
1673
-
1674
- #: profile-builder-2.0/admin/manage-fields.php:284
1675
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
- msgid "Albania"
1677
- msgstr "Albania"
1678
-
1679
- #: profile-builder-2.0/admin/manage-fields.php:285
1680
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
- msgid "Algeria"
1682
- msgstr "Algeria"
1683
-
1684
- #: profile-builder-2.0/admin/manage-fields.php:286
1685
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
- msgid "American Samoa"
1687
- msgstr "American Samoa"
1688
-
1689
- #: profile-builder-2.0/admin/manage-fields.php:287
1690
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
- msgid "Andorra"
1692
- msgstr "Andorra"
1693
-
1694
- #: profile-builder-2.0/admin/manage-fields.php:288
1695
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
- msgid "Angola"
1697
- msgstr "Angola"
1698
-
1699
- #: profile-builder-2.0/admin/manage-fields.php:289
1700
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
- msgid "Anguilla"
1702
- msgstr "Anguilla"
1703
-
1704
- #: profile-builder-2.0/admin/manage-fields.php:290
1705
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
- msgid "Antarctica"
1707
- msgstr "Antarctica"
1708
-
1709
- #: profile-builder-2.0/admin/manage-fields.php:291
1710
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
- msgid "Antigua and Barbuda"
1712
- msgstr "Antigua and Barbuda"
1713
-
1714
- #: profile-builder-2.0/admin/manage-fields.php:292
1715
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
- msgid "Argentina"
1717
- msgstr "Argentina"
1718
-
1719
- #: profile-builder-2.0/admin/manage-fields.php:293
1720
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1721
- msgid "Armenia"
1722
- msgstr "Armenia"
1723
-
1724
- #: profile-builder-2.0/admin/manage-fields.php:294
1725
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1726
- msgid "Aruba"
1727
- msgstr "Aruba"
1728
-
1729
- #: profile-builder-2.0/admin/manage-fields.php:295
1730
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
- msgid "Australia"
1732
- msgstr "Australia"
1733
-
1734
- #: profile-builder-2.0/admin/manage-fields.php:296
1735
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
- msgid "Austria"
1737
- msgstr "Austria"
1738
-
1739
- #: profile-builder-2.0/admin/manage-fields.php:297
1740
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
- msgid "Azerbaijan"
1742
- msgstr "Azerbaijan"
1743
-
1744
- #: profile-builder-2.0/admin/manage-fields.php:298
1745
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
- msgid "Bahamas"
1747
- msgstr "Bahamas"
1748
-
1749
- #: profile-builder-2.0/admin/manage-fields.php:299
1750
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1751
- msgid "Bahrain"
1752
- msgstr "Bahrain"
1753
-
1754
- #: profile-builder-2.0/admin/manage-fields.php:300
1755
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1756
- msgid "Bangladesh"
1757
- msgstr "Bangladesh"
1758
-
1759
- #: profile-builder-2.0/admin/manage-fields.php:301
1760
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1761
- msgid "Barbados"
1762
- msgstr "Barbados"
1763
-
1764
- #: profile-builder-2.0/admin/manage-fields.php:302
1765
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1766
- msgid "Belarus"
1767
- msgstr "Belarus"
1768
-
1769
- #: profile-builder-2.0/admin/manage-fields.php:303
1770
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1771
- msgid "Belgium"
1772
- msgstr "Belgium"
1773
-
1774
- #: profile-builder-2.0/admin/manage-fields.php:304
1775
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1776
- msgid "Belize"
1777
- msgstr "Belize"
1778
-
1779
- #: profile-builder-2.0/admin/manage-fields.php:305
1780
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1781
- msgid "Benin"
1782
- msgstr "Benin"
1783
-
1784
- #: profile-builder-2.0/admin/manage-fields.php:306
1785
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1786
- msgid "Bermuda"
1787
- msgstr "Bermuda"
1788
-
1789
- #: profile-builder-2.0/admin/manage-fields.php:307
1790
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1791
- msgid "Bhutan"
1792
- msgstr "Bhutan"
1793
-
1794
- #: profile-builder-2.0/admin/manage-fields.php:308
1795
- msgid "Bolivia"
1796
- msgstr "Bolivia"
1797
-
1798
- #: profile-builder-2.0/admin/manage-fields.php:309
1799
- msgid "Bonaire, Saint Eustatius and Saba"
1800
- msgstr "Bonaire, Saint Eustatius and Saba"
1801
-
1802
- #: profile-builder-2.0/admin/manage-fields.php:310
1803
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1804
- msgid "Bosnia and Herzegovina"
1805
- msgstr "Bosnia and Herzegovina"
1806
-
1807
- #: profile-builder-2.0/admin/manage-fields.php:311
1808
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1809
- msgid "Botswana"
1810
- msgstr "Botswana"
1811
-
1812
- #: profile-builder-2.0/admin/manage-fields.php:312
1813
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1814
- msgid "Bouvet Island"
1815
- msgstr "Bouvet Island"
1816
-
1817
- #: profile-builder-2.0/admin/manage-fields.php:313
1818
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1819
- msgid "Brazil"
1820
- msgstr "Brazil"
1821
-
1822
- #: profile-builder-2.0/admin/manage-fields.php:314
1823
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1824
- msgid "British Indian Ocean Territory"
1825
- msgstr "British Indian Ocean Territory"
1826
-
1827
- #: profile-builder-2.0/admin/manage-fields.php:315
1828
- msgid "British Virgin Islands"
1829
- msgstr "British Virgin Islands"
1830
-
1831
- #: profile-builder-2.0/admin/manage-fields.php:316
1832
- msgid "Brunei"
1833
- msgstr "Brunei"
1834
-
1835
- #: profile-builder-2.0/admin/manage-fields.php:317
1836
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
- msgid "Bulgaria"
1838
- msgstr "Bulgaria"
1839
-
1840
- #: profile-builder-2.0/admin/manage-fields.php:318
1841
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
- msgid "Burkina Faso"
1843
- msgstr "Burkina Faso"
1844
-
1845
- #: profile-builder-2.0/admin/manage-fields.php:319
1846
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
- msgid "Burundi"
1848
- msgstr "Burundi"
1849
-
1850
- #: profile-builder-2.0/admin/manage-fields.php:320
1851
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
- msgid "Cambodia"
1853
- msgstr "Cambodia"
1854
-
1855
- #: profile-builder-2.0/admin/manage-fields.php:321
1856
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
- msgid "Cameroon"
1858
- msgstr "Cameroon"
1859
-
1860
- #: profile-builder-2.0/admin/manage-fields.php:322
1861
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
- msgid "Canada"
1863
- msgstr "Canada"
1864
-
1865
- #: profile-builder-2.0/admin/manage-fields.php:323
1866
- msgid "Cape Verde"
1867
- msgstr "Cape Verde"
1868
-
1869
- #: profile-builder-2.0/admin/manage-fields.php:324
1870
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1871
- msgid "Cayman Islands"
1872
- msgstr "Cayman Islands"
1873
-
1874
- #: profile-builder-2.0/admin/manage-fields.php:325
1875
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1876
- msgid "Central African Republic"
1877
- msgstr "Central African Republic"
1878
-
1879
- #: profile-builder-2.0/admin/manage-fields.php:326
1880
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
- msgid "Chad"
1882
- msgstr "Chad"
1883
-
1884
- #: profile-builder-2.0/admin/manage-fields.php:327
1885
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
- msgid "Chile"
1887
- msgstr "Chile"
1888
-
1889
- #: profile-builder-2.0/admin/manage-fields.php:328
1890
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
- msgid "China"
1892
- msgstr "China"
1893
-
1894
- #: profile-builder-2.0/admin/manage-fields.php:329
1895
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1896
- msgid "Christmas Island"
1897
- msgstr "Christmas Island"
1898
-
1899
- #: profile-builder-2.0/admin/manage-fields.php:330
1900
- msgid "Cocos Islands"
1901
- msgstr "Cocos Islands"
1902
-
1903
- #: profile-builder-2.0/admin/manage-fields.php:331
1904
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
- msgid "Colombia"
1906
- msgstr "Colombia"
1907
-
1908
- #: profile-builder-2.0/admin/manage-fields.php:332
1909
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
- msgid "Comoros"
1911
- msgstr "Comoros"
1912
-
1913
- #: profile-builder-2.0/admin/manage-fields.php:333
1914
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
- msgid "Cook Islands"
1916
- msgstr "Cook Islands"
1917
-
1918
- #: profile-builder-2.0/admin/manage-fields.php:334
1919
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
- msgid "Costa Rica"
1921
- msgstr "Costa Rica"
1922
-
1923
- #: profile-builder-2.0/admin/manage-fields.php:335
1924
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
- msgid "Croatia"
1926
- msgstr "Croatia"
1927
-
1928
- #: profile-builder-2.0/admin/manage-fields.php:336
1929
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
- msgid "Cuba"
1931
- msgstr "Cuba"
1932
-
1933
- #: profile-builder-2.0/admin/manage-fields.php:337
1934
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1935
- msgid "Curacao"
1936
- msgstr "Curacao"
1937
-
1938
- #: profile-builder-2.0/admin/manage-fields.php:338
1939
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1940
- msgid "Cyprus"
1941
- msgstr "Cyprus"
1942
-
1943
- #: profile-builder-2.0/admin/manage-fields.php:339
1944
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1945
- msgid "Czech Republic"
1946
- msgstr "Czech Republic"
1947
-
1948
- #: profile-builder-2.0/admin/manage-fields.php:340
1949
- msgid "Democratic Republic of the Congo"
1950
- msgstr "Democratic Republic of the Congo"
1951
-
1952
- #: profile-builder-2.0/admin/manage-fields.php:341
1953
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
- msgid "Denmark"
1955
- msgstr "Denmark"
1956
-
1957
- #: profile-builder-2.0/admin/manage-fields.php:342
1958
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
- msgid "Djibouti"
1960
- msgstr "Djibouti"
1961
-
1962
- #: profile-builder-2.0/admin/manage-fields.php:343
1963
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
- msgid "Dominica"
1965
- msgstr "Dominica"
1966
-
1967
- #: profile-builder-2.0/admin/manage-fields.php:344
1968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
- msgid "Dominican Republic"
1970
- msgstr "Dominican Republic"
1971
-
1972
- #: profile-builder-2.0/admin/manage-fields.php:345
1973
- msgid "East Timor"
1974
- msgstr "East Timor"
1975
-
1976
- #: profile-builder-2.0/admin/manage-fields.php:346
1977
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1978
- msgid "Ecuador"
1979
- msgstr "Ecuador"
1980
-
1981
- #: profile-builder-2.0/admin/manage-fields.php:347
1982
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1983
- msgid "Egypt"
1984
- msgstr "Egypt"
1985
-
1986
- #: profile-builder-2.0/admin/manage-fields.php:348
1987
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1988
- msgid "El Salvador"
1989
- msgstr "El Salvador"
1990
-
1991
- #: profile-builder-2.0/admin/manage-fields.php:349
1992
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1993
- msgid "Equatorial Guinea"
1994
- msgstr "Equatorial Guinea"
1995
-
1996
- #: profile-builder-2.0/admin/manage-fields.php:350
1997
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1998
- msgid "Eritrea"
1999
- msgstr "Eritrea"
2000
-
2001
- #: profile-builder-2.0/admin/manage-fields.php:351
2002
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2003
- msgid "Estonia"
2004
- msgstr "Estonia"
2005
-
2006
- #: profile-builder-2.0/admin/manage-fields.php:352
2007
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2008
- msgid "Ethiopia"
2009
- msgstr "Ethiopia"
2010
-
2011
- #: profile-builder-2.0/admin/manage-fields.php:353
2012
- msgid "Falkland Islands"
2013
- msgstr "Falkland Islands"
2014
-
2015
- #: profile-builder-2.0/admin/manage-fields.php:354
2016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
- msgid "Faroe Islands"
2018
- msgstr "Faroe Islands"
2019
-
2020
- #: profile-builder-2.0/admin/manage-fields.php:355
2021
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
- msgid "Fiji"
2023
- msgstr "Fiji"
2024
-
2025
- #: profile-builder-2.0/admin/manage-fields.php:356
2026
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
- msgid "Finland"
2028
- msgstr "Finland"
2029
-
2030
- #: profile-builder-2.0/admin/manage-fields.php:357
2031
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
- msgid "France"
2033
- msgstr "France"
2034
-
2035
- #: profile-builder-2.0/admin/manage-fields.php:358
2036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
- msgid "French Guiana"
2038
- msgstr "French Guiana"
2039
-
2040
- #: profile-builder-2.0/admin/manage-fields.php:359
2041
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
- msgid "French Polynesia"
2043
- msgstr "French Polynesia"
2044
-
2045
- #: profile-builder-2.0/admin/manage-fields.php:360
2046
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
- msgid "French Southern Territories"
2048
- msgstr "French Southern Territories"
2049
-
2050
- #: profile-builder-2.0/admin/manage-fields.php:361
2051
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
- msgid "Gabon"
2053
- msgstr "Gabon"
2054
-
2055
- #: profile-builder-2.0/admin/manage-fields.php:362
2056
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
- msgid "Gambia"
2058
- msgstr "Gambia"
2059
-
2060
- #: profile-builder-2.0/admin/manage-fields.php:363
2061
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
- msgid "Georgia"
2063
- msgstr "Georgia"
2064
-
2065
- #: profile-builder-2.0/admin/manage-fields.php:364
2066
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
- msgid "Germany"
2068
- msgstr "Germany"
2069
-
2070
- #: profile-builder-2.0/admin/manage-fields.php:365
2071
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
- msgid "Ghana"
2073
- msgstr "Ghana"
2074
-
2075
- #: profile-builder-2.0/admin/manage-fields.php:366
2076
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
- msgid "Gibraltar"
2078
- msgstr "Gibraltar"
2079
-
2080
- #: profile-builder-2.0/admin/manage-fields.php:367
2081
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
- msgid "Greece"
2083
- msgstr "Greece"
2084
-
2085
- #: profile-builder-2.0/admin/manage-fields.php:368
2086
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
- msgid "Greenland"
2088
- msgstr "Greenland"
2089
-
2090
- #: profile-builder-2.0/admin/manage-fields.php:369
2091
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
- msgid "Grenada"
2093
- msgstr "Grenada"
2094
-
2095
- #: profile-builder-2.0/admin/manage-fields.php:370
2096
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2097
- msgid "Guadeloupe"
2098
- msgstr "Guadeloupe"
2099
-
2100
- #: profile-builder-2.0/admin/manage-fields.php:371
2101
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2102
- msgid "Guam"
2103
- msgstr "Guam"
2104
-
2105
- #: profile-builder-2.0/admin/manage-fields.php:372
2106
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2107
- msgid "Guatemala"
2108
- msgstr "Guatemala"
2109
-
2110
- #: profile-builder-2.0/admin/manage-fields.php:373
2111
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2112
- msgid "Guernsey"
2113
- msgstr "Guernsey"
2114
-
2115
- #: profile-builder-2.0/admin/manage-fields.php:374
2116
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2117
- msgid "Guinea"
2118
- msgstr "Guinea"
2119
-
2120
- #: profile-builder-2.0/admin/manage-fields.php:375
2121
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2122
- msgid "Guinea-Bissau"
2123
- msgstr "Guinea-Bissau"
2124
-
2125
- #: profile-builder-2.0/admin/manage-fields.php:376
2126
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2127
- msgid "Guyana"
2128
- msgstr "Guyana"
2129
-
2130
- #: profile-builder-2.0/admin/manage-fields.php:377
2131
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
- msgid "Haiti"
2133
- msgstr "Haiti"
2134
-
2135
- #: profile-builder-2.0/admin/manage-fields.php:378
2136
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
- msgid "Heard Island and McDonald Islands"
2138
- msgstr "Heard Island and McDonald Islands"
2139
-
2140
- #: profile-builder-2.0/admin/manage-fields.php:379
2141
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
- msgid "Honduras"
2143
- msgstr "Honduras"
2144
-
2145
- #: profile-builder-2.0/admin/manage-fields.php:380
2146
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
- msgid "Hong Kong"
2148
- msgstr "Hong Kong"
2149
-
2150
- #: profile-builder-2.0/admin/manage-fields.php:381
2151
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
- msgid "Hungary"
2153
- msgstr "Hungary"
2154
-
2155
- #: profile-builder-2.0/admin/manage-fields.php:382
2156
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
- msgid "Iceland"
2158
- msgstr "Iceland"
2159
-
2160
- #: profile-builder-2.0/admin/manage-fields.php:383
2161
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2162
- msgid "India"
2163
- msgstr "India"
2164
-
2165
- #: profile-builder-2.0/admin/manage-fields.php:384
2166
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2167
- msgid "Indonesia"
2168
- msgstr "Indonesia"
2169
-
2170
- #: profile-builder-2.0/admin/manage-fields.php:385
2171
- msgid "Iran"
2172
- msgstr "Iran"
2173
-
2174
- #: profile-builder-2.0/admin/manage-fields.php:386
2175
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2176
- msgid "Iraq"
2177
- msgstr "Iraq"
2178
-
2179
- #: profile-builder-2.0/admin/manage-fields.php:387
2180
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2181
- msgid "Ireland"
2182
- msgstr "Ireland"
2183
-
2184
- #: profile-builder-2.0/admin/manage-fields.php:388
2185
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2186
- msgid "Isle of Man"
2187
- msgstr "Isle of Man"
2188
-
2189
- #: profile-builder-2.0/admin/manage-fields.php:389
2190
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2191
- msgid "Israel"
2192
- msgstr "Israel"
2193
-
2194
- #: profile-builder-2.0/admin/manage-fields.php:390
2195
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2196
- msgid "Italy"
2197
- msgstr "Italy"
2198
-
2199
- #: profile-builder-2.0/admin/manage-fields.php:391
2200
- msgid "Ivory Coast"
2201
- msgstr "Ivory Coast"
2202
-
2203
- #: profile-builder-2.0/admin/manage-fields.php:392
2204
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
- msgid "Jamaica"
2206
- msgstr "Jamaica"
2207
-
2208
- #: profile-builder-2.0/admin/manage-fields.php:393
2209
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
- msgid "Japan"
2211
- msgstr "Japan"
2212
-
2213
- #: profile-builder-2.0/admin/manage-fields.php:394
2214
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
- msgid "Jersey"
2216
- msgstr "Jersey"
2217
-
2218
- #: profile-builder-2.0/admin/manage-fields.php:395
2219
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
- msgid "Jordan"
2221
- msgstr "Jordan"
2222
-
2223
- #: profile-builder-2.0/admin/manage-fields.php:396
2224
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
- msgid "Kazakhstan"
2226
- msgstr "Kazakhstan"
2227
-
2228
- #: profile-builder-2.0/admin/manage-fields.php:397
2229
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2230
- msgid "Kenya"
2231
- msgstr "Kenya"
2232
-
2233
- #: profile-builder-2.0/admin/manage-fields.php:398
2234
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2235
- msgid "Kiribati"
2236
- msgstr "Kiribati"
2237
-
2238
- #: profile-builder-2.0/admin/manage-fields.php:399
2239
- msgid "Kosovo"
2240
- msgstr "Kosovo"
2241
-
2242
- #: profile-builder-2.0/admin/manage-fields.php:400
2243
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
- msgid "Kuwait"
2245
- msgstr "Kuwait"
2246
-
2247
- #: profile-builder-2.0/admin/manage-fields.php:401
2248
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
- msgid "Kyrgyzstan"
2250
- msgstr "Kyrgyzstan"
2251
-
2252
- #: profile-builder-2.0/admin/manage-fields.php:402
2253
- msgid "Laos"
2254
- msgstr "Laos"
2255
-
2256
- #: profile-builder-2.0/admin/manage-fields.php:403
2257
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2258
- msgid "Latvia"
2259
- msgstr "Latvia"
2260
-
2261
- #: profile-builder-2.0/admin/manage-fields.php:404
2262
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2263
- msgid "Lebanon"
2264
- msgstr "Lebanon"
2265
-
2266
- #: profile-builder-2.0/admin/manage-fields.php:405
2267
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2268
- msgid "Lesotho"
2269
- msgstr "Lesotho"
2270
-
2271
- #: profile-builder-2.0/admin/manage-fields.php:406
2272
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2273
- msgid "Liberia"
2274
- msgstr "Liberia"
2275
-
2276
- #: profile-builder-2.0/admin/manage-fields.php:407
2277
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2278
- msgid "Libya"
2279
- msgstr "Libya"
2280
-
2281
- #: profile-builder-2.0/admin/manage-fields.php:408
2282
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2283
- msgid "Liechtenstein"
2284
- msgstr "Liechtenstein"
2285
-
2286
- #: profile-builder-2.0/admin/manage-fields.php:409
2287
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2288
- msgid "Lithuania"
2289
- msgstr "Lithuania"
2290
-
2291
- #: profile-builder-2.0/admin/manage-fields.php:410
2292
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2293
- msgid "Luxembourg"
2294
- msgstr "Luxembourg"
2295
-
2296
- #: profile-builder-2.0/admin/manage-fields.php:411
2297
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2298
- msgid "Macao"
2299
- msgstr "Macao"
2300
-
2301
- #: profile-builder-2.0/admin/manage-fields.php:412
2302
- msgid "Macedonia"
2303
- msgstr "Macedonia"
2304
-
2305
- #: profile-builder-2.0/admin/manage-fields.php:413
2306
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
- msgid "Madagascar"
2308
- msgstr "Madagascar"
2309
-
2310
- #: profile-builder-2.0/admin/manage-fields.php:414
2311
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
- msgid "Malawi"
2313
- msgstr "Malawi"
2314
-
2315
- #: profile-builder-2.0/admin/manage-fields.php:415
2316
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
- msgid "Malaysia"
2318
- msgstr "Malaysia"
2319
-
2320
- #: profile-builder-2.0/admin/manage-fields.php:416
2321
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
- msgid "Maldives"
2323
- msgstr "Maldives"
2324
-
2325
- #: profile-builder-2.0/admin/manage-fields.php:417
2326
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
- msgid "Mali"
2328
- msgstr "Mali"
2329
-
2330
- #: profile-builder-2.0/admin/manage-fields.php:418
2331
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
- msgid "Malta"
2333
- msgstr "Malta"
2334
-
2335
- #: profile-builder-2.0/admin/manage-fields.php:419
2336
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
- msgid "Marshall Islands"
2338
- msgstr "Marshall Islands"
2339
-
2340
- #: profile-builder-2.0/admin/manage-fields.php:420
2341
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
- msgid "Martinique"
2343
- msgstr "Martinique"
2344
-
2345
- #: profile-builder-2.0/admin/manage-fields.php:421
2346
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
- msgid "Mauritania"
2348
- msgstr "Mauritania"
2349
-
2350
- #: profile-builder-2.0/admin/manage-fields.php:422
2351
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
- msgid "Mauritius"
2353
- msgstr "Mauritius"
2354
-
2355
- #: profile-builder-2.0/admin/manage-fields.php:423
2356
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
- msgid "Mayotte"
2358
- msgstr "Mayotte"
2359
-
2360
- #: profile-builder-2.0/admin/manage-fields.php:424
2361
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
- msgid "Mexico"
2363
- msgstr "Mexico"
2364
-
2365
- #: profile-builder-2.0/admin/manage-fields.php:425
2366
- msgid "Micronesia"
2367
- msgstr "Micronesia"
2368
-
2369
- #: profile-builder-2.0/admin/manage-fields.php:426
2370
- msgid "Moldova"
2371
- msgstr "Moldova"
2372
-
2373
- #: profile-builder-2.0/admin/manage-fields.php:427
2374
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
- msgid "Monaco"
2376
- msgstr "Monaco"
2377
-
2378
- #: profile-builder-2.0/admin/manage-fields.php:428
2379
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
- msgid "Mongolia"
2381
- msgstr "Mongolia"
2382
-
2383
- #: profile-builder-2.0/admin/manage-fields.php:429
2384
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
- msgid "Montenegro"
2386
- msgstr "Montenegro"
2387
-
2388
- #: profile-builder-2.0/admin/manage-fields.php:430
2389
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2390
- msgid "Montserrat"
2391
- msgstr "Montserrat"
2392
-
2393
- #: profile-builder-2.0/admin/manage-fields.php:431
2394
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2395
- msgid "Morocco"
2396
- msgstr "Morocco"
2397
-
2398
- #: profile-builder-2.0/admin/manage-fields.php:432
2399
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2400
- msgid "Mozambique"
2401
- msgstr "Mozambique"
2402
-
2403
- #: profile-builder-2.0/admin/manage-fields.php:433
2404
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2405
- msgid "Myanmar"
2406
- msgstr "Myanmar"
2407
-
2408
- #: profile-builder-2.0/admin/manage-fields.php:434
2409
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2410
- msgid "Namibia"
2411
- msgstr "Namibia"
2412
-
2413
- #: profile-builder-2.0/admin/manage-fields.php:435
2414
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2415
- msgid "Nauru"
2416
- msgstr "Nauru"
2417
-
2418
- #: profile-builder-2.0/admin/manage-fields.php:436
2419
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
- msgid "Nepal"
2421
- msgstr "Nepal"
2422
-
2423
- #: profile-builder-2.0/admin/manage-fields.php:437
2424
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
- msgid "Netherlands"
2426
- msgstr "Netherlands"
2427
-
2428
- #: profile-builder-2.0/admin/manage-fields.php:438
2429
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
- msgid "New Caledonia"
2431
- msgstr "New Caledonia"
2432
-
2433
- #: profile-builder-2.0/admin/manage-fields.php:439
2434
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
- msgid "New Zealand"
2436
- msgstr "New Zealand"
2437
-
2438
- #: profile-builder-2.0/admin/manage-fields.php:440
2439
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
- msgid "Nicaragua"
2441
- msgstr "Nicaragua"
2442
-
2443
- #: profile-builder-2.0/admin/manage-fields.php:441
2444
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
- msgid "Niger"
2446
- msgstr "Niger"
2447
-
2448
- #: profile-builder-2.0/admin/manage-fields.php:442
2449
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
- msgid "Nigeria"
2451
- msgstr "Nigeria"
2452
-
2453
- #: profile-builder-2.0/admin/manage-fields.php:443
2454
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
- msgid "Niue"
2456
- msgstr "Niue"
2457
-
2458
- #: profile-builder-2.0/admin/manage-fields.php:444
2459
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
- msgid "Norfolk Island"
2461
- msgstr "Norfolk Island"
2462
-
2463
- #: profile-builder-2.0/admin/manage-fields.php:445
2464
- msgid "North Korea"
2465
- msgstr "North Korea"
2466
-
2467
- #: profile-builder-2.0/admin/manage-fields.php:446
2468
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2469
- msgid "Northern Mariana Islands"
2470
- msgstr "Northern Mariana Islands"
2471
-
2472
- #: profile-builder-2.0/admin/manage-fields.php:447
2473
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2474
- msgid "Norway"
2475
- msgstr "Norway"
2476
-
2477
- #: profile-builder-2.0/admin/manage-fields.php:448
2478
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
- msgid "Oman"
2480
- msgstr "Oman"
2481
-
2482
- #: profile-builder-2.0/admin/manage-fields.php:449
2483
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2484
- msgid "Pakistan"
2485
- msgstr "Pakistan"
2486
-
2487
- #: profile-builder-2.0/admin/manage-fields.php:450
2488
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2489
- msgid "Palau"
2490
- msgstr "Palau"
2491
-
2492
- #: profile-builder-2.0/admin/manage-fields.php:451
2493
- msgid "Palestinian Territory"
2494
- msgstr "Palestinian Territory"
2495
-
2496
- #: profile-builder-2.0/admin/manage-fields.php:452
2497
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
- msgid "Panama"
2499
- msgstr "Panama"
2500
-
2501
- #: profile-builder-2.0/admin/manage-fields.php:453
2502
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2503
- msgid "Papua New Guinea"
2504
- msgstr "Papua New Guinea"
2505
-
2506
- #: profile-builder-2.0/admin/manage-fields.php:454
2507
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2508
- msgid "Paraguay"
2509
- msgstr "Paraguay"
2510
-
2511
- #: profile-builder-2.0/admin/manage-fields.php:455
2512
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2513
- msgid "Peru"
2514
- msgstr "Peru"
2515
-
2516
- #: profile-builder-2.0/admin/manage-fields.php:456
2517
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2518
- msgid "Philippines"
2519
- msgstr "Philippines"
2520
-
2521
- #: profile-builder-2.0/admin/manage-fields.php:457
2522
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2523
- msgid "Pitcairn"
2524
- msgstr "Pitcairn"
2525
-
2526
- #: profile-builder-2.0/admin/manage-fields.php:458
2527
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2528
- msgid "Poland"
2529
- msgstr "Poland"
2530
-
2531
- #: profile-builder-2.0/admin/manage-fields.php:459
2532
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2533
- msgid "Portugal"
2534
- msgstr "Portugal"
2535
-
2536
- #: profile-builder-2.0/admin/manage-fields.php:460
2537
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2538
- msgid "Puerto Rico"
2539
- msgstr "Puerto Rico"
2540
-
2541
- #: profile-builder-2.0/admin/manage-fields.php:461
2542
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2543
- msgid "Qatar"
2544
- msgstr "Qatar"
2545
-
2546
- #: profile-builder-2.0/admin/manage-fields.php:462
2547
- msgid "Republic of the Congo"
2548
- msgstr "Republic of the Congo"
2549
-
2550
- #: profile-builder-2.0/admin/manage-fields.php:463
2551
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2552
- msgid "Reunion"
2553
- msgstr "Reunion"
2554
-
2555
- #: profile-builder-2.0/admin/manage-fields.php:464
2556
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2557
- msgid "Romania"
2558
- msgstr "Romania"
2559
-
2560
- #: profile-builder-2.0/admin/manage-fields.php:465
2561
- msgid "Russia"
2562
- msgstr "Russia"
2563
-
2564
- #: profile-builder-2.0/admin/manage-fields.php:466
2565
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
- msgid "Rwanda"
2567
- msgstr "Rwanda"
2568
-
2569
- #: profile-builder-2.0/admin/manage-fields.php:467
2570
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
- msgid "Saint Barthelemy"
2572
- msgstr "Saint Barthelemy"
2573
-
2574
- #: profile-builder-2.0/admin/manage-fields.php:468
2575
- msgid "Saint Helena"
2576
- msgstr "Saint Helena"
2577
-
2578
- #: profile-builder-2.0/admin/manage-fields.php:469
2579
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
- msgid "Saint Kitts and Nevis"
2581
- msgstr "Saint Kitts and Nevis"
2582
-
2583
- #: profile-builder-2.0/admin/manage-fields.php:470
2584
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
- msgid "Saint Lucia"
2586
- msgstr "Saint Lucia"
2587
-
2588
- #: profile-builder-2.0/admin/manage-fields.php:471
2589
- msgid "Saint Martin"
2590
- msgstr "Saint Martin"
2591
-
2592
- #: profile-builder-2.0/admin/manage-fields.php:472
2593
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2594
- msgid "Saint Pierre and Miquelon"
2595
- msgstr "Saint Pierre and Miquelon"
2596
-
2597
- #: profile-builder-2.0/admin/manage-fields.php:473
2598
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2599
- msgid "Saint Vincent and the Grenadines"
2600
- msgstr "Saint Vincent and the Grenadines"
2601
-
2602
- #: profile-builder-2.0/admin/manage-fields.php:474
2603
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2604
- msgid "Samoa"
2605
- msgstr "Samoa"
2606
-
2607
- #: profile-builder-2.0/admin/manage-fields.php:475
2608
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2609
- msgid "San Marino"
2610
- msgstr "San Marino"
2611
-
2612
- #: profile-builder-2.0/admin/manage-fields.php:476
2613
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
- msgid "Sao Tome and Principe"
2615
- msgstr "Sao Tome and Principe"
2616
-
2617
- #: profile-builder-2.0/admin/manage-fields.php:477
2618
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
- msgid "Saudi Arabia"
2620
- msgstr "Saudi Arabia"
2621
-
2622
- #: profile-builder-2.0/admin/manage-fields.php:478
2623
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
- msgid "Senegal"
2625
- msgstr "Senegal"
2626
-
2627
- #: profile-builder-2.0/admin/manage-fields.php:479
2628
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
- msgid "Serbia"
2630
- msgstr "Serbia"
2631
-
2632
- #: profile-builder-2.0/admin/manage-fields.php:480
2633
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
- msgid "Seychelles"
2635
- msgstr "Seychelles"
2636
-
2637
- #: profile-builder-2.0/admin/manage-fields.php:481
2638
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
- msgid "Sierra Leone"
2640
- msgstr "Sierra Leone"
2641
-
2642
- #: profile-builder-2.0/admin/manage-fields.php:482
2643
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
- msgid "Singapore"
2645
- msgstr "Singapore"
2646
-
2647
- #: profile-builder-2.0/admin/manage-fields.php:483
2648
- msgid "Sint Maarten"
2649
- msgstr "Sint Maarten"
2650
-
2651
- #: profile-builder-2.0/admin/manage-fields.php:484
2652
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2653
- msgid "Slovakia"
2654
- msgstr "Slovakia"
2655
-
2656
- #: profile-builder-2.0/admin/manage-fields.php:485
2657
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2658
- msgid "Slovenia"
2659
- msgstr "Slovenia"
2660
-
2661
- #: profile-builder-2.0/admin/manage-fields.php:486
2662
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
- msgid "Solomon Islands"
2664
- msgstr "Solomon Islands"
2665
-
2666
- #: profile-builder-2.0/admin/manage-fields.php:487
2667
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2668
- msgid "Somalia"
2669
- msgstr "Somalia"
2670
-
2671
- #: profile-builder-2.0/admin/manage-fields.php:488
2672
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2673
- msgid "South Africa"
2674
- msgstr "South Africa"
2675
-
2676
- #: profile-builder-2.0/admin/manage-fields.php:489
2677
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2678
- msgid "South Georgia and the South Sandwich Islands"
2679
- msgstr "South Georgia and the South Sandwich Islands"
2680
-
2681
- #: profile-builder-2.0/admin/manage-fields.php:490
2682
- msgid "South Korea"
2683
- msgstr "South Korea"
2684
-
2685
- #: profile-builder-2.0/admin/manage-fields.php:491
2686
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2687
- msgid "South Sudan"
2688
- msgstr "South Sudan"
2689
-
2690
- #: profile-builder-2.0/admin/manage-fields.php:492
2691
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2692
- msgid "Spain"
2693
- msgstr "Spain"
2694
-
2695
- #: profile-builder-2.0/admin/manage-fields.php:493
2696
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2697
- msgid "Sri Lanka"
2698
- msgstr "Sri Lanka"
2699
-
2700
- #: profile-builder-2.0/admin/manage-fields.php:494
2701
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2702
- msgid "Sudan"
2703
- msgstr "Sudan"
2704
-
2705
- #: profile-builder-2.0/admin/manage-fields.php:495
2706
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2707
- msgid "Suriname"
2708
- msgstr "Suriname"
2709
-
2710
- #: profile-builder-2.0/admin/manage-fields.php:496
2711
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2712
- msgid "Svalbard and Jan Mayen"
2713
- msgstr "Svalbard and Jan Mayen"
2714
-
2715
- #: profile-builder-2.0/admin/manage-fields.php:497
2716
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2717
- msgid "Swaziland"
2718
- msgstr "Swaziland"
2719
-
2720
- #: profile-builder-2.0/admin/manage-fields.php:498
2721
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2722
- msgid "Sweden"
2723
- msgstr "Sweden"
2724
-
2725
- #: profile-builder-2.0/admin/manage-fields.php:499
2726
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
- msgid "Switzerland"
2728
- msgstr "Switzerland"
2729
-
2730
- #: profile-builder-2.0/admin/manage-fields.php:500
2731
- msgid "Syria"
2732
- msgstr "Syria"
2733
-
2734
- #: profile-builder-2.0/admin/manage-fields.php:501
2735
- msgid "Taiwan"
2736
- msgstr "Taiwan"
2737
-
2738
- #: profile-builder-2.0/admin/manage-fields.php:502
2739
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
- msgid "Tajikistan"
2741
- msgstr "Tajikistan"
2742
-
2743
- #: profile-builder-2.0/admin/manage-fields.php:503
2744
- msgid "Tanzania"
2745
- msgstr "Tanzania"
2746
-
2747
- #: profile-builder-2.0/admin/manage-fields.php:504
2748
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2749
- msgid "Thailand"
2750
- msgstr "Thailand"
2751
-
2752
- #: profile-builder-2.0/admin/manage-fields.php:505
2753
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2754
- msgid "Togo"
2755
- msgstr "Togo"
2756
-
2757
- #: profile-builder-2.0/admin/manage-fields.php:506
2758
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2759
- msgid "Tokelau"
2760
- msgstr "Tokelau"
2761
-
2762
- #: profile-builder-2.0/admin/manage-fields.php:507
2763
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2764
- msgid "Tonga"
2765
- msgstr "Tonga"
2766
-
2767
- #: profile-builder-2.0/admin/manage-fields.php:508
2768
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2769
- msgid "Trinidad and Tobago"
2770
- msgstr "Trinidad and Tobago"
2771
-
2772
- #: profile-builder-2.0/admin/manage-fields.php:509
2773
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2774
- msgid "Tunisia"
2775
- msgstr "Tunisia"
2776
-
2777
- #: profile-builder-2.0/admin/manage-fields.php:510
2778
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2779
- msgid "Turkey"
2780
- msgstr "Turkey"
2781
-
2782
- #: profile-builder-2.0/admin/manage-fields.php:511
2783
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2784
- msgid "Turkmenistan"
2785
- msgstr "Turkmenistan"
2786
-
2787
- #: profile-builder-2.0/admin/manage-fields.php:512
2788
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2789
- msgid "Turks and Caicos Islands"
2790
- msgstr "Turks and Caicos Islands"
2791
-
2792
- #: profile-builder-2.0/admin/manage-fields.php:513
2793
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2794
- msgid "Tuvalu"
2795
- msgstr "Tuvalu"
2796
-
2797
- #: profile-builder-2.0/admin/manage-fields.php:514
2798
- msgid "U.S. Virgin Islands"
2799
- msgstr "U.S. Virgin Islands"
2800
-
2801
- #: profile-builder-2.0/admin/manage-fields.php:515
2802
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2803
- msgid "Uganda"
2804
- msgstr "Uganda"
2805
-
2806
- #: profile-builder-2.0/admin/manage-fields.php:516
2807
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2808
- msgid "Ukraine"
2809
- msgstr "Ukraine"
2810
-
2811
- #: profile-builder-2.0/admin/manage-fields.php:517
2812
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2813
- msgid "United Arab Emirates"
2814
- msgstr "United Arab Emirates"
2815
-
2816
- #: profile-builder-2.0/admin/manage-fields.php:518
2817
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2818
- msgid "United Kingdom"
2819
- msgstr "United Kingdom"
2820
-
2821
- #: profile-builder-2.0/admin/manage-fields.php:519
2822
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2823
- msgid "United States"
2824
- msgstr "United States"
2825
-
2826
- #: profile-builder-2.0/admin/manage-fields.php:520
2827
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2828
- msgid "United States Minor Outlying Islands"
2829
- msgstr "United States Minor Outlying Islands"
2830
-
2831
- #: profile-builder-2.0/admin/manage-fields.php:521
2832
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2833
- msgid "Uruguay"
2834
- msgstr "Uruguay"
2835
-
2836
- #: profile-builder-2.0/admin/manage-fields.php:522
2837
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2838
- msgid "Uzbekistan"
2839
- msgstr "Uzbekistan"
2840
-
2841
- #: profile-builder-2.0/admin/manage-fields.php:523
2842
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2843
- msgid "Vanuatu"
2844
- msgstr "Vanuatu"
2845
-
2846
- #: profile-builder-2.0/admin/manage-fields.php:524
2847
- msgid "Vatican"
2848
- msgstr "Vatican"
2849
-
2850
- #: profile-builder-2.0/admin/manage-fields.php:525
2851
- msgid "Venezuela"
2852
- msgstr "Venezuela"
2853
-
2854
- #: profile-builder-2.0/admin/manage-fields.php:526
2855
- msgid "Vietnam"
2856
- msgstr "Vietnam"
2857
-
2858
- #: profile-builder-2.0/admin/manage-fields.php:527
2859
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2860
- msgid "Wallis and Futuna"
2861
- msgstr "Wallis and Futuna"
2862
-
2863
- #: profile-builder-2.0/admin/manage-fields.php:528
2864
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2865
- msgid "Western Sahara"
2866
- msgstr "Western Sahara"
2867
-
2868
- #: profile-builder-2.0/admin/manage-fields.php:529
2869
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2870
- msgid "Yemen"
2871
- msgstr "Yemen"
2872
-
2873
- #: profile-builder-2.0/admin/manage-fields.php:530
2874
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2875
- msgid "Zambia"
2876
- msgstr "Zambia"
2877
-
2878
- #: profile-builder-2.0/admin/manage-fields.php:531
2879
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2880
- msgid "Zimbabwe"
2881
- msgstr "Zimbabwe"
2882
-
2883
- #: profile-builder-2.0/admin/manage-fields.php:1219
2884
- msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2885
- msgstr "Mit Profile Builder Pro v2 können Sie verschiedene Felder im Registrierungs- und Profilformular anzeigen. Nutzen Sie dazu das Modul Multiple Registration & Edit Profile Forms."
2886
-
2887
- #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2888
- msgid "Your account has to be confirmed by an administrator before you can log in."
2889
- msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie sich einloggen können."
2890
-
2891
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
- msgid "Your account has been successfully created!"
2893
- msgstr "Ihr Benutzerkonto wurde erfolgreich angelegt!"
2894
-
2895
- #: profile-builder-2.0/features/functions.php:678
2896
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2897
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2898
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2899
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2900
- msgid "Please enter a (valid) reCAPTCHA value"
2901
- msgstr "Bitte geben Sie das reCAPTCHA (korrekt) ein."
2902
-
2903
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2904
- msgid "Click the BACK button on your browser, and try again."
2905
- msgstr "Bitte klicken Sie den \"Zurück\"-Button in Ihrem Browser und versuchen Sie es erneut."
2906
-
2907
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2908
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2909
- msgid "Sorry, you cannot upload this file type for this field."
2910
- msgstr "Dieser Dateityp ist für dieses Feld nicht erlaubt."
2911
-
2912
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2913
- msgid "An error occurred, please try again later."
2914
- msgstr "Es ist ein Fehler aufgetreten, bitte versuchen Sie es später noch einmal."
2915
-
2916
- #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
- msgid "More"
2918
- msgstr "Mehr"
2919
-
2920
- #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2921
- msgid "You do not have permission to view this user list."
2922
- msgstr "Sie haben keine Berechtigung, um diese Benutzerliste einzusehen."
2923
-
2924
- #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2925
- msgid "You do not have the required user role to view this user list."
2926
- msgstr "Sie haben nicht die notwendige Benutzerrolle, um diese Benutzerliste einzusehen."
2927
-
2928
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
- msgid "Ascending"
2930
- msgstr "Aufsteigend"
2931
-
2932
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
- msgid "Descending"
2934
- msgstr "Absteigend"
2935
-
2936
- #: profile-builder-2.0/admin/add-ons.php:148
2937
- #: profile-builder-2.0/admin/add-ons.php:248
2938
- #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2939
- #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2940
- msgid "Download Now"
2941
- msgstr "Jetzt herunterladen"
2942
-
2943
- #: profile-builder-2.0/admin/admin-functions.php:200
2944
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2945
- msgstr "Gefällt dir <strong>%1$s</strong>, dann <a href=\"%2$s\" target=\"_blank\">bewerte uns bitte auf WordPress.org</a>. Mehr glückliche Benutzer, bedeuten mehr Features, weniger Fehler und besseren Support für jeden."
2946
-
2947
- #: profile-builder-2.0/admin/manage-fields.php:82
2948
- msgid "Choose one of the supported field types"
2949
- msgstr "Wähle eins von den unterstützten Feldtypen."
2950
-
2951
- #: profile-builder-2.0/admin/manage-fields.php:84
2952
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2953
- msgstr "Extra Feldtypen stehen in der <a href=\"%s\">Hobbyist oder PRO Version</a> zur Verfügung."
2954
-
2955
- #: profile-builder-2.0/admin/manage-fields.php:131
2956
- msgid "Site Key"
2957
- msgstr "Seitenschlüssel"
2958
-
2959
- #: profile-builder-2.0/admin/manage-fields.php:131
2960
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2961
- msgstr "Der Seitenschlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2962
-
2963
- #: profile-builder-2.0/admin/manage-fields.php:132
2964
- msgid "Secret Key"
2965
- msgstr "Geheimer Schlüssel"
2966
-
2967
- #: profile-builder-2.0/admin/manage-fields.php:132
2968
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2969
- msgstr "Der geheime Schlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2970
-
2971
- #: profile-builder-2.0/admin/manage-fields.php:1023
2972
- msgid "You must enter the site key\n"
2973
- msgstr "Sie müssen den Seiten Schlüssel eingeben\n"
2974
-
2975
- #: profile-builder-2.0/admin/manage-fields.php:1025
2976
- msgid "You must enter the secret key\n"
2977
- msgstr "Sie müssen den geheimen Schlüssel eingeben\n"
2978
-
2979
- #: profile-builder-2.0/admin/add-ons.php:10
2980
- #: profile-builder-2.0/admin/add-ons.php:32
2981
- msgid "Add-Ons"
2982
- msgstr "Add-Ons"
2983
-
2984
- #: profile-builder-2.0/admin/add-ons.php:34
2985
- #: profile-builder-2.0/admin/add-ons.php:129
2986
- #: profile-builder-2.0/admin/add-ons.php:231
2987
- #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2988
- #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2989
- #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2990
- msgid "Activate"
2991
- msgstr "Aktivieren"
2992
-
2993
- #: profile-builder-2.0/admin/add-ons.php:36
2994
- #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2995
- msgid "Downloading and installing..."
2996
- msgstr "Downloaden und installieren..."
2997
-
2998
- #: profile-builder-2.0/admin/add-ons.php:37
2999
- #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3000
- msgid "Installation complete"
3001
- msgstr "Installation abgeschlossen"
3002
-
3003
- #: profile-builder-2.0/admin/add-ons.php:39
3004
- msgid "Add-On is Active"
3005
- msgstr "Add-On ist aktiv"
3006
-
3007
- #: profile-builder-2.0/admin/add-ons.php:40
3008
- msgid "Add-On has been activated"
3009
- msgstr "Add-On wurde aktiviert"
3010
-
3011
- #: profile-builder-2.0/admin/add-ons.php:41
3012
- #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3013
- msgid "Retry Install"
3014
- msgstr "Installation erneut versuchen"
3015
-
3016
- #: profile-builder-2.0/admin/add-ons.php:43
3017
- #: profile-builder-2.0/admin/add-ons.php:140
3018
- msgid "Add-On is <strong>active</strong>"
3019
- msgstr "Add-On ist <strong>aktiv</strong>"
3020
-
3021
- #: profile-builder-2.0/admin/add-ons.php:44
3022
- #: profile-builder-2.0/admin/add-ons.php:138
3023
- msgid "Add-On is <strong>inactive</strong>"
3024
- msgstr "Add-On ist <strong>inaktiv</strong>"
3025
-
3026
- #: profile-builder-2.0/admin/add-ons.php:46
3027
- #: profile-builder-2.0/admin/add-ons.php:133
3028
- #: profile-builder-2.0/admin/add-ons.php:235
3029
- #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3030
- #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3031
- #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3032
- msgid "Deactivate"
3033
- msgstr "Deaktivieren"
3034
-
3035
- #: profile-builder-2.0/admin/add-ons.php:47
3036
- msgid "Add-On has been deactivated."
3037
- msgstr "Add-On wurde deaktiviert."
3038
-
3039
- #: profile-builder-2.0/admin/add-ons.php:59
3040
- msgid "Something went wrong, we could not connect to the server. Please try again later."
3041
- msgstr "Etwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut."
3042
-
3043
- #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3044
- #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3045
- msgid "Install Now"
3046
- msgstr "Jetzt installieren"
3047
-
3048
- #: profile-builder-2.0/admin/add-ons.php:153
3049
- #: profile-builder-2.0/admin/add-ons.php:251
3050
- #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3051
- #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3052
- msgid "Compatible with your version of Profile Builder."
3053
- msgstr "Kompatibel mit deiner Version von Profile Builder."
3054
-
3055
- #: profile-builder-2.0/admin/add-ons.php:162
3056
- msgid "Upgrade Profile Builder"
3057
- msgstr "Profile Builder upgraden"
3058
-
3059
- #: profile-builder-2.0/admin/add-ons.php:163
3060
- msgid "Not compatible with Profile Builder"
3061
- msgstr "Nicht kompatibel mit Profile Builder"
3062
-
3063
- #: profile-builder-2.0/admin/add-ons.php:171
3064
- msgid "Not compatible with your version of Profile Builder."
3065
- msgstr "Nicht kompatibel mit deiner Version von Profile Builder."
3066
-
3067
- #: profile-builder-2.0/admin/add-ons.php:172
3068
- msgid "Minimum required Profile Builder version:"
3069
- msgstr "Minimal benötigte Version von Profile Builder:"
3070
-
3071
- #: profile-builder-2.0/admin/add-ons.php:177
3072
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3073
- msgstr "Add-On konnte nicht installiert werden. Erneut versuchen oder <a href=\"%s\" target=\"_blank\">manuell installieren</a>."
3074
-
3075
- #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3076
- msgid "You must enter a valid email address."
3077
- msgstr "Sie müssen eine gültige E-Mail Adresse angeben."
3078
-
3079
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3080
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3081
- msgid "This username is invalid because it uses illegal characters."
3082
- msgstr "Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält."
3083
-
3084
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3085
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3086
- msgid "Please enter a valid username."
3087
- msgstr "Bitte gebe einen gültigen Benutzernamen ein."
3088
-
3089
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3090
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3091
- msgid "Only administrators can see this field on edit profile forms."
3092
- msgstr "Nur Administratoren können dieses Feld beim editieren von Profilformularen sehen."
3093
-
3094
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3095
- msgid "As an administrator you cannot change your role."
3096
- msgstr "Als Administrator kannst du deine Berechtigungen nicht ändern."
3097
-
3098
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3099
- msgid ""
3100
- "\n"
3101
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3102
- "<p>His/her new password is: {{password}}</p>\n"
3103
- msgstr ""
3104
- "\n"
3105
- "<p>{{username}} hat sein Passwort geändert.</p>\n"
3106
- "<p>Das neue Passwort ist: {{password}}</p>\n"
3107
- "\n"
3108
- "\n"
3109
-
3110
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3111
- msgid "Admin Notification for User Password Reset"
3112
- msgstr "Admin Notiz für das Zurücksetzen eines Passwortes von einem Benutzer"
3113
-
3114
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3115
- msgid "Reset Key"
3116
- msgstr "Zurücksetzungs-Key"
3117
-
3118
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3119
- msgid "Reset Url"
3120
- msgstr "Zurücksetzungs-URL"
3121
-
3122
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3123
- msgid "Reset Link"
3124
- msgstr "Zurücksetzungs-Link"
3125
-
3126
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3127
- msgid ""
3128
- "\n"
3129
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3130
- "Username: {{username}}</p>\n"
3131
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3132
- "<p>To reset your password, visit the following address:<br/>\n"
3133
- "{{{reset_link}}}</p>\n"
3134
- msgstr ""
3135
-
3136
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3137
- msgid "[{{site_name}}] Password Reset"
3138
- msgstr "[{{site_name}}] Passwortzurücksetzung"
3139
-
3140
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3141
- msgid "Password Reset Email"
3142
- msgstr "E-Mail für die Passwortzurücksetzung"
3143
-
3144
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3145
- msgid ""
3146
- "\n"
3147
- "<p>You have successfully reset your password to: {{password}}</p>\n"
3148
- msgstr "<p>Du hast dein Passwort erfolgreich zurückgesetzt: {{password}}</p>"
3149
-
3150
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3151
- msgid "[{{site_name}}] Password Reset Successfully"
3152
- msgstr "[{{site_name}}] Passwortzurücksetzung erfolgreich"
3153
-
3154
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3155
- msgid "Password Reset Success Email"
3156
- msgstr "Passwort zurücksetzen erfolgreich Email"
3157
-
3158
- #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3159
- msgid "User Nicename"
3160
- msgstr "Benutzername"
3161
-
3162
- #: pb-add-on-woocommerce/woosync-page.php:80
3163
- #: pb-add-on-woocommerce/woosync-page.php:114
3164
- #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3165
- msgid "None"
3166
- msgstr "Nichts"
3167
-
3168
- #: profile-builder-2.0/admin/admin-functions.php:132
3169
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3170
- msgstr "<strong>FEHLER</strong>: Das Passwort muss mindestens %s Zeichen lang sein"
3171
-
3172
- #: profile-builder-2.0/admin/admin-functions.php:148
3173
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3174
- msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
3175
-
3176
- #: profile-builder-2.0/admin/general-settings.php:179
3177
- msgid "Username and Email"
3178
- msgstr "Benutzername und E-Mail"
3179
-
3180
- #: profile-builder-2.0/admin/general-settings.php:184
3181
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
3182
- msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."
3183
-
3184
- #: profile-builder-2.0/admin/general-settings.php:185
3185
- msgid "\"Username\" - users can Log In only with Username."
3186
- msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden"
3187
-
3188
- #: profile-builder-2.0/admin/general-settings.php:186
3189
- msgid "\"Email\" - users can Log In only with Email."
3190
- msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."
3191
-
3192
- #: profile-builder-2.0/admin/manage-fields.php:124
3193
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3194
- msgstr ""
3195
- "Gib die Datei-Erweiterung(en) ein, die du für den Upload erlauben möchtest.<br/>\n"
3196
- "z.B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)"
3197
-
3198
- #: profile-builder-2.0/admin/manage-fields.php:125
3199
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3200
- msgstr "Geben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten<br/> z. B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden alle von WordPress erlaubten Datei-Erweiterungen gesetzt: (.*)"
3201
-
3202
- #: profile-builder-2.0/admin/manage-fields.php:135
3203
- msgid "User Roles"
3204
- msgstr "Benutzerrollen"
3205
-
3206
- #: profile-builder-2.0/admin/manage-fields.php:135
3207
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3208
- msgstr "Wähle, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum Neusortieren)"
3209
-
3210
- #: profile-builder-2.0/admin/manage-fields.php:136
3211
- msgid "User Roles Order"
3212
- msgstr "Benutzerrollen Sortierung"
3213
-
3214
- #: profile-builder-2.0/admin/manage-fields.php:136
3215
- msgid "Save the user role order from the user roles checkboxes"
3216
- msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen"
3217
-
3218
- #: profile-builder-2.0/admin/manage-fields.php:1128
3219
- msgid "Please select at least one user role\n"
3220
- msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
3221
-
3222
- #: profile-builder-2.0/admin/register-version.php:22
3223
- msgid "Profile Builder Register"
3224
- msgstr "Profile Builder Registrierung"
3225
-
3226
- #: profile-builder-2.0/admin/register-version.php:81
3227
- msgid "The serial number is about to expire soon!"
3228
- msgstr "Die Seriennummer wird bald ablaufen!"
3229
-
3230
- #: profile-builder-2.0/admin/register-version.php:81
3231
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3232
- msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$s."
3233
-
3234
- #: profile-builder-2.0/admin/register-version.php:83
3235
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3236
- msgstr "Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
3237
-
3238
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3239
- msgid "Add Entry"
3240
- msgstr "Eintrag hinzufügen"
3241
-
3242
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3243
- msgid "show"
3244
- msgstr "anzeigen"
3245
-
3246
- #: profile-builder-2.0/features/functions.php:736
3247
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3248
- msgstr "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu nach %1$sEinstellungen -> Allgemein%2$s und stelle unter unter Mitgliedschaft sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
3249
-
3250
- #: profile-builder-2.0/front-end/class-formbuilder.php:659
3251
- msgid "User to edit:"
3252
- msgstr "Benutzer editieren"
3253
-
3254
- #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3255
- #: profile-builder-2.0/front-end/recover.php:262
3256
- msgid "The password must have the minimum length of %s characters"
3257
- msgstr "Das Passwort muss mindestes %s Zeichen haben"
3258
-
3259
- #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3260
- #: profile-builder-2.0/front-end/recover.php:266
3261
- msgid "The password must have a minimum strength of %s"
3262
- msgstr "Das Passwort muss eine Mindeststärke von %s haben"
3263
-
3264
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3265
- msgid "You cannot register this user role"
3266
- msgstr "Sie können diese Benutzerrolle nicht registrieren"
3267
-
3268
- #: profile-builder-2.0/front-end/login.php:153
3269
- msgid "username or email"
3270
- msgstr "Benutzername oder E-Mail-Adresse"
3271
-
3272
- #: profile-builder-2.0/front-end/login.php:222
3273
- msgid "Username or Email"
3274
- msgstr "Benutzername oder E-Mail-Adresse"
3275
-
3276
- #: profile-builder-2.0/front-end/logout.php:15
3277
- msgid "You are currently logged in as %s. "
3278
- msgstr "Du bist eingeloggt als %s."
3279
-
3280
- #: profile-builder-2.0/front-end/logout.php:15
3281
- msgid "Log out &raquo;"
3282
- msgstr "Ausloggen &raquo;"
3283
-
3284
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3285
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3286
- msgid "User Role"
3287
- msgstr "Benutzerrolle"
3288
-
3289
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3290
- msgid "View all extra shortcode parameters"
3291
- msgstr "Alle zusätzlichen Shortcode-Parameter anzeigen"
3292
-
3293
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3294
- msgid "displays only the users that you specified the user_id for"
3295
- msgstr "Nur die Benutzer anzeigen, denen du die user_id vergeben hast"
3296
-
3297
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3298
- msgid "displays all users except the ones you specified the user_id for"
3299
- msgstr "Zeigt alle Benutzer an, außer diejenigen, denen du eine user_id gegeben hast."
3300
-
3301
- #: profile-builder-2.0/features/functions.php:566
3302
- msgid "Minimum length of %d characters"
3303
- msgstr "Mindestlänge: %d Zeichen"
3304
-
3305
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
3306
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
3307
- msgid "This message is only visible by administrators"
3308
- msgstr "Diese Nachricht ist nur für Administratoren sichtbar"
3309
-
3310
- #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3311
- msgid "User not found"
3312
- msgstr "Der Benutzer wurde nicht gefunden."
3313
-
3314
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3315
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3316
- msgid "Valid tags {{reply_to}} and {{site_name}}"
3317
- msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
3318
-
3319
- #: profile-builder-2.0/admin/admin-bar.php:48
3320
- msgid "Choose which user roles view the admin bar in the front-end of the website."
3321
- msgstr "Wähle, welche Benutzerrollen du in der Admin Bar im Front-End der Website sehen möchtest."
3322
-
3323
- #: profile-builder-2.0/admin/manage-fields.php:129
3324
- msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3325
- msgstr "Gib eine kommagetrennte Liste von Werten ein<br/> Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthalten"
3326
-
3327
- #: profile-builder-2.0/admin/manage-fields.php:1055
3328
- msgid "The meta-name cannot be empty\n"
3329
- msgstr "Der Meta-Name darf nicht leer sein\n"
3330
-
3331
- #: profile-builder-2.0/admin/register-version.php:69
3332
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3333
- msgstr "Du hast eine Kopie von %s erworben. Du solltest dir die Zeit nehmen, um deine Seriennummer zu registrieren."
3334
-
3335
- #: profile-builder-2.0/admin/register-version.php:243
3336
- msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3337
- msgstr "<p> Deine <strong>Profil Builder</strong> Seriennummer ist ungültig oder fehlt.<br/> Bitte %1$s registriere deine Kopie %2$s damit du Zugang zu automatischen Updates und Support erhalten kannst. Benötigst du noch einen Lizenzschlüssel? %3$s Kaufe jetzt eine%4$s </p>"
3338
-
3339
- #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3340
- #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3341
- #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3342
- #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3343
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3344
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3345
- msgid "...Choose"
3346
- msgstr "...wähle"
3347
-
3348
- #: profile-builder-2.0/features/class-list-table.php:526
3349
- #: profile-builder-2.0/features/class-list-table.php:942
3350
- msgid "1 item"
3351
- msgstr "1 Artikel"
3352
-
3353
- #: profile-builder-2.0/features/functions.php:552
3354
- msgid "Very Weak"
3355
- msgstr "sehr schwach"
3356
-
3357
- #: profile-builder-2.0/features/functions.php:640
3358
- msgid "This field is required"
3359
- msgstr "Dieses Feld ist erforderlich"
3360
-
3361
- #: profile-builder-2.0/features/functions.php:704
3362
- msgid "Cancel"
3363
- msgstr "Abbrechen"
3364
-
3365
- #: profile-builder-2.0/features/functions.php:740
3366
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3367
- msgstr ""
3368
- "Damit sich Benutzer auf deiner Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu unter %1$sEinstellungen -> Allgemein%2$s und stelle unter Mitgliedschaft sicher, dass das\n"
3369
- "Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sentlassen%4$s"
3370
-
3371
- #: profile-builder-2.0/front-end/login.php:144
3372
- msgid "Invalid username."
3373
- msgstr "Ungültiger Benutzername."
3374
-
3375
- #: profile-builder-2.0/front-end/login.php:149
3376
- #: profile-builder-2.0/front-end/login.php:153
3377
- msgid "username"
3378
- msgstr "Benutzername"
3379
-
3380
- #: profile-builder-2.0/front-end/login.php:149
3381
- msgid "email"
3382
- msgstr "E-Mail-Adresse"
3383
-
3384
- #: profile-builder-2.0/front-end/login.php:256
3385
- msgid "Lost your password?"
3386
- msgstr "Passwort vergessen?"
3387
-
3388
- #: profile-builder-2.0/index.php:34
3389
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3390
- msgstr "ist ebenfalls aktiviert. Du musst es vor der Aktivierung dieser Version des Plugins deaktivieren."
3391
-
3392
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3393
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3394
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3395
- msgstr "Es muss eine gültige E-Mail-Adresse oder der Tag {{reply_to}} sein der die Standardeinstellung für den E-Mail des Administrators ist."
3396
-
3397
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3398
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3399
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3400
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3401
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3402
- msgid "Your selected password at signup"
3403
- msgstr "Das von Ihnen gewählte Anmeldepasswort"
3404
-
3405
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3406
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3407
- msgstr "Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite \"Admin-E-Mail Anpassungen\" angezeigt."
3408
-
3409
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3410
- msgid "This form is empty."
3411
- msgstr "Dieses Formular ist leer."
3412
-
3413
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3414
- msgid "Delete all items"
3415
- msgstr "Lösche alle Einträge"
3416
-
3417
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3418
- msgid "Delete all"
3419
- msgstr "alles löschen"
3420
-
3421
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3422
- msgid "Choose..."
3423
- msgstr "Wähle..."
3424
-
3425
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3426
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3427
- msgstr "Bestimme die Anzahl der Benutzer, die pro Seite auf der Benutzerliste angezeigt werden sollen."
3428
-
3429
- #: profile-builder-2.0/admin/admin-bar.php:10
3430
- msgid "Show/Hide the Admin Bar on the Front-End"
3431
- msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
3432
-
3433
- #: profile-builder-2.0/admin/admin-bar.php:10
3434
- #: profile-builder-2.0/admin/admin-bar.php:47
3435
- msgid "Admin Bar Settings"
3436
- msgstr "Admin Bar Einstellungen"
3437
-
3438
- #: profile-builder-2.0/admin/admin-bar.php:57
3439
- msgid "User-Role"
3440
- msgstr "Benutzerrolle"
3441
-
3442
- #: profile-builder-2.0/admin/admin-bar.php:58
3443
- msgid "Visibility"
3444
- msgstr "Sichtbarkeit"
3445
-
3446
- #: profile-builder-2.0/admin/admin-bar.php:73
3447
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3448
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3449
- msgid "Default"
3450
- msgstr "Default"
3451
-
3452
- #: profile-builder-2.0/admin/admin-bar.php:74
3453
- msgid "Show"
3454
- msgstr "Anzeigen"
3455
-
3456
- #: profile-builder-2.0/admin/admin-bar.php:75
3457
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3458
- msgid "Hide"
3459
- msgstr "Verbergen"
3460
-
3461
- #: pb-add-on-woocommerce/woosync-page.php:147
3462
- #: profile-builder-2.0/admin/admin-bar.php:86
3463
- #: profile-builder-2.0/admin/general-settings.php:224
3464
- #: profile-builder-2.0/admin/register-version.php:95
3465
- #: profile-builder-2.0/features/functions.php:697
3466
- #: profile-builder-2.0/modules/modules.php:127
3467
- msgid "Save Changes"
3468
- msgstr "Änderungen speichern"
3469
-
3470
- #: profile-builder-2.0/admin/admin-functions.php:37
3471
- msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3472
- msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Du kannst diese Einstellungen unter der Registerkarte \"%s\" ändern)"
3473
-
3474
- #: profile-builder-2.0/admin/admin-functions.php:37
3475
- #: profile-builder-2.0/admin/general-settings.php:10
3476
- #: profile-builder-2.0/admin/general-settings.php:35
3477
- msgid "General Settings"
3478
- msgstr "Allgemeine Einstellungen"
3479
-
3480
- #: profile-builder-2.0/admin/admin-functions.php:137
3481
- #: profile-builder-2.0/admin/general-settings.php:210
3482
- msgid "Very weak"
3483
- msgstr "sehr unsicher"
3484
-
3485
- #: profile-builder-2.0/admin/admin-functions.php:137
3486
- #: profile-builder-2.0/admin/general-settings.php:211
3487
- #: profile-builder-2.0/features/functions.php:552
3488
- msgid "Weak"
3489
- msgstr "unsicher"
3490
-
3491
- #: profile-builder-2.0/admin/admin-functions.php:137
3492
- #: profile-builder-2.0/admin/general-settings.php:212
3493
- #: profile-builder-2.0/features/functions.php:552
3494
- msgid "Medium"
3495
- msgstr "geht so"
3496
-
3497
- #: profile-builder-2.0/admin/admin-functions.php:137
3498
- #: profile-builder-2.0/admin/general-settings.php:213
3499
- #: profile-builder-2.0/features/functions.php:552
3500
- msgid "Strong"
3501
- msgstr "sicher"
3502
-
3503
- #: profile-builder-2.0/admin/admin-functions.php:187
3504
- msgid "Add Field"
3505
- msgstr "Feld hinzufügen"
3506
-
3507
- #: profile-builder-2.0/admin/admin-functions.php:189
3508
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3509
- msgid "Save Settings"
3510
- msgstr "Einstellungen speichern"
3511
-
3512
- #: profile-builder-2.0/admin/basic-info.php:10
3513
- msgid "Basic Information"
3514
- msgstr "Grundlegende Informationen"
3515
-
3516
- #: profile-builder-2.0/admin/basic-info.php:29
3517
- msgid "Version %s"
3518
- msgstr "Version %s"
3519
-
3520
- #: profile-builder-2.0/admin/basic-info.php:30
3521
- msgid "<strong>Profile Builder </strong>"
3522
- msgstr "<strong>Profil Builder</strong>"
3523
-
3524
- #: profile-builder-2.0/admin/basic-info.php:31
3525
- msgid "The best way to add front-end registration, edit profile and login forms."
3526
- msgstr "Der beste Weg, um Front-End-Registrierung hinzuzufügen ist die Profil und Login-Formulare zu bearbeiten."
3527
-
3528
- #: profile-builder-2.0/admin/basic-info.php:33
3529
- msgid "For Modern User Interaction"
3530
- msgstr "Für die moderne Benutzerinteraktion"
3531
-
3532
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3533
- #: profile-builder-2.0/admin/basic-info.php:36
3534
- #: profile-builder-2.0/features/login-widget/login-widget.php:59
3535
- msgid "Login"
3536
- msgstr "Login"
3537
-
3538
- #: profile-builder-2.0/admin/basic-info.php:40
3539
- msgid "Registration"
3540
- msgstr "Registrierung"
3541
-
3542
- #: profile-builder-2.0/admin/basic-info.php:44
3543
- msgid "Edit Profile"
3544
- msgstr "Profil bearbeiten"
3545
-
3546
- #: profile-builder-2.0/admin/basic-info.php:51
3547
- msgid "Extra Features"
3548
- msgstr "Extra-Features"
3549
-
3550
- #: profile-builder-2.0/admin/basic-info.php:52
3551
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3552
- msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
3553
-
3554
- #: profile-builder-2.0/admin/basic-info.php:53
3555
- msgid "Enable extra features"
3556
- msgstr "Zusätzliche Features aktivieren"
3557
-
3558
- #: profile-builder-2.0/admin/basic-info.php:57
3559
- msgid "Recover Password"
3560
- msgstr "Passwort wiederherstellen"
3561
-
3562
- #: profile-builder-2.0/admin/basic-info.php:61
3563
- msgid "Admin Approval (*)"
3564
- msgstr "Admin-Zulassung (*)"
3565
-
3566
- #: profile-builder-2.0/admin/basic-info.php:62
3567
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3568
- msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen."
3569
-
3570
- #: profile-builder-2.0/admin/basic-info.php:65
3571
- msgid "Email Confirmation"
3572
- msgstr "E-Mail-Bestätigung"
3573
-
3574
- #: profile-builder-2.0/admin/basic-info.php:66
3575
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3576
- msgstr "Stelle sicher, dass Benutzer sich mit echten E-Mail-Adressen anmelden. Bei der Registrierung erhalten die Benutzer eine Benachrichtigung an diese E-Mail-Adresse, welche diese bestätigen müssen."
3577
-
3578
- #: profile-builder-2.0/admin/basic-info.php:69
3579
- msgid "Minimum Password Length and Strength Meter"
3580
- msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät"
3581
-
3582
- #: profile-builder-2.0/admin/basic-info.php:70
3583
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3584
- msgstr "Beseitige schwache Kennwörter insgesamt, indem du eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke aktivierst."
3585
-
3586
- #: profile-builder-2.0/admin/basic-info.php:73
3587
- msgid "Login with Email or Username"
3588
- msgstr "Login mit E-Mail oder Benutzername"
3589
-
3590
- #: profile-builder-2.0/admin/basic-info.php:74
3591
- msgid "Allow users to log in with their email or username when accessing your site."
3592
- msgstr "Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername anzumelden, wenn diese auf deine Seite zugreifen möchten. "
3593
-
3594
- #: profile-builder-2.0/admin/basic-info.php:87
3595
- msgid "Customize Your Forms The Way You Want (*)"
3596
- msgstr "Passen Sie die Formulare wie Sie wollen an (*)"
3597
-
3598
- #: profile-builder-2.0/admin/basic-info.php:88
3599
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3600
- msgstr "Mit zusätzlichen Profil-Felder kannst du genau die Anmeldeformulare erstellen, die dein Projekt benötigt."
3601
-
3602
- #: profile-builder-2.0/admin/basic-info.php:90
3603
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3604
- msgstr "Zusätzliche Profil-Felder erhälst du mit den Hobbyist oder PRO Versionen. "
3605
-
3606
- #: profile-builder-2.0/admin/basic-info.php:92
3607
- msgid "Get started with extra fields"
3608
- msgstr "Erste Schritte mit extra Felder"
3609
-
3610
- #: profile-builder-2.0/admin/basic-info.php:95
3611
- msgid "Avatar Upload"
3612
- msgstr "Profilbild hochladen"
3613
-
3614
- #: profile-builder-2.0/admin/basic-info.php:96
3615
- msgid "Generic Uploads"
3616
- msgstr "Generische Uploads"
3617
-
3618
- #: profile-builder-2.0/admin/basic-info.php:97
3619
- msgid "Agree To Terms Checkbox"
3620
- msgstr "AGB-Checkbox"
3621
-
3622
- #: profile-builder-2.0/admin/basic-info.php:98
3623
- msgid "Datepicker"
3624
- msgstr "Datepicker"
3625
-
3626
- #: profile-builder-2.0/admin/basic-info.php:101
3627
- msgid "reCAPTCHA"
3628
- msgstr "reCAPTCHA"
3629
-
3630
- #: profile-builder-2.0/admin/basic-info.php:102
3631
- msgid "Country Select"
3632
- msgstr "Land auswählen"
3633
-
3634
- #: profile-builder-2.0/admin/basic-info.php:104
3635
- msgid "Timezone Select"
3636
- msgstr "Zeitzone auswählen"
3637
-
3638
- #: profile-builder-2.0/admin/basic-info.php:108
3639
- msgid "Input / Hidden Input"
3640
- msgstr "Eingabe / versteckte Eingabe"
3641
-
3642
- #: profile-builder-2.0/admin/basic-info.php:110
3643
- msgid "Checkbox"
3644
- msgstr "Checkbox"
3645
-
3646
- #: profile-builder-2.0/admin/basic-info.php:111
3647
- msgid "Select"
3648
- msgstr "Auswahl"
3649
-
3650
- #: profile-builder-2.0/admin/basic-info.php:112
3651
- msgid "Radio Buttons"
3652
- msgstr "Optionsfelder"
3653
-
3654
- #: profile-builder-2.0/admin/basic-info.php:113
3655
- msgid "Textarea"
3656
- msgstr "Text-bereich"
3657
-
3658
- #: profile-builder-2.0/admin/basic-info.php:125
3659
- msgid "Powerful Modules (**)"
3660
- msgstr "Leistungsstarke Module (*)"
3661
-
3662
- #: profile-builder-2.0/admin/basic-info.php:126
3663
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3664
- msgstr "Alles, was du benötigst, um deine Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar."
3665
-
3666
- #: profile-builder-2.0/admin/basic-info.php:128
3667
- msgid "Enable your modules"
3668
- msgstr "Aktiviere deine Module"
3669
-
3670
- #: profile-builder-2.0/admin/basic-info.php:131
3671
- msgid "Find out more about PRO Modules"
3672
- msgstr "Erfahre mehr über die PRO-Module"
3673
-
3674
- #: profile-builder-2.0/admin/basic-info.php:136
3675
- #: profile-builder-2.0/modules/modules.php:89
3676
- #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3677
- #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3678
- #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3679
- #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3680
- msgid "User Listing"
3681
- msgstr "Benutzer-Liste"
3682
-
3683
- #: profile-builder-2.0/admin/basic-info.php:138
3684
- msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3685
- msgstr "Einfache editierbare Vorlagen für die Auflistung Ihrer Website-Benutzer sowie für das Erstellen einzelner Benutzer-Seiten. Shortcode basiert , bietet viele Möglichkeiten, Ihre Auflistungen anzupassen."
3686
-
3687
- #: profile-builder-2.0/admin/basic-info.php:144
3688
- msgid "Email Customizer"
3689
- msgstr "E-Mail Anpassungen"
3690
-
3691
- #: profile-builder-2.0/admin/basic-info.php:145
3692
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3693
- msgstr "Personalisiere alle E-Mails die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung."
3694
-
3695
- #: profile-builder-2.0/admin/basic-info.php:148
3696
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3697
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3698
- #: profile-builder-2.0/modules/modules.php:110
3699
- msgid "Custom Redirects"
3700
- msgstr "Benutzerdefinierte Umleitungen"
3701
-
3702
- #: profile-builder-2.0/admin/basic-info.php:149
3703
- msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3704
- msgstr "Sperre deine Benutzer aus dem WordPress-Dashboard aus und leite sie nach dem Login oder nach der Registrierung auf die Startseite weiter."
3705
-
3706
- #: profile-builder-2.0/admin/basic-info.php:154
3707
- #: profile-builder-2.0/modules/modules.php:75
3708
- msgid "Multiple Registration Forms"
3709
- msgstr "Mehrere Anmeldeformulare"
3710
-
3711
- #: profile-builder-2.0/admin/basic-info.php:155
3712
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3713
- msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern."
3714
-
3715
- #: profile-builder-2.0/admin/basic-info.php:158
3716
- #: profile-builder-2.0/modules/modules.php:82
3717
- msgid "Multiple Edit-profile Forms"
3718
- msgstr "Mehrere Profilbearbeitungs-Formulare"
3719
-
3720
- #: profile-builder-2.0/admin/basic-info.php:159
3721
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3722
- msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
3723
-
3724
- #: profile-builder-2.0/admin/basic-info.php:187
3725
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3726
- msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
3727
-
3728
- #: profile-builder-2.0/admin/basic-info.php:188
3729
- msgid "** only available in the %1$sPro version%2$s."
3730
- msgstr "** nur in der %1$sPro Version%2$s verfügbar."
3731
-
3732
- #: profile-builder-2.0/admin/general-settings.php:39
3733
- msgid "Load Profile Builder's own CSS file in the front-end:"
3734
- msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch"
3735
-
3736
- #: profile-builder-2.0/admin/general-settings.php:42
3737
- #: profile-builder-2.0/admin/general-settings.php:55
3738
- #: profile-builder-2.0/admin/general-settings.php:104
3739
- #: profile-builder-2.0/admin/general-settings.php:151
3740
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3741
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3742
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3743
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3744
- msgid "Yes"
3745
- msgstr "Ja"
3746
-
3747
- #: profile-builder-2.0/admin/general-settings.php:44
3748
- msgid "You can find the default file here: %1$s"
3749
- msgstr "Sie finden die Standard-Datei hier:%1$s"
3750
-
3751
- #: profile-builder-2.0/admin/general-settings.php:51
3752
- msgid "\"Email Confirmation\" Activated:"
3753
- msgstr "\"E-Mail-Bestätigung\" aktiviert:"
3754
-
3755
- #: profile-builder-2.0/admin/general-settings.php:56
3756
- #: profile-builder-2.0/admin/general-settings.php:105
3757
- #: profile-builder-2.0/admin/general-settings.php:150
3758
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3759
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3760
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3761
- msgid "No"
3762
- msgstr "Nein"
3763
-
3764
- #: profile-builder-2.0/admin/general-settings.php:61
3765
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3766
- msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
3767
-
3768
- #: profile-builder-2.0/admin/general-settings.php:69
3769
- msgid "\"Email Confirmation\" Landing Page:"
3770
- msgstr "\"E-Mail-Bestätigung\" Landeseite:"
3771
-
3772
- #: profile-builder-2.0/admin/general-settings.php:74
3773
- msgid "Existing Pages"
3774
- msgstr "Vorhandene Seiten"
3775
-
3776
- #: profile-builder-2.0/admin/general-settings.php:89
3777
- msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3778
- msgstr "Geben Sie die Seite ein, wo der Benutzer umgeleitet werden sollte, wenn er sein E-Mail-Konto bestätigt. Diese Seite kann von der Registerungs- Seite(n) unterschiedlich sein und kann jederzeit geändert werden. Wenn nichts ausgewähltw wird, wird eine einfache Bestätigungsseite für den Benutzer angezeigt."
3779
-
3780
- #: profile-builder-2.0/admin/general-settings.php:100
3781
- msgid "\"Admin Approval\" Activated:"
3782
- msgstr "\"Admin Genehmigung\" aktiviert:"
3783
-
3784
- #: profile-builder-2.0/admin/general-settings.php:108
3785
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3786
- msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
3787
-
3788
- #: profile-builder-2.0/admin/general-settings.php:165
3789
- msgid "\"Admin Approval\" Feature:"
3790
- msgstr "\"Admin Genehmigung\" Feature:"
3791
-
3792
- #: profile-builder-2.0/admin/general-settings.php:168
3793
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3794
- msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s."
3795
-
3796
- #: profile-builder-2.0/admin/general-settings.php:175
3797
- msgid "Allow Users to Log in With:"
3798
- msgstr "Benutzerberechtigungen zum Einloggen mit:"
3799
-
3800
- #: profile-builder-2.0/admin/general-settings.php:180
3801
- #: profile-builder-2.0/admin/manage-fields.php:201
3802
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3803
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3804
- #: profile-builder-2.0/front-end/login.php:85
3805
- #: profile-builder-2.0/front-end/login.php:99
3806
- #: profile-builder-2.0/front-end/login.php:218
3807
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3808
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3809
- #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3810
- #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3811
- #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3812
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3813
- msgid "Username"
3814
- msgstr "Benutzername"
3815
-
3816
- #: profile-builder-2.0/admin/general-settings.php:181
3817
- #: profile-builder-2.0/front-end/login.php:215
3818
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3819
- #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3820
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3821
- msgid "Email"
3822
- msgstr "E-Mail"
3823
-
3824
- #: profile-builder-2.0/admin/general-settings.php:193
3825
- msgid "Minimum Password Length:"
3826
- msgstr "Minimale Kennwortlänge:"
3827
-
3828
- #: profile-builder-2.0/admin/general-settings.php:198
3829
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3830
- msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze"
3831
-
3832
- #: profile-builder-2.0/admin/general-settings.php:205
3833
- msgid "Minimum Password Strength:"
3834
- msgstr "Minimale Passwortstärke:"
3835
-
3836
- #: profile-builder-2.0/admin/general-settings.php:209
3837
- msgid "Disabled"
3838
- msgstr "Deaktiviert"
3839
-
3840
- #: profile-builder-2.0/admin/manage-fields.php:12
3841
- msgid "Manage Fields"
3842
- msgstr "Felder verwalten"
3843
-
3844
- #: profile-builder-2.0/admin/manage-fields.php:13
3845
- msgid "Manage Default and Extra Fields"
3846
- msgstr "Verwalten von Standard- und Extra Felder"
3847
-
3848
- #: profile-builder-2.0/admin/manage-fields.php:118
3849
- msgid "Field Title"
3850
- msgstr "Feldtitel"
3851
-
3852
- #: profile-builder-2.0/admin/manage-fields.php:118
3853
- msgid "Title of the field"
3854
- msgstr "Titel des Feldes"
3855
-
3856
- #: profile-builder-2.0/admin/manage-fields.php:119
3857
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3858
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3859
- msgid "Field"
3860
- msgstr "Feld"
3861
-
3862
- #: profile-builder-2.0/admin/manage-fields.php:120
3863
- msgid "Meta-name"
3864
- msgstr "Meta-name "
3865
-
3866
- #: profile-builder-2.0/admin/manage-fields.php:121
3867
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3868
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3869
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3870
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3871
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3872
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3873
- msgid "ID"
3874
- msgstr "ID"
3875
-
3876
- #: profile-builder-2.0/admin/manage-fields.php:121
3877
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3878
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3879
- msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3880
- msgstr "Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld<br/> Sie können dies in Verbindung mit Kriterien verwenden, um dieses Element bei Bedarf aufzuziehlen<br/> Nicht editierbar"
3881
-
3882
- #: profile-builder-2.0/admin/manage-fields.php:122
3883
- msgid "Description"
3884
- msgstr "Beschreibung"
3885
-
3886
- #: profile-builder-2.0/admin/manage-fields.php:122
3887
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3888
- msgstr "Geben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können <br/> Optional"
3889
-
3890
- #: profile-builder-2.0/admin/manage-fields.php:123
3891
- msgid "Row Count"
3892
- msgstr "Zeilenanzahl"
3893
-
3894
- #: profile-builder-2.0/admin/manage-fields.php:123
3895
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3896
- msgstr "Geben Sie die Anzahl der Zeilen für ein Text-Feld ein <br/> Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt."
3897
-
3898
- #: profile-builder-2.0/admin/manage-fields.php:124
3899
- msgid "Allowed Image Extensions"
3900
- msgstr "Erlaubte Bild-Extensions"
3901
-
3902
- #: profile-builder-2.0/admin/manage-fields.php:125
3903
- msgid "Allowed Upload Extensions"
3904
- msgstr "Zulässige Dateierweiterungen beim Hochladen"
3905
-
3906
- #: profile-builder-2.0/admin/manage-fields.php:126
3907
- msgid "Avatar Size"
3908
- msgstr "Profilbild-Größe"
3909
-
3910
- #: profile-builder-2.0/admin/manage-fields.php:126
3911
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3912
- msgstr "Geben Sie einen Wert (zwischen 20 und 200) für die Größe des 'Profilbilds' ein.<br/>Falls nicht angegeben, wird er standardmäßig auf 100 gesetzt"
3913
-
3914
- #: profile-builder-2.0/admin/manage-fields.php:127
3915
- msgid "Date-format"
3916
- msgstr "Datum-Format"
3917
-
3918
- #: profile-builder-2.0/admin/manage-fields.php:128
3919
- msgid "Terms of Agreement"
3920
- msgstr "Nutzungsbedingungen"
3921
-
3922
- #: profile-builder-2.0/admin/manage-fields.php:128
3923
- msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3924
- msgstr "Geben Sie eine detaillierte Beschreibung der Bedingungen der Vereinbarung für den Benutzer zu lesen ein. <br/>Links können mit standard-HTML-Syntax eingefügt werden: &lt; a href =\"custom_url\"&gt;custom_text &lt;/a&gt;"
3925
-
3926
- #: profile-builder-2.0/admin/manage-fields.php:129
3927
- msgid "Options"
3928
- msgstr "Optionen"
3929
-
3930
- #: profile-builder-2.0/admin/manage-fields.php:130
3931
- msgid "Labels"
3932
- msgstr "Beschriftung "
3933
-
3934
- #: profile-builder-2.0/admin/manage-fields.php:130
3935
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
3936
- msgstr "Geben Sie eine durch Kommas getrennte Liste der Beschriftungen ein.<br/>Sie ist für den Benutzer sichtbar."
3937
-
3938
- #: profile-builder-2.0/admin/manage-fields.php:137
3939
- msgid "Default Value"
3940
- msgstr "Standardwert"
3941
-
3942
- #: profile-builder-2.0/admin/manage-fields.php:137
3943
- msgid "Default value of the field"
3944
- msgstr "Standardwert des Feldes"
3945
-
3946
- #: profile-builder-2.0/admin/manage-fields.php:138
3947
- #: profile-builder-2.0/admin/manage-fields.php:140
3948
- #: profile-builder-2.0/admin/manage-fields.php:141
3949
- #: profile-builder-2.0/admin/manage-fields.php:142
3950
- msgid "Default Option"
3951
- msgstr "Standardoption"
3952
-
3953
- #: profile-builder-2.0/admin/manage-fields.php:138
3954
- msgid "Specify the option which should be selected by default"
3955
- msgstr "Geben Sie die Option ein, die standardmäßig ausgewählt sein soll."
3956
-
3957
- #: profile-builder-2.0/admin/manage-fields.php:139
3958
- msgid "Default Option(s)"
3959
- msgstr "Standard-Option(en)"
3960
-
3961
- #: profile-builder-2.0/admin/manage-fields.php:139
3962
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3963
- msgstr "Geben Sie die Option, die standardmäßig überprüft werden sollen, ein.<br/>Wenn mehrere Werte vorhanden sind, trennen Sie diese mit einem Komma."
3964
-
3965
- #: profile-builder-2.0/admin/manage-fields.php:153
3966
- msgid "Default Content"
3967
- msgstr "Standard-Inhalt"
3968
-
3969
- #: profile-builder-2.0/admin/manage-fields.php:153
3970
- msgid "Default value of the textarea"
3971
- msgstr "Standardwert der Textfeld-Komponente"
3972
-
3973
- #: pb-add-on-woocommerce/index.php:306
3974
- #: profile-builder-2.0/admin/manage-fields.php:160
3975
- msgid "Required"
3976
- msgstr "Erforderlich"
3977
-
3978
- #: profile-builder-2.0/admin/manage-fields.php:160
3979
- msgid "Whether the field is required or not"
3980
- msgstr "Ob das Feld erforderlich ist oder nicht"
3981
-
3982
- #: profile-builder-2.0/admin/manage-fields.php:161
3983
- msgid "Overwrite Existing"
3984
- msgstr "Existierende überschreiben"
3985
-
3986
- #: profile-builder-2.0/admin/manage-fields.php:161
3987
- msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3988
- msgstr "Bei Auswahl \"Ja\", wird das Feld in der Liste eingefügt aber es werden alle anderen Felder aus der Datenbank, die den gleichen Meta Namen haben, überschrieben.<br/> Benutzen auf eigene Gefahr!"
3989
-
3990
- #: profile-builder-2.0/admin/manage-fields.php:167
3991
- msgid "Field Properties"
3992
- msgstr "Feld-Eigenschaften"
3993
-
3994
- #: profile-builder-2.0/admin/manage-fields.php:181
3995
- msgid "Registration & Edit Profile"
3996
- msgstr "Registrierung & Profil-Bearbeitung"
3997
-
3998
- #: profile-builder-2.0/admin/manage-fields.php:200
3999
- msgid "Name"
4000
- msgstr "Name"
4001
-
4002
- #: profile-builder-2.0/admin/manage-fields.php:201
4003
- msgid "Usernames cannot be changed."
4004
- msgstr "Benutzernamen können nicht geändert werden."
4005
-
4006
- #: pb-add-on-woocommerce/billing-fields.php:6
4007
- #: pb-add-on-woocommerce/shipping-fields.php:6
4008
- #: profile-builder-2.0/admin/manage-fields.php:202
4009
- msgid "First Name"
4010
- msgstr "Vorname"
4011
-
4012
- #: pb-add-on-woocommerce/billing-fields.php:7
4013
- #: pb-add-on-woocommerce/shipping-fields.php:7
4014
- #: profile-builder-2.0/admin/manage-fields.php:203
4015
- msgid "Last Name"
4016
- msgstr "Nachname"
4017
-
4018
- #: profile-builder-2.0/admin/manage-fields.php:204
4019
- #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4020
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4021
- msgid "Nickname"
4022
- msgstr "Spitzname"
4023
-
4024
- #: profile-builder-2.0/admin/manage-fields.php:205
4025
- msgid "Display name publicly as"
4026
- msgstr "Name öffentlich anzeigen als"
4027
-
4028
- #: profile-builder-2.0/admin/manage-fields.php:206
4029
- msgid "Contact Info"
4030
- msgstr "Kontaktdaten"
4031
-
4032
- #: profile-builder-2.0/admin/manage-fields.php:207
4033
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4034
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4035
- #: profile-builder-2.0/front-end/recover.php:118
4036
- #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4037
- msgid "E-mail"
4038
- msgstr "E-Mail"
4039
-
4040
- #: profile-builder-2.0/admin/manage-fields.php:208
4041
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4042
- #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4043
- #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4044
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4045
- msgid "Website"
4046
- msgstr "Webseite"
4047
-
4048
- #: profile-builder-2.0/admin/manage-fields.php:212
4049
- msgid "AIM"
4050
- msgstr "AIM"
4051
-
4052
- #: profile-builder-2.0/admin/manage-fields.php:213
4053
- msgid "Yahoo IM"
4054
- msgstr "Yahoo IM"
4055
-
4056
- #: profile-builder-2.0/admin/manage-fields.php:214
4057
- msgid "Jabber / Google Talk"
4058
- msgstr "Jabber / Google Talk"
4059
-
4060
- #: profile-builder-2.0/admin/manage-fields.php:217
4061
- msgid "About Yourself"
4062
- msgstr "Über Dich"
4063
-
4064
- #: profile-builder-2.0/admin/manage-fields.php:218
4065
- #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4066
- #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4067
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4068
- msgid "Biographical Info"
4069
- msgstr "Lebenslauf"
4070
-
4071
- #: profile-builder-2.0/admin/manage-fields.php:218
4072
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4073
- msgstr "Fülle ein paar biographische Informationen in deinem Profil aus. Diese können auch öffentlich angezeigt werden."
4074
-
4075
- #: profile-builder-2.0/admin/manage-fields.php:219
4076
- #: profile-builder-2.0/front-end/recover.php:73
4077
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4078
- msgid "Password"
4079
- msgstr "Kennwort"
4080
-
4081
- #: profile-builder-2.0/admin/manage-fields.php:219
4082
- msgid "Type your password."
4083
- msgstr "Bitte gib dein Passwort ein."
4084
-
4085
- #: profile-builder-2.0/admin/manage-fields.php:220
4086
- #: profile-builder-2.0/front-end/recover.php:74
4087
- msgid "Repeat Password"
4088
- msgstr "Kennwort wiederholen"
4089
-
4090
- #: profile-builder-2.0/admin/manage-fields.php:220
4091
- msgid "Type your password again. "
4092
- msgstr "Bitte geben Sie Ihr Kennwort erneut ein."
4093
-
4094
- #: profile-builder-2.0/admin/manage-fields.php:980
4095
- #: profile-builder-2.0/admin/manage-fields.php:1137
4096
- msgid "You must select a field\n"
4097
- msgstr "Sie müssen ein Feld auswählen.\n"
4098
-
4099
- #: profile-builder-2.0/admin/manage-fields.php:990
4100
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4101
- msgstr "Bitte wählen Sie ein anderes Feld aus. Dieses ist bereits im Formular vorhanden (muss einzigartig sein)."
4102
-
4103
- #: profile-builder-2.0/admin/manage-fields.php:1001
4104
- msgid "The entered avatar size is not between 20 and 200\n"
4105
- msgstr "Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200\n"
4106
-
4107
- #: profile-builder-2.0/admin/manage-fields.php:1004
4108
- msgid "The entered avatar size is not numerical\n"
4109
- msgstr "Die eingegebenen Profilbild-Größe ist nicht numerisch\n"
4110
-
4111
- #: profile-builder-2.0/admin/manage-fields.php:1012
4112
- msgid "The entered row number is not numerical\n"
4113
- msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
4114
-
4115
- #: profile-builder-2.0/admin/manage-fields.php:1015
4116
- msgid "You must enter a value for the row number\n"
4117
- msgstr "Sie müssen die Zeilennummer angeben.\n"
4118
-
4119
- #: profile-builder-2.0/admin/manage-fields.php:1036
4120
- msgid "The entered value for the Datepicker is not a valid date-format\n"
4121
- msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
4122
-
4123
- #: profile-builder-2.0/admin/manage-fields.php:1039
4124
- msgid "You must enter a value for the date-format\n"
4125
- msgstr "Sie müssen das Datumsformat angeben.\n"
4126
-
4127
- #: profile-builder-2.0/admin/manage-fields.php:1067
4128
- #: profile-builder-2.0/admin/manage-fields.php:1075
4129
- #: profile-builder-2.0/admin/manage-fields.php:1086
4130
- msgid "That meta-name is already in use\n"
4131
- msgstr "Dieser Meta-Name wird bereits verwendet\n"
4132
-
4133
- #: profile-builder-2.0/admin/manage-fields.php:1117
4134
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4135
- msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
4136
-
4137
- #: profile-builder-2.0/admin/manage-fields.php:1121
4138
- msgid "The following option did not coincide with the ones in the options list: %s\n"
4139
- msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
4140
-
4141
- #: profile-builder-2.0/admin/manage-fields.php:1144
4142
- msgid "That field is already added in this form\n"
4143
- msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
4144
-
4145
- #: profile-builder-2.0/admin/manage-fields.php:1193
4146
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4147
- msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
4148
-
4149
- #: profile-builder-2.0/admin/manage-fields.php:1193
4150
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4151
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4152
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4153
- #: profile-builder-2.0/features/functions.php:718
4154
- #: profile-builder-2.0/features/functions.php:725
4155
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4156
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4157
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4158
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4159
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4160
- msgid "Edit"
4161
- msgstr "Bearbeiten"
4162
-
4163
- #: profile-builder-2.0/admin/manage-fields.php:1193
4164
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4165
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4166
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4167
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4168
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4169
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4170
- #: profile-builder-2.0/features/functions.php:711
4171
- #: profile-builder-2.0/features/functions.php:725
4172
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4173
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4174
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4175
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4176
- msgid "Delete"
4177
- msgstr "Löschen"
4178
-
4179
- #: profile-builder-2.0/admin/manage-fields.php:1208
4180
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4181
- msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben möchten:"
4182
-
4183
- #: profile-builder-2.0/admin/register-version.php:14
4184
- msgid "Register Your Version"
4185
- msgstr "Registrieren Sie Ihre Version"
4186
-
4187
- #: profile-builder-2.0/admin/register-version.php:14
4188
- msgid "Register Version"
4189
- msgstr "Version registrieren"
4190
-
4191
- #: profile-builder-2.0/admin/register-version.php:70
4192
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4193
- msgstr "Wenn Sie diese Version vom Profile Builder registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support."
4194
-
4195
- #: profile-builder-2.0/admin/register-version.php:72
4196
- msgid " Serial Number:"
4197
- msgstr "Seriennummer:"
4198
-
4199
- #: profile-builder-2.0/admin/register-version.php:77
4200
- msgid "The serial number was successfully validated!"
4201
- msgstr "Die Seriennummer wurde erfolgreich überprüft!"
4202
-
4203
- #: profile-builder-2.0/admin/register-version.php:79
4204
- msgid "The serial number entered couldn't be validated!"
4205
- msgstr "Die eingegebene Seriennummer konnte nicht überprüft werden!"
4206
-
4207
- #: profile-builder-2.0/admin/register-version.php:83
4208
- msgid "The serial number couldn't be validated because it expired!"
4209
- msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!"
4210
-
4211
- #: profile-builder-2.0/admin/register-version.php:85
4212
- msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4213
- msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen Time-Out bekam. Dies kann passieren, wenn der Server nicht verfügbar ist. Bitte versuche es später erneut!"
4214
-
4215
- #: profile-builder-2.0/admin/register-version.php:87
4216
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4217
- msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) "
4218
-
4219
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4220
- #: profile-builder-2.0/features/functions.php:725
4221
- msgid "Content"
4222
- msgstr "Inhalt"
4223
-
4224
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4225
- msgid "Edit this item"
4226
- msgstr "Dieses Element bearbeiten"
4227
-
4228
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4229
- msgid "Delete this item"
4230
- msgstr "Dieses Element löschen"
4231
-
4232
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4233
- msgid "Please enter a value for the required field "
4234
- msgstr "Bitte gib einen Wert für das erforderliche Feld ein"
4235
-
4236
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4237
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4238
- msgid "Select File"
4239
- msgstr "Datei auswählen"
4240
-
4241
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4242
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4243
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4244
- msgid "Remove"
4245
- msgstr "Löschen"
4246
-
4247
- #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4248
- msgid "You can add the information for the %s after you add a entry"
4249
- msgstr "Du kannst die Informationen für \"%s\" hinzufügen, nachdem du einen Eintrag hinzugefügt hast"
4250
-
4251
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4252
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4253
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4254
- msgid "Upload "
4255
- msgstr "Hochladen"
4256
-
4257
- #: profile-builder-2.0/features/class-list-table.php:184
4258
- msgid "No items found."
4259
- msgstr "Keine Einträge wurden gefunden."
4260
-
4261
- #: profile-builder-2.0/features/class-list-table.php:308
4262
- msgid "Bulk Actions"
4263
- msgstr "Bulk.Aktionen"
4264
-
4265
- #: profile-builder-2.0/features/class-list-table.php:318
4266
- msgid "Apply"
4267
- msgstr "Anwenden"
4268
-
4269
- #: profile-builder-2.0/features/class-list-table.php:402
4270
- msgid "Show all dates"
4271
- msgstr "Alle Termine anzeigen"
4272
-
4273
- #: profile-builder-2.0/features/class-list-table.php:415
4274
- msgid "%1$s %2$d"
4275
- msgstr "%1$s %2$d "
4276
-
4277
- #: profile-builder-2.0/features/class-list-table.php:431
4278
- msgid "List View"
4279
- msgstr "Listenansicht"
4280
-
4281
- #: profile-builder-2.0/features/class-list-table.php:432
4282
- msgid "Excerpt View"
4283
- msgstr "Excerpt-Anzeige"
4284
-
4285
- #: profile-builder-2.0/features/class-list-table.php:458
4286
- msgid "%s pending"
4287
- msgstr "%s ausstehend"
4288
-
4289
- #: profile-builder-2.0/features/class-list-table.php:566
4290
- msgid "%1$s of %2$s"
4291
- msgstr "%1$s von %2$s"
4292
-
4293
- #: profile-builder-2.0/features/class-list-table.php:713
4294
- msgid "Select All"
4295
- msgstr "Alle auswählen"
4296
-
4297
- #: profile-builder-2.0/features/functions.php:526
4298
- msgid "Strength indicator"
4299
- msgstr "Stärkeanzeige"
4300
-
4301
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4302
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4303
- msgid "Admin Approval"
4304
- msgstr "Admin-Bestätigung"
4305
-
4306
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4307
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4308
- msgid "Do you want to"
4309
- msgstr "Möchtest du"
4310
-
4311
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4312
- msgid "Your session has expired! Please refresh the page and try again"
4313
- msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4314
-
4315
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4316
- msgid "User successfully approved!"
4317
- msgstr "Benutzer erfolgreich genehmigt!"
4318
-
4319
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4320
- msgid "User successfully unapproved!"
4321
- msgstr "Benutzer erfolgreich abgelehnt!"
4322
-
4323
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4324
- msgid "User successfully deleted!"
4325
- msgstr "Benutzer erfolgreich gelöscht!"
4326
-
4327
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4328
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4329
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4330
- msgid "You either don't have permission for that action or there was an error!"
4331
- msgstr "Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!"
4332
-
4333
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4334
- msgid "Your session has expired! Please refresh the page and try again."
4335
- msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4336
-
4337
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4338
- msgid "Users successfully approved!"
4339
- msgstr "Benutzer wurden erfolgreich genehmigt!"
4340
-
4341
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4342
- msgid "Users successfully unapproved!"
4343
- msgstr "Benutzer wurden erfolgreich verwehrt!"
4344
-
4345
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4346
- msgid "Users successfully deleted!"
4347
- msgstr "Benutzer wurden erfolgreich gelöscht!"
4348
-
4349
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4350
- msgid "Your account on %1$s has been approved!"
4351
- msgstr "Ihr Benutzerkonto auf %1$s wurde genehmigt!"
4352
-
4353
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4354
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4355
- msgid "approved"
4356
- msgstr "genehmigt"
4357
-
4358
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4359
- msgid "An administrator has just approved your account on %1$s (%2$s)."
4360
- msgstr "Ein Administrator hat gerade Ihr Konto auf %1$s (%2$s) genehmigt."
4361
-
4362
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4363
- msgid "Your account on %1$s has been unapproved!"
4364
- msgstr "Ihr Benutzerkonto auf %1$s wurde nicht genehmigt!"
4365
-
4366
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4367
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4368
- msgid "unapproved"
4369
- msgstr "abgelehnt"
4370
-
4371
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4372
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4373
- msgstr "Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. "
4374
-
4375
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4376
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4377
- msgstr "<strong>Fehler</strong>: Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie sich anmelden können. "
4378
-
4379
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4380
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4381
- msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie die \"Kennwort Wiederherstellung\"-Funktion verwenden können."
4382
-
4383
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4384
- msgid "delete this user?"
4385
- msgstr "Möchtest du diesen Benutzer löschen?"
4386
-
4387
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4388
- msgid "unapprove this user?"
4389
- msgstr "Benutzer ablehnen?"
4390
-
4391
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4392
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4393
- msgid "Unapprove"
4394
- msgstr "ablehnen"
4395
-
4396
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4397
- msgid "approve this user?"
4398
- msgstr "Möchtest du diesen Benutzer genehmigen?"
4399
-
4400
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4401
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4402
- msgid "Approve"
4403
- msgstr "Genehmigen"
4404
-
4405
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4406
- #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4407
- #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4408
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4409
- msgid "Firstname"
4410
- msgstr "Vorname"
4411
-
4412
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4413
- #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4414
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4415
- msgid "Lastname"
4416
- msgstr "Nachname"
4417
-
4418
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4419
- #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4420
- #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4421
- #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4422
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4423
- msgid "Role"
4424
- msgstr "Rolle"
4425
-
4426
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4427
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4428
- msgid "Registered"
4429
- msgstr "Angemeldet"
4430
-
4431
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4432
- msgid "User-status"
4433
- msgstr "Benutzer-Status"
4434
-
4435
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4436
- msgid "Do you want to bulk approve the selected users?"
4437
- msgstr "Möchtest du alle ausgewählten Benutzer genehmigen?"
4438
-
4439
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4440
- msgid "Do you want to bulk unapprove the selected users?"
4441
- msgstr "Möchtest du alle ausgewählten Benutzer verwehren?"
4442
-
4443
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4444
- msgid "Do you want to bulk delete the selected users?"
4445
- msgstr "Möchtest du alle ausgewählten Benutzer löschen?"
4446
-
4447
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4448
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4449
- msgid "Sorry, but you don't have permission to do that!"
4450
- msgstr "Tut uns leid aber du hast keine Berechtigung dazu!"
4451
-
4452
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4453
- msgid "Approved"
4454
- msgstr "Genehmigt"
4455
-
4456
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4457
- msgid "Unapproved"
4458
- msgstr "Verwehrt"
4459
-
4460
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4461
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4462
- msgid "All Users"
4463
- msgstr "Alle Benutzer"
4464
-
4465
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4466
- msgid "delete this user from the _signups table?"
4467
- msgstr "Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?"
4468
-
4469
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4470
- msgid "confirm this email yourself?"
4471
- msgstr "Bestätige diese E-Mail selbst?"
4472
-
4473
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4474
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4475
- msgid "Confirm Email"
4476
- msgstr "E-Mail bestätigen"
4477
-
4478
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4479
- msgid "resend the activation link?"
4480
- msgstr "Aktivierungslink erneut senden?"
4481
-
4482
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4483
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4484
- msgid "Resend Activation Email"
4485
- msgstr "Aktivierungs-E-Mail erneut senden"
4486
-
4487
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4488
- msgid "%s couldn't be deleted"
4489
- msgstr "%s konnte nicht gelöscht werden"
4490
-
4491
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4492
- msgid "All users have been successfully deleted"
4493
- msgstr "Alle Benutzer wurden erfolgreich gelöscht"
4494
-
4495
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4496
- msgid "The selected users have been activated"
4497
- msgstr "Die ausgewählten Benutzer wurden aktiviert"
4498
-
4499
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4500
- msgid "The selected users have had their activation emails resent"
4501
- msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
4502
-
4503
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4504
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4505
- msgid "Users with Unconfirmed Email Address"
4506
- msgstr "Benutzer mit unbestätigter E-Mail-Adresse"
4507
-
4508
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4509
- msgid "There was an error performing that action!"
4510
- msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
4511
-
4512
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4513
- msgid "The selected user couldn't be deleted"
4514
- msgstr "Der ausgewählte Benutzer konnte nicht gelöscht werden"
4515
-
4516
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4517
- msgid "Email notification resent to user"
4518
- msgstr "Die E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt."
4519
-
4520
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4521
- msgid "[%1$s] Activate %2$s"
4522
- msgstr "[%1$s] Aktivieren %2$s"
4523
-
4524
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4525
- #: profile-builder-2.0/front-end/register.php:71
4526
- msgid "Could not create user!"
4527
- msgstr "Benutzer konnte nicht erstellt werden!"
4528
-
4529
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4530
- msgid "That username is already activated!"
4531
- msgstr "Dieser Benutzername ist bereits aktiviert worden!"
4532
-
4533
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4534
- msgid "There was an error while trying to activate the user"
4535
- msgstr "Es ist ein Fehler aufgetreten, beim Versuch, den Benutzer zu aktivieren."
4536
-
4537
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4538
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4539
- msgid "A new subscriber has (been) registered!"
4540
- msgstr "Ein neuer Benutzer ist (wurde) registriert!"
4541
-
4542
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4543
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4544
- msgstr "Neuer Abonnent auf %1$s. <br/> <br/>Benutzername:%2$s <br/> E-Mail: %3$s <br/>"
4545
-
4546
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4547
- msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4548
- msgstr "Das \"Admin Approval\" Feature war zum Zeitpunkt der Registrierung aktiv, also bitte denke daran, dass man diesen Benutzer genehmigen muss, bevor er sich anmelden kann!"
4549
-
4550
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4551
- msgid "[%1$s] Your new account information"
4552
- msgstr "[%1$s] Ihre neuen Kontodaten"
4553
-
4554
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4555
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4556
- msgstr "Willkommen bei %1$s! <br/> <br/> <br/>Ihr Benutzername ist: %2$s und das Kennwort: %3$s"
4557
-
4558
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4559
- #: profile-builder-2.0/front-end/register.php:125
4560
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4561
- msgstr "Bevor du auf dein Konto zugreifen kannst, muss es von einem Administrator genehmigt werden. Du wirst per E-Mail darüber benachrichtigt."
4562
-
4563
- #: profile-builder-2.0/features/login-widget/login-widget.php:10
4564
- msgid "This login widget lets you add a login form in the sidebar."
4565
- msgstr "Mit diesem Login-Widget kannst du ein Anmeldeformular in der Sidebar hinzufügen."
4566
-
4567
- #: profile-builder-2.0/features/login-widget/login-widget.php:15
4568
- msgid "Profile Builder Login Widget"
4569
- msgstr "Profile Builder Login Widget"
4570
-
4571
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4572
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
4573
- #: profile-builder-2.0/front-end/login.php:250
4574
- msgid "Register"
4575
- msgstr "Registrieren"
4576
-
4577
- #: profile-builder-2.0/features/login-widget/login-widget.php:63
4578
- msgid "Title:"
4579
- msgstr "Titel:"
4580
-
4581
- #: profile-builder-2.0/features/login-widget/login-widget.php:68
4582
- msgid "After login redirect URL (optional):"
4583
- msgstr "Weiterleitungs-URL nach dem Login (optional):"
4584
-
4585
- #: profile-builder-2.0/features/login-widget/login-widget.php:73
4586
- msgid "Register page URL (optional):"
4587
- msgstr "Registrierunggseite-URL (optional):"
4588
-
4589
- #: profile-builder-2.0/features/login-widget/login-widget.php:78
4590
- msgid "Password Recovery page URL (optional):"
4591
- msgstr "Kennwort Wiederherstellungs-URL (optional):"
4592
-
4593
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4594
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4595
- msgid "The usernames cannot be changed."
4596
- msgstr "Benutzernamen können nicht geändert werden."
4597
-
4598
- #: profile-builder-2.0/front-end/class-formbuilder.php:136
4599
- msgid "Only an administrator can add new users."
4600
- msgstr "Nur ein Administrator kann neue Benutzer hinzufügen."
4601
-
4602
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
4603
- msgid "Users can register themselves or you can manually create users here."
4604
- msgstr "Benutzer können sich selbst anmelden, oder du kannst Benutzer von Hand hier erstellen."
4605
-
4606
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
4607
- msgid "Users cannot currently register themselves, but you can manually create users here."
4608
- msgstr "Benutzer können sich derzeit selbst nicht registrieren, aber du kannst Benutzer hier manuell erstellen."
4609
-
4610
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4611
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
4612
- msgstr "Du bist derzeit als %1s angemeldet. Du brauchst kein weiteres Konto. %2s"
4613
-
4614
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4615
- msgid "Log out of this account."
4616
- msgstr "Aus diesem Konto ausloggen."
4617
-
4618
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4619
- msgid "Logout"
4620
- msgstr "Ausloggen"
4621
-
4622
- #: profile-builder-2.0/front-end/class-formbuilder.php:175
4623
- msgid "You must be logged in to edit your profile."
4624
- msgstr "Sie müssen angemeldet sein, um Ihr Profil zu bearbeiten."
4625
-
4626
- #: profile-builder-2.0/features/functions.php:994
4627
- msgid "here"
4628
- msgstr "hier"
4629
-
4630
- #: profile-builder-2.0/features/functions.php:995
4631
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4632
- msgstr "Sie werden in Kürze automatisch weitergeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s"
4633
-
4634
- #: profile-builder-2.0/front-end/class-formbuilder.php:315
4635
- #: profile-builder-2.0/front-end/class-formbuilder.php:322
4636
- msgid "The account %1s has been successfully created!"
4637
- msgstr "Das Konto %1s wurde erfolgreich erstellt!"
4638
-
4639
- #: profile-builder-2.0/front-end/class-formbuilder.php:318
4640
- #: profile-builder-2.0/front-end/class-formbuilder.php:328
4641
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4642
- msgstr "Bevor du auf dein Konto %1S zugreifen kannst, musst du deine E-Mail-Adresse bestätigen. Bitte überprüfe deinen Posteingang und klicke auf den Aktivierungslink."
4643
-
4644
- #: profile-builder-2.0/front-end/class-formbuilder.php:324
4645
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4646
- msgstr "Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administrator genehmigt werden. Über eine Bestätigung wirst du per E-Mail benachrichtigt."
4647
-
4648
- #: profile-builder-2.0/front-end/class-formbuilder.php:347
4649
- msgid "Your profile has been successfully updated!"
4650
- msgstr "Ihr Profil wurde aktualisiert!"
4651
-
4652
- #: profile-builder-2.0/front-end/class-formbuilder.php:358
4653
- msgid "There was an error in the submitted form"
4654
- msgstr "Bitte alle erforderlichen Felder korrekt ausfüllen!"
4655
-
4656
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
4657
- msgid "Add User"
4658
- msgstr "Benutzer hinzufügen"
4659
-
4660
- #: profile-builder-2.0/admin/add-ons.php:170
4661
- #: profile-builder-2.0/front-end/class-formbuilder.php:418
4662
- msgid "Update"
4663
- msgstr "Aktualisieren"
4664
-
4665
- #: profile-builder-2.0/front-end/class-formbuilder.php:481
4666
- msgid "Send these credentials via email."
4667
- msgstr "Senden Sie mir diese Anmeldeninformationen per E-Mail."
4668
-
4669
- #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4670
- #: profile-builder-2.0/front-end/login.php:137
4671
- #: profile-builder-2.0/front-end/login.php:144
4672
- #: profile-builder-2.0/front-end/login.php:158
4673
- #: profile-builder-2.0/front-end/recover.php:17
4674
- #: profile-builder-2.0/front-end/recover.php:245
4675
- msgid "ERROR"
4676
- msgstr "FEHLER"
4677
-
4678
- #: profile-builder-2.0/front-end/login.php:137
4679
- msgid "The password you entered is incorrect."
4680
- msgstr "Das eingegebene Kennwort ist falsch."
4681
-
4682
- #: profile-builder-2.0/front-end/login.php:138
4683
- #: profile-builder-2.0/front-end/login.php:145
4684
- msgid "Password Lost and Found."
4685
- msgstr "Passwort-Fundgrube"
4686
-
4687
- #: profile-builder-2.0/front-end/login.php:138
4688
- #: profile-builder-2.0/front-end/login.php:145
4689
- msgid "Lost your password"
4690
- msgstr "Passwort vergessen"
4691
-
4692
- #: profile-builder-2.0/front-end/login.php:158
4693
- msgid "Both fields are empty."
4694
- msgstr "Beide Felder sind leer."
4695
-
4696
- #: profile-builder-2.0/front-end/login.php:296
4697
- msgid "You are currently logged in as %1$s. %2$s"
4698
- msgstr "Derzeit als %1$s angemeldet. %2$s "
4699
-
4700
- #: profile-builder-2.0/front-end/login.php:295
4701
- #: profile-builder-2.0/front-end/logout.php:25
4702
- msgid "Log out of this account"
4703
- msgstr "Aus diesem Konto ausloggen"
4704
-
4705
- #: profile-builder-2.0/front-end/login.php:295
4706
- msgid "Log out"
4707
- msgstr "Ausloggen"
4708
-
4709
- #: profile-builder-2.0/front-end/recover.php:17
4710
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4711
- msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie Ihr Kennwort zurücksetzen können."
4712
-
4713
- #: profile-builder-2.0/front-end/recover.php:94
4714
- msgid "Reset Password"
4715
- msgstr "Passwort zurücksetzen"
4716
-
4717
- #: profile-builder-2.0/front-end/recover.php:121
4718
- msgid "Please enter your username or email address."
4719
- msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail Adresse ein."
4720
-
4721
- #: profile-builder-2.0/front-end/recover.php:125
4722
- msgid "You will receive a link to create a new password via email."
4723
- msgstr "Sie werden per E-Mail einen Link erhalten, über den Sie ein neues Passwort vergeben können."
4724
-
4725
- #: profile-builder-2.0/front-end/recover.php:122
4726
- msgid "Username or E-mail"
4727
- msgstr "Benutzername oder E-Mail"
4728
-
4729
- #: profile-builder-2.0/front-end/recover.php:138
4730
- msgid "Get New Password"
4731
- msgstr "Neues Passwort anfordern"
4732
-
4733
- #: profile-builder-2.0/front-end/recover.php:185
4734
- msgid "The username entered wasn't found in the database!"
4735
- msgstr "Der eingegebene Benutzername existiert nicht!"
4736
-
4737
- #: profile-builder-2.0/front-end/recover.php:185
4738
- msgid "Please check that you entered the correct username."
4739
- msgstr "Bitte überprüfe, ob du den richtigen Benutzernamen eingegeben hast."
4740
-
4741
- #: profile-builder-2.0/front-end/recover.php:200
4742
- msgid "Check your e-mail for the confirmation link."
4743
- msgstr "Überprüfe dein E-Mail Postfach für den Bestätigungslink."
4744
-
4745
- #: profile-builder-2.0/front-end/recover.php:235
4746
- msgid "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"
4747
- msgstr "Jemand hat angefragt, dass das Passwort für dieses Konto zurückgesetzt werden soll: <b>%1$s</b> <br/> Wenn diese Anfrage nicht von die ausgeht, bitte ignoriere diese E-Mail einfach und es geschieht nichts.<br/>Um dein Passwort zurückzusetzen, rufe folgenden Link auf: %2$s"
4748
-
4749
- #: profile-builder-2.0/front-end/recover.php:238
4750
- msgid "Password Reset from \"%1$s\""
4751
- msgstr "Zurücksetzen des Kennworts \"%1$s\""
4752
-
4753
- #: profile-builder-2.0/front-end/recover.php:245
4754
- msgid "There was an error while trying to send the activation link to %1$s!"
4755
- msgstr "Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!"
4756
-
4757
- #: profile-builder-2.0/front-end/recover.php:207
4758
- msgid "The email address entered wasn't found in the database!"
4759
- msgstr "Die eingegebene E-Mail-Adresse existiert nicht!"
4760
-
4761
- #: profile-builder-2.0/front-end/recover.php:207
4762
- msgid "Please check that you entered the correct email address."
4763
- msgstr "Bitte prüfe, ob du die richtige E-Mail Adresse angegeben hast."
4764
-
4765
- #: profile-builder-2.0/front-end/recover.php:273
4766
- msgid "Your password has been successfully changed!"
4767
- msgstr "Ihr Passwort wurde erfolgreich geändert!"
4768
-
4769
- #: profile-builder-2.0/front-end/recover.php:292
4770
- msgid "You have successfully reset your password to: %1$s"
4771
- msgstr "Ihr Kennwort wurde erfolgreich zurückgesetzt: %1$s"
4772
-
4773
- #: profile-builder-2.0/front-end/recover.php:295
4774
- #: profile-builder-2.0/front-end/recover.php:306
4775
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
4776
- msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\""
4777
-
4778
- #: profile-builder-2.0/front-end/recover.php:303
4779
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4780
- msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>Ihr neues Passwort ist: %2$s"
4781
-
4782
- #: profile-builder-2.0/front-end/recover.php:320
4783
- msgid "The entered passwords don't match!"
4784
- msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
4785
-
4786
- #: profile-builder-2.0/front-end/recover.php:375
4787
- msgid "ERROR:"
4788
- msgstr "FEHLER:"
4789
-
4790
- #: profile-builder-2.0/front-end/recover.php:375
4791
- msgid "Invalid key!"
4792
- msgstr "Ungültiger Schlüssel!"
4793
-
4794
- #: profile-builder-2.0/front-end/register.php:56
4795
- msgid "Invalid activation key!"
4796
- msgstr "Ungültiger Aktivierungsschlüssel!"
4797
-
4798
- #: profile-builder-2.0/front-end/register.php:60
4799
- msgid "This username is now active!"
4800
- msgstr "Dieser Benutzername ist jetzt aktiv!"
4801
-
4802
- #: profile-builder-2.0/front-end/register.php:74
4803
- msgid "This username is already activated!"
4804
- msgstr "Dieser Benutzername ist bereits aktiviert!"
4805
-
4806
- #: profile-builder-2.0/front-end/register.php:124
4807
- msgid "Your email was successfully confirmed."
4808
- msgstr "Ihre E-Mail wurde erfolgreich bestätigt."
4809
-
4810
- #: profile-builder-2.0/front-end/register.php:153
4811
- msgid "There was an error while trying to activate the user."
4812
- msgstr "Ein Fehler ist aufgetreten, während versucht wurde, den Benutzer zu aktivieren."
4813
-
4814
- #: pb-add-on-woocommerce/index.php:393
4815
- #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4816
- msgid "The email you entered is not a valid email address."
4817
- msgstr "Die angegebene E-Mail Adresse wurde als ungültig eingestuft."
4818
-
4819
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4820
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4821
- msgid "This email is already reserved to be used soon."
4822
- msgstr "Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden."
4823
-
4824
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4825
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4826
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4827
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4828
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4829
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4830
- msgid "Please try a different one!"
4831
- msgstr "Bitte versuchen Sie es mit einer anderen!"
4832
-
4833
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4834
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4835
- msgid "This email is already in use."
4836
- msgstr "Diese E-Mail-Adresse ist bereits im Einsatz."
4837
-
4838
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4839
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4840
- msgid "The passwords do not match"
4841
- msgstr "Die Kennwörter stimmen nicht überein."
4842
-
4843
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4844
- msgid "This username already exists."
4845
- msgstr "Dieser Benutzername ist bereits vorhanden."
4846
-
4847
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4848
- msgid "This username is already reserved to be used soon."
4849
- msgstr "Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden."
4850
-
4851
- #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4852
- msgid "Avatar"
4853
- msgstr "Profil-Bild"
4854
-
4855
- #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4856
- #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4857
- #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4858
- #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4859
- #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4860
- #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4861
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4862
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4863
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4864
- #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4865
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4866
- #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4867
- #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4868
- #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4869
- #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4870
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4871
- #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4872
- msgid "required"
4873
- msgstr "Erforderlich"
4874
-
4875
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4876
- msgid "To use reCAPTCHA you must get an API key from"
4877
- msgstr "Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier besorgen:"
4878
-
4879
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4880
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4881
- msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP eingeben um ReCAPTCHA zu benutzen!"
4882
-
4883
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4884
- msgid "To use reCAPTCHA you must get an API public key from:"
4885
- msgstr "Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:"
4886
-
4887
- #: profile-builder-2.0/modules/modules.php:11
4888
- #: profile-builder-2.0/modules/modules.php:58
4889
- msgid "Modules"
4890
- msgstr "Module"
4891
-
4892
- #: profile-builder-2.0/modules/modules.php:59
4893
- msgid "Here you can activate / deactivate available modules for Profile Builder."
4894
- msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
4895
-
4896
- #: profile-builder-2.0/modules/modules.php:69
4897
- msgid "Name/Description"
4898
- msgstr "Name/Beschreibung"
4899
-
4900
- #: profile-builder-2.0/modules/modules.php:70
4901
- msgid "Status"
4902
- msgstr "Status"
4903
-
4904
- #: profile-builder-2.0/modules/modules.php:77
4905
- #: profile-builder-2.0/modules/modules.php:84
4906
- #: profile-builder-2.0/modules/modules.php:91
4907
- #: profile-builder-2.0/modules/modules.php:98
4908
- #: profile-builder-2.0/modules/modules.php:105
4909
- #: profile-builder-2.0/modules/modules.php:112
4910
- #: profile-builder-2.0/modules/modules.php:119
4911
- msgid "Active"
4912
- msgstr "Aktiv"
4913
-
4914
- #: profile-builder-2.0/modules/modules.php:78
4915
- #: profile-builder-2.0/modules/modules.php:85
4916
- #: profile-builder-2.0/modules/modules.php:92
4917
- #: profile-builder-2.0/modules/modules.php:99
4918
- #: profile-builder-2.0/modules/modules.php:106
4919
- #: profile-builder-2.0/modules/modules.php:113
4920
- #: profile-builder-2.0/modules/modules.php:120
4921
- msgid "Inactive"
4922
- msgstr "inaktiv"
4923
-
4924
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4925
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4926
- #: profile-builder-2.0/modules/modules.php:96
4927
- msgid "Admin Email Customizer"
4928
- msgstr "Anpassen der Admin-E-Mails"
4929
-
4930
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4931
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4932
- #: profile-builder-2.0/modules/modules.php:103
4933
- msgid "User Email Customizer"
4934
- msgstr "Anpassen der Benutzer-E-Mails"
4935
-
4936
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4937
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4938
- msgid "Save"
4939
- msgstr "Speichern"
4940
-
4941
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4942
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4943
- msgid "Redirect"
4944
- msgstr "Weiterleitung"
4945
-
4946
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4947
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4948
- msgid "URL"
4949
- msgstr "URL"
4950
-
4951
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4952
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4953
- msgstr "Diese Einstellungen werden auch auf der \"Benutzer E-Mail Kustomisierung\" Einstellungs-Seite beim Speichern repliziert."
4954
-
4955
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4956
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4957
- msgid "From (name)"
4958
- msgstr "Von (Name)"
4959
-
4960
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4961
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4962
- msgid "From (reply-to email)"
4963
- msgstr "Von (Antwort auf E-Mail)"
4964
-
4965
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4966
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4967
- msgid "Common Settings"
4968
- msgstr "Allgemeine Einstellungen"
4969
-
4970
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4971
- msgid ""
4972
- "\n"
4973
- "<p>New subscriber on {{site_name}}.</p>\n"
4974
- "<p>Username:{{username}}</p>\n"
4975
- "<p>E-mail:{{user_email}}</p>\n"
4976
- msgstr ""
4977
- "\n"
4978
- "<p>Neue Abonnenten für {{site_name}}.</p>\n"
4979
- "<p>Benutzername:{{username}}</p>\n"
4980
- "<p>E-mail:{{user_email}}</p>\n"
4981
-
4982
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4983
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4984
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4985
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4986
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4987
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4988
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4989
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4990
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4991
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4992
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4993
- msgid "Email Subject"
4994
- msgstr "E-Mail Betreff"
4995
-
4996
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4997
- msgid "Default Registration & Registration with Email Confirmation"
4998
- msgstr "Standard-Anmeldung & Anmeldung mit E-Mail-Bestätigung"
4999
-
5000
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5001
- msgid ""
5002
- "\n"
5003
- "<p>New subscriber on {{site_name}}.</p>\n"
5004
- "<p>Username:{{username}}</p>\n"
5005
- "<p>E-mail:{{user_email}}</p>\n"
5006
- "<p>The Admin Approval feature was activated at the time of registration,\n"
5007
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
5008
- msgstr ""
5009
- "<p>Neue Abonnenten für {{site_name}}.</p>\n"
5010
- "<p>Benutzername: {{username}}</p> \n"
5011
- "<p>E-Mail :{{user_email}}</p> \n"
5012
- "<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
5013
- "Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !</p>\n"
5014
-
5015
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5016
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5017
- msgid "Registration with Admin Approval"
5018
- msgstr "Anmeldung über Admin-Freischaltung"
5019
-
5020
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5021
- msgid "Available Tags"
5022
- msgstr "Verfügbare Tags"
5023
-
5024
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5025
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5026
- msgid "User Meta"
5027
- msgstr "Benutzer-Meta"
5028
-
5029
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5030
- msgid "Site Url"
5031
- msgstr "Webseite-URL"
5032
-
5033
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5034
- msgid "Site Name"
5035
- msgstr "Webseite Name"
5036
-
5037
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5038
- #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5039
- msgid "User Id"
5040
- msgstr "Benutzer-Id"
5041
-
5042
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5043
- msgid "Reply To"
5044
- msgstr "Antworten auf"
5045
-
5046
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5047
- msgid "Activation Key"
5048
- msgstr "Aktivierungsschlüssel"
5049
-
5050
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5051
- msgid "Activation Url"
5052
- msgstr "Aktivierungs-Url"
5053
-
5054
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5055
- msgid "Activation Link"
5056
- msgstr "Aktivierungs-Link"
5057
-
5058
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5059
- msgid ""
5060
- "\n"
5061
- "<h3>Welcome to {{site_name}}!</h3>\n"
5062
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5063
- msgstr ""
5064
- "\n"
5065
- "<h3>Willkommen bei {{Site_name}}!</h3> <p>Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}</p>\n"
5066
-
5067
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5068
- msgid "Default Registration"
5069
- msgstr "Standard-Anmeldung"
5070
-
5071
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5072
- msgid ""
5073
- "\n"
5074
- "<p>To activate your user, please click the following link:<br/>\n"
5075
- "{{{activation_link}}}</p>\n"
5076
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
5077
- msgstr ""
5078
- "\n"
5079
- "<p>Bitte klicke auf den folgenden Link, um dein Benutzerkonto zu aktivieren: <br/> \n"
5080
- "{{{activation_link}}}</p>\n"
5081
- "<p>Nach der Aktivierung erhälst du eine weitere E-Mail mit deinen Anmeldeinformationen.</p>\n"
5082
-
5083
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5084
- msgid "[{{site_name}}] Activate {{username}}"
5085
- msgstr "[{{site_name}}] Aktivieren {{username}}"
5086
-
5087
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5088
- msgid "Registration with Email Confirmation"
5089
- msgstr "Registrierung mit E-Mail-Bestätigung"
5090
-
5091
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5092
- msgid ""
5093
- "\n"
5094
- "<h3>Welcome to {{site_name}}!</h3>\n"
5095
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5096
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5097
- msgstr ""
5098
- "\n"
5099
- "<h3>Willkommen bei {{site_name}}!</h3>\n"
5100
- "<p>Ihr Benutzername ist: {{username}} und das Kennwort: {{password}}</p>\n"
5101
- "<p>Bevor Sie in Ihr Konto zugreifen können, muss ein Administrator diesen Benutzer freischalten. Sie werden per E-Mail benachrichtigt, sobald dies passiert ist.</p>\n"
5102
-
5103
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5104
- msgid "A new account has been created for you on {{site_name}}"
5105
- msgstr "Ein neues Konto wurde für Sie auf {{Site_name}} erstellt"
5106
-
5107
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5108
- msgid ""
5109
- "\n"
5110
- "<h3>Good News!</h3>\n"
5111
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5112
- msgstr ""
5113
- "\n"
5114
- "<h3>Herzlich Willkommen!</h3>\n"
5115
- "<p>Der Administrator hat Ihr Konto freigeschaltet: {{username}} auf {{site_name}}.</p>\n"
5116
-
5117
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5118
- msgid "Your account on {{site_name}} has been approved!"
5119
- msgstr "Ihr Benutzerkonto auf {{site_name}} wurde freigeschaltet!"
5120
-
5121
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5122
- msgid "User Approval Notification"
5123
- msgstr "Benutzer Genehmigungsbenachrichtigung"
5124
-
5125
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5126
- msgid ""
5127
- "\n"
5128
- "<h3>Hello,</h3>\n"
5129
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5130
- msgstr ""
5131
- "\n"
5132
- "<h3>Lieber Benutzer,</h3>\n"
5133
- "<p>leider hat der Administrator Ihr Konto nicht freigeschaltet.</p>\n"
5134
-
5135
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5136
- msgid "Your account on {{site_name}} has been unapproved!"
5137
- msgstr "Ihr Benutzerkonto auf {{site_name}} wurde nicht freigeschaltet!"
5138
-
5139
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5140
- msgid "Unapproved User Notification"
5141
- msgstr "Nicht genehmigte Benutzerbenachrichtigung"
5142
-
5143
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5144
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5145
- msgid "Edit-profile Form"
5146
- msgstr "Profil-Bearbeiten Formular"
5147
-
5148
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5149
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5150
- #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5151
- msgid "Add New"
5152
- msgstr "Neu hinzufügen"
5153
-
5154
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5155
- msgid "Add new Edit-profile Form"
5156
- msgstr "Neues Profil-Bearbeiten Formular hinzufügen"
5157
-
5158
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5159
- msgid "Edit the Edit-profile Forms"
5160
- msgstr "Profil-Bearbeiten Formular bearbeiten"
5161
-
5162
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5163
- msgid "New Edit-profile Form"
5164
- msgstr "Neues Profil-Bearbeiten Formular"
5165
-
5166
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5167
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5168
- msgid "Edit-profile Forms"
5169
- msgstr "Profil-Bearbeiten Formular"
5170
-
5171
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5172
- msgid "View the Edit-profile Form"
5173
- msgstr "Ansicht vom Profil-Bearbeiten Formular"
5174
-
5175
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5176
- msgid "Search the Edit-profile Forms"
5177
- msgstr "Suchen Sie nach Profil Bearbeitungs-Formulare"
5178
-
5179
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5180
- msgid "No Edit-profile Form found"
5181
- msgstr "Kein Profil Bearbeitungs-Formular wurde gefunden"
5182
-
5183
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5184
- msgid "No Edit-profile Forms found in trash"
5185
- msgstr "Keine Profil-bearbeitungs Formulare wurden im Papierkorb gefunden"
5186
-
5187
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5188
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5189
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5190
- msgid "Shortcode"
5191
- msgstr "Shortcode"
5192
-
5193
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5194
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5195
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5196
- msgid "(no title)"
5197
- msgstr "(kein Titel)"
5198
-
5199
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5200
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5201
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5202
- msgid "The shortcode will be available after you publish this form."
5203
- msgstr "Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen."
5204
-
5205
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5206
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5207
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5208
- msgid "Use this shortcode on the page you want the form to be displayed:"
5209
- msgstr "Verwenden Sie diesen Shortcode auf der Seite, wo das Formular angezeigt werden soll."
5210
-
5211
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5212
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5213
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5214
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5215
- msgstr "<span style=\"color:red;\">Hinweis:</span> die Änderung des Formulartitels ändert auch den Shortcode!"
5216
-
5217
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5218
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5219
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5220
- msgid "Form Shortcode"
5221
- msgstr "Formular-Shortcode"
5222
-
5223
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5224
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5225
- msgid "Whether to redirect the user to a specific page or not"
5226
- msgstr "Ob der Benutzer zu einer bestimmten Seite umgeleitet werden soll oder nicht"
5227
-
5228
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5229
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5230
- msgid "Display Messages"
5231
- msgstr "Meldungen anzeigen"
5232
-
5233
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5234
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5235
- msgid "Allowed time to display any success messages (in seconds)"
5236
- msgstr "Erlaubte Zeit (in Sekunden) um Erfolgsmeldungen anzuzeigen"
5237
-
5238
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5239
- msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5240
- msgstr "Geben Sie die URL der Seite ein, zu der die Benutzer umgeleitet werden sollten, sobald sie ihr Profil mit diesem Formular aktualisiert haben<br/> verwenden Sie folgendes Format: http://www.meineWebseite.com"
5241
-
5242
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5243
- msgid "After Profile Update..."
5244
- msgstr "Nach Profil-Änderung..."
5245
-
5246
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5247
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5248
- msgid "Add New Field to the List"
5249
- msgstr "Neues Feld zur Liste hinzufügen"
5250
-
5251
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5252
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5253
- msgid "Choose one of the supported fields you manage <a href=\""
5254
- msgstr "Wählen Sie eines der unterstützten Felder, die Sie verwalten aus <a href=\""
5255
-
5256
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5257
- msgid "<pre>Title (Type)</pre>"
5258
- msgstr "<pre>Titel (Type)</pre>"
5259
-
5260
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5261
- msgid "You need to specify the title of the form before creating it"
5262
- msgstr "Sie müssen dem Formular einen Titel geben, bevor Sie es anlegen können."
5263
-
5264
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5265
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5266
- msgid "Registration Form"
5267
- msgstr "Registrierungsformular"
5268
-
5269
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5270
- msgid "Add new Registration Form"
5271
- msgstr "Neues Registrierungsformular hinzufügen"
5272
-
5273
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5274
- msgid "Edit the Registration Forms"
5275
- msgstr "Anmeldeformulare bearbeiten"
5276
-
5277
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5278
- msgid "New Registration Form"
5279
- msgstr "Neues Registrierungsformular"
5280
-
5281
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5282
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5283
- msgid "Registration Forms"
5284
- msgstr "Registrierungsformulare"
5285
-
5286
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5287
- msgid "View the Registration Form"
5288
- msgstr "Registrierungsformular ansehen"
5289
-
5290
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5291
- msgid "Search the Registration Forms"
5292
- msgstr "Registrierungsformulare durchsuchen"
5293
-
5294
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5295
- msgid "No Registration Form found"
5296
- msgstr "Kein Registrierungsformular gefunden"
5297
-
5298
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5299
- msgid "No Registration Forms found in trash"
5300
- msgstr "Keine Registrierungsformulare wurden im Papierkorb gefunden"
5301
-
5302
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5303
- msgid "Default Role"
5304
- msgstr "Standardrolle"
5305
-
5306
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5307
- msgid "Set Role"
5308
- msgstr "Rolle einstellen"
5309
-
5310
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5311
- msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5312
- msgstr "Wähle aus, welche Rolle ein Benutzer haben sollte, nachdem er sich registriert hat.<br/> Falls nicht angegeben, wird standardmäßig die Rolle aus den WordPress-Einstellungen gesetzt. "
5313
-
5314
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5315
- msgid "Automatically Log In"
5316
- msgstr "Automatisch einloggen"
5317
-
5318
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5319
- msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5320
- msgstr "Ob man sich direkt automatisch als den neu registrierten Benutzer anmelden soll oder nicht.<br/> Funktioniert nur auf einzelnen Seiten ohne dass die Features \"Admin Approval\" und \"E-Mail-Bestätigung\" aktiviert sind.<br/>Achtung: Caching des Registrierungsformulars bricht die automatische Anmeldung."
5321
-
5322
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5323
- msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5324
- msgstr "Gib die URL der Seite ein, auf der die Benutzer nach der Registrierung mit diesem Formular umgeleitet werden sollen.<br/> Verwende dabei folgendes Format: http://www.meineseite.com"
5325
-
5326
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5327
- msgid "After Registration..."
5328
- msgstr "Nach der Registrierung..."
5329
-
5330
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5331
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5332
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5333
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5334
- msgid "Search Users by All Fields"
5335
- msgstr "Suche Benutzer über alle Felder"
5336
-
5337
- #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5338
- msgid "Add new User Listing"
5339
- msgstr "Neue Benutzerliste hinzufügen"
5340
-
5341
- #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5342
- msgid "Edit the User Listing"
5343
- msgstr "Benutzerliste bearbeiten"
5344
-
5345
- #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5346
- msgid "New User Listing"
5347
- msgstr "Neue Benutzerliste"
5348
-
5349
- #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5350
- msgid "View the User Listing"
5351
- msgstr "Benutzerliste anzeigen"
5352
-
5353
- #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5354
- msgid "Search the User Listing"
5355
- msgstr "Benutzerliste durchsuchen"
5356
-
5357
- #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5358
- msgid "No User Listing found"
5359
- msgstr "Keine Benutzereinträge gefunden"
5360
-
5361
- #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5362
- msgid "No User Listing found in trash"
5363
- msgstr "Keine Benutzerliste im Papierkorb gefunden"
5364
-
5365
- #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5366
- msgid "Display name as"
5367
- msgstr "Name anzeigen als"
5368
-
5369
- #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5370
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5371
- msgid "Registration Date"
5372
- msgstr "Registrierungsdatum"
5373
-
5374
- #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5375
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5376
- msgid "Number of Posts"
5377
- msgstr "Beitragsanzahl"
5378
-
5379
- #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5380
- msgid "More Info"
5381
- msgstr "Mehr Info"
5382
-
5383
- #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5384
- msgid "More Info Url"
5385
- msgstr "Url für weitere Informationen"
5386
-
5387
- #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5388
- msgid "Avatar or Gravatar"
5389
- msgstr "Profilbild oder Gravatar"
5390
-
5391
- #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5392
- #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5393
- msgid "Extra Functions"
5394
- msgstr "Zusatzfunktionen"
5395
-
5396
- #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5397
- msgid "Pagination"
5398
- msgstr "Pagination"
5399
-
5400
- #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5401
- msgid "Search all Fields"
5402
- msgstr "Alle Felder durchsuchen"
5403
-
5404
- #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5405
- msgid "Go Back Link"
5406
- msgstr "\"Zurück\"-Link"
5407
-
5408
- #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5409
- msgid "All-userlisting Template"
5410
- msgstr "Vorlage für globale Benutzerliste"
5411
-
5412
- #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5413
- msgid "Single-userlisting Template"
5414
- msgstr "Vorlage für Einzelbenutzerliste"
5415
-
5416
- #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5417
- msgid "First/Lastname"
5418
- msgstr "Vor- / Nachname"
5419
-
5420
- #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5421
- #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5422
- msgid "Sign-up Date"
5423
- msgstr "Anmeldungsdatum"
5424
-
5425
- #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5426
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5427
- msgid "Display Name"
5428
- msgstr "Anzeigename"
5429
-
5430
- #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5431
- #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5432
- msgid "Posts"
5433
- msgstr "Beiträge"
5434
-
5435
- #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5436
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5437
- msgid "Aim"
5438
- msgstr "Aim"
5439
-
5440
- #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5441
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5442
- msgid "Yim"
5443
- msgstr "Yim"
5444
-
5445
- #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5446
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5447
- msgid "Jabber"
5448
- msgstr "Jabber"
5449
-
5450
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5451
- msgid "Click here to see more information about this user"
5452
- msgstr "Klicke hier für weitere Informationen über diesen Benutzer"
5453
-
5454
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5455
- msgid "More..."
5456
- msgstr "Mehr..."
5457
-
5458
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5459
- msgid "Click here to see more information about this user."
5460
- msgstr "Klicke hier für weitere Informationen über diesen Benutzer "
5461
-
5462
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5463
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5464
- msgid "Click here to go back"
5465
- msgstr "Klicke hier, um zurück zu gehen"
5466
-
5467
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5468
- msgid "Back"
5469
- msgstr "Zurück"
5470
-
5471
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5472
- msgid "&laquo;&laquo; First"
5473
- msgstr "&laquo;&laquo; Anfang"
5474
-
5475
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5476
- msgid "&laquo; Prev"
5477
- msgstr "&laquo; Zurück"
5478
-
5479
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5480
- msgid "Next &raquo; "
5481
- msgstr "Nächste Seite &raquo; "
5482
-
5483
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5484
- msgid "Last &raquo;&raquo;"
5485
- msgstr "Ende &raquo;&raquo;"
5486
-
5487
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5488
- msgid "You don't have any pagination settings on this userlisting!"
5489
- msgstr "Sie haben keine Paginations-Einstellungen für diese Benutzerliste getätigt!"
5490
-
5491
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5492
- msgid "Search"
5493
- msgstr "Suchen"
5494
-
5495
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5496
- msgid "Clear Results"
5497
- msgstr "Ergebnisse löschen"
5498
-
5499
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5500
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5501
- msgid "Extra shortcode parameters"
5502
- msgstr "Zusätzliche Shortcode-Parameter"
5503
-
5504
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5505
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5506
- msgstr "Anzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld haben"
5507
-
5508
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5509
- msgid "Example:"
5510
- msgstr "Beispiel:"
5511
-
5512
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5513
- msgid "Remember though, that the field-value combination must exist in the database."
5514
- msgstr "Denken Sie daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss."
5515
-
5516
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5517
- msgid "Random (very slow on large databases > 10K user)"
5518
- msgstr "Random (sehr langsam auf große Datenbanken > 10K Benutzer)"
5519
-
5520
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5521
- msgid "Roles to Display"
5522
- msgstr "Rollen anzeigen"
5523
-
5524
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5525
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5526
- msgstr "Beschränken Sie die Benutzerlisten nur für diese ausgewählten Rollen <br/> Wenn nicht angegeben, wird standardmäßig auf allen vorhandenen Rollen die Beschränkung gesetzt"
5527
-
5528
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5529
- msgid "Number of Users/Page"
5530
- msgstr "Anzahl Benutzer/Seite"
5531
-
5532
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5533
- msgid "Default Sorting Criteria"
5534
- msgstr "Standard-Sortierkriterien"
5535
-
5536
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5537
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5538
- msgstr "Festlegen der Standard-Sortierungskriterien <br/> Sie können temporär für jede neue Sitzung geändert werden."
5539
-
5540
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5541
- msgid "Default Sorting Order"
5542
- msgstr "Standard-Sortierreihenfolge"
5543
-
5544
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5545
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5546
- msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
5547
-
5548
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5549
- msgid "Avatar Size (All-userlisting)"
5550
- msgstr "Profilbild-Größe (alle Benutzereinträge)"
5551
-
5552
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5553
- msgid "Set the avatar size on the all-userlisting only"
5554
- msgstr "Legen Sie die Profilbildgröße für alle Benutzer-Listen fest."
5555
-
5556
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5557
- msgid "Avatar Size (Single-userlisting)"
5558
- msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)"
5559
-
5560
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5561
- msgid "Set the avatar size on the single-userlisting only"
5562
- msgstr "Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)"
5563
-
5564
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5565
- msgid "Visible only to logged in users?"
5566
- msgstr "Nur für angemeldete Benutzer sichtbar?"
5567
-
5568
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5569
- msgid "The userlisting will only be visible only to the logged in users"
5570
- msgstr "Die Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein"
5571
-
5572
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5573
- msgid "Visible to following Roles"
5574
- msgstr "Für folgende Rollen sichtbar"
5575
-
5576
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5577
- msgid "The userlisting will only be visible to the following roles"
5578
- msgstr " Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein."
5579
-
5580
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5581
- msgid "Userlisting Settings"
5582
- msgstr "Einstellungen für Benutzerliste"
5583
-
5584
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5585
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5586
- msgstr "Sie müssen die Benutzerlisten-Funktion innerhalb des Tabs \"Module\" aktivieren!"
5587
-
5588
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5589
- msgid "You can find it in the Profile Builder menu."
5590
- msgstr "Sie finden es im Menü vom Profile Builder"
5591
-
5592
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5593
- msgid "No results found!"
 
 
 
 
 
 
 
 
 
5594
  msgstr "Es wurden keine Ergebnisse gefunden!"
1
+ # Translation of Profile Builder in German
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-11-13 12:34:03+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: profile-builder-2.0/admin/general-settings.php:154
14
+ msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
15
+ msgstr "Du kannst über %1$Benutzer > Rollen Editor %2$s Benutzerrollen hinzufügen/bearbeiten."
16
+
17
+ #: profile-builder-2.0/admin/general-settings.php:146
18
+ msgid "\"Roles Editor\" Activated:"
19
+ msgstr "\"Rollen Editor\" aktiviert:"
20
+
21
+ #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
22
+ msgid "M j, Y @ G:i"
23
+ msgstr "M j, Y @ G:i"
24
+
25
+ #: profile-builder-2.0/front-end/recover.php:117
26
+ msgid "Please enter your email address."
27
+ msgstr "Bitte gib deine Emailadresse ein."
28
+
29
+ #: profile-builder-2.0/admin/manage-fields.php:127
30
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
31
+ msgstr "Gib das Format an, das in der Datumsauswahl angezeigt werden soll. Gültige Optionen: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>Vorgabe, wenn nicht anders gewählt: mm/dd/yy"
32
+
33
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
34
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
35
+ msgstr "Einzelne Umleitungen in Shortcodes definiert; der <strong><em>Redirect_priority = \"top\"</em></strong> Parameter kann in jedem Shortcode hinzugefügt werden, dann haben die Shortcode Umleitungen Vorrang vor allen anderen Umleitungen."
36
+
37
+ #: profile-builder-2.0/admin/manage-fields.php:1217
38
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
39
+ msgstr "Wenn du verschiedene Felder in den Anmelde- und Profilbearbeitungs-Formularen verwenden möchtest, benutze bitte die Mehrfach-Registrierungs und Profilbearbeitungsformular Module,"
40
+
41
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
42
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
43
+ msgstr "Umleitungseinstellungen für Mehrfache Anmelde- und Profilbearbeitungsformulare"
44
+
45
+ #: profile-builder-2.0/admin/register-version.php:251
46
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
47
+ msgstr "<p>Deine <strong>Profil-Builder</strong> -Lizenz läuft am %5$s ab.<br>Bitte %1$serneuere deine Lizenz %2$s um Zugriff auf Produkt-Downloads, automatische Updates und Support zu erhalten. %3$sJetzt erneuern und 40% Rabatt erhalten! %4$s %6$sAusblenden%7$s</p>"
48
+
49
+ #: profile-builder-2.0/admin/register-version.php:246
50
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
51
+ msgstr "<p>Deine <strong>Profil-Builder</strong> -Lizenz ist abgelaufen.<br>Bitte %1$serneuere deine Lizenz %2$s um Zugriff auf Produkt-Downloads, automatische Updates und Support zu erhalten. %3$sJetzt erneuern und 40% Rabatt erhalten! %4$s %6$sAusblenden%7$s</p>"
52
+
53
+ #: profile-builder-2.0/front-end/recover.php:159
54
+ msgid "You are already logged in. You can change your password on the edit profile form."
55
+ msgstr "Du bist bereits angemeldet. Du kannst das Kennwort in dem \"Profil bearbeiten\" Formular ändern."
56
+
57
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
58
+ msgid "Your site url will look like this:<br>"
59
+ msgstr "Dein Seiten URL wird so aussehen:<br />"
60
+
61
+ #: profile-builder-2.0/features/functions.php:909
62
+ msgid "<br><br>You can visit your site at "
63
+ msgstr "<br><br>Du kannst seine Webseite hier anschauen: "
64
+
65
+ #: profile-builder-2.0/features/functions.php:896
66
+ msgid "<br><br>Also, you will be able to visit your site at "
67
+ msgstr "<br><br>Du kannst deine Webseite hier anschauen:"
68
+
69
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
70
+ msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
71
+ msgstr "Datenschutz: Ich möchte, dass meine Website in Suchmaschinen und in öffentlichen Verzeichnissen rund um dieses Netzwerk angezeigt wird."
72
+
73
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
74
+ msgid "Site Title"
75
+ msgstr "Webseiten Titel"
76
+
77
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
78
+ msgid "Site URL slug"
79
+ msgstr "Webseiten URL Slug"
80
+
81
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
82
+ msgid "Yes, I'd like to create a new site"
83
+ msgstr "Ja, ich möchte eine neue Seite erstellen"
84
+
85
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
86
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:118
87
+ msgid "Blog URL"
88
+ msgstr "Blog URL"
89
+
90
+ #: profile-builder-2.0/admin/admin-functions.php:44
91
+ msgid "Blog Details - only appears on the Registration page!"
92
+ msgstr "Blog Details - wird ausschließlich auf der Registrierungseite angezeigt!"
93
+
94
+ #: profile-builder-2.0/admin/manage-fields.php:222
95
+ msgid "Blog Details"
96
+ msgstr "Blog Details"
97
+
98
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:239
99
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
100
+ msgstr "Erlaube deinen Benutzern, <strong>bezahlte Konten mit Profil Builder /strong> zu haben. %1$sFinde heraus, wie>%2$s %3$sAusblenden %4$s"
101
+
102
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
103
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
104
+ msgstr "Willkommen bei %1$s!<br/><br/><br/>Ihr Benutzername lautet:%2$s"
105
+
106
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
+ msgid "View Map"
108
+ msgstr "Karte ansehen"
109
+
110
+ #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
111
+ #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
112
+ #: pb-add-on-woocommerce/index.php:493
113
+ msgid "Address line 2"
114
+ msgstr "Adresse Linie 2"
115
+
116
+ #: pb-add-on-woocommerce/index.php:256
117
+ msgid "Billing Fields"
118
+ msgstr "Rechnungsfelder"
119
+
120
+ #: pb-add-on-woocommerce/index.php:256
121
+ msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
122
+ msgstr "Wählen Sie, welche WooCommerce Rechnungs-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein sollten"
123
+
124
+ #: pb-add-on-woocommerce/index.php:257
125
+ msgid "Billing Fields Order"
126
+ msgstr "Rechnungsfelder-Sortierung"
127
+
128
+ #: pb-add-on-woocommerce/index.php:257
129
+ msgid "Save the billing fields order from the billing fields checkboxes"
130
+ msgstr "Sichere die Rechnungsfelder-Reihenfolge von den Rechnungsfelder-Checkboxen"
131
+
132
+ #: pb-add-on-woocommerce/index.php:258
133
+ msgid "Billing Fields Name"
134
+ msgstr "Rechnungsfelder-Name"
135
+
136
+ #: pb-add-on-woocommerce/index.php:258
137
+ msgid "Save the billing fields names"
138
+ msgstr "Die Rechnungsfelder-Namen sichern"
139
+
140
+ #: pb-add-on-woocommerce/index.php:275
141
+ msgid "Shipping Fields"
142
+ msgstr "Versand Felder"
143
+
144
+ #: pb-add-on-woocommerce/index.php:275
145
+ msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
146
+ msgstr "Wählen Sie, welche WooCommerce Versand-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein sollten"
147
+
148
+ #: pb-add-on-woocommerce/index.php:276
149
+ msgid "Shipping Fields Order"
150
+ msgstr "Versandfelder-Sortierung"
151
+
152
+ #: pb-add-on-woocommerce/index.php:276
153
+ msgid "Save the shipping fields order from the billing fields checkboxes"
154
+ msgstr "Sichere die Versandfelder-Reihenfolge von den Rechnungsfelder-Checkboxen"
155
+
156
+ #: pb-add-on-woocommerce/index.php:277
157
+ msgid "Shipping Fields Name"
158
+ msgstr "Versandfelder-Name"
159
+
160
+ #: pb-add-on-woocommerce/index.php:277
161
+ msgid "Save the shipping fields names"
162
+ msgstr "DIe Verrsandfelder-Namen sichern"
163
+
164
+ #: pb-add-on-woocommerce/index.php:305
165
+ msgid "Field Name"
166
+ msgstr "Feldname"
167
+
168
+ #: pb-add-on-woocommerce/index.php:369
169
+ msgid "Click to edit "
170
+ msgstr "Bearbeiten..."
171
+
172
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
173
+ msgid "is not a valid phone number."
174
+ msgstr "ist keine gültige Telefonnummer"
175
+
176
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
177
+ msgid "is not a number."
178
+ msgstr "ist keine Zahl"
179
+
180
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
181
+ msgid "must be a multiplier of "
182
+ msgstr "muss eine Vielzahl sein von"
183
+
184
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
185
+ msgid "must be a greater than or equal to "
186
+ msgstr "Muss größer oder gleich sein als"
187
+
188
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
189
+ msgid "must be less than or equal to "
190
+ msgstr "muss weniger oder gleich sein als"
191
+
192
+ #: profile-builder-2.0/admin/add-ons.php:103
193
+ msgid "Available in Hobbyist and Pro Versions"
194
+ msgstr "Verfügbar in den Versionen Hobbyist und Pro"
195
+
196
+ #: profile-builder-2.0/admin/add-ons.php:105
197
+ msgid "Available in All Versions"
198
+ msgstr "In allen Versionen verfügbar"
199
+
200
+ #: profile-builder-2.0/admin/add-ons.php:148
201
+ msgid "Learn More"
202
+ msgstr "Weitere Informationen"
203
+
204
+ #: profile-builder-2.0/admin/basic-info.php:99
205
+ msgid "Timepicker"
206
+ msgstr "Zeit wählen"
207
+
208
+ #: profile-builder-2.0/admin/basic-info.php:100
209
+ msgid "Colorpicker"
210
+ msgstr "Farbe wählen"
211
+
212
+ #: profile-builder-2.0/admin/basic-info.php:103
213
+ msgid "Currency Select"
214
+ msgstr "Währung wählen"
215
+
216
+ #: profile-builder-2.0/admin/basic-info.php:109
217
+ msgid "Number"
218
+ msgstr "Nummer"
219
+
220
+ #: profile-builder-2.0/admin/basic-info.php:114
221
+ msgid "Validation"
222
+ msgstr "Validierung"
223
+
224
+ #: profile-builder-2.0/admin/basic-info.php:115
225
+ msgid "Map"
226
+ msgstr "Karte"
227
+
228
+ #: profile-builder-2.0/admin/basic-info.php:116
229
+ msgid "HTML"
230
+ msgstr "HTML"
231
+
232
+ #: profile-builder-2.0/admin/basic-info.php:162
233
+ #: profile-builder-2.0/modules/modules.php:117
234
+ msgid "Repeater Fields"
235
+ msgstr "Wiederholungsfelder"
236
+
237
+ #: profile-builder-2.0/admin/basic-info.php:163
238
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
239
+ msgstr "Erstelle eine sich wiederholende Gruppe von Feldern in Registrier- und Profil-Formularen. Beschränke die Anzahl der Gruppen für jede Benutzerrolle."
240
+
241
+ #: profile-builder-2.0/admin/general-settings.php:59
242
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
243
+ msgstr "Das funktioniert nur mit Front-end Formularen. Wird empfohlen, um Standard Wordpress Registrierungen mittels des \"Custom Redirects\" zu einer Profile Builder Registrierung umzuleiten."
244
+
245
+ #: profile-builder-2.0/admin/manage-fields.php:120
246
+ msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
247
+ msgstr "Benutze dieses in Verbindung mit WordPress Funktionen, um den Wert auf der von dir gewählten Seite anzuzeigen.<br/>. Automatisch ausgefüllt, aber in einigen Fällen bearbeitbar (dann muss es einzigartig sein)<br/>Das Ändern kann bei großen Benutzerzahlen sehr lange dauern."
248
+
249
+ #: profile-builder-2.0/admin/manage-fields.php:143
250
+ msgid "Show Currency Symbol"
251
+ msgstr "Währungssymbol anzeigen"
252
+
253
+ #: profile-builder-2.0/admin/manage-fields.php:143
254
+ msgid "Whether the currency symbol should be displayed after the currency name in the select option."
255
+ msgstr "Ob das Währungssymbol nach dem Währungsnamen in der select-Option angezeigt werden soll."
256
+
257
+ #: profile-builder-2.0/admin/manage-fields.php:144
258
+ msgid "Show Post Type"
259
+ msgstr "Beitragstyp anzeigen"
260
+
261
+ #: profile-builder-2.0/admin/manage-fields.php:144
262
+ msgid "Posts from what post type will be displayed in the select."
263
+ msgstr "Diese Beitragstypen werden in der Auswahl angezeigt."
264
+
265
+ #: profile-builder-2.0/admin/manage-fields.php:145
266
+ msgid "Allowable Values"
267
+ msgstr "Erlaubte Werte"
268
+
269
+ #: profile-builder-2.0/admin/manage-fields.php:145
270
+ msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
271
+ msgstr "Geben Sie eine mit Kommas getrennte Liste von zulässigen Werten an. Nur wenn der Nutzer bei der Registrierung einen dieser Werte angibt wird die Registrierung durchgeführt."
272
+
273
+ #: profile-builder-2.0/admin/manage-fields.php:146
274
+ msgid "Error Message"
275
+ msgstr "Fehlermeldung"
276
+
277
+ #: profile-builder-2.0/admin/manage-fields.php:146
278
+ msgid "Set a custom error message that will be displayed to the user."
279
+ msgstr "Eigene Fehlermeldung angeben, die dem Nutzer angezeigt wird."
280
+
281
+ #: profile-builder-2.0/admin/manage-fields.php:147
282
+ msgid "Time Format"
283
+ msgstr "Zeitformat"
284
+
285
+ #: profile-builder-2.0/admin/manage-fields.php:147
286
+ msgid "Specify the time format."
287
+ msgstr "Zeitformat festlegen."
288
+
289
+ #: profile-builder-2.0/admin/manage-fields.php:148
290
+ msgid "Google Maps API Key"
291
+ msgstr "Google Maps API Schlüssel"
292
+
293
+ #: profile-builder-2.0/admin/manage-fields.php:148
294
+ msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
295
+ msgstr "Google Maps API Schlüssel angeben ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">API Schlüssel generieren</a> ). Falls mehr als ein Kartenfeld in einem Formular vorhanden ist, wird der API Schlüssel der ersten Karte benutzt."
296
+
297
+ #: profile-builder-2.0/admin/manage-fields.php:149
298
+ msgid "Default Latitude"
299
+ msgstr "Standard Breitengrad (Latitude)"
300
+
301
+ #: profile-builder-2.0/admin/manage-fields.php:149
302
+ msgid "The latitude at which the map should be displayed when no pins are attached."
303
+ msgstr "Auf der Karte angezeigter Breitengrad (Latitude) falls keine Pins vorhanden sind."
304
+
305
+ #: profile-builder-2.0/admin/manage-fields.php:150
306
+ msgid "Default Longitude"
307
+ msgstr "Standard Längengrad (Longitude)"
308
+
309
+ #: profile-builder-2.0/admin/manage-fields.php:150
310
+ msgid "The longitude at which the map should be displayed when no pins are attached."
311
+ msgstr "Auf der Karte angezeigter Längengrad (Longitude) falls keine Pins vorhanden sind."
312
+
313
+ #: profile-builder-2.0/admin/manage-fields.php:151
314
+ msgid "Default Zoom Level"
315
+ msgstr "Standard Zoomstufe"
316
+
317
+ #: profile-builder-2.0/admin/manage-fields.php:151
318
+ msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
319
+ msgstr "Fügen Sie eine Zahl von 0 bis 19 hinzu. Je höher die Zahl, desto höher der Vergrößerung."
320
+
321
+ #: profile-builder-2.0/admin/manage-fields.php:152
322
+ msgid "Map Height"
323
+ msgstr "Kartenhöhe"
324
+
325
+ #: profile-builder-2.0/admin/manage-fields.php:152
326
+ msgid "The height of the map."
327
+ msgstr "Die Höhe der anzuzeigenden Karte"
328
+
329
+ #: profile-builder-2.0/admin/manage-fields.php:154
330
+ msgid "HTML Content"
331
+ msgstr "HTML Inhalt"
332
+
333
+ #: profile-builder-2.0/admin/manage-fields.php:154
334
+ msgid "Add your HTML (or text) content"
335
+ msgstr "Füge Deinen HTML (oder Text) Inhalt hinzu"
336
+
337
+ #: profile-builder-2.0/admin/manage-fields.php:155
338
+ msgid "Phone Format"
339
+ msgstr "Format der Telefonnummer"
340
+
341
+ #: profile-builder-2.0/admin/manage-fields.php:155
342
+ msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
343
+ msgstr "Sie können folgendes nutzen: # für Nummern, Klammern ( ), - Zeichen, + Zeichen, Punkt . und Leerzeichen."
344
+
345
+ #: profile-builder-2.0/admin/manage-fields.php:155
346
+ msgid "Eg. (###) ###-####"
347
+ msgstr "z.B. (###) ####-####"
348
+
349
+ #: profile-builder-2.0/admin/manage-fields.php:155
350
+ msgid "Empty field won't check for correct phone number."
351
+ msgstr "Leeres Feld kann nicht auf eine richtige Telefonnummer geprüft werden."
352
+
353
+ #: profile-builder-2.0/admin/manage-fields.php:156
354
+ msgid "Heading Tag"
355
+ msgstr "Überschriften Tag"
356
+
357
+ #: profile-builder-2.0/admin/manage-fields.php:156
358
+ msgid "Change heading field size on front-end forms"
359
+ msgstr "Ändern der Überschrift Feldgröße auf Front-End-Formularen"
360
+
361
+ #: profile-builder-2.0/admin/manage-fields.php:157
362
+ msgid "Min Number Value"
363
+ msgstr "Minimaler Zahlenwert"
364
+
365
+ #: profile-builder-2.0/admin/manage-fields.php:157
366
+ msgid "Min allowed number value (0 to allow only positive numbers)"
367
+ msgstr "Minimal erlaubter Zahlenwert (0, um nur positive Zahlen zu erlauben)"
368
+
369
+ #: profile-builder-2.0/admin/manage-fields.php:157
370
+ msgid "Leave it empty for no min value"
371
+ msgstr "Leer lassen für keinen minimalen Wert"
372
+
373
+ #: profile-builder-2.0/admin/manage-fields.php:158
374
+ msgid "Max Number Value"
375
+ msgstr "Maximal erlaubter Zahlenwert"
376
+
377
+ #: profile-builder-2.0/admin/manage-fields.php:158
378
+ msgid "Max allowed number value (0 to allow only negative numbers)"
379
+ msgstr "Maximal erlaubter Zahlenwert (0, um nur negative Zahlen zu erlauben)"
380
+
381
+ #: profile-builder-2.0/admin/manage-fields.php:158
382
+ msgid "Leave it empty for no max value"
383
+ msgstr "Leer lassen für keinen maximalen Wert"
384
+
385
+ #: profile-builder-2.0/admin/manage-fields.php:159
386
+ msgid "Number Step Value"
387
+ msgstr "Zahlenschrittwert"
388
+
389
+ #: profile-builder-2.0/admin/manage-fields.php:159
390
+ msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
391
+ msgstr "Schrittwert 1 erlaubt nur ganze Zahlen, 0.1 erlaubt Zahlen und Nummern mit einer Dezimalstelle"
392
+
393
+ #: profile-builder-2.0/admin/manage-fields.php:159
394
+ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
395
+ msgstr "Um mehrere Dezimalstellen zu erlauben, benutze z.B. 0.01 (für 2 Dezimalstellen) usw."
396
+
397
+ #: profile-builder-2.0/admin/manage-fields.php:159
398
+ msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
399
+ msgstr "Du kannst auch den Schrittwert benutzen, um die Intervalle der erlaubten Zahlen festzulegen (z.B. Schrittwert 2 wird nur -4, -2, 0, 2 usw erlauben)"
400
+
401
+ #: profile-builder-2.0/admin/manage-fields.php:159
402
+ msgid "Leave it empty for no restriction"
403
+ msgstr "Leer lassen für keine Beschränkungen"
404
+
405
+ #: profile-builder-2.0/admin/manage-fields.php:564
406
+ msgid "Albania Lek"
407
+ msgstr "Albania Lek"
408
+
409
+ #: profile-builder-2.0/admin/manage-fields.php:565
410
+ msgid "Afghanistan Afghani"
411
+ msgstr "Afghanistan Afghani"
412
+
413
+ #: profile-builder-2.0/admin/manage-fields.php:566
414
+ msgid "Argentina Peso"
415
+ msgstr "Argentina Peso"
416
+
417
+ #: profile-builder-2.0/admin/manage-fields.php:567
418
+ msgid "Aruba Guilder"
419
+ msgstr "Aruba Guilder"
420
+
421
+ #: profile-builder-2.0/admin/manage-fields.php:568
422
+ msgid "Australia Dollar"
423
+ msgstr "Australia Dollar"
424
+
425
+ #: profile-builder-2.0/admin/manage-fields.php:569
426
+ msgid "Azerbaijan New Manat"
427
+ msgstr "Azerbaijan New Manat"
428
+
429
+ #: profile-builder-2.0/admin/manage-fields.php:570
430
+ msgid "Bahamas Dollar"
431
+ msgstr "Bahamas Dollar"
432
+
433
+ #: profile-builder-2.0/admin/manage-fields.php:571
434
+ msgid "Barbados Dollar"
435
+ msgstr "Barbados Dollar"
436
+
437
+ #: profile-builder-2.0/admin/manage-fields.php:572
438
+ msgid "Bangladeshi taka"
439
+ msgstr "Bangladeshi taka"
440
+
441
+ #: profile-builder-2.0/admin/manage-fields.php:573
442
+ msgid "Belarus Ruble"
443
+ msgstr "Belarus Ruble"
444
+
445
+ #: profile-builder-2.0/admin/manage-fields.php:574
446
+ msgid "Belize Dollar"
447
+ msgstr "Belize Dollar"
448
+
449
+ #: profile-builder-2.0/admin/manage-fields.php:575
450
+ msgid "Bermuda Dollar"
451
+ msgstr "Bermuda Dollar"
452
+
453
+ #: profile-builder-2.0/admin/manage-fields.php:576
454
+ msgid "Bolivia Boliviano"
455
+ msgstr "Bolivien Boliviano"
456
+
457
+ #: profile-builder-2.0/admin/manage-fields.php:577
458
+ msgid "Bosnia and Herzegovina Convertible Marka"
459
+ msgstr "Bosnisch-Herzegowinische Konvertible Mark"
460
+
461
+ #: profile-builder-2.0/admin/manage-fields.php:578
462
+ msgid "Botswana Pula"
463
+ msgstr "Botswana Pula"
464
+
465
+ #: profile-builder-2.0/admin/manage-fields.php:579
466
+ msgid "Bulgaria Lev"
467
+ msgstr "Bulgaria Lev"
468
+
469
+ #: profile-builder-2.0/admin/manage-fields.php:580
470
+ msgid "Brazil Real"
471
+ msgstr "Brazil Real"
472
+
473
+ #: profile-builder-2.0/admin/manage-fields.php:581
474
+ msgid "Brunei Darussalam Dollar"
475
+ msgstr "Brunei Darussalam Dollar"
476
+
477
+ #: profile-builder-2.0/admin/manage-fields.php:582
478
+ msgid "Cambodia Riel"
479
+ msgstr "Cambodia Riel"
480
+
481
+ #: profile-builder-2.0/admin/manage-fields.php:583
482
+ msgid "Canada Dollar"
483
+ msgstr "Canada Dollar"
484
+
485
+ #: profile-builder-2.0/admin/manage-fields.php:584
486
+ msgid "Cayman Islands Dollar"
487
+ msgstr "Cayman Islands Dollar"
488
+
489
+ #: profile-builder-2.0/admin/manage-fields.php:585
490
+ msgid "Chile Peso"
491
+ msgstr "Chile Peso"
492
+
493
+ #: profile-builder-2.0/admin/manage-fields.php:586
494
+ msgid "China Yuan Renminbi"
495
+ msgstr "China Yuan Renminbi"
496
+
497
+ #: profile-builder-2.0/admin/manage-fields.php:587
498
+ msgid "Colombia Peso"
499
+ msgstr "Colombia Peso"
500
+
501
+ #: profile-builder-2.0/admin/manage-fields.php:588
502
+ msgid "Costa Rica Colon"
503
+ msgstr "Costa Rica Colon"
504
+
505
+ #: profile-builder-2.0/admin/manage-fields.php:589
506
+ msgid "Croatia Kuna"
507
+ msgstr "Croatia Kuna"
508
+
509
+ #: profile-builder-2.0/admin/manage-fields.php:590
510
+ msgid "Cuba Peso"
511
+ msgstr "Cuba Peso"
512
+
513
+ #: profile-builder-2.0/admin/manage-fields.php:591
514
+ msgid "Czech Republic Koruna"
515
+ msgstr "Czech Republic Koruna"
516
+
517
+ #: profile-builder-2.0/admin/manage-fields.php:592
518
+ msgid "Denmark Krone"
519
+ msgstr "Denmark Krone"
520
+
521
+ #: profile-builder-2.0/admin/manage-fields.php:593
522
+ msgid "Dominican Republic Peso"
523
+ msgstr "Dominican Republic Peso"
524
+
525
+ #: profile-builder-2.0/admin/manage-fields.php:594
526
+ msgid "East Caribbean Dollar"
527
+ msgstr "East Caribbean Dollar"
528
+
529
+ #: profile-builder-2.0/admin/manage-fields.php:595
530
+ msgid "Egypt Pound"
531
+ msgstr "Egypt Pound"
532
+
533
+ #: profile-builder-2.0/admin/manage-fields.php:596
534
+ msgid "El Salvador Colon"
535
+ msgstr "El Salvador Colon"
536
+
537
+ #: profile-builder-2.0/admin/manage-fields.php:597
538
+ msgid "Estonia Kroon"
539
+ msgstr "Estonia Kroon"
540
+
541
+ #: profile-builder-2.0/admin/manage-fields.php:598
542
+ msgid "Euro"
543
+ msgstr "Euro"
544
+
545
+ #: profile-builder-2.0/admin/manage-fields.php:599
546
+ msgid "Falkland Islands (Malvinas) Pound"
547
+ msgstr "Falkland Islands (Malvinas) Pound"
548
+
549
+ #: profile-builder-2.0/admin/manage-fields.php:600
550
+ msgid "Fiji Dollar"
551
+ msgstr "Fiji Dollar"
552
+
553
+ #: profile-builder-2.0/admin/manage-fields.php:601
554
+ msgid "Ghana Cedis"
555
+ msgstr "Ghana Cedis"
556
+
557
+ #: profile-builder-2.0/admin/manage-fields.php:602
558
+ msgid "Gibraltar Pound"
559
+ msgstr "Gibraltar Pound"
560
+
561
+ #: profile-builder-2.0/admin/manage-fields.php:603
562
+ msgid "Guatemala Quetzal"
563
+ msgstr "Guatemala Quetzal"
564
+
565
+ #: profile-builder-2.0/admin/manage-fields.php:604
566
+ msgid "Guernsey Pound"
567
+ msgstr "Guernsey Pound"
568
+
569
+ #: profile-builder-2.0/admin/manage-fields.php:605
570
+ msgid "Guyana Dollar"
571
+ msgstr "Guyana Dollar"
572
+
573
+ #: profile-builder-2.0/admin/manage-fields.php:606
574
+ msgid "Honduras Lempira"
575
+ msgstr "Honduras Lempira"
576
+
577
+ #: profile-builder-2.0/admin/manage-fields.php:607
578
+ msgid "Hong Kong Dollar"
579
+ msgstr "Hong Kong Dollar"
580
+
581
+ #: profile-builder-2.0/admin/manage-fields.php:608
582
+ msgid "Hungary Forint"
583
+ msgstr "Hungary Forint"
584
+
585
+ #: profile-builder-2.0/admin/manage-fields.php:609
586
+ msgid "Iceland Krona"
587
+ msgstr "Isländische Krone"
588
+
589
+ #: profile-builder-2.0/admin/manage-fields.php:610
590
+ msgid "India Rupee"
591
+ msgstr "India Rupee"
592
+
593
+ #: profile-builder-2.0/admin/manage-fields.php:611
594
+ msgid "Indonesia Rupiah"
595
+ msgstr "Indonesia Rupiah"
596
+
597
+ #: profile-builder-2.0/admin/manage-fields.php:612
598
+ msgid "Iran Rial"
599
+ msgstr "Iran Rial"
600
+
601
+ #: profile-builder-2.0/admin/manage-fields.php:613
602
+ msgid "Isle of Man Pound"
603
+ msgstr "Isle of Man Pound"
604
+
605
+ #: profile-builder-2.0/admin/manage-fields.php:614
606
+ msgid "Israel Shekel"
607
+ msgstr "Israel Shekel"
608
+
609
+ #: profile-builder-2.0/admin/manage-fields.php:615
610
+ msgid "Jamaica Dollar"
611
+ msgstr "Jamaica Dollar"
612
+
613
+ #: profile-builder-2.0/admin/manage-fields.php:616
614
+ msgid "Japan Yen"
615
+ msgstr "Japan Yen"
616
+
617
+ #: profile-builder-2.0/admin/manage-fields.php:617
618
+ msgid "Jersey Pound"
619
+ msgstr "Jersey Pound"
620
+
621
+ #: profile-builder-2.0/admin/manage-fields.php:618
622
+ msgid "Kazakhstan Tenge"
623
+ msgstr "Kazakhstan Tenge"
624
+
625
+ #: profile-builder-2.0/admin/manage-fields.php:619
626
+ msgid "Korea (North) Won"
627
+ msgstr "Korea (North) Won"
628
+
629
+ #: profile-builder-2.0/admin/manage-fields.php:620
630
+ msgid "Korea (South) Won"
631
+ msgstr "Korea (South) Won"
632
+
633
+ #: profile-builder-2.0/admin/manage-fields.php:621
634
+ msgid "Kyrgyzstan Som"
635
+ msgstr "Kyrgyzstan Som"
636
+
637
+ #: profile-builder-2.0/admin/manage-fields.php:622
638
+ msgid "Laos Kip"
639
+ msgstr "Laos Kip"
640
+
641
+ #: profile-builder-2.0/admin/manage-fields.php:623
642
+ msgid "Latvia Lat"
643
+ msgstr "Latvia Lat"
644
+
645
+ #: profile-builder-2.0/admin/manage-fields.php:624
646
+ msgid "Lebanon Pound"
647
+ msgstr "Lebanon Pound"
648
+
649
+ #: profile-builder-2.0/admin/manage-fields.php:625
650
+ msgid "Liberia Dollar"
651
+ msgstr "Liberia Dollar"
652
+
653
+ #: profile-builder-2.0/admin/manage-fields.php:626
654
+ msgid "Lithuania Litas"
655
+ msgstr "Lithuania Litas"
656
+
657
+ #: profile-builder-2.0/admin/manage-fields.php:627
658
+ msgid "Macedonia Denar"
659
+ msgstr "Macedonia Denar"
660
+
661
+ #: profile-builder-2.0/admin/manage-fields.php:628
662
+ msgid "Malaysia Ringgit"
663
+ msgstr "Malaysia Ringgit"
664
+
665
+ #: profile-builder-2.0/admin/manage-fields.php:629
666
+ msgid "Mauritius Rupee"
667
+ msgstr "Mauritius Rupee"
668
+
669
+ #: profile-builder-2.0/admin/manage-fields.php:630
670
+ msgid "Mexico Peso"
671
+ msgstr "Mexico Peso"
672
+
673
+ #: profile-builder-2.0/admin/manage-fields.php:631
674
+ msgid "Mongolia Tughrik"
675
+ msgstr "Mongolia Tughrik"
676
+
677
+ #: profile-builder-2.0/admin/manage-fields.php:632
678
+ msgid "Mozambique Metical"
679
+ msgstr "Mozambique Metical"
680
+
681
+ #: profile-builder-2.0/admin/manage-fields.php:633
682
+ msgid "Namibia Dollar"
683
+ msgstr "Namibia Dollar"
684
+
685
+ #: profile-builder-2.0/admin/manage-fields.php:634
686
+ msgid "Nepal Rupee"
687
+ msgstr "Nepal Rupee"
688
+
689
+ #: profile-builder-2.0/admin/manage-fields.php:635
690
+ msgid "Netherlands Antilles Guilder"
691
+ msgstr "Netherlands Antilles Guilder"
692
+
693
+ #: profile-builder-2.0/admin/manage-fields.php:636
694
+ msgid "New Zealand Dollar"
695
+ msgstr "New Zealand Dollar"
696
+
697
+ #: profile-builder-2.0/admin/manage-fields.php:637
698
+ msgid "Nicaragua Cordoba"
699
+ msgstr "Nicaragua Cordoba"
700
+
701
+ #: profile-builder-2.0/admin/manage-fields.php:638
702
+ msgid "Nigeria Naira"
703
+ msgstr "Nigeria Naira"
704
+
705
+ #: profile-builder-2.0/admin/manage-fields.php:639
706
+ msgid "Norway Krone"
707
+ msgstr "Norway Krone"
708
+
709
+ #: profile-builder-2.0/admin/manage-fields.php:640
710
+ msgid "Oman Rial"
711
+ msgstr "Oman Rial"
712
+
713
+ #: profile-builder-2.0/admin/manage-fields.php:641
714
+ msgid "Pakistan Rupee"
715
+ msgstr "Pakistan Rupee"
716
+
717
+ #: profile-builder-2.0/admin/manage-fields.php:642
718
+ msgid "Panama Balboa"
719
+ msgstr "Panama Balboa"
720
+
721
+ #: profile-builder-2.0/admin/manage-fields.php:643
722
+ msgid "Paraguay Guarani"
723
+ msgstr "Paraguay Guarani"
724
+
725
+ #: profile-builder-2.0/admin/manage-fields.php:644
726
+ msgid "Peru Nuevo Sol"
727
+ msgstr "Peru Nuevo Sol"
728
+
729
+ #: profile-builder-2.0/admin/manage-fields.php:645
730
+ msgid "Philippines Peso"
731
+ msgstr "Philippines Peso"
732
+
733
+ #: profile-builder-2.0/admin/manage-fields.php:646
734
+ msgid "Poland Zloty"
735
+ msgstr "Poland Zloty"
736
+
737
+ #: profile-builder-2.0/admin/manage-fields.php:647
738
+ msgid "Qatar Riyal"
739
+ msgstr "Qatar Riyal"
740
+
741
+ #: profile-builder-2.0/admin/manage-fields.php:648
742
+ msgid "Romania New Leu"
743
+ msgstr "Romania New Leu"
744
+
745
+ #: profile-builder-2.0/admin/manage-fields.php:649
746
+ msgid "Russia Ruble"
747
+ msgstr "Russia Ruble"
748
+
749
+ #: profile-builder-2.0/admin/manage-fields.php:650
750
+ msgid "Saint Helena Pound"
751
+ msgstr "Saint Helena Pound"
752
+
753
+ #: profile-builder-2.0/admin/manage-fields.php:651
754
+ msgid "Saudi Arabia Riyal"
755
+ msgstr "Saudi Arabia Riyal"
756
+
757
+ #: profile-builder-2.0/admin/manage-fields.php:652
758
+ msgid "Serbia Dinar"
759
+ msgstr "Serbia Dinar"
760
+
761
+ #: profile-builder-2.0/admin/manage-fields.php:653
762
+ msgid "Seychelles Rupee"
763
+ msgstr "Seychelles Rupee"
764
+
765
+ #: profile-builder-2.0/admin/manage-fields.php:654
766
+ msgid "Singapore Dollar"
767
+ msgstr "Singapore Dollar"
768
+
769
+ #: profile-builder-2.0/admin/manage-fields.php:655
770
+ msgid "Solomon Islands Dollar"
771
+ msgstr "Solomon Islands Dollar"
772
+
773
+ #: profile-builder-2.0/admin/manage-fields.php:656
774
+ msgid "Somalia Shilling"
775
+ msgstr "Somalia Shilling"
776
+
777
+ #: profile-builder-2.0/admin/manage-fields.php:657
778
+ msgid "South Africa Rand"
779
+ msgstr "South Africa Rand"
780
+
781
+ #: profile-builder-2.0/admin/manage-fields.php:658
782
+ msgid "Sri Lanka Rupee"
783
+ msgstr "Sri Lanka Rupee"
784
+
785
+ #: profile-builder-2.0/admin/manage-fields.php:659
786
+ msgid "Sweden Krona"
787
+ msgstr "Sweden Krona"
788
+
789
+ #: profile-builder-2.0/admin/manage-fields.php:660
790
+ msgid "Switzerland Franc"
791
+ msgstr "Switzerland Franc"
792
+
793
+ #: profile-builder-2.0/admin/manage-fields.php:661
794
+ msgid "Suriname Dollar"
795
+ msgstr "Suriname Dollar"
796
+
797
+ #: profile-builder-2.0/admin/manage-fields.php:662
798
+ msgid "Syria Pound"
799
+ msgstr "Syria Pound"
800
+
801
+ #: profile-builder-2.0/admin/manage-fields.php:663
802
+ msgid "Taiwan New Dollar"
803
+ msgstr "Taiwan New Dollar"
804
+
805
+ #: profile-builder-2.0/admin/manage-fields.php:664
806
+ msgid "Thailand Baht"
807
+ msgstr "Thailand Baht"
808
+
809
+ #: profile-builder-2.0/admin/manage-fields.php:665
810
+ msgid "Trinidad and Tobago Dollar"
811
+ msgstr "Trinidad and Tobago Dollar"
812
+
813
+ #: profile-builder-2.0/admin/manage-fields.php:666
814
+ #: profile-builder-2.0/admin/manage-fields.php:667
815
+ msgid "Turkey Lira"
816
+ msgstr "Turkey Lira"
817
+
818
+ #: profile-builder-2.0/admin/manage-fields.php:668
819
+ msgid "Tuvalu Dollar"
820
+ msgstr "Tuvalu Dollar"
821
+
822
+ #: profile-builder-2.0/admin/manage-fields.php:669
823
+ msgid "Ukraine Hryvna"
824
+ msgstr "Ukraine Hryvna"
825
+
826
+ #: profile-builder-2.0/admin/manage-fields.php:670
827
+ msgid "United Kingdom Pound"
828
+ msgstr "United Kingdom Pound"
829
+
830
+ #: profile-builder-2.0/admin/manage-fields.php:671
831
+ msgid "Uganda Shilling"
832
+ msgstr "Uganda Shilling"
833
+
834
+ #: profile-builder-2.0/admin/manage-fields.php:672
835
+ msgid "US Dollar"
836
+ msgstr "US Dollar"
837
+
838
+ #: profile-builder-2.0/admin/manage-fields.php:673
839
+ msgid "Uruguay Peso"
840
+ msgstr "Uruguay Peso"
841
+
842
+ #: profile-builder-2.0/admin/manage-fields.php:674
843
+ msgid "Uzbekistan Som"
844
+ msgstr "Uzbekistan Som"
845
+
846
+ #: profile-builder-2.0/admin/manage-fields.php:675
847
+ msgid "Venezuela Bolivar"
848
+ msgstr "Venezuela Bolivar"
849
+
850
+ #: profile-builder-2.0/admin/manage-fields.php:676
851
+ msgid "Viet Nam Dong"
852
+ msgstr "Viet Nam Dong"
853
+
854
+ #: profile-builder-2.0/admin/manage-fields.php:677
855
+ msgid "Yemen Rial"
856
+ msgstr "Yemen Rial"
857
+
858
+ #: profile-builder-2.0/admin/manage-fields.php:678
859
+ msgid "Zimbabwe Dollar"
860
+ msgstr "Zimbabwe Dollar"
861
+
862
+ #: profile-builder-2.0/admin/manage-fields.php:1097
863
+ msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
864
+ msgstr "Der Meta-Name kann nur Kleinbuchstaben, Zahlen, _ , - und keine Leerzeichen beinhalten.\n"
865
+
866
+ #: profile-builder-2.0/admin/manage-fields.php:1314
867
+ msgid "Search Location"
868
+ msgstr "Orte suchen"
869
+
870
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
871
+ msgid "You are not allowed to do this."
872
+ msgstr "Du hast keine Berechtigung, das zu tun."
873
+
874
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
875
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
876
+ msgid "Search Users"
877
+ msgstr "Benutzer suchen"
878
+
879
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
880
+ msgid "Conditional Logic"
881
+ msgstr "Bedingungslogik"
882
+
883
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
884
+ msgid "Conditional Rules"
885
+ msgstr "Bedingungsregeln"
886
+
887
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
888
+ msgid "This field has conditional logic enabled."
889
+ msgstr "Dieses Feld hat eine bedingte Logik aktiviert"
890
+
891
+ #: profile-builder-2.0/features/functions.php:685
892
+ msgid "Incorrect phone number"
893
+ msgstr "Fehlerhafte Telefonnummer"
894
+
895
+ #: profile-builder-2.0/front-end/class-formbuilder.php:124
896
+ msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
897
+ msgstr "Die Rolle des erstellten Benutzers ist auf die Vorgabe gesetzt. Nur ein Admin kann einen Benutzer mit der diesem Formular zugeordneten Rolle registrieren."
898
+
899
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
900
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
901
+ msgid "Please add the Google Maps API key for this field."
902
+ msgstr "Bitte füge den Google Maps API Schlüssel für dieses Feld hinzu."
903
+
904
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
+ msgid "Something went wrong. Please try again."
906
+ msgstr "Irgendetwas ging schief. Bitte probieren Sie es erneut."
907
+
908
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
+ msgid "Please enter numbers only"
910
+ msgstr "Bitte gib nur Zahlen ein"
911
+
912
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
913
+ msgid "Value must be a multiplier of %1$s"
914
+ msgstr "Wert muss ein Vielfaches von %1$s sein"
915
+
916
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
917
+ msgid "Value must be greater than or equal to %1$s"
918
+ msgstr "Wert muss größer oder gleich %1$s sein"
919
+
920
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
921
+ msgid "Value must be less than or equal to %1$s"
922
+ msgstr "Wert muss kleiner oder gleich %1$s sein"
923
+
924
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
925
+ msgid "Required phone number format: "
926
+ msgstr "Erforderliches Telefonnummernformat:"
927
+
928
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
929
+ msgid "Bolivia, __( Plurinational State of"
930
+ msgstr "Bolivia, __( Plurinational State of"
931
+
932
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
933
+ msgid "Bonaire, __( Sint Eustatius and Saba"
934
+ msgstr "Bonaire, __( Sint Eustatius and Saba"
935
+
936
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
937
+ msgid "Brunei Darussalam"
938
+ msgstr "Brunei Darussalam"
939
+
940
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
941
+ msgid "Cabo Verde"
942
+ msgstr "Cabo Verde"
943
+
944
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
945
+ msgid "Cocos (Keeling) Islands"
946
+ msgstr "Cocos (Keeling) Islands"
947
+
948
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
949
+ msgid "Congo"
950
+ msgstr "Kongo"
951
+
952
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
953
+ msgid "Congo, __( the Democratic Republic of the"
954
+ msgstr "Congo, __( the Democratic Republic of the"
955
+
956
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
957
+ msgid "Cote dIvoire"
958
+ msgstr "Elfenbeinküste"
959
+
960
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
961
+ msgid "Falkland Islands (Malvinas)"
962
+ msgstr "Falkland Islands (Malvinas)"
963
+
964
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
965
+ msgid "Holy See (Vatican City State)"
966
+ msgstr "Holy See (Vatican City State)"
967
+
968
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
969
+ msgid "Iran, __( Islamic Republic of"
970
+ msgstr "Iran, __( Islamic Republic of"
971
+
972
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
973
+ msgid "Korea, __( Democratic Peoples Republic of"
974
+ msgstr "Korea, __( Democratic Peoples Republic of"
975
+
976
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
977
+ msgid "Korea, __( Republic of"
978
+ msgstr "Korea, __( Republic of"
979
+
980
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
981
+ msgid "Lao Peoples Democratic Republic"
982
+ msgstr "Lao Peoples Democratic Republic"
983
+
984
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
985
+ msgid "Macedonia, __( the former Yugoslav Republic of"
986
+ msgstr "Macedonia, __( the former Yugoslav Republic of"
987
+
988
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
989
+ msgid "Micronesia, __( Federated States of"
990
+ msgstr "Micronesia, __( Federated States of"
991
+
992
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
993
+ msgid "Moldova, __( Republic of"
994
+ msgstr "Moldova, __( Republic of"
995
+
996
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
997
+ msgid "Palestine, __( State of"
998
+ msgstr "Palestine, __( State of"
999
+
1000
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1001
+ msgid "Russian Federation"
1002
+ msgstr "Russland"
1003
+
1004
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1005
+ msgid "Saint Helena, __( Ascension and Tristan da Cunha"
1006
+ msgstr "Saint Helena, __( Ascension and Tristan da Cunha"
1007
+
1008
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1009
+ msgid "Saint Martin (French part)"
1010
+ msgstr "Saint Martin (französisch)"
1011
+
1012
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1013
+ msgid "Sint Maarten (Dutch part)"
1014
+ msgstr "St. Martin (Niederländischer Teil)"
1015
+
1016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1017
+ msgid "Syrian Arab Republic"
1018
+ msgstr "Syrien"
1019
+
1020
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1021
+ msgid "Taiwan, __( Province of China"
1022
+ msgstr "Taiwan, __( Province of China"
1023
+
1024
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1025
+ msgid "Tanzania, __( United Republic of"
1026
+ msgstr "Tanzania, __( United Republic of"
1027
+
1028
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1029
+ msgid "Timor-Leste"
1030
+ msgstr "Timor-Leste"
1031
+
1032
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1033
+ msgid "Venezuela, __( Bolivarian Republic of"
1034
+ msgstr "Venezuela, __( Bolivarian Republic of"
1035
+
1036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1037
+ msgid "Viet Nam"
1038
+ msgstr "Viet Nam"
1039
+
1040
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1041
+ msgid "Virgin Islands, __( British"
1042
+ msgstr "Virgin Islands, __( British"
1043
+
1044
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1045
+ msgid "Virgin Islands, __( U.S."
1046
+ msgstr "Virgin Islands, __( U.S."
1047
+
1048
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
1049
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:186
1050
+ msgid "User Fields Tags"
1051
+ msgstr "Benutzerfelder-Schlagwörter"
1052
+
1053
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
1054
+ msgid "The users selected password at signup"
1055
+ msgstr "Das vom Benutzer bei der Registrierung gewählte Kennwort"
1056
+
1057
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
1058
+ msgid "[{{site_name}}] Notice of Email Change"
1059
+ msgstr "[{{Site_name}}] Benachrichtigung über die Änderung der eMail Adresse"
1060
+
1061
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
1062
+ msgid "Changed Email Address Notification"
1063
+ msgstr "Geänderte E-Mail-Adresse Benachrichtigung"
1064
+
1065
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1066
+ msgid "Limit"
1067
+ msgstr "Limit"
1068
+
1069
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1070
+ msgid "Enable limit to the number of fields to be generated by users in front end forms "
1071
+ msgstr "Eine Beschränkung für von Benutzern in Frontend-Formularen generierten Feldern aktivieren"
1072
+
1073
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1074
+ msgid "General Limit"
1075
+ msgstr "Allgemeine Grenze"
1076
+
1077
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1078
+ msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
1079
+ msgstr "Vorgabe-Beschränkung für diese Repeater-Gruppe.<br>Für unbegrenzt bitte auf 0 lassen."
1080
+
1081
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1082
+ msgid "Limit reached message"
1083
+ msgstr "\"Limit erreicht\" Nachricht"
1084
+
1085
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1086
+ msgid "The maximum number of fields has been reached."
1087
+ msgstr "Die maximale Anzahl von Feldern wurde erreicht."
1088
+
1089
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1090
+ msgid "The popup message to display when the limit of repeater groups is reached."
1091
+ msgstr "Die Popup-Nachricht, die beim Erreichen der Grenze für Repeater Gruppen angezeigt wird."
1092
+
1093
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1094
+ msgid "Limit per Role"
1095
+ msgstr "Limit pro Rolle"
1096
+
1097
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1098
+ msgid "Leave 0 for unlimited."
1099
+ msgstr "Für unbeschränkt auf 0 stehen lassen"
1100
+
1101
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1102
+ msgid "Repeated field group"
1103
+ msgstr "Wiederholte Feldgruppe"
1104
+
1105
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1106
+ msgid "Manage field or group of fields that will be repeatable."
1107
+ msgstr "Verwalte ein Feld oder eine Gruppe von Feldern, die wiederholbar sein wird."
1108
+
1109
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1110
+ msgid "Edit field group"
1111
+ msgstr "Feldgruppe bearbeiten"
1112
+
1113
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
1114
+ msgid "Repeatable fields saved!"
1115
+ msgstr "Wiederholbare Felder gespeichert!"
1116
+
1117
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1118
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1119
+ msgid "Please enter a unique field title.\n"
1120
+ msgstr "Bitte gib einen eindeutigen Feldtitel ein.\n"
1121
+
1122
+ #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1123
+ msgid "Are you sure you want to delete this?"
1124
+ msgstr "Bist du sicher, dass du das löschen möchtest?"
1125
+
1126
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:192
1127
+ msgid "Sort Tags"
1128
+ msgstr "Schlagwörter-Sortierung"
1129
+
1130
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:201
1131
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
1132
+ msgid "Faceted Menus"
1133
+ msgstr "Facettierte Menüs"
1134
+
1135
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:202
1136
+ msgid "User Count"
1137
+ msgstr "Benutzeranzahl"
1138
+
1139
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1140
+ msgid "Show All"
1141
+ msgstr "Alle zeigen"
1142
+
1143
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
+ msgid "No options available"
1145
+ msgstr "Keine Einstellungen verfügbar"
1146
+
1147
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
+ msgid "Remove All Filters"
1149
+ msgstr "Alle Filter entfernen"
1150
+
1151
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
+ msgid "Label"
1153
+ msgstr "Beschriftung"
1154
+
1155
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1156
+ msgid "Choose the facet name that appears on the frontend"
1157
+ msgstr "Wähle einen Facet Namen, der auf dem Frontend erscheint"
1158
+
1159
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1160
+ msgid "Facet Type"
1161
+ msgstr "Facet Typ"
1162
+
1163
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1164
+ msgid "Choose the facet menu type"
1165
+ msgstr "Wähle den Facet Menütyp"
1166
+
1167
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1168
+ msgid "Facet Meta"
1169
+ msgstr "Facette Meta"
1170
+
1171
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1172
+ msgid "Choose the meta field for the facet menu"
1173
+ msgstr "Wähle das Meta-Feld für das Facet Menü"
1174
+
1175
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1176
+ msgid "Behaviour"
1177
+ msgstr "Verhalten"
1178
+
1179
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1180
+ msgid "Narrow the results"
1181
+ msgstr "Ergebnisse eingrenzen"
1182
+
1183
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1184
+ msgid "Expand the results"
1185
+ msgstr "Ergebnisse ausdehnen"
1186
+
1187
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1188
+ msgid "Choose how multiple selections affect the results"
1189
+ msgstr "Wähle, wie Mehrfachauswahlen die Resultate beeinflussen"
1190
+
1191
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1192
+ msgid "Visible choices"
1193
+ msgstr "Sichtbare Auswahl"
1194
+
1195
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1196
+ msgid "Show a toggle link after this many choices. Leave blank for all"
1197
+ msgstr "Zeige einen Umschalt-Link nach x Auswahlmöglichkeiten. Lasse es leer, um alle anzuzeigen"
1198
+
1199
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1200
+ msgid "Search Fields"
1201
+ msgstr "Felder suchen"
1202
+
1203
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1204
+ msgid "Choose the fields in which the Search Field will look in"
1205
+ msgstr "Wählen Sie die Felder, in denen das Suchfeld nachschauen wird"
1206
+
1207
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
1208
+ msgid "Search Settings"
1209
+ msgstr "Sucheinstellungen"
1210
+
1211
+ #: pb-add-on-woocommerce/billing-fields.php:8
1212
+ #: pb-add-on-woocommerce/shipping-fields.php:8
1213
+ msgid "Company Name"
1214
+ msgstr "Firmenname"
1215
+
1216
+ #: pb-add-on-woocommerce/billing-fields.php:9
1217
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1218
+ msgid "Address"
1219
+ msgstr "Adresse"
1220
+
1221
+ #: pb-add-on-woocommerce/billing-fields.php:5
1222
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1223
+ msgid "Country"
1224
+ msgstr "Staat"
1225
+
1226
+ #: pb-add-on-woocommerce/billing-fields.php:11
1227
+ #: pb-add-on-woocommerce/shipping-fields.php:11
1228
+ msgid "Town / City"
1229
+ msgstr "Ort"
1230
+
1231
+ #: pb-add-on-woocommerce/billing-fields.php:12
1232
+ #: pb-add-on-woocommerce/shipping-fields.php:12
1233
+ msgid "State / County"
1234
+ msgstr "Bundesland"
1235
+
1236
+ #: pb-add-on-woocommerce/billing-fields.php:13
1237
+ #: pb-add-on-woocommerce/shipping-fields.php:13
1238
+ msgid "Postcode / Zip"
1239
+ msgstr "PLZ"
1240
+
1241
+ #: pb-add-on-woocommerce/billing-fields.php:14
1242
+ msgid "Email Address"
1243
+ msgstr "E-Mail Adresse"
1244
+
1245
+ #: pb-add-on-woocommerce/billing-fields.php:15
1246
+ msgid "Phone"
1247
+ msgstr "Telefon"
1248
+
1249
+ #: pb-add-on-woocommerce/billing-fields.php:278
1250
+ msgid "Ship to a different address?"
1251
+ msgstr "An eine andere Adresse liefern?"
1252
+
1253
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
+ msgid "Billing Address"
1255
+ msgstr "Rechnungsadresse"
1256
+
1257
+ #: pb-add-on-woocommerce/index.php:169
1258
+ msgid "Displays customer billing fields in front-end. "
1259
+ msgstr "Zeigt die Bezahldaten des Kunden auf der Seite an."
1260
+
1261
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
+ msgid "Shipping Address"
1263
+ msgstr "Lieferadresse"
1264
+
1265
+ #: pb-add-on-woocommerce/index.php:173
1266
+ msgid "Displays customer shipping fields in front-end. "
1267
+ msgstr "Zeigt die Lieferadresse des Kunden auf der Seite an."
1268
+
1269
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
+ msgid "Display on WooCommerce Checkout"
1271
+ msgstr "Im WooCommerce Bestellprozess anzeigen"
1272
+
1273
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1274
+ msgid "Whether the field should be added to the WooCommerce checkout form or not"
1275
+ msgstr "Ob das Feld zum WooCommerce Checkout hinzugefügt werden soll oder nicht"
1276
+
1277
+ #: pb-add-on-woocommerce/index.php:541
1278
+ msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1279
+ msgstr "Für das Profile Builder - WooCommerce Sync Add-on muss WooCommerce installiert und aktiviert sein!"
1280
+
1281
+ #: pb-add-on-woocommerce/woosync-page.php:23
1282
+ #: pb-add-on-woocommerce/woosync-page.php:70
1283
+ msgid "WooCommerce Sync"
1284
+ msgstr "WooCommerce Synchronisierung"
1285
+
1286
+ #: pb-add-on-woocommerce/woosync-page.php:76
1287
+ msgid "Choose Register form to display on My Account page:"
1288
+ msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll:"
1289
+
1290
+ #: pb-add-on-woocommerce/woosync-page.php:81
1291
+ msgid "Default Register"
1292
+ msgstr "Standard Registrierungsformular"
1293
+
1294
+ #: pb-add-on-woocommerce/woosync-page.php:103
1295
+ msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1296
+ msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll.<br/> Dadurch wird auch das Profile Builder Loginformular im Kundenkonto angezeigt."
1297
+
1298
+ #: pb-add-on-woocommerce/woosync-page.php:110
1299
+ msgid "Choose Edit Profile form to display on My Account page:"
1300
+ msgstr "Wählen Sie das \"Profil editieren\"-Formular, welches im Kundenkonto (My Account) angezeigt werden soll:"
1301
+
1302
+ #: pb-add-on-woocommerce/woosync-page.php:115
1303
+ msgid "Default Edit Profile"
1304
+ msgstr "Standard \"Profil editieren\"-Formular"
1305
+
1306
+ #: pb-add-on-woocommerce/woosync-page.php:137
1307
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1308
+ msgstr "Wählen Sie das \"Profil editieren\"-Formular aus Profile Builder, welches im Kundenkonto (My Account) von WooCommerce angezeigt werden soll:"
1309
+
1310
+ #: profile-builder-2.0/admin/add-ons.php:190
1311
+ msgid "Recommended Plugins"
1312
+ msgstr "Empfohlene Erweiterungen"
1313
+
1314
+ #: profile-builder-2.0/admin/add-ons.php:219
1315
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1316
+ msgid "Free"
1317
+ msgstr "Kostenlos"
1318
+
1319
+ #: profile-builder-2.0/admin/add-ons.php:221
1320
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1321
+ msgstr "Bezahlvorgänge, Abonnements und Inhaltsbeschränkungen für Ihre Mitgliedsseite."
1322
+
1323
+ #: profile-builder-2.0/admin/add-ons.php:222
1324
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1325
+ msgid "More Details"
1326
+ msgstr "Weitere Details"
1327
+
1328
+ #: profile-builder-2.0/admin/add-ons.php:240
1329
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1330
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1331
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1332
+ msgid "Plugin is <strong>inactive</strong>"
1333
+ msgstr "Die Erweiterung ist <strong>inaktiv</strong>"
1334
+
1335
+ #: profile-builder-2.0/admin/add-ons.php:242
1336
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1337
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1338
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1339
+ msgid "Plugin is <strong>active</strong>"
1340
+ msgstr "Die Erweiterung ist <strong>aktiv</strong>"
1341
+
1342
+ #: profile-builder-2.0/admin/add-ons.php:256
1343
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1344
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1345
+ msgstr "Die Erweiterung konnte nicht installiert werden. Versuchen Sie es noch einmal oder <a href=\"%s\" target=\"_blank\">installieren Sie die Erweiterung manuell</a>."
1346
+
1347
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
+ msgid "Paid Accounts"
1349
+ msgstr "Bezahlte Konten"
1350
+
1351
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1352
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1353
+ msgstr "Paid Member Subscriptions - eine kostenloses WordPress Erweiterung"
1354
+
1355
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1356
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1357
+ msgstr "Mit dem neuen Abonnement-Feld im Profile Builder, können sich Benutzer im Registrierungsformular für bezahlte Konten anmelden."
1358
+
1359
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
+ msgid "Paid & Free Subscriptions"
1361
+ msgstr "Paid & Free Subscriptions"
1362
+
1363
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
+ msgid "Restrict Content"
1365
+ msgstr "Restrict Content"
1366
+
1367
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
+ msgid "Member Management"
1369
+ msgstr "Member Management"
1370
+
1371
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
+ msgid "Email Templates"
1373
+ msgstr "Emailvorlagen"
1374
+
1375
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
+ msgid "Account Management"
1377
+ msgstr "Account Management"
1378
+
1379
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
+ msgid "Subscription Management"
1381
+ msgstr "Mitgliederverwaltung"
1382
+
1383
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
+ msgid "Payment Management"
1385
+ msgstr "Payment Management"
1386
+
1387
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
+ msgid "Plugin is Active"
1389
+ msgstr "Erweiterung aktiv"
1390
+
1391
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
+ msgid "Plugin has been activated"
1393
+ msgstr "Die Erweiterung wurde aktiviert."
1394
+
1395
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
+ msgid "Plugin has been deactivated."
1397
+ msgstr "Die Erweiterung wurde deaktiviert."
1398
+
1399
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1400
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1401
+ msgstr "Aktzeptiere Benutzerzahlungen, erstelle Abonnement-Pläne und schränke den Inhalt deiner Webseite ein."
1402
+
1403
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
+ msgid "Step by Step Quick Setup"
1405
+ msgstr "Schnelle Schritt für Schritt Einrichtung"
1406
+
1407
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1408
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1409
+ msgstr "Klicken Sie bitte hier, um Ihr Benutzerkonto zu aktivieren:<br><br>%s%s%s<br><br>Im Anschluss erhalten Sie eine weitere Email mit Ihren Logindaten."
1410
+
1411
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
+ msgid "After Login"
1413
+ msgstr "Nach dem Login"
1414
+
1415
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
+ msgid "After Logout"
1417
+ msgstr "Nach dem Logout"
1418
+
1419
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
+ msgid "After Registration"
1421
+ msgstr "Nach der Registrierung"
1422
+
1423
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
+ msgid "After Edit Profile"
1425
+ msgstr "Nach dem Editieren eines Profils"
1426
+
1427
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
+ msgid "After Successful Email Confirmation"
1429
+ msgstr "Nach erfolgreicher Emailbestätigung"
1430
+
1431
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
+ msgid "After Successful Password Reset"
1433
+ msgstr "Nach erfolgreichem Zurücksetzen des Passworts"
1434
+
1435
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1436
+ msgid "Dashboard (redirect users from accessing the dashboard)"
1437
+ msgstr "Übersichtsseite (leitet Benutzer weiter, wenn sie auf diese Seite wollen)"
1438
+
1439
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
+ msgid "User ID"
1441
+ msgstr "Benutzer ID"
1442
+
1443
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
+ msgid "User ID or Username"
1445
+ msgstr "Benutzer ID oder Benutzername"
1446
+
1447
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
+ msgid "User ID / Username"
1449
+ msgstr "Benutzer ID / Benutzername"
1450
+
1451
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1452
+ msgid "Please select and enter the ID or username of your user."
1453
+ msgstr "Bitte gib deine Benutzer ID oder deinen Benutzernamen an."
1454
+
1455
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1456
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1457
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1458
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1459
+ msgid "Redirect Type"
1460
+ msgstr "Umleitungs Typ"
1461
+
1462
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1463
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1464
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1465
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1466
+ msgid "Redirect URL"
1467
+ msgstr "Umleitungs URL"
1468
+
1469
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1470
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1471
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1472
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1473
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1474
+ msgstr "Kann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1475
+
1476
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1477
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1478
+ msgid "Individual User Redirects"
1479
+ msgstr "Individuelle Benutzer-Weiterleitungen"
1480
+
1481
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
+ msgid "... Choose"
1483
+ msgstr "... Auswählen"
1484
+
1485
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
+ msgid "Select a user role."
1487
+ msgstr "Wähle eine Benutzerrolle aus."
1488
+
1489
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1490
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1491
+ msgid "User Role based Redirects"
1492
+ msgstr "Benutzerrollen basierte Weiterleitungen"
1493
+
1494
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1495
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1496
+ msgid "Global Redirects"
1497
+ msgstr "Globale Weiterleitungen"
1498
+
1499
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
+ msgid "Login ( wp_login.php )"
1501
+ msgstr "Login ( wp_login.php )"
1502
+
1503
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1504
+ msgid "Register ( wp-login.php?action=register )"
1505
+ msgstr "Registrierung ( wp-login.php?action=register )"
1506
+
1507
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1508
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
1509
+ msgstr "Passwort vergessen ( wp-login.php?action=lostpassword )"
1510
+
1511
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1512
+ msgid "Author Archive ( http://sitename.com/author/admin )"
1513
+ msgstr "Autoren Archiv ( http://seitenname.com/autor/admin )"
1514
+
1515
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1516
+ msgid "Redirect Default WordPress Forms and Pages"
1517
+ msgstr "Standard WordPress Formulare und Seiten umleiten"
1518
+
1519
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
+ msgid "How does this work?"
1521
+ msgstr "Wie funktioniert das?"
1522
+
1523
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1524
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1525
+ msgstr "<pre>Benutzer ID / Benutzername </pre><pre>Weiterleitung</pre><pre>URL</pre>"
1526
+
1527
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1528
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1529
+ msgstr "<pre>Benutzer-Rolle</pre><pre>Weiterleitung</pre><pre>URL</pre>"
1530
+
1531
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1532
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1533
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
1534
+ msgstr "<pre>Umleitung</pre><pre>URL</pre>"
1535
+
1536
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1537
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1538
+ msgstr "Die Weiterleitungen werden nach einer erfolgreichen Aktion ausgelöst, wie z.B. einer Registrierung oder einem Login."
1539
+
1540
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1541
+ msgid "Which redirect happens depends on the following priority:"
1542
+ msgstr "Welche Weiterleitung greift kommt auf die folgende Priorität an:"
1543
+
1544
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
+ msgid "Redirect Default WordPress forms and pages"
1546
+ msgstr "Standard WordPress Formulare und Seiten umleiten"
1547
+
1548
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1549
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1550
+ msgstr "Damit kannst du verschiedene WordPress Formulare und Seiten zu den Profile Builder Äquivalenten umleiten."
1551
+
1552
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
+ msgid "Available tags for dynamic URLs"
1554
+ msgstr "Verfügbare Tags für dynamische URLs"
1555
+
1556
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1557
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1558
+ msgstr "Sie nutzen folgende Tags in Ihren Umleitungs-URLs."
1559
+
1560
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1561
+ msgid "generates a url of the current website homepage."
1562
+ msgstr "Generiert eine URL der Startseite."
1563
+
1564
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1565
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1566
+ msgstr "in WordPress kann die <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>Seiten URL</a> von der Startseiten URL abweichen."
1567
+
1568
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
+ msgid "the ID of the user"
1570
+ msgstr "die ID des Benutzers"
1571
+
1572
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1573
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1574
+ msgstr "Die saubere URL version des Benutzernamens, der Benutzer \"nicename\" kann in URLs sicher verwendet werden, da er keine Spezialzeichen oder Leerschläge beinhalten kann."
1575
+
1576
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1577
+ msgid "the URL of the previously visited page"
1578
+ msgstr "die URL der vorherigen besuchten Seite"
1579
+
1580
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1581
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1582
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1583
+ msgid "You can't add duplicate redirects!"
1584
+ msgstr "Sie können keine doppelten Weiterleitungen anlegen!"
1585
+
1586
+ #: profile-builder-2.0/admin/admin-functions.php:41
1587
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1588
+ msgstr "Den Namen öffentlich anzeigen - erscheint nur auf der Edit Profile Seite!"
1589
+
1590
+ #: profile-builder-2.0/admin/basic-info.php:37
1591
+ msgid "Friction-less login using %s shortcode or a widget."
1592
+ msgstr "Reibungsloser Login, indem man %s oder ein Widget benutzt."
1593
+
1594
+ #: profile-builder-2.0/admin/basic-info.php:41
1595
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
+ msgstr "Wunderschöne und voll anpassbare Registrierformulare mit der Nutzung von %s Shortcode."
1597
+
1598
+ #: profile-builder-2.0/admin/basic-info.php:45
1599
+ msgid "Straight forward edit profile forms using %s shortcode."
1600
+ msgstr "Direktes Profilbearbeitungsformular mit dem folgenden Shortcode: %s ."
1601
+
1602
+ #: profile-builder-2.0/admin/basic-info.php:58
1603
+ msgid "Allow users to recover their password in the front-end using the %s."
1604
+ msgstr "Ermöglicht dem User, sein Passwort im Front-End-Bereich unter Anwendung von %s wiederherzustellen"
1605
+
1606
+ #: profile-builder-2.0/admin/basic-info.php:140
1607
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1608
+ msgstr "Um eine Seite mit auf diesem Blog registrierten Benutzern zu erstellen, füge den folgenden Shortcodein in eine von dir gewählte Seite ein: %s."
1609
+
1610
+ #: profile-builder-2.0/admin/general-settings.php:115
1611
+ msgid "\"Admin Approval\" on User Role:"
1612
+ msgstr "\"Genehmigung durch Admin\" auf Benutzer-Rolle:"
1613
+
1614
+ #: profile-builder-2.0/admin/general-settings.php:134
1615
+ msgid "Select on what user roles to activate Admin Approval."
1616
+ msgstr "Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen."
1617
+
1618
+ #: profile-builder-2.0/admin/manage-fields.php:133
1619
+ msgid "Display on PB forms"
1620
+ msgstr "Zeige auf PB Formularen"
1621
+
1622
+ #: profile-builder-2.0/admin/manage-fields.php:133
1623
+ msgid "PB Login"
1624
+ msgstr "PB Login"
1625
+
1626
+ #: profile-builder-2.0/admin/manage-fields.php:133
1627
+ msgid "PB Register"
1628
+ msgstr "PB Registrierung"
1629
+
1630
+ #: profile-builder-2.0/admin/manage-fields.php:133
1631
+ msgid "PB Recover Password"
1632
+ msgstr "PB Passwort wiederherstellen"
1633
+
1634
+ #: profile-builder-2.0/admin/manage-fields.php:133
1635
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
+ msgstr "Auswählen auf welchen Profile Builder Formularen reCSelect on which Profile Builder forms reCAPTCHA angezeigt werden soll."
1637
+
1638
+ #: profile-builder-2.0/admin/manage-fields.php:134
1639
+ msgid "Display on default WP forms"
1640
+ msgstr "Zeige auf standardmäßigen WP Formularen"
1641
+
1642
+ #: profile-builder-2.0/admin/manage-fields.php:134
1643
+ msgid "Default WP Login"
1644
+ msgstr "Standardmäßige WP Anmeldung"
1645
+
1646
+ #: profile-builder-2.0/admin/manage-fields.php:134
1647
+ msgid "Default WP Register"
1648
+ msgstr "Standardmäßige WP Registrierung"
1649
+
1650
+ #: profile-builder-2.0/admin/manage-fields.php:134
1651
+ msgid "Default WP Recover Password"
1652
+ msgstr "Standard WordPress \"Passwort wiederherstellen\""
1653
+
1654
+ #: profile-builder-2.0/admin/manage-fields.php:134
1655
+ msgid "Select on which default WP forms to display reCAPTCHA"
1656
+ msgstr "Wählen Sie die Standard WordPress Formulare, auf denen ein reCAPTCHA angezeigt werden soll"
1657
+
1658
+ #: profile-builder-2.0/admin/manage-fields.php:140
1659
+ #: profile-builder-2.0/admin/manage-fields.php:141
1660
+ #: profile-builder-2.0/admin/manage-fields.php:142
1661
+ msgid "Default option of the field"
1662
+ msgstr "Voreinstellung des Feldes"
1663
+
1664
+ #: profile-builder-2.0/admin/manage-fields.php:282
1665
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
+ msgid "Afghanistan"
1667
+ msgstr "Afghanistan"
1668
+
1669
+ #: profile-builder-2.0/admin/manage-fields.php:283
1670
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
+ msgid "Aland Islands"
1672
+ msgstr "Aland Islands"
1673
+
1674
+ #: profile-builder-2.0/admin/manage-fields.php:284
1675
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
+ msgid "Albania"
1677
+ msgstr "Albanien"
1678
+
1679
+ #: profile-builder-2.0/admin/manage-fields.php:285
1680
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
+ msgid "Algeria"
1682
+ msgstr "Algerien"
1683
+
1684
+ #: profile-builder-2.0/admin/manage-fields.php:286
1685
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
+ msgid "American Samoa"
1687
+ msgstr "American Samoa"
1688
+
1689
+ #: profile-builder-2.0/admin/manage-fields.php:287
1690
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
+ msgid "Andorra"
1692
+ msgstr "Andorra"
1693
+
1694
+ #: profile-builder-2.0/admin/manage-fields.php:288
1695
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
+ msgid "Angola"
1697
+ msgstr "Angola"
1698
+
1699
+ #: profile-builder-2.0/admin/manage-fields.php:289
1700
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
+ msgid "Anguilla"
1702
+ msgstr "Anguilla"
1703
+
1704
+ #: profile-builder-2.0/admin/manage-fields.php:290
1705
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
+ msgid "Antarctica"
1707
+ msgstr "Antarktis"
1708
+
1709
+ #: profile-builder-2.0/admin/manage-fields.php:291
1710
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
+ msgid "Antigua and Barbuda"
1712
+ msgstr "Antigua und Barbuda"
1713
+
1714
+ #: profile-builder-2.0/admin/manage-fields.php:292
1715
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
+ msgid "Argentina"
1717
+ msgstr "Argentinien"
1718
+
1719
+ #: profile-builder-2.0/admin/manage-fields.php:293
1720
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1721
+ msgid "Armenia"
1722
+ msgstr "Armenia"
1723
+
1724
+ #: profile-builder-2.0/admin/manage-fields.php:294
1725
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1726
+ msgid "Aruba"
1727
+ msgstr "Aruba"
1728
+
1729
+ #: profile-builder-2.0/admin/manage-fields.php:295
1730
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
+ msgid "Australia"
1732
+ msgstr "Australien"
1733
+
1734
+ #: profile-builder-2.0/admin/manage-fields.php:296
1735
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
+ msgid "Austria"
1737
+ msgstr "Österreich"
1738
+
1739
+ #: profile-builder-2.0/admin/manage-fields.php:297
1740
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
+ msgid "Azerbaijan"
1742
+ msgstr "Aserbaidschan"
1743
+
1744
+ #: profile-builder-2.0/admin/manage-fields.php:298
1745
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
+ msgid "Bahamas"
1747
+ msgstr "Bahamas"
1748
+
1749
+ #: profile-builder-2.0/admin/manage-fields.php:299
1750
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1751
+ msgid "Bahrain"
1752
+ msgstr "Bahrain"
1753
+
1754
+ #: profile-builder-2.0/admin/manage-fields.php:300
1755
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1756
+ msgid "Bangladesh"
1757
+ msgstr "Bangladesh"
1758
+
1759
+ #: profile-builder-2.0/admin/manage-fields.php:301
1760
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1761
+ msgid "Barbados"
1762
+ msgstr "Barbados"
1763
+
1764
+ #: profile-builder-2.0/admin/manage-fields.php:302
1765
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1766
+ msgid "Belarus"
1767
+ msgstr "Weissrussland"
1768
+
1769
+ #: profile-builder-2.0/admin/manage-fields.php:303
1770
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1771
+ msgid "Belgium"
1772
+ msgstr "Belgien"
1773
+
1774
+ #: profile-builder-2.0/admin/manage-fields.php:304
1775
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1776
+ msgid "Belize"
1777
+ msgstr "Belize"
1778
+
1779
+ #: profile-builder-2.0/admin/manage-fields.php:305
1780
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1781
+ msgid "Benin"
1782
+ msgstr "Benin"
1783
+
1784
+ #: profile-builder-2.0/admin/manage-fields.php:306
1785
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1786
+ msgid "Bermuda"
1787
+ msgstr "Bermuda"
1788
+
1789
+ #: profile-builder-2.0/admin/manage-fields.php:307
1790
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1791
+ msgid "Bhutan"
1792
+ msgstr "Bhutan"
1793
+
1794
+ #: profile-builder-2.0/admin/manage-fields.php:308
1795
+ msgid "Bolivia"
1796
+ msgstr "Bolivien"
1797
+
1798
+ #: profile-builder-2.0/admin/manage-fields.php:309
1799
+ msgid "Bonaire, Saint Eustatius and Saba"
1800
+ msgstr "Bonaire, Saint Eustatius and Saba"
1801
+
1802
+ #: profile-builder-2.0/admin/manage-fields.php:310
1803
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1804
+ msgid "Bosnia and Herzegovina"
1805
+ msgstr "Bosnien und Herzegowina"
1806
+
1807
+ #: profile-builder-2.0/admin/manage-fields.php:311
1808
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1809
+ msgid "Botswana"
1810
+ msgstr "Botswana"
1811
+
1812
+ #: profile-builder-2.0/admin/manage-fields.php:312
1813
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1814
+ msgid "Bouvet Island"
1815
+ msgstr "Bouvet Insel"
1816
+
1817
+ #: profile-builder-2.0/admin/manage-fields.php:313
1818
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1819
+ msgid "Brazil"
1820
+ msgstr "Brasilien"
1821
+
1822
+ #: profile-builder-2.0/admin/manage-fields.php:314
1823
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1824
+ msgid "British Indian Ocean Territory"
1825
+ msgstr "British Indian Ocean Territory"
1826
+
1827
+ #: profile-builder-2.0/admin/manage-fields.php:315
1828
+ msgid "British Virgin Islands"
1829
+ msgstr "British Virgin Islands"
1830
+
1831
+ #: profile-builder-2.0/admin/manage-fields.php:316
1832
+ msgid "Brunei"
1833
+ msgstr "Brunei"
1834
+
1835
+ #: profile-builder-2.0/admin/manage-fields.php:317
1836
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
+ msgid "Bulgaria"
1838
+ msgstr "Bulgarien"
1839
+
1840
+ #: profile-builder-2.0/admin/manage-fields.php:318
1841
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
+ msgid "Burkina Faso"
1843
+ msgstr "Burkina Faso"
1844
+
1845
+ #: profile-builder-2.0/admin/manage-fields.php:319
1846
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
+ msgid "Burundi"
1848
+ msgstr "Burundi"
1849
+
1850
+ #: profile-builder-2.0/admin/manage-fields.php:320
1851
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
+ msgid "Cambodia"
1853
+ msgstr "Kambodscha"
1854
+
1855
+ #: profile-builder-2.0/admin/manage-fields.php:321
1856
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
+ msgid "Cameroon"
1858
+ msgstr "Kamerun"
1859
+
1860
+ #: profile-builder-2.0/admin/manage-fields.php:322
1861
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
+ msgid "Canada"
1863
+ msgstr "Kanada"
1864
+
1865
+ #: profile-builder-2.0/admin/manage-fields.php:323
1866
+ msgid "Cape Verde"
1867
+ msgstr "Cape Verde"
1868
+
1869
+ #: profile-builder-2.0/admin/manage-fields.php:324
1870
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1871
+ msgid "Cayman Islands"
1872
+ msgstr "Kaimaninseln"
1873
+
1874
+ #: profile-builder-2.0/admin/manage-fields.php:325
1875
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1876
+ msgid "Central African Republic"
1877
+ msgstr "Zentralafrikanische Republik"
1878
+
1879
+ #: profile-builder-2.0/admin/manage-fields.php:326
1880
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
+ msgid "Chad"
1882
+ msgstr "Tschad"
1883
+
1884
+ #: profile-builder-2.0/admin/manage-fields.php:327
1885
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
+ msgid "Chile"
1887
+ msgstr "Chile"
1888
+
1889
+ #: profile-builder-2.0/admin/manage-fields.php:328
1890
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
+ msgid "China"
1892
+ msgstr "China"
1893
+
1894
+ #: profile-builder-2.0/admin/manage-fields.php:329
1895
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1896
+ msgid "Christmas Island"
1897
+ msgstr "Weihnachtsinsel"
1898
+
1899
+ #: profile-builder-2.0/admin/manage-fields.php:330
1900
+ msgid "Cocos Islands"
1901
+ msgstr "Cocos Islands"
1902
+
1903
+ #: profile-builder-2.0/admin/manage-fields.php:331
1904
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
+ msgid "Colombia"
1906
+ msgstr "Kolumbien"
1907
+
1908
+ #: profile-builder-2.0/admin/manage-fields.php:332
1909
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
+ msgid "Comoros"
1911
+ msgstr "Comoros"
1912
+
1913
+ #: profile-builder-2.0/admin/manage-fields.php:333
1914
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
+ msgid "Cook Islands"
1916
+ msgstr "Cook Islands"
1917
+
1918
+ #: profile-builder-2.0/admin/manage-fields.php:334
1919
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
+ msgid "Costa Rica"
1921
+ msgstr "Costa Rica"
1922
+
1923
+ #: profile-builder-2.0/admin/manage-fields.php:335
1924
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
+ msgid "Croatia"
1926
+ msgstr "Kroatien"
1927
+
1928
+ #: profile-builder-2.0/admin/manage-fields.php:336
1929
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
+ msgid "Cuba"
1931
+ msgstr "Kuba"
1932
+
1933
+ #: profile-builder-2.0/admin/manage-fields.php:337
1934
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1935
+ msgid "Curacao"
1936
+ msgstr "Curaçao"
1937
+
1938
+ #: profile-builder-2.0/admin/manage-fields.php:338
1939
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1940
+ msgid "Cyprus"
1941
+ msgstr "Zypern"
1942
+
1943
+ #: profile-builder-2.0/admin/manage-fields.php:339
1944
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1945
+ msgid "Czech Republic"
1946
+ msgstr "Tschechien"
1947
+
1948
+ #: profile-builder-2.0/admin/manage-fields.php:340
1949
+ msgid "Democratic Republic of the Congo"
1950
+ msgstr "Demokratische Republik Kongo"
1951
+
1952
+ #: profile-builder-2.0/admin/manage-fields.php:341
1953
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
+ msgid "Denmark"
1955
+ msgstr "Dänemark"
1956
+
1957
+ #: profile-builder-2.0/admin/manage-fields.php:342
1958
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
+ msgid "Djibouti"
1960
+ msgstr "Djibouti"
1961
+
1962
+ #: profile-builder-2.0/admin/manage-fields.php:343
1963
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
+ msgid "Dominica"
1965
+ msgstr "Dominica"
1966
+
1967
+ #: profile-builder-2.0/admin/manage-fields.php:344
1968
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
+ msgid "Dominican Republic"
1970
+ msgstr "Dominikanische Republik"
1971
+
1972
+ #: profile-builder-2.0/admin/manage-fields.php:345
1973
+ msgid "East Timor"
1974
+ msgstr "East Timor"
1975
+
1976
+ #: profile-builder-2.0/admin/manage-fields.php:346
1977
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1978
+ msgid "Ecuador"
1979
+ msgstr "Ecuador"
1980
+
1981
+ #: profile-builder-2.0/admin/manage-fields.php:347
1982
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1983
+ msgid "Egypt"
1984
+ msgstr "Ägypten"
1985
+
1986
+ #: profile-builder-2.0/admin/manage-fields.php:348
1987
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1988
+ msgid "El Salvador"
1989
+ msgstr "El Salvador"
1990
+
1991
+ #: profile-builder-2.0/admin/manage-fields.php:349
1992
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1993
+ msgid "Equatorial Guinea"
1994
+ msgstr "Equatorial Guinea"
1995
+
1996
+ #: profile-builder-2.0/admin/manage-fields.php:350
1997
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1998
+ msgid "Eritrea"
1999
+ msgstr "Eritrea"
2000
+
2001
+ #: profile-builder-2.0/admin/manage-fields.php:351
2002
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2003
+ msgid "Estonia"
2004
+ msgstr "Estland"
2005
+
2006
+ #: profile-builder-2.0/admin/manage-fields.php:352
2007
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2008
+ msgid "Ethiopia"
2009
+ msgstr "Äthiopien"
2010
+
2011
+ #: profile-builder-2.0/admin/manage-fields.php:353
2012
+ msgid "Falkland Islands"
2013
+ msgstr "Falklandinseln"
2014
+
2015
+ #: profile-builder-2.0/admin/manage-fields.php:354
2016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
+ msgid "Faroe Islands"
2018
+ msgstr "Faroe Islands"
2019
+
2020
+ #: profile-builder-2.0/admin/manage-fields.php:355
2021
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
+ msgid "Fiji"
2023
+ msgstr "Fiji"
2024
+
2025
+ #: profile-builder-2.0/admin/manage-fields.php:356
2026
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
+ msgid "Finland"
2028
+ msgstr "Finnland"
2029
+
2030
+ #: profile-builder-2.0/admin/manage-fields.php:357
2031
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
+ msgid "France"
2033
+ msgstr "Frankreich"
2034
+
2035
+ #: profile-builder-2.0/admin/manage-fields.php:358
2036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
+ msgid "French Guiana"
2038
+ msgstr "French Guiana"
2039
+
2040
+ #: profile-builder-2.0/admin/manage-fields.php:359
2041
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
+ msgid "French Polynesia"
2043
+ msgstr "French Polynesia"
2044
+
2045
+ #: profile-builder-2.0/admin/manage-fields.php:360
2046
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
+ msgid "French Southern Territories"
2048
+ msgstr "French Southern Territories"
2049
+
2050
+ #: profile-builder-2.0/admin/manage-fields.php:361
2051
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
+ msgid "Gabon"
2053
+ msgstr "Gabon"
2054
+
2055
+ #: profile-builder-2.0/admin/manage-fields.php:362
2056
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
+ msgid "Gambia"
2058
+ msgstr "Gambia"
2059
+
2060
+ #: profile-builder-2.0/admin/manage-fields.php:363
2061
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
+ msgid "Georgia"
2063
+ msgstr "Georgien"
2064
+
2065
+ #: profile-builder-2.0/admin/manage-fields.php:364
2066
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
+ msgid "Germany"
2068
+ msgstr "Deutschland"
2069
+
2070
+ #: profile-builder-2.0/admin/manage-fields.php:365
2071
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
+ msgid "Ghana"
2073
+ msgstr "Ghana"
2074
+
2075
+ #: profile-builder-2.0/admin/manage-fields.php:366
2076
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
+ msgid "Gibraltar"
2078
+ msgstr "Gibraltar"
2079
+
2080
+ #: profile-builder-2.0/admin/manage-fields.php:367
2081
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
+ msgid "Greece"
2083
+ msgstr "Griechenland"
2084
+
2085
+ #: profile-builder-2.0/admin/manage-fields.php:368
2086
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
+ msgid "Greenland"
2088
+ msgstr "Grönland"
2089
+
2090
+ #: profile-builder-2.0/admin/manage-fields.php:369
2091
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
+ msgid "Grenada"
2093
+ msgstr "Grenada"
2094
+
2095
+ #: profile-builder-2.0/admin/manage-fields.php:370
2096
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2097
+ msgid "Guadeloupe"
2098
+ msgstr "Guadeloupe"
2099
+
2100
+ #: profile-builder-2.0/admin/manage-fields.php:371
2101
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2102
+ msgid "Guam"
2103
+ msgstr "Guam"
2104
+
2105
+ #: profile-builder-2.0/admin/manage-fields.php:372
2106
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2107
+ msgid "Guatemala"
2108
+ msgstr "Guatemala"
2109
+
2110
+ #: profile-builder-2.0/admin/manage-fields.php:373
2111
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2112
+ msgid "Guernsey"
2113
+ msgstr "Guernsey"
2114
+
2115
+ #: profile-builder-2.0/admin/manage-fields.php:374
2116
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2117
+ msgid "Guinea"
2118
+ msgstr "Guinea"
2119
+
2120
+ #: profile-builder-2.0/admin/manage-fields.php:375
2121
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2122
+ msgid "Guinea-Bissau"
2123
+ msgstr "Guinea-Bissau"
2124
+
2125
+ #: profile-builder-2.0/admin/manage-fields.php:376
2126
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2127
+ msgid "Guyana"
2128
+ msgstr "Guyana"
2129
+
2130
+ #: profile-builder-2.0/admin/manage-fields.php:377
2131
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
+ msgid "Haiti"
2133
+ msgstr "Haiti"
2134
+
2135
+ #: profile-builder-2.0/admin/manage-fields.php:378
2136
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
+ msgid "Heard Island and McDonald Islands"
2138
+ msgstr "Heard Island and McDonald Islands"
2139
+
2140
+ #: profile-builder-2.0/admin/manage-fields.php:379
2141
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
+ msgid "Honduras"
2143
+ msgstr "Honduras"
2144
+
2145
+ #: profile-builder-2.0/admin/manage-fields.php:380
2146
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
+ msgid "Hong Kong"
2148
+ msgstr "Hong Kong"
2149
+
2150
+ #: profile-builder-2.0/admin/manage-fields.php:381
2151
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
+ msgid "Hungary"
2153
+ msgstr "Ungarn"
2154
+
2155
+ #: profile-builder-2.0/admin/manage-fields.php:382
2156
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
+ msgid "Iceland"
2158
+ msgstr "Island"
2159
+
2160
+ #: profile-builder-2.0/admin/manage-fields.php:383
2161
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2162
+ msgid "India"
2163
+ msgstr "Indien"
2164
+
2165
+ #: profile-builder-2.0/admin/manage-fields.php:384
2166
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2167
+ msgid "Indonesia"
2168
+ msgstr "Indonesien"
2169
+
2170
+ #: profile-builder-2.0/admin/manage-fields.php:385
2171
+ msgid "Iran"
2172
+ msgstr "Iran"
2173
+
2174
+ #: profile-builder-2.0/admin/manage-fields.php:386
2175
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2176
+ msgid "Iraq"
2177
+ msgstr "Irak"
2178
+
2179
+ #: profile-builder-2.0/admin/manage-fields.php:387
2180
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2181
+ msgid "Ireland"
2182
+ msgstr "Irland"
2183
+
2184
+ #: profile-builder-2.0/admin/manage-fields.php:388
2185
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2186
+ msgid "Isle of Man"
2187
+ msgstr "Isle of Man"
2188
+
2189
+ #: profile-builder-2.0/admin/manage-fields.php:389
2190
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2191
+ msgid "Israel"
2192
+ msgstr "Israel"
2193
+
2194
+ #: profile-builder-2.0/admin/manage-fields.php:390
2195
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2196
+ msgid "Italy"
2197
+ msgstr "Italien"
2198
+
2199
+ #: profile-builder-2.0/admin/manage-fields.php:391
2200
+ msgid "Ivory Coast"
2201
+ msgstr "Elfenbeinküste"
2202
+
2203
+ #: profile-builder-2.0/admin/manage-fields.php:392
2204
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
+ msgid "Jamaica"
2206
+ msgstr "Jamaica"
2207
+
2208
+ #: profile-builder-2.0/admin/manage-fields.php:393
2209
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
+ msgid "Japan"
2211
+ msgstr "Japan"
2212
+
2213
+ #: profile-builder-2.0/admin/manage-fields.php:394
2214
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
+ msgid "Jersey"
2216
+ msgstr "Jersey"
2217
+
2218
+ #: profile-builder-2.0/admin/manage-fields.php:395
2219
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
+ msgid "Jordan"
2221
+ msgstr "Jordanien"
2222
+
2223
+ #: profile-builder-2.0/admin/manage-fields.php:396
2224
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
+ msgid "Kazakhstan"
2226
+ msgstr "Kasachstan"
2227
+
2228
+ #: profile-builder-2.0/admin/manage-fields.php:397
2229
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2230
+ msgid "Kenya"
2231
+ msgstr "Kenia"
2232
+
2233
+ #: profile-builder-2.0/admin/manage-fields.php:398
2234
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2235
+ msgid "Kiribati"
2236
+ msgstr "Kiribati"
2237
+
2238
+ #: profile-builder-2.0/admin/manage-fields.php:399
2239
+ msgid "Kosovo"
2240
+ msgstr "Kosovo"
2241
+
2242
+ #: profile-builder-2.0/admin/manage-fields.php:400
2243
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
+ msgid "Kuwait"
2245
+ msgstr "Kuwait"
2246
+
2247
+ #: profile-builder-2.0/admin/manage-fields.php:401
2248
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
+ msgid "Kyrgyzstan"
2250
+ msgstr "Kirgisistan"
2251
+
2252
+ #: profile-builder-2.0/admin/manage-fields.php:402
2253
+ msgid "Laos"
2254
+ msgstr "Laos"
2255
+
2256
+ #: profile-builder-2.0/admin/manage-fields.php:403
2257
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2258
+ msgid "Latvia"
2259
+ msgstr "Lettland"
2260
+
2261
+ #: profile-builder-2.0/admin/manage-fields.php:404
2262
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2263
+ msgid "Lebanon"
2264
+ msgstr "Libanon"
2265
+
2266
+ #: profile-builder-2.0/admin/manage-fields.php:405
2267
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2268
+ msgid "Lesotho"
2269
+ msgstr "Lesotho"
2270
+
2271
+ #: profile-builder-2.0/admin/manage-fields.php:406
2272
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2273
+ msgid "Liberia"
2274
+ msgstr "Liberia"
2275
+
2276
+ #: profile-builder-2.0/admin/manage-fields.php:407
2277
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2278
+ msgid "Libya"
2279
+ msgstr "Libya"
2280
+
2281
+ #: profile-builder-2.0/admin/manage-fields.php:408
2282
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2283
+ msgid "Liechtenstein"
2284
+ msgstr "Liechtenstein"
2285
+
2286
+ #: profile-builder-2.0/admin/manage-fields.php:409
2287
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2288
+ msgid "Lithuania"
2289
+ msgstr "Litauen"
2290
+
2291
+ #: profile-builder-2.0/admin/manage-fields.php:410
2292
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2293
+ msgid "Luxembourg"
2294
+ msgstr "Luxemburg"
2295
+
2296
+ #: profile-builder-2.0/admin/manage-fields.php:411
2297
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2298
+ msgid "Macao"
2299
+ msgstr "Macao"
2300
+
2301
+ #: profile-builder-2.0/admin/manage-fields.php:412
2302
+ msgid "Macedonia"
2303
+ msgstr "Macedonia"
2304
+
2305
+ #: profile-builder-2.0/admin/manage-fields.php:413
2306
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
+ msgid "Madagascar"
2308
+ msgstr "Madagaskar"
2309
+
2310
+ #: profile-builder-2.0/admin/manage-fields.php:414
2311
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
+ msgid "Malawi"
2313
+ msgstr "Malawi"
2314
+
2315
+ #: profile-builder-2.0/admin/manage-fields.php:415
2316
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
+ msgid "Malaysia"
2318
+ msgstr "Malaysia"
2319
+
2320
+ #: profile-builder-2.0/admin/manage-fields.php:416
2321
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
+ msgid "Maldives"
2323
+ msgstr "Maldives"
2324
+
2325
+ #: profile-builder-2.0/admin/manage-fields.php:417
2326
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
+ msgid "Mali"
2328
+ msgstr "Mali"
2329
+
2330
+ #: profile-builder-2.0/admin/manage-fields.php:418
2331
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
+ msgid "Malta"
2333
+ msgstr "Malta"
2334
+
2335
+ #: profile-builder-2.0/admin/manage-fields.php:419
2336
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
+ msgid "Marshall Islands"
2338
+ msgstr "Marshall Islands"
2339
+
2340
+ #: profile-builder-2.0/admin/manage-fields.php:420
2341
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
+ msgid "Martinique"
2343
+ msgstr "Martinique"
2344
+
2345
+ #: profile-builder-2.0/admin/manage-fields.php:421
2346
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
+ msgid "Mauritania"
2348
+ msgstr "Mauritania"
2349
+
2350
+ #: profile-builder-2.0/admin/manage-fields.php:422
2351
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
+ msgid "Mauritius"
2353
+ msgstr "Mauritius"
2354
+
2355
+ #: profile-builder-2.0/admin/manage-fields.php:423
2356
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
+ msgid "Mayotte"
2358
+ msgstr "Mayotte"
2359
+
2360
+ #: profile-builder-2.0/admin/manage-fields.php:424
2361
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
+ msgid "Mexico"
2363
+ msgstr "Mexiko"
2364
+
2365
+ #: profile-builder-2.0/admin/manage-fields.php:425
2366
+ msgid "Micronesia"
2367
+ msgstr "Micronesia"
2368
+
2369
+ #: profile-builder-2.0/admin/manage-fields.php:426
2370
+ msgid "Moldova"
2371
+ msgstr "Moldawien"
2372
+
2373
+ #: profile-builder-2.0/admin/manage-fields.php:427
2374
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
+ msgid "Monaco"
2376
+ msgstr "Monaco"
2377
+
2378
+ #: profile-builder-2.0/admin/manage-fields.php:428
2379
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
+ msgid "Mongolia"
2381
+ msgstr "Mongolei"
2382
+
2383
+ #: profile-builder-2.0/admin/manage-fields.php:429
2384
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
+ msgid "Montenegro"
2386
+ msgstr "Montenegro"
2387
+
2388
+ #: profile-builder-2.0/admin/manage-fields.php:430
2389
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2390
+ msgid "Montserrat"
2391
+ msgstr "Montserrat"
2392
+
2393
+ #: profile-builder-2.0/admin/manage-fields.php:431
2394
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2395
+ msgid "Morocco"
2396
+ msgstr "Marokko"
2397
+
2398
+ #: profile-builder-2.0/admin/manage-fields.php:432
2399
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2400
+ msgid "Mozambique"
2401
+ msgstr "Mozambique"
2402
+
2403
+ #: profile-builder-2.0/admin/manage-fields.php:433
2404
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2405
+ msgid "Myanmar"
2406
+ msgstr "Myanmar"
2407
+
2408
+ #: profile-builder-2.0/admin/manage-fields.php:434
2409
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2410
+ msgid "Namibia"
2411
+ msgstr "Namibia"
2412
+
2413
+ #: profile-builder-2.0/admin/manage-fields.php:435
2414
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2415
+ msgid "Nauru"
2416
+ msgstr "Nauru"
2417
+
2418
+ #: profile-builder-2.0/admin/manage-fields.php:436
2419
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
+ msgid "Nepal"
2421
+ msgstr "Nepal"
2422
+
2423
+ #: profile-builder-2.0/admin/manage-fields.php:437
2424
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
+ msgid "Netherlands"
2426
+ msgstr "Niederlande"
2427
+
2428
+ #: profile-builder-2.0/admin/manage-fields.php:438
2429
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
+ msgid "New Caledonia"
2431
+ msgstr "Neukaledonien"
2432
+
2433
+ #: profile-builder-2.0/admin/manage-fields.php:439
2434
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
+ msgid "New Zealand"
2436
+ msgstr "Neuseeland"
2437
+
2438
+ #: profile-builder-2.0/admin/manage-fields.php:440
2439
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
+ msgid "Nicaragua"
2441
+ msgstr "Nicaragua"
2442
+
2443
+ #: profile-builder-2.0/admin/manage-fields.php:441
2444
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
+ msgid "Niger"
2446
+ msgstr "Niger"
2447
+
2448
+ #: profile-builder-2.0/admin/manage-fields.php:442
2449
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
+ msgid "Nigeria"
2451
+ msgstr "Nigeria"
2452
+
2453
+ #: profile-builder-2.0/admin/manage-fields.php:443
2454
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
+ msgid "Niue"
2456
+ msgstr "Niue"
2457
+
2458
+ #: profile-builder-2.0/admin/manage-fields.php:444
2459
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
+ msgid "Norfolk Island"
2461
+ msgstr "Norfolk Island"
2462
+
2463
+ #: profile-builder-2.0/admin/manage-fields.php:445
2464
+ msgid "North Korea"
2465
+ msgstr "Nordkorea"
2466
+
2467
+ #: profile-builder-2.0/admin/manage-fields.php:446
2468
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2469
+ msgid "Northern Mariana Islands"
2470
+ msgstr "Northern Mariana Islands"
2471
+
2472
+ #: profile-builder-2.0/admin/manage-fields.php:447
2473
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2474
+ msgid "Norway"
2475
+ msgstr "Norwegen"
2476
+
2477
+ #: profile-builder-2.0/admin/manage-fields.php:448
2478
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
+ msgid "Oman"
2480
+ msgstr "Oman"
2481
+
2482
+ #: profile-builder-2.0/admin/manage-fields.php:449
2483
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2484
+ msgid "Pakistan"
2485
+ msgstr "Pakistan"
2486
+
2487
+ #: profile-builder-2.0/admin/manage-fields.php:450
2488
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2489
+ msgid "Palau"
2490
+ msgstr "Palau"
2491
+
2492
+ #: profile-builder-2.0/admin/manage-fields.php:451
2493
+ msgid "Palestinian Territory"
2494
+ msgstr "Palästinensisches Territorium"
2495
+
2496
+ #: profile-builder-2.0/admin/manage-fields.php:452
2497
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
+ msgid "Panama"
2499
+ msgstr "Panama"
2500
+
2501
+ #: profile-builder-2.0/admin/manage-fields.php:453
2502
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2503
+ msgid "Papua New Guinea"
2504
+ msgstr "Papua New Guinea"
2505
+
2506
+ #: profile-builder-2.0/admin/manage-fields.php:454
2507
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2508
+ msgid "Paraguay"
2509
+ msgstr "Paraguay"
2510
+
2511
+ #: profile-builder-2.0/admin/manage-fields.php:455
2512
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2513
+ msgid "Peru"
2514
+ msgstr "Peru"
2515
+
2516
+ #: profile-builder-2.0/admin/manage-fields.php:456
2517
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2518
+ msgid "Philippines"
2519
+ msgstr "Philippinen"
2520
+
2521
+ #: profile-builder-2.0/admin/manage-fields.php:457
2522
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2523
+ msgid "Pitcairn"
2524
+ msgstr "Pitcairn"
2525
+
2526
+ #: profile-builder-2.0/admin/manage-fields.php:458
2527
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2528
+ msgid "Poland"
2529
+ msgstr "Polen"
2530
+
2531
+ #: profile-builder-2.0/admin/manage-fields.php:459
2532
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2533
+ msgid "Portugal"
2534
+ msgstr "Portugal"
2535
+
2536
+ #: profile-builder-2.0/admin/manage-fields.php:460
2537
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2538
+ msgid "Puerto Rico"
2539
+ msgstr "Puerto Rico"
2540
+
2541
+ #: profile-builder-2.0/admin/manage-fields.php:461
2542
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2543
+ msgid "Qatar"
2544
+ msgstr "Katar"
2545
+
2546
+ #: profile-builder-2.0/admin/manage-fields.php:462
2547
+ msgid "Republic of the Congo"
2548
+ msgstr "Kongo"
2549
+
2550
+ #: profile-builder-2.0/admin/manage-fields.php:463
2551
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2552
+ msgid "Reunion"
2553
+ msgstr "Reunion"
2554
+
2555
+ #: profile-builder-2.0/admin/manage-fields.php:464
2556
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2557
+ msgid "Romania"
2558
+ msgstr "Rumänien"
2559
+
2560
+ #: profile-builder-2.0/admin/manage-fields.php:465
2561
+ msgid "Russia"
2562
+ msgstr "Russia"
2563
+
2564
+ #: profile-builder-2.0/admin/manage-fields.php:466
2565
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
+ msgid "Rwanda"
2567
+ msgstr "Rwanda"
2568
+
2569
+ #: profile-builder-2.0/admin/manage-fields.php:467
2570
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
+ msgid "Saint Barthelemy"
2572
+ msgstr "Saint Barthelemy"
2573
+
2574
+ #: profile-builder-2.0/admin/manage-fields.php:468
2575
+ msgid "Saint Helena"
2576
+ msgstr "Saint Helena"
2577
+
2578
+ #: profile-builder-2.0/admin/manage-fields.php:469
2579
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
+ msgid "Saint Kitts and Nevis"
2581
+ msgstr "Saint Kitts and Nevis"
2582
+
2583
+ #: profile-builder-2.0/admin/manage-fields.php:470
2584
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
+ msgid "Saint Lucia"
2586
+ msgstr "Saint Lucia"
2587
+
2588
+ #: profile-builder-2.0/admin/manage-fields.php:471
2589
+ msgid "Saint Martin"
2590
+ msgstr "Saint Martin"
2591
+
2592
+ #: profile-builder-2.0/admin/manage-fields.php:472
2593
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2594
+ msgid "Saint Pierre and Miquelon"
2595
+ msgstr "Saint Pierre and Miquelon"
2596
+
2597
+ #: profile-builder-2.0/admin/manage-fields.php:473
2598
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2599
+ msgid "Saint Vincent and the Grenadines"
2600
+ msgstr "St. Vincent und die Grenadinen"
2601
+
2602
+ #: profile-builder-2.0/admin/manage-fields.php:474
2603
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2604
+ msgid "Samoa"
2605
+ msgstr "Samoa"
2606
+
2607
+ #: profile-builder-2.0/admin/manage-fields.php:475
2608
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2609
+ msgid "San Marino"
2610
+ msgstr "San Marino"
2611
+
2612
+ #: profile-builder-2.0/admin/manage-fields.php:476
2613
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
+ msgid "Sao Tome and Principe"
2615
+ msgstr "Sao Tome and Principe"
2616
+
2617
+ #: profile-builder-2.0/admin/manage-fields.php:477
2618
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
+ msgid "Saudi Arabia"
2620
+ msgstr "Saudi Arabia"
2621
+
2622
+ #: profile-builder-2.0/admin/manage-fields.php:478
2623
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
+ msgid "Senegal"
2625
+ msgstr "Senegal"
2626
+
2627
+ #: profile-builder-2.0/admin/manage-fields.php:479
2628
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
+ msgid "Serbia"
2630
+ msgstr "Serbia"
2631
+
2632
+ #: profile-builder-2.0/admin/manage-fields.php:480
2633
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
+ msgid "Seychelles"
2635
+ msgstr "Seychellen"
2636
+
2637
+ #: profile-builder-2.0/admin/manage-fields.php:481
2638
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
+ msgid "Sierra Leone"
2640
+ msgstr "Sierra Leone"
2641
+
2642
+ #: profile-builder-2.0/admin/manage-fields.php:482
2643
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
+ msgid "Singapore"
2645
+ msgstr "Singapore"
2646
+
2647
+ #: profile-builder-2.0/admin/manage-fields.php:483
2648
+ msgid "Sint Maarten"
2649
+ msgstr "Sint Maarten"
2650
+
2651
+ #: profile-builder-2.0/admin/manage-fields.php:484
2652
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2653
+ msgid "Slovakia"
2654
+ msgstr "Slowakei"
2655
+
2656
+ #: profile-builder-2.0/admin/manage-fields.php:485
2657
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2658
+ msgid "Slovenia"
2659
+ msgstr "Slowenien"
2660
+
2661
+ #: profile-builder-2.0/admin/manage-fields.php:486
2662
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
+ msgid "Solomon Islands"
2664
+ msgstr "Solomon Islands"
2665
+
2666
+ #: profile-builder-2.0/admin/manage-fields.php:487
2667
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2668
+ msgid "Somalia"
2669
+ msgstr "Somalia"
2670
+
2671
+ #: profile-builder-2.0/admin/manage-fields.php:488
2672
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2673
+ msgid "South Africa"
2674
+ msgstr "Südafrika"
2675
+
2676
+ #: profile-builder-2.0/admin/manage-fields.php:489
2677
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2678
+ msgid "South Georgia and the South Sandwich Islands"
2679
+ msgstr "South Georgia and the South Sandwich Islands"
2680
+
2681
+ #: profile-builder-2.0/admin/manage-fields.php:490
2682
+ msgid "South Korea"
2683
+ msgstr "Südkorea"
2684
+
2685
+ #: profile-builder-2.0/admin/manage-fields.php:491
2686
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2687
+ msgid "South Sudan"
2688
+ msgstr "Südsudan"
2689
+
2690
+ #: profile-builder-2.0/admin/manage-fields.php:492
2691
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2692
+ msgid "Spain"
2693
+ msgstr "Spanien"
2694
+
2695
+ #: profile-builder-2.0/admin/manage-fields.php:493
2696
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2697
+ msgid "Sri Lanka"
2698
+ msgstr "Sri Lanka"
2699
+
2700
+ #: profile-builder-2.0/admin/manage-fields.php:494
2701
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2702
+ msgid "Sudan"
2703
+ msgstr "Sudan"
2704
+
2705
+ #: profile-builder-2.0/admin/manage-fields.php:495
2706
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2707
+ msgid "Suriname"
2708
+ msgstr "Suriname"
2709
+
2710
+ #: profile-builder-2.0/admin/manage-fields.php:496
2711
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2712
+ msgid "Svalbard and Jan Mayen"
2713
+ msgstr "Svalbard and Jan Mayen"
2714
+
2715
+ #: profile-builder-2.0/admin/manage-fields.php:497
2716
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2717
+ msgid "Swaziland"
2718
+ msgstr "Swaziland"
2719
+
2720
+ #: profile-builder-2.0/admin/manage-fields.php:498
2721
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2722
+ msgid "Sweden"
2723
+ msgstr "Schweden"
2724
+
2725
+ #: profile-builder-2.0/admin/manage-fields.php:499
2726
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
+ msgid "Switzerland"
2728
+ msgstr "Schweiz"
2729
+
2730
+ #: profile-builder-2.0/admin/manage-fields.php:500
2731
+ msgid "Syria"
2732
+ msgstr "Syrien"
2733
+
2734
+ #: profile-builder-2.0/admin/manage-fields.php:501
2735
+ msgid "Taiwan"
2736
+ msgstr "Taiwan"
2737
+
2738
+ #: profile-builder-2.0/admin/manage-fields.php:502
2739
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
+ msgid "Tajikistan"
2741
+ msgstr "Tadschikistan"
2742
+
2743
+ #: profile-builder-2.0/admin/manage-fields.php:503
2744
+ msgid "Tanzania"
2745
+ msgstr "Tanzania"
2746
+
2747
+ #: profile-builder-2.0/admin/manage-fields.php:504
2748
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2749
+ msgid "Thailand"
2750
+ msgstr "Thailand"
2751
+
2752
+ #: profile-builder-2.0/admin/manage-fields.php:505
2753
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2754
+ msgid "Togo"
2755
+ msgstr "Togo"
2756
+
2757
+ #: profile-builder-2.0/admin/manage-fields.php:506
2758
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2759
+ msgid "Tokelau"
2760
+ msgstr "Tokelau"
2761
+
2762
+ #: profile-builder-2.0/admin/manage-fields.php:507
2763
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2764
+ msgid "Tonga"
2765
+ msgstr "Tonga"
2766
+
2767
+ #: profile-builder-2.0/admin/manage-fields.php:508
2768
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2769
+ msgid "Trinidad and Tobago"
2770
+ msgstr "Trinidad und Tobago"
2771
+
2772
+ #: profile-builder-2.0/admin/manage-fields.php:509
2773
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2774
+ msgid "Tunisia"
2775
+ msgstr "Tunesien"
2776
+
2777
+ #: profile-builder-2.0/admin/manage-fields.php:510
2778
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2779
+ msgid "Turkey"
2780
+ msgstr "Türkei"
2781
+
2782
+ #: profile-builder-2.0/admin/manage-fields.php:511
2783
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2784
+ msgid "Turkmenistan"
2785
+ msgstr "Turkmenistan"
2786
+
2787
+ #: profile-builder-2.0/admin/manage-fields.php:512
2788
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2789
+ msgid "Turks and Caicos Islands"
2790
+ msgstr "Turks and Caicos Islands"
2791
+
2792
+ #: profile-builder-2.0/admin/manage-fields.php:513
2793
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2794
+ msgid "Tuvalu"
2795
+ msgstr "Tuvalu"
2796
+
2797
+ #: profile-builder-2.0/admin/manage-fields.php:514
2798
+ msgid "U.S. Virgin Islands"
2799
+ msgstr "Amerikanische Jungferninseln"
2800
+
2801
+ #: profile-builder-2.0/admin/manage-fields.php:515
2802
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2803
+ msgid "Uganda"
2804
+ msgstr "Uganda"
2805
+
2806
+ #: profile-builder-2.0/admin/manage-fields.php:516
2807
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2808
+ msgid "Ukraine"
2809
+ msgstr "Ukraine"
2810
+
2811
+ #: profile-builder-2.0/admin/manage-fields.php:517
2812
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2813
+ msgid "United Arab Emirates"
2814
+ msgstr "Vereinigte Arabische Emirate"
2815
+
2816
+ #: profile-builder-2.0/admin/manage-fields.php:518
2817
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2818
+ msgid "United Kingdom"
2819
+ msgstr "Grossbritannien (Vereinigtes Königreich)"
2820
+
2821
+ #: profile-builder-2.0/admin/manage-fields.php:519
2822
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2823
+ msgid "United States"
2824
+ msgstr "USA"
2825
+
2826
+ #: profile-builder-2.0/admin/manage-fields.php:520
2827
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2828
+ msgid "United States Minor Outlying Islands"
2829
+ msgstr "United States Minor Outlying Islands"
2830
+
2831
+ #: profile-builder-2.0/admin/manage-fields.php:521
2832
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2833
+ msgid "Uruguay"
2834
+ msgstr "Uruguay"
2835
+
2836
+ #: profile-builder-2.0/admin/manage-fields.php:522
2837
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2838
+ msgid "Uzbekistan"
2839
+ msgstr "Uzbekistan"
2840
+
2841
+ #: profile-builder-2.0/admin/manage-fields.php:523
2842
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2843
+ msgid "Vanuatu"
2844
+ msgstr "Vanuatu"
2845
+
2846
+ #: profile-builder-2.0/admin/manage-fields.php:524
2847
+ msgid "Vatican"
2848
+ msgstr "Vatikan"
2849
+
2850
+ #: profile-builder-2.0/admin/manage-fields.php:525
2851
+ msgid "Venezuela"
2852
+ msgstr "Venezuela"
2853
+
2854
+ #: profile-builder-2.0/admin/manage-fields.php:526
2855
+ msgid "Vietnam"
2856
+ msgstr "Vietnam"
2857
+
2858
+ #: profile-builder-2.0/admin/manage-fields.php:527
2859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2860
+ msgid "Wallis and Futuna"
2861
+ msgstr "Wallis und Futuna"
2862
+
2863
+ #: profile-builder-2.0/admin/manage-fields.php:528
2864
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2865
+ msgid "Western Sahara"
2866
+ msgstr "Westsahara"
2867
+
2868
+ #: profile-builder-2.0/admin/manage-fields.php:529
2869
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2870
+ msgid "Yemen"
2871
+ msgstr "Jemen"
2872
+
2873
+ #: profile-builder-2.0/admin/manage-fields.php:530
2874
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2875
+ msgid "Zambia"
2876
+ msgstr "Sambia"
2877
+
2878
+ #: profile-builder-2.0/admin/manage-fields.php:531
2879
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2880
+ msgid "Zimbabwe"
2881
+ msgstr "Simbabwe"
2882
+
2883
+ #: profile-builder-2.0/admin/manage-fields.php:1219
2884
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2885
+ msgstr "Mit Profile Builder Pro v2 können Sie verschiedene Felder im Registrierungs- und Profilformular anzeigen. Nutzen Sie dazu das Modul Multiple Registration & Edit Profile Forms."
2886
+
2887
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2888
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2889
+ msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie sich einloggen können."
2890
+
2891
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
+ msgid "Your account has been successfully created!"
2893
+ msgstr "Ihr Benutzerkonto wurde erfolgreich angelegt!"
2894
+
2895
+ #: profile-builder-2.0/features/functions.php:678
2896
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2897
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2898
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2899
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2900
+ msgid "Please enter a (valid) reCAPTCHA value"
2901
+ msgstr "Bitte gib das reCAPTCHA (korrekt) ein."
2902
+
2903
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2904
+ msgid "Click the BACK button on your browser, and try again."
2905
+ msgstr "Bitte klicke auf den \"Zurück\"-Button in einem Browser und versuche es erneut."
2906
+
2907
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2908
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2909
+ msgid "Sorry, you cannot upload this file type for this field."
2910
+ msgstr "Dieser Dateityp ist für dieses Feld nicht erlaubt."
2911
+
2912
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2913
+ msgid "An error occurred, please try again later."
2914
+ msgstr "Es ist ein Fehler aufgetreten, bitte versuchen Sie es später noch einmal."
2915
+
2916
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
+ msgid "More"
2918
+ msgstr "Mehr"
2919
+
2920
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2921
+ msgid "You do not have permission to view this user list."
2922
+ msgstr "Sie haben keine Berechtigung, um diese Benutzerliste einzusehen."
2923
+
2924
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2925
+ msgid "You do not have the required user role to view this user list."
2926
+ msgstr "Sie haben nicht die notwendige Benutzerrolle, um diese Benutzerliste einzusehen."
2927
+
2928
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
+ msgid "Ascending"
2930
+ msgstr "Aufsteigend"
2931
+
2932
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
+ msgid "Descending"
2934
+ msgstr "Absteigend"
2935
+
2936
+ #: profile-builder-2.0/admin/add-ons.php:148
2937
+ #: profile-builder-2.0/admin/add-ons.php:248
2938
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2939
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2940
+ msgid "Download Now"
2941
+ msgstr "Jetzt herunterladen"
2942
+
2943
+ #: profile-builder-2.0/admin/admin-functions.php:200
2944
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2945
+ msgstr "Gefällt dir <strong>%1$s</strong>, dann <a href=\"%2$s\" target=\"_blank\">bewerte uns bitte auf WordPress.org</a>. Mehr glückliche Benutzer, bedeuten mehr Features, weniger Fehler und besseren Support für jeden."
2946
+
2947
+ #: profile-builder-2.0/admin/manage-fields.php:82
2948
+ msgid "Choose one of the supported field types"
2949
+ msgstr "Wähle eins von den unterstützten Feldtypen."
2950
+
2951
+ #: profile-builder-2.0/admin/manage-fields.php:84
2952
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2953
+ msgstr "Extra Feldtypen stehen in der <a href=\"%s\">Hobbyist oder PRO Version</a> zur Verfügung."
2954
+
2955
+ #: profile-builder-2.0/admin/manage-fields.php:131
2956
+ msgid "Site Key"
2957
+ msgstr "Seitenschlüssel"
2958
+
2959
+ #: profile-builder-2.0/admin/manage-fields.php:131
2960
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2961
+ msgstr "Der Seitenschlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2962
+
2963
+ #: profile-builder-2.0/admin/manage-fields.php:132
2964
+ msgid "Secret Key"
2965
+ msgstr "Geheimer Schlüssel"
2966
+
2967
+ #: profile-builder-2.0/admin/manage-fields.php:132
2968
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2969
+ msgstr "Der geheime Schlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2970
+
2971
+ #: profile-builder-2.0/admin/manage-fields.php:1023
2972
+ msgid "You must enter the site key\n"
2973
+ msgstr "Sie müssen den Seiten Schlüssel eingeben\n"
2974
+
2975
+ #: profile-builder-2.0/admin/manage-fields.php:1025
2976
+ msgid "You must enter the secret key\n"
2977
+ msgstr "Sie müssen den geheimen Schlüssel eingeben\n"
2978
+
2979
+ #: profile-builder-2.0/admin/add-ons.php:10
2980
+ #: profile-builder-2.0/admin/add-ons.php:32
2981
+ msgid "Add-Ons"
2982
+ msgstr "Add-Ons"
2983
+
2984
+ #: profile-builder-2.0/admin/add-ons.php:34
2985
+ #: profile-builder-2.0/admin/add-ons.php:129
2986
+ #: profile-builder-2.0/admin/add-ons.php:231
2987
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2988
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2989
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2990
+ msgid "Activate"
2991
+ msgstr "Aktivieren"
2992
+
2993
+ #: profile-builder-2.0/admin/add-ons.php:36
2994
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2995
+ msgid "Downloading and installing..."
2996
+ msgstr "Downloaden und installieren..."
2997
+
2998
+ #: profile-builder-2.0/admin/add-ons.php:37
2999
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3000
+ msgid "Installation complete"
3001
+ msgstr "Installation abgeschlossen"
3002
+
3003
+ #: profile-builder-2.0/admin/add-ons.php:39
3004
+ msgid "Add-On is Active"
3005
+ msgstr "Add-On ist aktiv"
3006
+
3007
+ #: profile-builder-2.0/admin/add-ons.php:40
3008
+ msgid "Add-On has been activated"
3009
+ msgstr "Add-On wurde aktiviert"
3010
+
3011
+ #: profile-builder-2.0/admin/add-ons.php:41
3012
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3013
+ msgid "Retry Install"
3014
+ msgstr "Installation erneut versuchen"
3015
+
3016
+ #: profile-builder-2.0/admin/add-ons.php:43
3017
+ #: profile-builder-2.0/admin/add-ons.php:140
3018
+ msgid "Add-On is <strong>active</strong>"
3019
+ msgstr "Add-On ist <strong>aktiv</strong>"
3020
+
3021
+ #: profile-builder-2.0/admin/add-ons.php:44
3022
+ #: profile-builder-2.0/admin/add-ons.php:138
3023
+ msgid "Add-On is <strong>inactive</strong>"
3024
+ msgstr "Add-On ist <strong>inaktiv</strong>"
3025
+
3026
+ #: profile-builder-2.0/admin/add-ons.php:46
3027
+ #: profile-builder-2.0/admin/add-ons.php:133
3028
+ #: profile-builder-2.0/admin/add-ons.php:235
3029
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3030
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3031
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3032
+ msgid "Deactivate"
3033
+ msgstr "Deaktivieren"
3034
+
3035
+ #: profile-builder-2.0/admin/add-ons.php:47
3036
+ msgid "Add-On has been deactivated."
3037
+ msgstr "Add-On wurde deaktiviert."
3038
+
3039
+ #: profile-builder-2.0/admin/add-ons.php:59
3040
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
3041
+ msgstr "Etwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut."
3042
+
3043
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3044
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3045
+ msgid "Install Now"
3046
+ msgstr "Jetzt installieren"
3047
+
3048
+ #: profile-builder-2.0/admin/add-ons.php:153
3049
+ #: profile-builder-2.0/admin/add-ons.php:251
3050
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3051
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3052
+ msgid "Compatible with your version of Profile Builder."
3053
+ msgstr "Kompatibel mit deiner Version von Profile Builder."
3054
+
3055
+ #: profile-builder-2.0/admin/add-ons.php:162
3056
+ msgid "Upgrade Profile Builder"
3057
+ msgstr "Profile Builder upgraden"
3058
+
3059
+ #: profile-builder-2.0/admin/add-ons.php:163
3060
+ msgid "Not compatible with Profile Builder"
3061
+ msgstr "Nicht kompatibel mit Profile Builder"
3062
+
3063
+ #: profile-builder-2.0/admin/add-ons.php:171
3064
+ msgid "Not compatible with your version of Profile Builder."
3065
+ msgstr "Nicht kompatibel mit deiner Version von Profile Builder."
3066
+
3067
+ #: profile-builder-2.0/admin/add-ons.php:172
3068
+ msgid "Minimum required Profile Builder version:"
3069
+ msgstr "Minimal benötigte Version von Profile Builder:"
3070
+
3071
+ #: profile-builder-2.0/admin/add-ons.php:177
3072
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3073
+ msgstr "Add-On konnte nicht installiert werden. Erneut versuchen oder <a href=\"%s\" target=\"_blank\">manuell installieren</a>."
3074
+
3075
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3076
+ msgid "You must enter a valid email address."
3077
+ msgstr "Sie müssen eine gültige E-Mail Adresse angeben."
3078
+
3079
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3080
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3081
+ msgid "This username is invalid because it uses illegal characters."
3082
+ msgstr "Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält."
3083
+
3084
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3085
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3086
+ msgid "Please enter a valid username."
3087
+ msgstr "Bitte gib einen gültigen Benutzernamen ein."
3088
+
3089
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3090
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3091
+ msgid "Only administrators can see this field on edit profile forms."
3092
+ msgstr "Nur Administratoren können dieses Feld beim editieren von Profilformularen sehen."
3093
+
3094
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3095
+ msgid "As an administrator you cannot change your role."
3096
+ msgstr "Als Administrator kannst du deine Berechtigungen nicht ändern."
3097
+
3098
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3099
+ msgid ""
3100
+ "\n"
3101
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3102
+ "<p>His/her new password is: {{password}}</p>\n"
3103
+ msgstr ""
3104
+ "\n"
3105
+ "<p>{{username}} hat sein Passwort geändert.</p>\n"
3106
+ "<p>Das neue Passwort ist: {{password}}</p>\n"
3107
+ "\n"
3108
+ "\n"
3109
+
3110
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3111
+ msgid "Admin Notification for User Password Reset"
3112
+ msgstr "Admin Notiz für das Zurücksetzen eines Passwortes von einem Benutzer"
3113
+
3114
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3115
+ msgid "Reset Key"
3116
+ msgstr "Zurücksetzungs-Key"
3117
+
3118
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3119
+ msgid "Reset Url"
3120
+ msgstr "Zurücksetzungs-URL"
3121
+
3122
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3123
+ msgid "Reset Link"
3124
+ msgstr "Zurücksetzungs-Link"
3125
+
3126
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3127
+ msgid ""
3128
+ "\n"
3129
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3130
+ "Username: {{username}}</p>\n"
3131
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3132
+ "<p>To reset your password, visit the following address:<br/>\n"
3133
+ "{{{reset_link}}}</p>\n"
3134
+ msgstr ""
3135
+ "\n"
3136
+ "<p>Jemand hat für das folgende Konto ein neues Kennwort angefordert: {{site_name}}<br/>\n"
3137
+ "Benutzername: {{username}}</p>\n"
3138
+ "<p>Wenn das ein Fehler war, wird nichts passieren</p>\n"
3139
+ "<p>Gehe auf folgende Seite, um das Kennwort zu erneuern:<br/>\n"
3140
+ "{{{reset_link}}}</p>\n"
3141
+
3142
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3143
+ msgid "[{{site_name}}] Password Reset"
3144
+ msgstr "[{{site_name}}] Passwortzurücksetzung"
3145
+
3146
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3147
+ msgid "Password Reset Email"
3148
+ msgstr "E-Mail für die Passwortzurücksetzung"
3149
+
3150
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3151
+ msgid ""
3152
+ "\n"
3153
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
3154
+ msgstr ""
3155
+ "\n"
3156
+ "<p>Du hast dein Passwort erfolgreich zurückgesetzt: {{password}}</p>\n"
3157
+
3158
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3159
+ msgid "[{{site_name}}] Password Reset Successfully"
3160
+ msgstr "[{{site_name}}] Passwortzurücksetzung erfolgreich"
3161
+
3162
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3163
+ msgid "Password Reset Success Email"
3164
+ msgstr "Passwort zurücksetzen erfolgreich Email"
3165
+
3166
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3167
+ msgid "User Nicename"
3168
+ msgstr "Benutzername"
3169
+
3170
+ #: pb-add-on-woocommerce/woosync-page.php:80
3171
+ #: pb-add-on-woocommerce/woosync-page.php:114
3172
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3173
+ msgid "None"
3174
+ msgstr "Nichts"
3175
+
3176
+ #: profile-builder-2.0/admin/admin-functions.php:132
3177
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3178
+ msgstr "<strong>FEHLER</strong>: Das Passwort muss mindestens %s Zeichen lang sein"
3179
+
3180
+ #: profile-builder-2.0/admin/admin-functions.php:148
3181
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3182
+ msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
3183
+
3184
+ #: profile-builder-2.0/admin/general-settings.php:179
3185
+ msgid "Username and Email"
3186
+ msgstr "Benutzername und E-Mail"
3187
+
3188
+ #: profile-builder-2.0/admin/general-settings.php:184
3189
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
3190
+ msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."
3191
+
3192
+ #: profile-builder-2.0/admin/general-settings.php:185
3193
+ msgid "\"Username\" - users can Log In only with Username."
3194
+ msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden"
3195
+
3196
+ #: profile-builder-2.0/admin/general-settings.php:186
3197
+ msgid "\"Email\" - users can Log In only with Email."
3198
+ msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."
3199
+
3200
+ #: profile-builder-2.0/admin/manage-fields.php:124
3201
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3202
+ msgstr ""
3203
+ "Gib die Datei-Erweiterung(en) ein, die du für den Upload erlauben möchtest.<br/>\n"
3204
+ "z.B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)"
3205
+
3206
+ #: profile-builder-2.0/admin/manage-fields.php:125
3207
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3208
+ msgstr "Geben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten<br/> z. B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden alle von WordPress erlaubten Datei-Erweiterungen gesetzt: (.*)"
3209
+
3210
+ #: profile-builder-2.0/admin/manage-fields.php:135
3211
+ msgid "User Roles"
3212
+ msgstr "Benutzerrollen"
3213
+
3214
+ #: profile-builder-2.0/admin/manage-fields.php:135
3215
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3216
+ msgstr "Wähle, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum Neusortieren)"
3217
+
3218
+ #: profile-builder-2.0/admin/manage-fields.php:136
3219
+ msgid "User Roles Order"
3220
+ msgstr "Benutzerrollen Sortierung"
3221
+
3222
+ #: profile-builder-2.0/admin/manage-fields.php:136
3223
+ msgid "Save the user role order from the user roles checkboxes"
3224
+ msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen"
3225
+
3226
+ #: profile-builder-2.0/admin/manage-fields.php:1128
3227
+ msgid "Please select at least one user role\n"
3228
+ msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
3229
+
3230
+ #: profile-builder-2.0/admin/register-version.php:22
3231
+ msgid "Profile Builder Register"
3232
+ msgstr "Profile Builder Registrierung"
3233
+
3234
+ #: profile-builder-2.0/admin/register-version.php:81
3235
+ msgid "The serial number is about to expire soon!"
3236
+ msgstr "Die Seriennummer wird bald ablaufen!"
3237
+
3238
+ #: profile-builder-2.0/admin/register-version.php:81
3239
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3240
+ msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$s."
3241
+
3242
+ #: profile-builder-2.0/admin/register-version.php:83
3243
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3244
+ msgstr "Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
3245
+
3246
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3247
+ msgid "Add Entry"
3248
+ msgstr "Eintrag hinzufügen"
3249
+
3250
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3251
+ msgid "show"
3252
+ msgstr "anzeigen"
3253
+
3254
+ #: profile-builder-2.0/features/functions.php:736
3255
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3256
+ msgstr "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu nach %1$sEinstellungen -> Allgemein%2$s und stelle unter unter Mitgliedschaft sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
3257
+
3258
+ #: profile-builder-2.0/front-end/class-formbuilder.php:659
3259
+ msgid "User to edit:"
3260
+ msgstr "Benutzer editieren"
3261
+
3262
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3263
+ #: profile-builder-2.0/front-end/recover.php:262
3264
+ msgid "The password must have the minimum length of %s characters"
3265
+ msgstr "Das Passwort muss mindestes %s Zeichen haben"
3266
+
3267
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3268
+ #: profile-builder-2.0/front-end/recover.php:266
3269
+ msgid "The password must have a minimum strength of %s"
3270
+ msgstr "Das Passwort muss eine Mindeststärke von %s haben"
3271
+
3272
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3273
+ msgid "You cannot register this user role"
3274
+ msgstr "Sie können diese Benutzerrolle nicht registrieren"
3275
+
3276
+ #: profile-builder-2.0/front-end/login.php:153
3277
+ msgid "username or email"
3278
+ msgstr "Benutzername oder E-Mail-Adresse"
3279
+
3280
+ #: profile-builder-2.0/front-end/login.php:222
3281
+ msgid "Username or Email"
3282
+ msgstr "Benutzername oder E-Mail-Adresse"
3283
+
3284
+ #: profile-builder-2.0/front-end/logout.php:15
3285
+ msgid "You are currently logged in as %s. "
3286
+ msgstr "Du bist eingeloggt als %s."
3287
+
3288
+ #: profile-builder-2.0/front-end/logout.php:15
3289
+ msgid "Log out &raquo;"
3290
+ msgstr "Ausloggen &raquo;"
3291
+
3292
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3293
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3294
+ msgid "User Role"
3295
+ msgstr "Benutzerrolle"
3296
+
3297
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3298
+ msgid "View all extra shortcode parameters"
3299
+ msgstr "Alle zusätzlichen Shortcode-Parameter anzeigen"
3300
+
3301
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3302
+ msgid "displays only the users that you specified the user_id for"
3303
+ msgstr "Nur die Benutzer anzeigen, denen du die user_id vergeben hast"
3304
+
3305
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3306
+ msgid "displays all users except the ones you specified the user_id for"
3307
+ msgstr "Zeigt alle Benutzer an, außer diejenigen, denen du eine user_id gegeben hast."
3308
+
3309
+ #: profile-builder-2.0/features/functions.php:566
3310
+ msgid "Minimum length of %d characters"
3311
+ msgstr "Mindestlänge: %d Zeichen"
3312
+
3313
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
3314
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
3315
+ msgid "This message is only visible by administrators"
3316
+ msgstr "Diese Nachricht ist nur für Administratoren sichtbar"
3317
+
3318
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3319
+ msgid "User not found"
3320
+ msgstr "Der Benutzer wurde nicht gefunden."
3321
+
3322
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3323
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3324
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
3325
+ msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
3326
+
3327
+ #: profile-builder-2.0/admin/admin-bar.php:48
3328
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3329
+ msgstr "Wähle, welche Benutzerrollen du in der Admin Bar im Front-End der Website sehen möchtest."
3330
+
3331
+ #: profile-builder-2.0/admin/manage-fields.php:129
3332
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3333
+ msgstr "Gib eine kommagetrennte Liste von Werten ein<br/> Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthalten"
3334
+
3335
+ #: profile-builder-2.0/admin/manage-fields.php:1055
3336
+ msgid "The meta-name cannot be empty\n"
3337
+ msgstr "Der Meta-Name darf nicht leer sein\n"
3338
+
3339
+ #: profile-builder-2.0/admin/register-version.php:69
3340
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3341
+ msgstr "Du hast eine Kopie von %s erworben. Du solltest dir die Zeit nehmen, um deine Seriennummer zu registrieren."
3342
+
3343
+ #: profile-builder-2.0/admin/register-version.php:243
3344
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3345
+ msgstr "<p> Deine <strong>Profil Builder</strong> Seriennummer ist ungültig oder fehlt.<br/> Bitte %1$s registriere deine Kopie %2$s damit du Zugang zu automatischen Updates und Support erhalten kannst. Benötigst du noch einen Lizenzschlüssel? %3$s Kaufe jetzt eine%4$s </p>"
3346
+
3347
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3348
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3349
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3350
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3351
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3352
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3353
+ msgid "...Choose"
3354
+ msgstr "...Wähle"
3355
+
3356
+ #: profile-builder-2.0/features/class-list-table.php:526
3357
+ #: profile-builder-2.0/features/class-list-table.php:942
3358
+ msgid "1 item"
3359
+ msgstr "1 Artikel"
3360
+
3361
+ #: profile-builder-2.0/features/functions.php:552
3362
+ msgid "Very Weak"
3363
+ msgstr "Sehr schwach"
3364
+
3365
+ #: profile-builder-2.0/features/functions.php:640
3366
+ msgid "This field is required"
3367
+ msgstr "Dieses Feld ist erforderlich"
3368
+
3369
+ #: profile-builder-2.0/features/functions.php:704
3370
+ msgid "Cancel"
3371
+ msgstr "Abbrechen"
3372
+
3373
+ #: profile-builder-2.0/features/functions.php:740
3374
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3375
+ msgstr ""
3376
+ "Damit sich Benutzer auf deiner Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu unter %1$sEinstellungen -> Allgemein%2$s und stelle unter Mitgliedschaft sicher, dass das\n"
3377
+ "Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sentlassen%4$s"
3378
+
3379
+ #: profile-builder-2.0/front-end/login.php:144
3380
+ msgid "Invalid username."
3381
+ msgstr "Ungültiger Benutzername."
3382
+
3383
+ #: profile-builder-2.0/front-end/login.php:149
3384
+ #: profile-builder-2.0/front-end/login.php:153
3385
+ msgid "username"
3386
+ msgstr "Benutzername"
3387
+
3388
+ #: profile-builder-2.0/front-end/login.php:149
3389
+ msgid "email"
3390
+ msgstr "E-Mail-Adresse"
3391
+
3392
+ #: profile-builder-2.0/front-end/login.php:256
3393
+ msgid "Lost your password?"
3394
+ msgstr "Passwort vergessen?"
3395
+
3396
+ #: profile-builder-2.0/index.php:34
3397
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3398
+ msgstr "ist ebenfalls aktiviert. Du musst es vor der Aktivierung dieser Version des Plugins deaktivieren."
3399
+
3400
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3401
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3402
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3403
+ msgstr "Es muss eine gültige E-Mail-Adresse oder der Tag {{reply_to}} sein der die Standardeinstellung für den E-Mail des Administrators ist."
3404
+
3405
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3406
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3407
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3408
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3409
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3410
+ msgid "Your selected password at signup"
3411
+ msgstr "Das von Ihnen gewählte Anmeldepasswort"
3412
+
3413
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3414
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3415
+ msgstr "Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite \"Admin-E-Mail Anpassungen\" angezeigt."
3416
+
3417
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3418
+ msgid "This form is empty."
3419
+ msgstr "Dieses Formular ist leer."
3420
+
3421
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3422
+ msgid "Delete all items"
3423
+ msgstr "Lösche alle Einträge"
3424
+
3425
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3426
+ msgid "Delete all"
3427
+ msgstr "Alles löschen"
3428
+
3429
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3430
+ msgid "Choose..."
3431
+ msgstr "Auswählen..."
3432
+
3433
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3434
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3435
+ msgstr "Bestimme die Anzahl der Benutzer, die pro Seite auf der Benutzerliste angezeigt werden sollen."
3436
+
3437
+ #: profile-builder-2.0/admin/admin-bar.php:10
3438
+ msgid "Show/Hide the Admin Bar on the Front-End"
3439
+ msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
3440
+
3441
+ #: profile-builder-2.0/admin/admin-bar.php:10
3442
+ #: profile-builder-2.0/admin/admin-bar.php:47
3443
+ msgid "Admin Bar Settings"
3444
+ msgstr "Admin Bar Einstellungen"
3445
+
3446
+ #: profile-builder-2.0/admin/admin-bar.php:57
3447
+ msgid "User-Role"
3448
+ msgstr "Benutzerrolle"
3449
+
3450
+ #: profile-builder-2.0/admin/admin-bar.php:58
3451
+ msgid "Visibility"
3452
+ msgstr "Sichtbarkeit"
3453
+
3454
+ #: profile-builder-2.0/admin/admin-bar.php:73
3455
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3456
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3457
+ msgid "Default"
3458
+ msgstr "Vorgabe"
3459
+
3460
+ #: profile-builder-2.0/admin/admin-bar.php:74
3461
+ msgid "Show"
3462
+ msgstr "Anzeigen"
3463
+
3464
+ #: profile-builder-2.0/admin/admin-bar.php:75
3465
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3466
+ msgid "Hide"
3467
+ msgstr "Verbergen"
3468
+
3469
+ #: pb-add-on-woocommerce/woosync-page.php:147
3470
+ #: profile-builder-2.0/admin/admin-bar.php:86
3471
+ #: profile-builder-2.0/admin/general-settings.php:224
3472
+ #: profile-builder-2.0/admin/register-version.php:95
3473
+ #: profile-builder-2.0/features/functions.php:697
3474
+ #: profile-builder-2.0/modules/modules.php:127
3475
+ msgid "Save Changes"
3476
+ msgstr "Änderungen speichern"
3477
+
3478
+ #: profile-builder-2.0/admin/admin-functions.php:37
3479
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3480
+ msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Du kannst diese Einstellungen unter der Registerkarte \"%s\" ändern)"
3481
+
3482
+ #: profile-builder-2.0/admin/admin-functions.php:37
3483
+ #: profile-builder-2.0/admin/general-settings.php:10
3484
+ #: profile-builder-2.0/admin/general-settings.php:35
3485
+ msgid "General Settings"
3486
+ msgstr "Allgemeine Einstellungen"
3487
+
3488
+ #: profile-builder-2.0/admin/admin-functions.php:137
3489
+ #: profile-builder-2.0/admin/general-settings.php:210
3490
+ msgid "Very weak"
3491
+ msgstr "Sehr unsicher"
3492
+
3493
+ #: profile-builder-2.0/admin/admin-functions.php:137
3494
+ #: profile-builder-2.0/admin/general-settings.php:211
3495
+ #: profile-builder-2.0/features/functions.php:552
3496
+ msgid "Weak"
3497
+ msgstr "Unsicher"
3498
+
3499
+ #: profile-builder-2.0/admin/admin-functions.php:137
3500
+ #: profile-builder-2.0/admin/general-settings.php:212
3501
+ #: profile-builder-2.0/features/functions.php:552
3502
+ msgid "Medium"
3503
+ msgstr "Durchschnittlich"
3504
+
3505
+ #: profile-builder-2.0/admin/admin-functions.php:137
3506
+ #: profile-builder-2.0/admin/general-settings.php:213
3507
+ #: profile-builder-2.0/features/functions.php:552
3508
+ msgid "Strong"
3509
+ msgstr "sicher"
3510
+
3511
+ #: profile-builder-2.0/admin/admin-functions.php:187
3512
+ msgid "Add Field"
3513
+ msgstr "Feld hinzufügen"
3514
+
3515
+ #: profile-builder-2.0/admin/admin-functions.php:189
3516
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3517
+ msgid "Save Settings"
3518
+ msgstr "Einstellungen speichern"
3519
+
3520
+ #: profile-builder-2.0/admin/basic-info.php:10
3521
+ msgid "Basic Information"
3522
+ msgstr "Grundlegende Informationen"
3523
+
3524
+ #: profile-builder-2.0/admin/basic-info.php:29
3525
+ msgid "Version %s"
3526
+ msgstr "Version %s"
3527
+
3528
+ #: profile-builder-2.0/admin/basic-info.php:30
3529
+ msgid "<strong>Profile Builder </strong>"
3530
+ msgstr "<strong>Profil Builder</strong>"
3531
+
3532
+ #: profile-builder-2.0/admin/basic-info.php:31
3533
+ msgid "The best way to add front-end registration, edit profile and login forms."
3534
+ msgstr "Der beste Weg, um Front-End-Registrierung hinzuzufügen, ist der, die Profil und Login-Formulare zu bearbeiten."
3535
+
3536
+ #: profile-builder-2.0/admin/basic-info.php:33
3537
+ msgid "For Modern User Interaction"
3538
+ msgstr "Für die moderne Benutzerinteraktion"
3539
+
3540
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3541
+ #: profile-builder-2.0/admin/basic-info.php:36
3542
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3543
+ msgid "Login"
3544
+ msgstr "Login"
3545
+
3546
+ #: profile-builder-2.0/admin/basic-info.php:40
3547
+ msgid "Registration"
3548
+ msgstr "Registrierung"
3549
+
3550
+ #: profile-builder-2.0/admin/basic-info.php:44
3551
+ msgid "Edit Profile"
3552
+ msgstr "Profil bearbeiten"
3553
+
3554
+ #: profile-builder-2.0/admin/basic-info.php:51
3555
+ msgid "Extra Features"
3556
+ msgstr "Extra-Features"
3557
+
3558
+ #: profile-builder-2.0/admin/basic-info.php:52
3559
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3560
+ msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
3561
+
3562
+ #: profile-builder-2.0/admin/basic-info.php:53
3563
+ msgid "Enable extra features"
3564
+ msgstr "Zusätzliche Features aktivieren"
3565
+
3566
+ #: profile-builder-2.0/admin/basic-info.php:57
3567
+ msgid "Recover Password"
3568
+ msgstr "Passwort wiederherstellen"
3569
+
3570
+ #: profile-builder-2.0/admin/basic-info.php:61
3571
+ msgid "Admin Approval (*)"
3572
+ msgstr "Admin-Zulassung (*)"
3573
+
3574
+ #: profile-builder-2.0/admin/basic-info.php:62
3575
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3576
+ msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen."
3577
+
3578
+ #: profile-builder-2.0/admin/basic-info.php:65
3579
+ msgid "Email Confirmation"
3580
+ msgstr "E-Mail-Bestätigung"
3581
+
3582
+ #: profile-builder-2.0/admin/basic-info.php:66
3583
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3584
+ msgstr "Stelle sicher, dass Benutzer sich mit echten E-Mail-Adressen anmelden. Bei der Registrierung erhalten die Benutzer eine Benachrichtigung an diese E-Mail-Adresse, welche diese bestätigen müssen."
3585
+
3586
+ #: profile-builder-2.0/admin/basic-info.php:69
3587
+ msgid "Minimum Password Length and Strength Meter"
3588
+ msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät"
3589
+
3590
+ #: profile-builder-2.0/admin/basic-info.php:70
3591
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3592
+ msgstr "Beseitige schwache Kennwörter insgesamt, indem du eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke aktivierst."
3593
+
3594
+ #: profile-builder-2.0/admin/basic-info.php:73
3595
+ msgid "Login with Email or Username"
3596
+ msgstr "Login mit E-Mail oder Benutzername"
3597
+
3598
+ #: profile-builder-2.0/admin/basic-info.php:74
3599
+ msgid "Allow users to log in with their email or username when accessing your site."
3600
+ msgstr "Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername anzumelden, wenn diese auf deine Seite zugreifen möchten. "
3601
+
3602
+ #: profile-builder-2.0/admin/basic-info.php:87
3603
+ msgid "Customize Your Forms The Way You Want (*)"
3604
+ msgstr "Passen Sie die Formulare wie Sie wollen an (*)"
3605
+
3606
+ #: profile-builder-2.0/admin/basic-info.php:88
3607
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3608
+ msgstr "Mit zusätzlichen Profil-Felder kannst du genau die Anmeldeformulare erstellen, die dein Projekt benötigt."
3609
+
3610
+ #: profile-builder-2.0/admin/basic-info.php:90
3611
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3612
+ msgstr "Zusätzliche Profil-Felder erhälst du mit den Hobbyist oder PRO Versionen. "
3613
+
3614
+ #: profile-builder-2.0/admin/basic-info.php:92
3615
+ msgid "Get started with extra fields"
3616
+ msgstr "Erste Schritte mit extra Felder"
3617
+
3618
+ #: profile-builder-2.0/admin/basic-info.php:95
3619
+ msgid "Avatar Upload"
3620
+ msgstr "Profilbild hochladen"
3621
+
3622
+ #: profile-builder-2.0/admin/basic-info.php:96
3623
+ msgid "Generic Uploads"
3624
+ msgstr "Generische Uploads"
3625
+
3626
+ #: profile-builder-2.0/admin/basic-info.php:97
3627
+ msgid "Agree To Terms Checkbox"
3628
+ msgstr "AGB-Checkbox"
3629
+
3630
+ #: profile-builder-2.0/admin/basic-info.php:98
3631
+ msgid "Datepicker"
3632
+ msgstr "Datumsauswahl"
3633
+
3634
+ #: profile-builder-2.0/admin/basic-info.php:101
3635
+ msgid "reCAPTCHA"
3636
+ msgstr "reCAPTCHA"
3637
+
3638
+ #: profile-builder-2.0/admin/basic-info.php:102
3639
+ msgid "Country Select"
3640
+ msgstr "Land auswählen"
3641
+
3642
+ #: profile-builder-2.0/admin/basic-info.php:104
3643
+ msgid "Timezone Select"
3644
+ msgstr "Zeitzone auswählen"
3645
+
3646
+ #: profile-builder-2.0/admin/basic-info.php:108
3647
+ msgid "Input / Hidden Input"
3648
+ msgstr "Eingabe / versteckte Eingabe"
3649
+
3650
+ #: profile-builder-2.0/admin/basic-info.php:110
3651
+ msgid "Checkbox"
3652
+ msgstr "Checkbox"
3653
+
3654
+ #: profile-builder-2.0/admin/basic-info.php:111
3655
+ msgid "Select"
3656
+ msgstr "Auswahl"
3657
+
3658
+ #: profile-builder-2.0/admin/basic-info.php:112
3659
+ msgid "Radio Buttons"
3660
+ msgstr "Optionsfelder"
3661
+
3662
+ #: profile-builder-2.0/admin/basic-info.php:113
3663
+ msgid "Textarea"
3664
+ msgstr "Textbereich"
3665
+
3666
+ #: profile-builder-2.0/admin/basic-info.php:125
3667
+ msgid "Powerful Modules (**)"
3668
+ msgstr "Leistungsstarke Module (*)"
3669
+
3670
+ #: profile-builder-2.0/admin/basic-info.php:126
3671
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3672
+ msgstr "Alles, was du benötigst, um deine Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar."
3673
+
3674
+ #: profile-builder-2.0/admin/basic-info.php:128
3675
+ msgid "Enable your modules"
3676
+ msgstr "Aktiviere deine Module"
3677
+
3678
+ #: profile-builder-2.0/admin/basic-info.php:131
3679
+ msgid "Find out more about PRO Modules"
3680
+ msgstr "Erfahre mehr über die PRO-Module"
3681
+
3682
+ #: profile-builder-2.0/admin/basic-info.php:136
3683
+ #: profile-builder-2.0/modules/modules.php:89
3684
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3685
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3686
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3687
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3688
+ msgid "User Listing"
3689
+ msgstr "Benutzer-Liste"
3690
+
3691
+ #: profile-builder-2.0/admin/basic-info.php:138
3692
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3693
+ msgstr "Einfache editierbare Vorlagen für die Auflistung Ihrer Website-Benutzer sowie für das Erstellen einzelner Benutzer-Seiten. Shortcode basiert , bietet viele Möglichkeiten, Ihre Auflistungen anzupassen."
3694
+
3695
+ #: profile-builder-2.0/admin/basic-info.php:144
3696
+ msgid "Email Customizer"
3697
+ msgstr "E-Mail Anpassungen"
3698
+
3699
+ #: profile-builder-2.0/admin/basic-info.php:145
3700
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3701
+ msgstr "Personalisiere alle E-Mails, die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung."
3702
+
3703
+ #: profile-builder-2.0/admin/basic-info.php:148
3704
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3705
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3706
+ #: profile-builder-2.0/modules/modules.php:110
3707
+ msgid "Custom Redirects"
3708
+ msgstr "Benutzerdefinierte Umleitungen"
3709
+
3710
+ #: profile-builder-2.0/admin/basic-info.php:149
3711
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3712
+ msgstr "Sperre deine Benutzer aus dem WordPress-Dashboard aus und leite sie nach dem Login oder nach der Registrierung auf die Startseite weiter."
3713
+
3714
+ #: profile-builder-2.0/admin/basic-info.php:154
3715
+ #: profile-builder-2.0/modules/modules.php:75
3716
+ msgid "Multiple Registration Forms"
3717
+ msgstr "Mehrfache Anmeldeformulare"
3718
+
3719
+ #: profile-builder-2.0/admin/basic-info.php:155
3720
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3721
+ msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern."
3722
+
3723
+ #: profile-builder-2.0/admin/basic-info.php:158
3724
+ #: profile-builder-2.0/modules/modules.php:82
3725
+ msgid "Multiple Edit-profile Forms"
3726
+ msgstr "Mehrfache Profilbearbeitungs-Formulare"
3727
+
3728
+ #: profile-builder-2.0/admin/basic-info.php:159
3729
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3730
+ msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
3731
+
3732
+ #: profile-builder-2.0/admin/basic-info.php:187
3733
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3734
+ msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
3735
+
3736
+ #: profile-builder-2.0/admin/basic-info.php:188
3737
+ msgid "** only available in the %1$sPro version%2$s."
3738
+ msgstr "** nur in der %1$sPro Version%2$s verfügbar."
3739
+
3740
+ #: profile-builder-2.0/admin/general-settings.php:39
3741
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3742
+ msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch"
3743
+
3744
+ #: profile-builder-2.0/admin/general-settings.php:42
3745
+ #: profile-builder-2.0/admin/general-settings.php:55
3746
+ #: profile-builder-2.0/admin/general-settings.php:104
3747
+ #: profile-builder-2.0/admin/general-settings.php:151
3748
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3749
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3750
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3751
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3752
+ msgid "Yes"
3753
+ msgstr "Ja"
3754
+
3755
+ #: profile-builder-2.0/admin/general-settings.php:44
3756
+ msgid "You can find the default file here: %1$s"
3757
+ msgstr "Sie finden die Standard-Datei hier:%1$s"
3758
+
3759
+ #: profile-builder-2.0/admin/general-settings.php:51
3760
+ msgid "\"Email Confirmation\" Activated:"
3761
+ msgstr "\"E-Mail-Bestätigung\" aktiviert:"
3762
+
3763
+ #: profile-builder-2.0/admin/general-settings.php:56
3764
+ #: profile-builder-2.0/admin/general-settings.php:105
3765
+ #: profile-builder-2.0/admin/general-settings.php:150
3766
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3767
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3768
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3769
+ msgid "No"
3770
+ msgstr "Nein"
3771
+
3772
+ #: profile-builder-2.0/admin/general-settings.php:61
3773
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3774
+ msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
3775
+
3776
+ #: profile-builder-2.0/admin/general-settings.php:69
3777
+ msgid "\"Email Confirmation\" Landing Page:"
3778
+ msgstr "\"E-Mail-Bestätigung\" Landeseite:"
3779
+
3780
+ #: profile-builder-2.0/admin/general-settings.php:74
3781
+ msgid "Existing Pages"
3782
+ msgstr "Vorhandene Seiten"
3783
+
3784
+ #: profile-builder-2.0/admin/general-settings.php:89
3785
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3786
+ msgstr "Geben Sie die Seite ein, wo der Benutzer umgeleitet werden sollte, wenn er sein E-Mail-Konto bestätigt. Diese Seite kann von der Registerungs- Seite(n) unterschiedlich sein und kann jederzeit geändert werden. Wenn nichts ausgewähltw wird, wird eine einfache Bestätigungsseite für den Benutzer angezeigt."
3787
+
3788
+ #: profile-builder-2.0/admin/general-settings.php:100
3789
+ msgid "\"Admin Approval\" Activated:"
3790
+ msgstr "\"Admin Genehmigung\" aktiviert:"
3791
+
3792
+ #: profile-builder-2.0/admin/general-settings.php:108
3793
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3794
+ msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
3795
+
3796
+ #: profile-builder-2.0/admin/general-settings.php:165
3797
+ msgid "\"Admin Approval\" Feature:"
3798
+ msgstr "\"Admin Genehmigung\" Feature:"
3799
+
3800
+ #: profile-builder-2.0/admin/general-settings.php:168
3801
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3802
+ msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s."
3803
+
3804
+ #: profile-builder-2.0/admin/general-settings.php:175
3805
+ msgid "Allow Users to Log in With:"
3806
+ msgstr "Benutzerberechtigungen zum Einloggen mit:"
3807
+
3808
+ #: profile-builder-2.0/admin/general-settings.php:180
3809
+ #: profile-builder-2.0/admin/manage-fields.php:201
3810
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3811
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3812
+ #: profile-builder-2.0/front-end/login.php:85
3813
+ #: profile-builder-2.0/front-end/login.php:99
3814
+ #: profile-builder-2.0/front-end/login.php:218
3815
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3816
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3817
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3818
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3819
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3820
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3821
+ msgid "Username"
3822
+ msgstr "Benutzername"
3823
+
3824
+ #: profile-builder-2.0/admin/general-settings.php:181
3825
+ #: profile-builder-2.0/front-end/login.php:215
3826
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3827
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3828
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3829
+ msgid "Email"
3830
+ msgstr "E-Mail"
3831
+
3832
+ #: profile-builder-2.0/admin/general-settings.php:193
3833
+ msgid "Minimum Password Length:"
3834
+ msgstr "Minimale Kennwortlänge:"
3835
+
3836
+ #: profile-builder-2.0/admin/general-settings.php:198
3837
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3838
+ msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze"
3839
+
3840
+ #: profile-builder-2.0/admin/general-settings.php:205
3841
+ msgid "Minimum Password Strength:"
3842
+ msgstr "Minimale Passwortstärke:"
3843
+
3844
+ #: profile-builder-2.0/admin/general-settings.php:209
3845
+ msgid "Disabled"
3846
+ msgstr "Deaktiviert"
3847
+
3848
+ #: profile-builder-2.0/admin/manage-fields.php:12
3849
+ msgid "Manage Fields"
3850
+ msgstr "Felder verwalten"
3851
+
3852
+ #: profile-builder-2.0/admin/manage-fields.php:13
3853
+ msgid "Manage Default and Extra Fields"
3854
+ msgstr "Verwalten von Standard- und Extra Felder"
3855
+
3856
+ #: profile-builder-2.0/admin/manage-fields.php:118
3857
+ msgid "Field Title"
3858
+ msgstr "Feldtitel"
3859
+
3860
+ #: profile-builder-2.0/admin/manage-fields.php:118
3861
+ msgid "Title of the field"
3862
+ msgstr "Titel des Feldes"
3863
+
3864
+ #: profile-builder-2.0/admin/manage-fields.php:119
3865
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3866
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3867
+ msgid "Field"
3868
+ msgstr "Feld"
3869
+
3870
+ #: profile-builder-2.0/admin/manage-fields.php:120
3871
+ msgid "Meta-name"
3872
+ msgstr "Meta-name "
3873
+
3874
+ #: profile-builder-2.0/admin/manage-fields.php:121
3875
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3876
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3877
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3878
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3879
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3880
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3881
+ msgid "ID"
3882
+ msgstr "ID"
3883
+
3884
+ #: profile-builder-2.0/admin/manage-fields.php:121
3885
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3886
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3887
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3888
+ msgstr "Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld<br/> Sie können dies in Verbindung mit Kriterien verwenden, um dieses Element bei Bedarf aufzuziehlen<br/> Nicht editierbar"
3889
+
3890
+ #: profile-builder-2.0/admin/manage-fields.php:122
3891
+ msgid "Description"
3892
+ msgstr "Beschreibung"
3893
+
3894
+ #: profile-builder-2.0/admin/manage-fields.php:122
3895
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3896
+ msgstr "Geben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können <br/> Optional"
3897
+
3898
+ #: profile-builder-2.0/admin/manage-fields.php:123
3899
+ msgid "Row Count"
3900
+ msgstr "Zeilenanzahl"
3901
+
3902
+ #: profile-builder-2.0/admin/manage-fields.php:123
3903
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3904
+ msgstr "Geben Sie die Anzahl der Zeilen für ein Text-Feld ein <br/> Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt."
3905
+
3906
+ #: profile-builder-2.0/admin/manage-fields.php:124
3907
+ msgid "Allowed Image Extensions"
3908
+ msgstr "Erlaubte Bild-Extensions"
3909
+
3910
+ #: profile-builder-2.0/admin/manage-fields.php:125
3911
+ msgid "Allowed Upload Extensions"
3912
+ msgstr "Zulässige Dateierweiterungen beim Hochladen"
3913
+
3914
+ #: profile-builder-2.0/admin/manage-fields.php:126
3915
+ msgid "Avatar Size"
3916
+ msgstr "Profilbild-Größe"
3917
+
3918
+ #: profile-builder-2.0/admin/manage-fields.php:126
3919
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3920
+ msgstr "Geben Sie einen Wert (zwischen 20 und 200) für die Größe des 'Profilbilds' ein.<br/>Falls nicht angegeben, wird er standardmäßig auf 100 gesetzt"
3921
+
3922
+ #: profile-builder-2.0/admin/manage-fields.php:127
3923
+ msgid "Date-format"
3924
+ msgstr "Datum-Format"
3925
+
3926
+ #: profile-builder-2.0/admin/manage-fields.php:128
3927
+ msgid "Terms of Agreement"
3928
+ msgstr "Nutzungsbedingungen"
3929
+
3930
+ #: profile-builder-2.0/admin/manage-fields.php:128
3931
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3932
+ msgstr "Geben Sie eine detaillierte Beschreibung der Bedingungen der Vereinbarung für den Benutzer zu lesen ein. <br/>Links können mit standard-HTML-Syntax eingefügt werden: &lt; a href =\"custom_url\"&gt;custom_text &lt;/a&gt;"
3933
+
3934
+ #: profile-builder-2.0/admin/manage-fields.php:129
3935
+ msgid "Options"
3936
+ msgstr "Optionen"
3937
+
3938
+ #: profile-builder-2.0/admin/manage-fields.php:130
3939
+ msgid "Labels"
3940
+ msgstr "Beschriftung "
3941
+
3942
+ #: profile-builder-2.0/admin/manage-fields.php:130
3943
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
3944
+ msgstr "Geben Sie eine durch Kommas getrennte Liste der Beschriftungen ein.<br/>Sie ist für den Benutzer sichtbar."
3945
+
3946
+ #: profile-builder-2.0/admin/manage-fields.php:137
3947
+ msgid "Default Value"
3948
+ msgstr "Standardwert"
3949
+
3950
+ #: profile-builder-2.0/admin/manage-fields.php:137
3951
+ msgid "Default value of the field"
3952
+ msgstr "Standardwert des Feldes"
3953
+
3954
+ #: profile-builder-2.0/admin/manage-fields.php:138
3955
+ #: profile-builder-2.0/admin/manage-fields.php:140
3956
+ #: profile-builder-2.0/admin/manage-fields.php:141
3957
+ #: profile-builder-2.0/admin/manage-fields.php:142
3958
+ msgid "Default Option"
3959
+ msgstr "Standardoption"
3960
+
3961
+ #: profile-builder-2.0/admin/manage-fields.php:138
3962
+ msgid "Specify the option which should be selected by default"
3963
+ msgstr "Geben Sie die Option ein, die standardmäßig ausgewählt sein soll."
3964
+
3965
+ #: profile-builder-2.0/admin/manage-fields.php:139
3966
+ msgid "Default Option(s)"
3967
+ msgstr "Standard-Option(en)"
3968
+
3969
+ #: profile-builder-2.0/admin/manage-fields.php:139
3970
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3971
+ msgstr "Geben Sie die Option, die standardmäßig überprüft werden sollen, ein.<br/>Wenn mehrere Werte vorhanden sind, trennen Sie diese mit einem Komma."
3972
+
3973
+ #: profile-builder-2.0/admin/manage-fields.php:153
3974
+ msgid "Default Content"
3975
+ msgstr "Standard-Inhalt"
3976
+
3977
+ #: profile-builder-2.0/admin/manage-fields.php:153
3978
+ msgid "Default value of the textarea"
3979
+ msgstr "Standardwert der Textfeld-Komponente"
3980
+
3981
+ #: pb-add-on-woocommerce/index.php:306
3982
+ #: profile-builder-2.0/admin/manage-fields.php:160
3983
+ msgid "Required"
3984
+ msgstr "Erforderlich"
3985
+
3986
+ #: profile-builder-2.0/admin/manage-fields.php:160
3987
+ msgid "Whether the field is required or not"
3988
+ msgstr "Ob das Feld erforderlich ist oder nicht"
3989
+
3990
+ #: profile-builder-2.0/admin/manage-fields.php:161
3991
+ msgid "Overwrite Existing"
3992
+ msgstr "Existierende überschreiben"
3993
+
3994
+ #: profile-builder-2.0/admin/manage-fields.php:161
3995
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3996
+ msgstr "Bei Auswahl \"Ja\", wird das Feld in der Liste eingefügt aber es werden alle anderen Felder aus der Datenbank, die den gleichen Meta Namen haben, überschrieben.<br/> Benutzen auf eigene Gefahr!"
3997
+
3998
+ #: profile-builder-2.0/admin/manage-fields.php:167
3999
+ msgid "Field Properties"
4000
+ msgstr "Feld-Eigenschaften"
4001
+
4002
+ #: profile-builder-2.0/admin/manage-fields.php:181
4003
+ msgid "Registration & Edit Profile"
4004
+ msgstr "Registrierung & Profil-Bearbeitung"
4005
+
4006
+ #: profile-builder-2.0/admin/manage-fields.php:200
4007
+ msgid "Name"
4008
+ msgstr "Name"
4009
+
4010
+ #: profile-builder-2.0/admin/manage-fields.php:201
4011
+ msgid "Usernames cannot be changed."
4012
+ msgstr "Benutzernamen können nicht geändert werden."
4013
+
4014
+ #: pb-add-on-woocommerce/billing-fields.php:6
4015
+ #: pb-add-on-woocommerce/shipping-fields.php:6
4016
+ #: profile-builder-2.0/admin/manage-fields.php:202
4017
+ msgid "First Name"
4018
+ msgstr "Vorname"
4019
+
4020
+ #: pb-add-on-woocommerce/billing-fields.php:7
4021
+ #: pb-add-on-woocommerce/shipping-fields.php:7
4022
+ #: profile-builder-2.0/admin/manage-fields.php:203
4023
+ msgid "Last Name"
4024
+ msgstr "Nachname"
4025
+
4026
+ #: profile-builder-2.0/admin/manage-fields.php:204
4027
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4028
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4029
+ msgid "Nickname"
4030
+ msgstr "Spitzname"
4031
+
4032
+ #: profile-builder-2.0/admin/manage-fields.php:205
4033
+ msgid "Display name publicly as"
4034
+ msgstr "Name öffentlich anzeigen als"
4035
+
4036
+ #: profile-builder-2.0/admin/manage-fields.php:206
4037
+ msgid "Contact Info"
4038
+ msgstr "Kontaktdaten"
4039
+
4040
+ #: profile-builder-2.0/admin/manage-fields.php:207
4041
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4042
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4043
+ #: profile-builder-2.0/front-end/recover.php:118
4044
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4045
+ msgid "E-mail"
4046
+ msgstr "E-Mail"
4047
+
4048
+ #: profile-builder-2.0/admin/manage-fields.php:208
4049
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4050
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4051
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4052
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4053
+ msgid "Website"
4054
+ msgstr "Webseite"
4055
+
4056
+ #: profile-builder-2.0/admin/manage-fields.php:212
4057
+ msgid "AIM"
4058
+ msgstr "AIM"
4059
+
4060
+ #: profile-builder-2.0/admin/manage-fields.php:213
4061
+ msgid "Yahoo IM"
4062
+ msgstr "Yahoo IM"
4063
+
4064
+ #: profile-builder-2.0/admin/manage-fields.php:214
4065
+ msgid "Jabber / Google Talk"
4066
+ msgstr "Jabber / Google Talk"
4067
+
4068
+ #: profile-builder-2.0/admin/manage-fields.php:217
4069
+ msgid "About Yourself"
4070
+ msgstr "Über Dich"
4071
+
4072
+ #: profile-builder-2.0/admin/manage-fields.php:218
4073
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4074
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4075
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4076
+ msgid "Biographical Info"
4077
+ msgstr "Lebenslauf"
4078
+
4079
+ #: profile-builder-2.0/admin/manage-fields.php:218
4080
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4081
+ msgstr "Fülle ein paar biographische Informationen in deinem Profil aus. Diese können auch öffentlich angezeigt werden."
4082
+
4083
+ #: profile-builder-2.0/admin/manage-fields.php:219
4084
+ #: profile-builder-2.0/front-end/recover.php:73
4085
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4086
+ msgid "Password"
4087
+ msgstr "Kennwort"
4088
+
4089
+ #: profile-builder-2.0/admin/manage-fields.php:219
4090
+ msgid "Type your password."
4091
+ msgstr "Bitte gib dein Passwort ein."
4092
+
4093
+ #: profile-builder-2.0/admin/manage-fields.php:220
4094
+ #: profile-builder-2.0/front-end/recover.php:74
4095
+ msgid "Repeat Password"
4096
+ msgstr "Kennwort wiederholen"
4097
+
4098
+ #: profile-builder-2.0/admin/manage-fields.php:220
4099
+ msgid "Type your password again. "
4100
+ msgstr "Bitte gib dein Kennwort erneut ein."
4101
+
4102
+ #: profile-builder-2.0/admin/manage-fields.php:980
4103
+ #: profile-builder-2.0/admin/manage-fields.php:1137
4104
+ msgid "You must select a field\n"
4105
+ msgstr "Sie müssen ein Feld auswählen.\n"
4106
+
4107
+ #: profile-builder-2.0/admin/manage-fields.php:990
4108
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4109
+ msgstr "Bitte wählen Sie ein anderes Feld aus. Dieses ist bereits im Formular vorhanden (muss einzigartig) sein.\n"
4110
+
4111
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4112
+ msgid "The entered avatar size is not between 20 and 200\n"
4113
+ msgstr "Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200\n"
4114
+
4115
+ #: profile-builder-2.0/admin/manage-fields.php:1004
4116
+ msgid "The entered avatar size is not numerical\n"
4117
+ msgstr "Die eingegebenen Profilbild-Größe ist nicht numerisch\n"
4118
+
4119
+ #: profile-builder-2.0/admin/manage-fields.php:1012
4120
+ msgid "The entered row number is not numerical\n"
4121
+ msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
4122
+
4123
+ #: profile-builder-2.0/admin/manage-fields.php:1015
4124
+ msgid "You must enter a value for the row number\n"
4125
+ msgstr "Sie müssen die Zeilennummer angeben.\n"
4126
+
4127
+ #: profile-builder-2.0/admin/manage-fields.php:1036
4128
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
4129
+ msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
4130
+
4131
+ #: profile-builder-2.0/admin/manage-fields.php:1039
4132
+ msgid "You must enter a value for the date-format\n"
4133
+ msgstr "Sie müssen das Datumsformat angeben.\n"
4134
+
4135
+ #: profile-builder-2.0/admin/manage-fields.php:1067
4136
+ #: profile-builder-2.0/admin/manage-fields.php:1075
4137
+ #: profile-builder-2.0/admin/manage-fields.php:1086
4138
+ msgid "That meta-name is already in use\n"
4139
+ msgstr "Dieser Meta-Name wird bereits verwendet\n"
4140
+
4141
+ #: profile-builder-2.0/admin/manage-fields.php:1117
4142
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4143
+ msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
4144
+
4145
+ #: profile-builder-2.0/admin/manage-fields.php:1121
4146
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
4147
+ msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
4148
+
4149
+ #: profile-builder-2.0/admin/manage-fields.php:1144
4150
+ msgid "That field is already added in this form\n"
4151
+ msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
4152
+
4153
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4154
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4155
+ msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
4156
+
4157
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4158
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4159
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4160
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4161
+ #: profile-builder-2.0/features/functions.php:718
4162
+ #: profile-builder-2.0/features/functions.php:725
4163
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4164
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4165
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4166
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4167
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4168
+ msgid "Edit"
4169
+ msgstr "Bearbeiten"
4170
+
4171
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4172
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4173
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4174
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4175
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4176
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4177
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4178
+ #: profile-builder-2.0/features/functions.php:711
4179
+ #: profile-builder-2.0/features/functions.php:725
4180
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4181
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4182
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4183
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4184
+ msgid "Delete"
4185
+ msgstr "Löschen"
4186
+
4187
+ #: profile-builder-2.0/admin/manage-fields.php:1208
4188
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4189
+ msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben möchten:"
4190
+
4191
+ #: profile-builder-2.0/admin/register-version.php:14
4192
+ msgid "Register Your Version"
4193
+ msgstr "Registrieren Sie Ihre Version"
4194
+
4195
+ #: profile-builder-2.0/admin/register-version.php:14
4196
+ msgid "Register Version"
4197
+ msgstr "Version registrieren"
4198
+
4199
+ #: profile-builder-2.0/admin/register-version.php:70
4200
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4201
+ msgstr "Wenn Sie diese Version vom Profile Builder registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support."
4202
+
4203
+ #: profile-builder-2.0/admin/register-version.php:72
4204
+ msgid " Serial Number:"
4205
+ msgstr "Seriennummer:"
4206
+
4207
+ #: profile-builder-2.0/admin/register-version.php:77
4208
+ msgid "The serial number was successfully validated!"
4209
+ msgstr "Die Seriennummer wurde erfolgreich überprüft!"
4210
+
4211
+ #: profile-builder-2.0/admin/register-version.php:79
4212
+ msgid "The serial number entered couldn't be validated!"
4213
+ msgstr "Die eingegebene Seriennummer konnte nicht überprüft werden!"
4214
+
4215
+ #: profile-builder-2.0/admin/register-version.php:83
4216
+ msgid "The serial number couldn't be validated because it expired!"
4217
+ msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!"
4218
+
4219
+ #: profile-builder-2.0/admin/register-version.php:85
4220
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4221
+ msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen Time-Out bekam. Dies kann passieren, wenn der Server nicht verfügbar ist. Bitte versuche es später erneut!"
4222
+
4223
+ #: profile-builder-2.0/admin/register-version.php:87
4224
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4225
+ msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) "
4226
+
4227
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4228
+ #: profile-builder-2.0/features/functions.php:725
4229
+ msgid "Content"
4230
+ msgstr "Inhalt"
4231
+
4232
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4233
+ msgid "Edit this item"
4234
+ msgstr "Dieses Element bearbeiten"
4235
+
4236
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4237
+ msgid "Delete this item"
4238
+ msgstr "Dieses Element löschen"
4239
+
4240
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4241
+ msgid "Please enter a value for the required field "
4242
+ msgstr "Bitte gib einen Wert für das erforderliche Feld ein"
4243
+
4244
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4245
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4246
+ msgid "Select File"
4247
+ msgstr "Datei auswählen"
4248
+
4249
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4250
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4251
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4252
+ msgid "Remove"
4253
+ msgstr "Löschen"
4254
+
4255
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4256
+ msgid "You can add the information for the %s after you add a entry"
4257
+ msgstr "Du kannst die Informationen für \"%s\" hinzufügen, nachdem du einen Eintrag hinzugefügt hast"
4258
+
4259
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4260
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4261
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4262
+ msgid "Upload "
4263
+ msgstr "Hochladen"
4264
+
4265
+ #: profile-builder-2.0/features/class-list-table.php:184
4266
+ msgid "No items found."
4267
+ msgstr "Keine Einträge wurden gefunden."
4268
+
4269
+ #: profile-builder-2.0/features/class-list-table.php:308
4270
+ msgid "Bulk Actions"
4271
+ msgstr "Bulk.Aktionen"
4272
+
4273
+ #: profile-builder-2.0/features/class-list-table.php:318
4274
+ msgid "Apply"
4275
+ msgstr "Anwenden"
4276
+
4277
+ #: profile-builder-2.0/features/class-list-table.php:402
4278
+ msgid "Show all dates"
4279
+ msgstr "Alle Termine anzeigen"
4280
+
4281
+ #: profile-builder-2.0/features/class-list-table.php:415
4282
+ msgid "%1$s %2$d"
4283
+ msgstr "%1$s %2$d "
4284
+
4285
+ #: profile-builder-2.0/features/class-list-table.php:431
4286
+ msgid "List View"
4287
+ msgstr "Listenansicht"
4288
+
4289
+ #: profile-builder-2.0/features/class-list-table.php:432
4290
+ msgid "Excerpt View"
4291
+ msgstr "Excerpt-Anzeige"
4292
+
4293
+ #: profile-builder-2.0/features/class-list-table.php:458
4294
+ msgid "%s pending"
4295
+ msgstr "%s ausstehend"
4296
+
4297
+ #: profile-builder-2.0/features/class-list-table.php:566
4298
+ msgid "%1$s of %2$s"
4299
+ msgstr "%1$s von %2$s"
4300
+
4301
+ #: profile-builder-2.0/features/class-list-table.php:713
4302
+ msgid "Select All"
4303
+ msgstr "Alle auswählen"
4304
+
4305
+ #: profile-builder-2.0/features/functions.php:526
4306
+ msgid "Strength indicator"
4307
+ msgstr "Stärkeanzeige"
4308
+
4309
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4310
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4311
+ msgid "Admin Approval"
4312
+ msgstr "Admin-Bestätigung"
4313
+
4314
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4315
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4316
+ msgid "Do you want to"
4317
+ msgstr "Möchtest du"
4318
+
4319
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4320
+ msgid "Your session has expired! Please refresh the page and try again"
4321
+ msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4322
+
4323
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4324
+ msgid "User successfully approved!"
4325
+ msgstr "Benutzer erfolgreich genehmigt!"
4326
+
4327
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4328
+ msgid "User successfully unapproved!"
4329
+ msgstr "Benutzer erfolgreich abgelehnt!"
4330
+
4331
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4332
+ msgid "User successfully deleted!"
4333
+ msgstr "Benutzer erfolgreich gelöscht!"
4334
+
4335
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4336
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4337
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4338
+ msgid "You either don't have permission for that action or there was an error!"
4339
+ msgstr "Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!"
4340
+
4341
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4342
+ msgid "Your session has expired! Please refresh the page and try again."
4343
+ msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4344
+
4345
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4346
+ msgid "Users successfully approved!"
4347
+ msgstr "Benutzer wurden erfolgreich genehmigt!"
4348
+
4349
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4350
+ msgid "Users successfully unapproved!"
4351
+ msgstr "Benutzer wurden erfolgreich verwehrt!"
4352
+
4353
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4354
+ msgid "Users successfully deleted!"
4355
+ msgstr "Benutzer wurden erfolgreich gelöscht!"
4356
+
4357
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4358
+ msgid "Your account on %1$s has been approved!"
4359
+ msgstr "Ihr Benutzerkonto auf %1$s wurde genehmigt!"
4360
+
4361
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4362
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4363
+ msgid "approved"
4364
+ msgstr "genehmigt"
4365
+
4366
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4367
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4368
+ msgstr "Ein Administrator hat gerade Ihr Konto auf %1$s (%2$s) genehmigt."
4369
+
4370
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4371
+ msgid "Your account on %1$s has been unapproved!"
4372
+ msgstr "Ihr Benutzerkonto auf %1$s wurde nicht genehmigt!"
4373
+
4374
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4375
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4376
+ msgid "unapproved"
4377
+ msgstr "abgelehnt"
4378
+
4379
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4380
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4381
+ msgstr "Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. "
4382
+
4383
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4384
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4385
+ msgstr "<strong>Fehler</strong>: Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie sich anmelden können. "
4386
+
4387
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4388
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4389
+ msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie die \"Kennwort Wiederherstellung\"-Funktion verwenden können."
4390
+
4391
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4392
+ msgid "delete this user?"
4393
+ msgstr "Möchtest du diesen Benutzer löschen?"
4394
+
4395
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4396
+ msgid "unapprove this user?"
4397
+ msgstr "Benutzer ablehnen?"
4398
+
4399
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4400
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4401
+ msgid "Unapprove"
4402
+ msgstr "Ablehnen"
4403
+
4404
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4405
+ msgid "approve this user?"
4406
+ msgstr "Möchtest du diesen Benutzer genehmigen?"
4407
+
4408
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4409
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4410
+ msgid "Approve"
4411
+ msgstr "Genehmigen"
4412
+
4413
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4414
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4415
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4416
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4417
+ msgid "Firstname"
4418
+ msgstr "Vorname"
4419
+
4420
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4421
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4422
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4423
+ msgid "Lastname"
4424
+ msgstr "Nachname"
4425
+
4426
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4428
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4429
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4430
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4431
+ msgid "Role"
4432
+ msgstr "Rolle"
4433
+
4434
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4435
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4436
+ msgid "Registered"
4437
+ msgstr "Angemeldet"
4438
+
4439
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4440
+ msgid "User-status"
4441
+ msgstr "Benutzer-Status"
4442
+
4443
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4444
+ msgid "Do you want to bulk approve the selected users?"
4445
+ msgstr "Möchtest du alle ausgewählten Benutzer genehmigen?"
4446
+
4447
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4448
+ msgid "Do you want to bulk unapprove the selected users?"
4449
+ msgstr "Möchtest du alle ausgewählten Benutzer verwehren?"
4450
+
4451
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4452
+ msgid "Do you want to bulk delete the selected users?"
4453
+ msgstr "Möchtest du alle ausgewählten Benutzer löschen?"
4454
+
4455
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4456
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4457
+ msgid "Sorry, but you don't have permission to do that!"
4458
+ msgstr "Tut uns leid aber du hast keine Berechtigung dazu!"
4459
+
4460
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4461
+ msgid "Approved"
4462
+ msgstr "Genehmigt"
4463
+
4464
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4465
+ msgid "Unapproved"
4466
+ msgstr "Verwehrt"
4467
+
4468
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4469
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4470
+ msgid "All Users"
4471
+ msgstr "Alle Benutzer"
4472
+
4473
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4474
+ msgid "delete this user from the _signups table?"
4475
+ msgstr "Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?"
4476
+
4477
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4478
+ msgid "confirm this email yourself?"
4479
+ msgstr "Bestätige diese E-Mail selbst?"
4480
+
4481
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4482
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4483
+ msgid "Confirm Email"
4484
+ msgstr "E-Mail bestätigen"
4485
+
4486
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4487
+ msgid "resend the activation link?"
4488
+ msgstr "Aktivierungslink erneut senden?"
4489
+
4490
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4491
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4492
+ msgid "Resend Activation Email"
4493
+ msgstr "Aktivierungs-E-Mail erneut senden"
4494
+
4495
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4496
+ msgid "%s couldn't be deleted"
4497
+ msgstr "%s konnte nicht gelöscht werden"
4498
+
4499
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4500
+ msgid "All users have been successfully deleted"
4501
+ msgstr "Alle Benutzer wurden erfolgreich gelöscht"
4502
+
4503
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4504
+ msgid "The selected users have been activated"
4505
+ msgstr "Die ausgewählten Benutzer wurden aktiviert"
4506
+
4507
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4508
+ msgid "The selected users have had their activation emails resent"
4509
+ msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
4510
+
4511
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4512
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4513
+ msgid "Users with Unconfirmed Email Address"
4514
+ msgstr "Benutzer mit unbestätigter E-Mail-Adresse"
4515
+
4516
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4517
+ msgid "There was an error performing that action!"
4518
+ msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
4519
+
4520
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4521
+ msgid "The selected user couldn't be deleted"
4522
+ msgstr "Der ausgewählte Benutzer konnte nicht gelöscht werden"
4523
+
4524
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4525
+ msgid "Email notification resent to user"
4526
+ msgstr "Die E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt."
4527
+
4528
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4529
+ msgid "[%1$s] Activate %2$s"
4530
+ msgstr "[%1$s] Aktivieren %2$s"
4531
+
4532
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4533
+ #: profile-builder-2.0/front-end/register.php:71
4534
+ msgid "Could not create user!"
4535
+ msgstr "Benutzer konnte nicht erstellt werden!"
4536
+
4537
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4538
+ msgid "That username is already activated!"
4539
+ msgstr "Dieser Benutzername ist bereits aktiviert worden!"
4540
+
4541
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4542
+ msgid "There was an error while trying to activate the user"
4543
+ msgstr "Es ist ein Fehler aufgetreten, beim Versuch, den Benutzer zu aktivieren."
4544
+
4545
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4546
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4547
+ msgid "A new subscriber has (been) registered!"
4548
+ msgstr "Ein neuer Benutzer ist (wurde) registriert!"
4549
+
4550
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4551
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4552
+ msgstr "Neuer Abonnent auf %1$s. <br/> <br/>Benutzername:%2$s <br/> E-Mail: %3$s <br/>"
4553
+
4554
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4555
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4556
+ msgstr "Das \"Admin Approval\" Feature war zum Zeitpunkt der Registrierung aktiv, also bitte denke daran, dass man diesen Benutzer genehmigen muss, bevor er sich anmelden kann!"
4557
+
4558
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4559
+ msgid "[%1$s] Your new account information"
4560
+ msgstr "[%1$s] Ihre neuen Kontodaten"
4561
+
4562
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4563
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4564
+ msgstr "Willkommen bei %1$s! <br/> <br/> <br/>Ihr Benutzername ist: %2$s und das Kennwort: %3$s"
4565
+
4566
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4567
+ #: profile-builder-2.0/front-end/register.php:125
4568
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4569
+ msgstr "Bevor du auf dein Konto zugreifen kannst, muss es von einem Administrator genehmigt werden. Du wirst per E-Mail darüber benachrichtigt."
4570
+
4571
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4572
+ msgid "This login widget lets you add a login form in the sidebar."
4573
+ msgstr "Mit diesem Login-Widget kannst du ein Anmeldeformular in der Sidebar hinzufügen."
4574
+
4575
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4576
+ msgid "Profile Builder Login Widget"
4577
+ msgstr "Profile Builder Login Widget"
4578
+
4579
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4580
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4581
+ #: profile-builder-2.0/front-end/login.php:250
4582
+ msgid "Register"
4583
+ msgstr "Registrieren"
4584
+
4585
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4586
+ msgid "Title:"
4587
+ msgstr "Titel:"
4588
+
4589
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4590
+ msgid "After login redirect URL (optional):"
4591
+ msgstr "Weiterleitungs-URL nach dem Login (optional):"
4592
+
4593
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4594
+ msgid "Register page URL (optional):"
4595
+ msgstr "Registrierunggseite-URL (optional):"
4596
+
4597
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4598
+ msgid "Password Recovery page URL (optional):"
4599
+ msgstr "Kennwort Wiederherstellungs-URL (optional):"
4600
+
4601
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4602
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4603
+ msgid "The usernames cannot be changed."
4604
+ msgstr "Benutzernamen können nicht geändert werden."
4605
+
4606
+ #: profile-builder-2.0/front-end/class-formbuilder.php:136
4607
+ msgid "Only an administrator can add new users."
4608
+ msgstr "Nur ein Administrator kann neue Benutzer hinzufügen."
4609
+
4610
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
4611
+ msgid "Users can register themselves or you can manually create users here."
4612
+ msgstr "Benutzer können sich selbst anmelden, oder du kannst Benutzer von Hand hier erstellen."
4613
+
4614
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
4615
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4616
+ msgstr "Benutzer können sich derzeit selbst nicht registrieren, aber du kannst Benutzer hier manuell erstellen."
4617
+
4618
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4619
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4620
+ msgstr "Du bist derzeit als %1s angemeldet. Du brauchst kein weiteres Konto. %2s"
4621
+
4622
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4623
+ msgid "Log out of this account."
4624
+ msgstr "Aus diesem Konto ausloggen."
4625
+
4626
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4627
+ msgid "Logout"
4628
+ msgstr "Ausloggen"
4629
+
4630
+ #: profile-builder-2.0/front-end/class-formbuilder.php:175
4631
+ msgid "You must be logged in to edit your profile."
4632
+ msgstr "Sie müssen angemeldet sein, um Ihr Profil zu bearbeiten."
4633
+
4634
+ #: profile-builder-2.0/features/functions.php:994
4635
+ msgid "here"
4636
+ msgstr "hier"
4637
+
4638
+ #: profile-builder-2.0/features/functions.php:995
4639
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4640
+ msgstr "Sie werden in Kürze automatisch weitergeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s"
4641
+
4642
+ #: profile-builder-2.0/front-end/class-formbuilder.php:315
4643
+ #: profile-builder-2.0/front-end/class-formbuilder.php:322
4644
+ msgid "The account %1s has been successfully created!"
4645
+ msgstr "Das Konto %1s wurde erfolgreich erstellt!"
4646
+
4647
+ #: profile-builder-2.0/front-end/class-formbuilder.php:318
4648
+ #: profile-builder-2.0/front-end/class-formbuilder.php:328
4649
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4650
+ msgstr "Bevor du auf dein Konto %1S zugreifen kannst, musst du deine E-Mail-Adresse bestätigen. Bitte überprüfe deinen Posteingang und klicke auf den Aktivierungslink."
4651
+
4652
+ #: profile-builder-2.0/front-end/class-formbuilder.php:324
4653
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4654
+ msgstr "Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administrator genehmigt werden. Über eine Bestätigung wirst du per E-Mail benachrichtigt."
4655
+
4656
+ #: profile-builder-2.0/front-end/class-formbuilder.php:347
4657
+ msgid "Your profile has been successfully updated!"
4658
+ msgstr "Ihr Profil wurde aktualisiert!"
4659
+
4660
+ #: profile-builder-2.0/front-end/class-formbuilder.php:358
4661
+ msgid "There was an error in the submitted form"
4662
+ msgstr "Bitte alle erforderlichen Felder korrekt ausfüllen!"
4663
+
4664
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4665
+ msgid "Add User"
4666
+ msgstr "Benutzer hinzufügen"
4667
+
4668
+ #: profile-builder-2.0/admin/add-ons.php:170
4669
+ #: profile-builder-2.0/front-end/class-formbuilder.php:418
4670
+ msgid "Update"
4671
+ msgstr "Aktualisieren"
4672
+
4673
+ #: profile-builder-2.0/front-end/class-formbuilder.php:481
4674
+ msgid "Send these credentials via email."
4675
+ msgstr "Senden Sie mir diese Anmeldeninformationen per E-Mail."
4676
+
4677
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4678
+ #: profile-builder-2.0/front-end/login.php:137
4679
+ #: profile-builder-2.0/front-end/login.php:144
4680
+ #: profile-builder-2.0/front-end/login.php:158
4681
+ #: profile-builder-2.0/front-end/recover.php:17
4682
+ #: profile-builder-2.0/front-end/recover.php:245
4683
+ msgid "ERROR"
4684
+ msgstr "FEHLER"
4685
+
4686
+ #: profile-builder-2.0/front-end/login.php:137
4687
+ msgid "The password you entered is incorrect."
4688
+ msgstr "Das eingegebene Kennwort ist falsch."
4689
+
4690
+ #: profile-builder-2.0/front-end/login.php:138
4691
+ #: profile-builder-2.0/front-end/login.php:145
4692
+ msgid "Password Lost and Found."
4693
+ msgstr "Passwort-Fundgrube"
4694
+
4695
+ #: profile-builder-2.0/front-end/login.php:138
4696
+ #: profile-builder-2.0/front-end/login.php:145
4697
+ msgid "Lost your password"
4698
+ msgstr "Passwort vergessen"
4699
+
4700
+ #: profile-builder-2.0/front-end/login.php:158
4701
+ msgid "Both fields are empty."
4702
+ msgstr "Beide Felder sind leer."
4703
+
4704
+ #: profile-builder-2.0/front-end/login.php:296
4705
+ msgid "You are currently logged in as %1$s. %2$s"
4706
+ msgstr "Derzeit als %1$s angemeldet. %2$s "
4707
+
4708
+ #: profile-builder-2.0/front-end/login.php:295
4709
+ #: profile-builder-2.0/front-end/logout.php:25
4710
+ msgid "Log out of this account"
4711
+ msgstr "Aus diesem Konto ausloggen"
4712
+
4713
+ #: profile-builder-2.0/front-end/login.php:295
4714
+ msgid "Log out"
4715
+ msgstr "Ausloggen"
4716
+
4717
+ #: profile-builder-2.0/front-end/recover.php:17
4718
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4719
+ msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie Ihr Kennwort zurücksetzen können."
4720
+
4721
+ #: profile-builder-2.0/front-end/recover.php:94
4722
+ msgid "Reset Password"
4723
+ msgstr "Passwort zurücksetzen"
4724
+
4725
+ #: profile-builder-2.0/front-end/recover.php:121
4726
+ msgid "Please enter your username or email address."
4727
+ msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail Adresse ein."
4728
+
4729
+ #: profile-builder-2.0/front-end/recover.php:125
4730
+ msgid "You will receive a link to create a new password via email."
4731
+ msgstr "Sie werden per E-Mail einen Link erhalten, über den Sie ein neues Passwort vergeben können."
4732
+
4733
+ #: profile-builder-2.0/front-end/recover.php:122
4734
+ msgid "Username or E-mail"
4735
+ msgstr "Benutzername oder E-Mail"
4736
+
4737
+ #: profile-builder-2.0/front-end/recover.php:138
4738
+ msgid "Get New Password"
4739
+ msgstr "Neues Passwort anfordern"
4740
+
4741
+ #: profile-builder-2.0/front-end/recover.php:185
4742
+ msgid "The username entered wasn't found in the database!"
4743
+ msgstr "Der eingegebene Benutzername existiert nicht!"
4744
+
4745
+ #: profile-builder-2.0/front-end/recover.php:185
4746
+ msgid "Please check that you entered the correct username."
4747
+ msgstr "Bitte überprüfe, ob du den richtigen Benutzernamen eingegeben hast."
4748
+
4749
+ #: profile-builder-2.0/front-end/recover.php:200
4750
+ msgid "Check your e-mail for the confirmation link."
4751
+ msgstr "Überprüfe dein E-Mail Postfach für den Bestätigungslink."
4752
+
4753
+ #: profile-builder-2.0/front-end/recover.php:235
4754
+ msgid "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"
4755
+ msgstr "Jemand hat angefragt, dass das Passwort für dieses Konto zurückgesetzt werden soll: <b>%1$s</b> <br/> Wenn diese Anfrage nicht von die ausgeht, bitte ignoriere diese E-Mail einfach und es geschieht nichts.<br/>Um dein Passwort zurückzusetzen, rufe folgenden Link auf: %2$s"
4756
+
4757
+ #: profile-builder-2.0/front-end/recover.php:238
4758
+ msgid "Password Reset from \"%1$s\""
4759
+ msgstr "Zurücksetzen des Kennworts \"%1$s\""
4760
+
4761
+ #: profile-builder-2.0/front-end/recover.php:245
4762
+ msgid "There was an error while trying to send the activation link to %1$s!"
4763
+ msgstr "Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!"
4764
+
4765
+ #: profile-builder-2.0/front-end/recover.php:207
4766
+ msgid "The email address entered wasn't found in the database!"
4767
+ msgstr "Die eingegebene E-Mail-Adresse existiert nicht!"
4768
+
4769
+ #: profile-builder-2.0/front-end/recover.php:207
4770
+ msgid "Please check that you entered the correct email address."
4771
+ msgstr "Bitte prüfe, ob du die richtige E-Mail Adresse angegeben hast."
4772
+
4773
+ #: profile-builder-2.0/front-end/recover.php:273
4774
+ msgid "Your password has been successfully changed!"
4775
+ msgstr "Ihr Passwort wurde erfolgreich geändert!"
4776
+
4777
+ #: profile-builder-2.0/front-end/recover.php:292
4778
+ msgid "You have successfully reset your password to: %1$s"
4779
+ msgstr "Ihr Kennwort wurde erfolgreich zurückgesetzt: %1$s"
4780
+
4781
+ #: profile-builder-2.0/front-end/recover.php:295
4782
+ #: profile-builder-2.0/front-end/recover.php:306
4783
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4784
+ msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\""
4785
+
4786
+ #: profile-builder-2.0/front-end/recover.php:303
4787
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4788
+ msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>Ihr neues Passwort ist: %2$s"
4789
+
4790
+ #: profile-builder-2.0/front-end/recover.php:320
4791
+ msgid "The entered passwords don't match!"
4792
+ msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
4793
+
4794
+ #: profile-builder-2.0/front-end/recover.php:375
4795
+ msgid "ERROR:"
4796
+ msgstr "FEHLER:"
4797
+
4798
+ #: profile-builder-2.0/front-end/recover.php:375
4799
+ msgid "Invalid key!"
4800
+ msgstr "Ungültiger Schlüssel!"
4801
+
4802
+ #: profile-builder-2.0/front-end/register.php:56
4803
+ msgid "Invalid activation key!"
4804
+ msgstr "Ungültiger Aktivierungsschlüssel!"
4805
+
4806
+ #: profile-builder-2.0/front-end/register.php:60
4807
+ msgid "This username is now active!"
4808
+ msgstr "Dieser Benutzername ist jetzt aktiv!"
4809
+
4810
+ #: profile-builder-2.0/front-end/register.php:74
4811
+ msgid "This username is already activated!"
4812
+ msgstr "Dieser Benutzername ist bereits aktiviert!"
4813
+
4814
+ #: profile-builder-2.0/front-end/register.php:124
4815
+ msgid "Your email was successfully confirmed."
4816
+ msgstr "Ihre E-Mail wurde erfolgreich bestätigt."
4817
+
4818
+ #: profile-builder-2.0/front-end/register.php:153
4819
+ msgid "There was an error while trying to activate the user."
4820
+ msgstr "Ein Fehler ist aufgetreten, während versucht wurde, den Benutzer zu aktivieren."
4821
+
4822
+ #: pb-add-on-woocommerce/index.php:393
4823
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4824
+ msgid "The email you entered is not a valid email address."
4825
+ msgstr "Die angegebene E-Mail Adresse wurde als ungültig eingestuft."
4826
+
4827
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4828
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4829
+ msgid "This email is already reserved to be used soon."
4830
+ msgstr "Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden."
4831
+
4832
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4833
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4834
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4835
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4836
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4837
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4838
+ msgid "Please try a different one!"
4839
+ msgstr "Bitte versuche es mit einer anderen!"
4840
+
4841
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4842
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4843
+ msgid "This email is already in use."
4844
+ msgstr "Diese E-Mail-Adresse ist bereits im Einsatz."
4845
+
4846
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4847
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4848
+ msgid "The passwords do not match"
4849
+ msgstr "Die Kennwörter stimmen nicht überein."
4850
+
4851
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4852
+ msgid "This username already exists."
4853
+ msgstr "Dieser Benutzername ist bereits vorhanden."
4854
+
4855
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4856
+ msgid "This username is already reserved to be used soon."
4857
+ msgstr "Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden."
4858
+
4859
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4860
+ msgid "Avatar"
4861
+ msgstr "Profil-Bild"
4862
+
4863
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4864
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4865
+ #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4866
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4867
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4868
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4869
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4870
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4871
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4872
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4873
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4874
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4875
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4876
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4877
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4878
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4879
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4880
+ msgid "required"
4881
+ msgstr "Erforderlich"
4882
+
4883
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4884
+ msgid "To use reCAPTCHA you must get an API key from"
4885
+ msgstr "Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier besorgen:"
4886
+
4887
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4888
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4889
+ msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP eingeben um ReCAPTCHA zu benutzen!"
4890
+
4891
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4892
+ msgid "To use reCAPTCHA you must get an API public key from:"
4893
+ msgstr "Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:"
4894
+
4895
+ #: profile-builder-2.0/modules/modules.php:11
4896
+ #: profile-builder-2.0/modules/modules.php:58
4897
+ msgid "Modules"
4898
+ msgstr "Module"
4899
+
4900
+ #: profile-builder-2.0/modules/modules.php:59
4901
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4902
+ msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
4903
+
4904
+ #: profile-builder-2.0/modules/modules.php:69
4905
+ msgid "Name/Description"
4906
+ msgstr "Name/Beschreibung"
4907
+
4908
+ #: profile-builder-2.0/modules/modules.php:70
4909
+ msgid "Status"
4910
+ msgstr "Status"
4911
+
4912
+ #: profile-builder-2.0/modules/modules.php:77
4913
+ #: profile-builder-2.0/modules/modules.php:84
4914
+ #: profile-builder-2.0/modules/modules.php:91
4915
+ #: profile-builder-2.0/modules/modules.php:98
4916
+ #: profile-builder-2.0/modules/modules.php:105
4917
+ #: profile-builder-2.0/modules/modules.php:112
4918
+ #: profile-builder-2.0/modules/modules.php:119
4919
+ msgid "Active"
4920
+ msgstr "Aktiv"
4921
+
4922
+ #: profile-builder-2.0/modules/modules.php:78
4923
+ #: profile-builder-2.0/modules/modules.php:85
4924
+ #: profile-builder-2.0/modules/modules.php:92
4925
+ #: profile-builder-2.0/modules/modules.php:99
4926
+ #: profile-builder-2.0/modules/modules.php:106
4927
+ #: profile-builder-2.0/modules/modules.php:113
4928
+ #: profile-builder-2.0/modules/modules.php:120
4929
+ msgid "Inactive"
4930
+ msgstr "inaktiv"
4931
+
4932
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4933
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4934
+ #: profile-builder-2.0/modules/modules.php:96
4935
+ msgid "Admin Email Customizer"
4936
+ msgstr "Anpassen der Admin-E-Mails"
4937
+
4938
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4939
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4940
+ #: profile-builder-2.0/modules/modules.php:103
4941
+ msgid "User Email Customizer"
4942
+ msgstr "Anpassen der Benutzer-E-Mails"
4943
+
4944
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4945
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4946
+ msgid "Save"
4947
+ msgstr "Speichern"
4948
+
4949
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4950
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4951
+ msgid "Redirect"
4952
+ msgstr "Weiterleitung"
4953
+
4954
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4955
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4956
+ msgid "URL"
4957
+ msgstr "URL"
4958
+
4959
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4960
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4961
+ msgstr "Diese Einstellungen werden auch auf der \"Benutzer E-Mail Kustomisierung\" Einstellungs-Seite beim Speichern repliziert."
4962
+
4963
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4964
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4965
+ msgid "From (name)"
4966
+ msgstr "Von (Name)"
4967
+
4968
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4969
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4970
+ msgid "From (reply-to email)"
4971
+ msgstr "Von (Antwort auf E-Mail)"
4972
+
4973
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4974
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4975
+ msgid "Common Settings"
4976
+ msgstr "Allgemeine Einstellungen"
4977
+
4978
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4979
+ msgid ""
4980
+ "\n"
4981
+ "<p>New subscriber on {{site_name}}.</p>\n"
4982
+ "<p>Username:{{username}}</p>\n"
4983
+ "<p>E-mail:{{user_email}}</p>\n"
4984
+ msgstr ""
4985
+ "\n"
4986
+ "<p>Neue Abonnenten für {{site_name}}.</p>\n"
4987
+ "<p>Benutzername:{{username}}</p>\n"
4988
+ "<p>E-mail:{{user_email}}</p>\n"
4989
+
4990
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4991
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4992
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4993
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4994
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4995
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4996
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4997
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4998
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4999
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
5000
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
5001
+ msgid "Email Subject"
5002
+ msgstr "E-Mail Betreff"
5003
+
5004
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
5005
+ msgid "Default Registration & Registration with Email Confirmation"
5006
+ msgstr "Standard-Anmeldung & Anmeldung mit E-Mail-Bestätigung"
5007
+
5008
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5009
+ msgid ""
5010
+ "\n"
5011
+ "<p>New subscriber on {{site_name}}.</p>\n"
5012
+ "<p>Username:{{username}}</p>\n"
5013
+ "<p>E-mail:{{user_email}}</p>\n"
5014
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
5015
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
5016
+ msgstr ""
5017
+ "\n"
5018
+ "<p>Neue Abonnenten für {{site_name}}.</p>\n"
5019
+ "<p>Benutzername: {{username}}</p> \n"
5020
+ "<p>E-Mail :{{user_email}}</p> \n"
5021
+ "<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
5022
+ "Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !</p>\n"
5023
+
5024
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5025
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5026
+ msgid "Registration with Admin Approval"
5027
+ msgstr "Anmeldung über Admin-Freischaltung"
5028
+
5029
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5030
+ msgid "Available Tags"
5031
+ msgstr "Verfügbare Tags"
5032
+
5033
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5034
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5035
+ msgid "User Meta"
5036
+ msgstr "Benutzer-Meta"
5037
+
5038
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5039
+ msgid "Site Url"
5040
+ msgstr "Webseite-URL"
5041
+
5042
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5043
+ msgid "Site Name"
5044
+ msgstr "Webseite Name"
5045
+
5046
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5047
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5048
+ msgid "User Id"
5049
+ msgstr "Benutzer-Id"
5050
+
5051
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5052
+ msgid "Reply To"
5053
+ msgstr "Antworten auf"
5054
+
5055
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5056
+ msgid "Activation Key"
5057
+ msgstr "Aktivierungsschlüssel"
5058
+
5059
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5060
+ msgid "Activation Url"
5061
+ msgstr "Aktivierungs-Url"
5062
+
5063
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5064
+ msgid "Activation Link"
5065
+ msgstr "Aktivierungs-Link"
5066
+
5067
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5068
+ msgid ""
5069
+ "\n"
5070
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5071
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5072
+ msgstr ""
5073
+ "\n"
5074
+ "<h3>Willkommen bei {{Site_name}}!</h3> <p>Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}</p>\n"
5075
+
5076
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5077
+ msgid "Default Registration"
5078
+ msgstr "Standard-Anmeldung"
5079
+
5080
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5081
+ msgid ""
5082
+ "\n"
5083
+ "<p>To activate your user, please click the following link:<br/>\n"
5084
+ "{{{activation_link}}}</p>\n"
5085
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
5086
+ msgstr ""
5087
+ "\n"
5088
+ "<p>Bitte klicke auf den folgenden Link, um dein Benutzerkonto zu aktivieren: <br/> \n"
5089
+ "{{{activation_link}}}</p>\n"
5090
+ "<p>Nach der Aktivierung erhälst du eine weitere E-Mail mit deinen Anmeldeinformationen.</p>\n"
5091
+
5092
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5093
+ msgid "[{{site_name}}] Activate {{username}}"
5094
+ msgstr "[{{site_name}}] Aktivieren {{username}}"
5095
+
5096
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5097
+ msgid "Registration with Email Confirmation"
5098
+ msgstr "Registrierung mit E-Mail-Bestätigung"
5099
+
5100
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5101
+ msgid ""
5102
+ "\n"
5103
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5104
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5105
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5106
+ msgstr ""
5107
+ "\n"
5108
+ "<h3>Willkommen bei {{site_name}}!</h3>\n"
5109
+ "<p>Ihr Benutzername ist: {{username}} und das Kennwort: {{password}}</p>\n"
5110
+ "<p>Bevor Sie in Ihr Konto zugreifen können, muss ein Administrator diesen Benutzer freischalten. Sie werden per E-Mail benachrichtigt, sobald dies passiert ist.</p>\n"
5111
+
5112
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5113
+ msgid "A new account has been created for you on {{site_name}}"
5114
+ msgstr "Ein neues Konto wurde für Sie auf {{Site_name}} erstellt"
5115
+
5116
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5117
+ msgid ""
5118
+ "\n"
5119
+ "<h3>Good News!</h3>\n"
5120
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5121
+ msgstr ""
5122
+ "\n"
5123
+ "<h3>Herzlich Willkommen!</h3>\n"
5124
+ "<p>Der Administrator hat Ihr Konto freigeschaltet: {{username}} auf {{site_name}}.</p>\n"
5125
+
5126
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5127
+ msgid "Your account on {{site_name}} has been approved!"
5128
+ msgstr "Ihr Benutzerkonto auf {{site_name}} wurde freigeschaltet!"
5129
+
5130
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5131
+ msgid "User Approval Notification"
5132
+ msgstr "Benutzer Genehmigungsbenachrichtigung"
5133
+
5134
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5135
+ msgid ""
5136
+ "\n"
5137
+ "<h3>Hello,</h3>\n"
5138
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5139
+ msgstr ""
5140
+ "\n"
5141
+ "<h3>Lieber Benutzer,</h3>\n"
5142
+ "<p>leider hat der Administrator Ihrem Konto soeben die Freigabe entzogen: {{username}} auf {{site_name}}.</p>\n"
5143
+
5144
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5145
+ msgid "Your account on {{site_name}} has been unapproved!"
5146
+ msgstr "Ihr Benutzerkonto auf {{site_name}} wurde nicht freigeschaltet!"
5147
+
5148
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5149
+ msgid "Unapproved User Notification"
5150
+ msgstr "Nicht genehmigte Benutzerbenachrichtigung"
5151
+
5152
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5153
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5154
+ msgid "Edit-profile Form"
5155
+ msgstr "Profil-Bearbeiten Formular"
5156
+
5157
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5158
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5159
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5160
+ msgid "Add New"
5161
+ msgstr "Neu hinzufügen"
5162
+
5163
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5164
+ msgid "Add new Edit-profile Form"
5165
+ msgstr "Neues Profil-Bearbeiten Formular hinzufügen"
5166
+
5167
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5168
+ msgid "Edit the Edit-profile Forms"
5169
+ msgstr "Profil-Bearbeiten Formular bearbeiten"
5170
+
5171
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5172
+ msgid "New Edit-profile Form"
5173
+ msgstr "Neues Profil-Bearbeiten Formular"
5174
+
5175
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5176
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5177
+ msgid "Edit-profile Forms"
5178
+ msgstr "Profil-Bearbeiten Formular"
5179
+
5180
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5181
+ msgid "View the Edit-profile Form"
5182
+ msgstr "Das Profil-Bearbeiten Formular anzeigen"
5183
+
5184
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5185
+ msgid "Search the Edit-profile Forms"
5186
+ msgstr "Suchen Sie nach Profil Bearbeitungs-Formulare"
5187
+
5188
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5189
+ msgid "No Edit-profile Form found"
5190
+ msgstr "Kein Profil Bearbeitungs-Formular wurde gefunden"
5191
+
5192
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5193
+ msgid "No Edit-profile Forms found in trash"
5194
+ msgstr "Keine Profil-bearbeitungs Formulare wurden im Papierkorb gefunden"
5195
+
5196
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5197
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5198
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5199
+ msgid "Shortcode"
5200
+ msgstr "Shortcode"
5201
+
5202
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5203
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5204
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5205
+ msgid "(no title)"
5206
+ msgstr "(kein Titel)"
5207
+
5208
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5209
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5210
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5211
+ msgid "The shortcode will be available after you publish this form."
5212
+ msgstr "Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen."
5213
+
5214
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5215
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5216
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5217
+ msgid "Use this shortcode on the page you want the form to be displayed:"
5218
+ msgstr "Verwenden Sie diesen Shortcode auf der Seite, wo das Formular angezeigt werden soll."
5219
+
5220
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5221
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5222
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5223
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5224
+ msgstr "<span style=\"color:red;\">Hinweis:</span> die Änderung des Formulartitels ändert auch den Shortcode!"
5225
+
5226
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5227
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5228
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5229
+ msgid "Form Shortcode"
5230
+ msgstr "Formular-Shortcode"
5231
+
5232
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5233
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5234
+ msgid "Whether to redirect the user to a specific page or not"
5235
+ msgstr "Ob der Benutzer zu einer bestimmten Seite umgeleitet werden soll oder nicht"
5236
+
5237
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5238
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5239
+ msgid "Display Messages"
5240
+ msgstr "Meldungen anzeigen"
5241
+
5242
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5243
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5244
+ msgid "Allowed time to display any success messages (in seconds)"
5245
+ msgstr "Erlaubte Zeit (in Sekunden) um Erfolgsmeldungen anzuzeigen"
5246
+
5247
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5248
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5249
+ msgstr "Geben Sie die URL der Seite ein, zu der die Benutzer umgeleitet werden sollten, sobald sie ihr Profil mit diesem Formular aktualisiert haben<br/> verwenden Sie folgendes Format: http://www.meineWebseite.com"
5250
+
5251
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5252
+ msgid "After Profile Update..."
5253
+ msgstr "Nach Profil-Änderung..."
5254
+
5255
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5256
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5257
+ msgid "Add New Field to the List"
5258
+ msgstr "Neues Feld zur Liste hinzufügen"
5259
+
5260
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5261
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5262
+ msgid "Choose one of the supported fields you manage <a href=\""
5263
+ msgstr "Wählen Sie eines der unterstützten Felder, die Sie verwalten aus <a href=\""
5264
+
5265
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5266
+ msgid "<pre>Title (Type)</pre>"
5267
+ msgstr "<pre>Titel (Type)</pre>"
5268
+
5269
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5270
+ msgid "You need to specify the title of the form before creating it"
5271
+ msgstr "Sie müssen dem Formular einen Titel geben, bevor Sie es anlegen können."
5272
+
5273
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5274
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5275
+ msgid "Registration Form"
5276
+ msgstr "Registrierungsformular"
5277
+
5278
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5279
+ msgid "Add new Registration Form"
5280
+ msgstr "Neues Registrierungsformular hinzufügen"
5281
+
5282
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5283
+ msgid "Edit the Registration Forms"
5284
+ msgstr "Anmeldeformulare bearbeiten"
5285
+
5286
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5287
+ msgid "New Registration Form"
5288
+ msgstr "Neues Registrierungsformular"
5289
+
5290
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5291
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5292
+ msgid "Registration Forms"
5293
+ msgstr "Registrierungsformulare"
5294
+
5295
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5296
+ msgid "View the Registration Form"
5297
+ msgstr "Registrierungsformular ansehen"
5298
+
5299
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5300
+ msgid "Search the Registration Forms"
5301
+ msgstr "Registrierungsformulare durchsuchen"
5302
+
5303
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5304
+ msgid "No Registration Form found"
5305
+ msgstr "Kein Registrierungsformular gefunden"
5306
+
5307
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5308
+ msgid "No Registration Forms found in trash"
5309
+ msgstr "Keine Registrierungsformulare wurden im Papierkorb gefunden"
5310
+
5311
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5312
+ msgid "Default Role"
5313
+ msgstr "Standardrolle"
5314
+
5315
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5316
+ msgid "Set Role"
5317
+ msgstr "Rolle einstellen"
5318
+
5319
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5320
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5321
+ msgstr "Wähle aus, welche Rolle ein Benutzer haben sollte, nachdem er sich registriert hat.<br/> Falls nicht angegeben, wird standardmäßig die Rolle aus den WordPress-Einstellungen gesetzt. "
5322
+
5323
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5324
+ msgid "Automatically Log In"
5325
+ msgstr "Automatisch einloggen"
5326
+
5327
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5328
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5329
+ msgstr "Ob man sich direkt automatisch als den neu registrierten Benutzer anmelden soll oder nicht.<br/> Funktioniert nur auf einzelnen Seiten ohne dass die Features \"Admin Approval\" und \"E-Mail-Bestätigung\" aktiviert sind.<br/>Achtung: Caching des Registrierungsformulars bricht die automatische Anmeldung."
5330
+
5331
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5332
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5333
+ msgstr "Gib die URL der Seite ein, auf der die Benutzer nach der Registrierung mit diesem Formular umgeleitet werden sollen.<br/> Verwende dabei folgendes Format: http://www.meineseite.com"
5334
+
5335
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5336
+ msgid "After Registration..."
5337
+ msgstr "Nach der Registrierung..."
5338
+
5339
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5340
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5341
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5342
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5343
+ msgid "Search Users by All Fields"
5344
+ msgstr "Suche Benutzer über alle Felder"
5345
+
5346
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5347
+ msgid "Add new User Listing"
5348
+ msgstr "Neue Benutzerliste hinzufügen"
5349
+
5350
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5351
+ msgid "Edit the User Listing"
5352
+ msgstr "Benutzerliste bearbeiten"
5353
+
5354
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5355
+ msgid "New User Listing"
5356
+ msgstr "Neue Benutzerliste"
5357
+
5358
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5359
+ msgid "View the User Listing"
5360
+ msgstr "Benutzerliste anzeigen"
5361
+
5362
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5363
+ msgid "Search the User Listing"
5364
+ msgstr "Benutzerliste durchsuchen"
5365
+
5366
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5367
+ msgid "No User Listing found"
5368
+ msgstr "Keine Benutzereinträge gefunden"
5369
+
5370
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5371
+ msgid "No User Listing found in trash"
5372
+ msgstr "Keine Benutzerliste im Papierkorb gefunden"
5373
+
5374
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5375
+ msgid "Display name as"
5376
+ msgstr "Name anzeigen als"
5377
+
5378
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5379
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5380
+ msgid "Registration Date"
5381
+ msgstr "Registrierungsdatum"
5382
+
5383
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5384
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5385
+ msgid "Number of Posts"
5386
+ msgstr "Beitragsanzahl"
5387
+
5388
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5389
+ msgid "More Info"
5390
+ msgstr "Mehr Info"
5391
+
5392
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5393
+ msgid "More Info Url"
5394
+ msgstr "Url für weitere Informationen"
5395
+
5396
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5397
+ msgid "Avatar or Gravatar"
5398
+ msgstr "Profilbild oder Gravatar"
5399
+
5400
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5401
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5402
+ msgid "Extra Functions"
5403
+ msgstr "Zusatzfunktionen"
5404
+
5405
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5406
+ msgid "Pagination"
5407
+ msgstr "Seitennummerierung"
5408
+
5409
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5410
+ msgid "Search all Fields"
5411
+ msgstr "Alle Felder durchsuchen"
5412
+
5413
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5414
+ msgid "Go Back Link"
5415
+ msgstr "\"Zurück\"-Link"
5416
+
5417
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5418
+ msgid "All-userlisting Template"
5419
+ msgstr "Vorlage für globale Benutzerliste"
5420
+
5421
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5422
+ msgid "Single-userlisting Template"
5423
+ msgstr "Vorlage für Einzelbenutzerliste"
5424
+
5425
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5426
+ msgid "First/Lastname"
5427
+ msgstr "Vor- / Nachname"
5428
+
5429
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5430
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5431
+ msgid "Sign-up Date"
5432
+ msgstr "Anmeldungsdatum"
5433
+
5434
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5435
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5436
+ msgid "Display Name"
5437
+ msgstr "Anzeigename"
5438
+
5439
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5440
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5441
+ msgid "Posts"
5442
+ msgstr "Beiträge"
5443
+
5444
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5445
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5446
+ msgid "Aim"
5447
+ msgstr "Aim"
5448
+
5449
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5450
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5451
+ msgid "Yim"
5452
+ msgstr "Yim"
5453
+
5454
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5455
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5456
+ msgid "Jabber"
5457
+ msgstr "Jabber"
5458
+
5459
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5460
+ msgid "Click here to see more information about this user"
5461
+ msgstr "Klicke hier für weitere Informationen über diesen Benutzer"
5462
+
5463
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5464
+ msgid "More..."
5465
+ msgstr "Mehr..."
5466
+
5467
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5468
+ msgid "Click here to see more information about this user."
5469
+ msgstr "Klicke hier für weitere Informationen über diesen Benutzer "
5470
+
5471
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5472
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5473
+ msgid "Click here to go back"
5474
+ msgstr "Klicke hier, um zurück zu gehen"
5475
+
5476
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5477
+ msgid "Back"
5478
+ msgstr "Zurück"
5479
+
5480
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5481
+ msgid "&laquo;&laquo; First"
5482
+ msgstr "&laquo;&laquo; Anfang"
5483
+
5484
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5485
+ msgid "&laquo; Prev"
5486
+ msgstr "&laquo; Zurück"
5487
+
5488
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5489
+ msgid "Next &raquo; "
5490
+ msgstr "Nächste Seite &raquo; "
5491
+
5492
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5493
+ msgid "Last &raquo;&raquo;"
5494
+ msgstr "Ende &raquo;&raquo;"
5495
+
5496
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5497
+ msgid "You don't have any pagination settings on this userlisting!"
5498
+ msgstr "Sie haben keine Paginations-Einstellungen für diese Benutzerliste getätigt!"
5499
+
5500
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5501
+ msgid "Search"
5502
+ msgstr "Suchen"
5503
+
5504
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5505
+ msgid "Clear Results"
5506
+ msgstr "Ergebnisse löschen"
5507
+
5508
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5509
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5510
+ msgid "Extra shortcode parameters"
5511
+ msgstr "Zusätzliche Shortcode-Parameter"
5512
+
5513
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5514
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5515
+ msgstr "Anzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld haben"
5516
+
5517
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5518
+ msgid "Example:"
5519
+ msgstr "Beispiel:"
5520
+
5521
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5522
+ msgid "Remember though, that the field-value combination must exist in the database."
5523
+ msgstr "Denke daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss."
5524
+
5525
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5526
+ msgid "Random (very slow on large databases > 10K user)"
5527
+ msgstr "Zufällig (sehr langsam bei großen Datenbanken > 10K Benutzer)"
5528
+
5529
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5530
+ msgid "Roles to Display"
5531
+ msgstr "Rollen anzeigen"
5532
+
5533
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5534
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5535
+ msgstr "Beschränken Sie die Benutzerlisten nur für diese ausgewählten Rollen <br/> Wenn nicht angegeben, wird standardmäßig auf allen vorhandenen Rollen die Beschränkung gesetzt"
5536
+
5537
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5538
+ msgid "Number of Users/Page"
5539
+ msgstr "Anzahl Benutzer/Seite"
5540
+
5541
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5542
+ msgid "Default Sorting Criteria"
5543
+ msgstr "Standard-Sortierkriterien"
5544
+
5545
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5546
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5547
+ msgstr "Festlegen der Standard-Sortierungskriterien <br/> Sie können temporär für jede neue Sitzung geändert werden."
5548
+
5549
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5550
+ msgid "Default Sorting Order"
5551
+ msgstr "Standard-Sortierreihenfolge"
5552
+
5553
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5554
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5555
+ msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
5556
+
5557
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5558
+ msgid "Avatar Size (All-userlisting)"
5559
+ msgstr "Profilbild-Größe (alle Benutzereinträge)"
5560
+
5561
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5562
+ msgid "Set the avatar size on the all-userlisting only"
5563
+ msgstr "Legen Sie die Profilbildgröße für alle Benutzer-Listen fest."
5564
+
5565
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5566
+ msgid "Avatar Size (Single-userlisting)"
5567
+ msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)"
5568
+
5569
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5570
+ msgid "Set the avatar size on the single-userlisting only"
5571
+ msgstr "Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)"
5572
+
5573
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5574
+ msgid "Visible only to logged in users?"
5575
+ msgstr "Nur für angemeldete Benutzer sichtbar?"
5576
+
5577
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5578
+ msgid "The userlisting will only be visible only to the logged in users"
5579
+ msgstr "Die Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein"
5580
+
5581
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5582
+ msgid "Visible to following Roles"
5583
+ msgstr "Für folgende Rollen sichtbar"
5584
+
5585
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5586
+ msgid "The userlisting will only be visible to the following roles"
5587
+ msgstr " Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein."
5588
+
5589
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5590
+ msgid "Userlisting Settings"
5591
+ msgstr "Einstellungen für Benutzerliste"
5592
+
5593
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5594
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5595
+ msgstr "Sie müssen die Benutzerlisten-Funktion innerhalb des Tabs \"Module\" aktivieren!"
5596
+
5597
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5598
+ msgid "You can find it in the Profile Builder menu."
5599
+ msgstr "Sie finden es im Menü vom Profile Builder"
5600
+
5601
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5602
+ msgid "No results found!"
5603
  msgstr "Es wurden keine Ergebnisse gefunden!"