User registration & user profile – Profile Builder - Version 2.6.6

Version Description

  • Updated translation files
  • Added the wppb_fields_extra_css_class filter to default fields
Download this release

Release Info

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

Code changes from version 2.6.5 to 2.6.6

assets/css/style-back-end.css CHANGED
@@ -109,7 +109,11 @@
109
  #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-behaviour,
110
  #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-limit,
111
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-behaviour,
112
- #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-limit{
 
 
 
 
113
  display:block;
114
  }
115
 
109
  #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-behaviour,
110
  #container_wppb_ul_faceted_settings .facet_type_checkboxes .row-facet-limit,
111
  #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-behaviour,
112
+ #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_checkboxes .row-facet-limit,
113
+ #container_wppb_ul_faceted_settings .facet_type_select_multiple .row-facet-behaviour,
114
+ #container_wppb_ul_faceted_settings .facet_type_select_multiple .row-facet-limit,
115
+ #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-behaviour,
116
+ #container_wppb_ul_faceted_settings .update_container_wppb_ul_faceted_settings.facet_select_multiple .row-facet-limit{
117
  display:block;
118
  }
119
 
assets/css/style-front-end.css CHANGED
@@ -597,6 +597,10 @@ ul.wppb-faceted-list .hide-this{
597
  padding: 5px 0;
598
  }
599
 
 
 
 
 
600
  .wppb-userlisting-container:after {
601
  visibility: hidden;
602
  display: block;
597
  padding: 5px 0;
598
  }
599
 
600
+ .wppb-userlisting-container .wppb-facet-select-multiple{
601
+ height:auto;
602
+ }
603
+
604
  .wppb-userlisting-container:after {
605
  visibility: hidden;
606
  display: block;
assets/js/jquery-pb-sitewide.js CHANGED
@@ -90,6 +90,8 @@ jQuery( function(){
90
  jQuery( '#wppb-ul-faceted-args').on('change', '#facet-type', function(){
91
  if( jQuery(this).val() == 'checkboxes' ){
92
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show();
 
 
93
  }
94
  else{
95
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).hide();
90
  jQuery( '#wppb-ul-faceted-args').on('change', '#facet-type', function(){
91
  if( jQuery(this).val() == 'checkboxes' ){
92
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show();
93
+ }else if( jQuery(this).val() == 'select_multiple' ){
94
+ jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).show();
95
  }
96
  else{
97
  jQuery( '.row-facet-behaviour, .row-facet-limit', jQuery(this).parent().parent().parent()).hide();
front-end/default-fields/aim/aim.php CHANGED
@@ -22,7 +22,7 @@ function wppb_aim_handler( $output, $form_location, $field, $user_id, $field_che
22
 
23
  $output = '
24
  <label for="aim">'.$item_title.$error_mark.'</label>
25
- <input class="text-input" name="aim" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" class="default_field_aim" id="aim" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
22
 
23
  $output = '
24
  <label for="aim">'.$item_title.$error_mark.'</label>
25
+ <input name="aim" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" class="text-input default_field_aim '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" id="aim" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
front-end/default-fields/description/description.php CHANGED
@@ -22,7 +22,7 @@ function wppb_description_handler( $output, $form_location, $field, $user_id, $f
22
 
23
  $output = '
24
  <label for="description">'.$item_title.$error_mark.'</label>
25
- <textarea rows="'.$field['row-count'].'" name="description" maxlength="'. apply_filters( 'wppb_maximum_character_length', '', $field ) .'" class="default_field_description" id="description" wrap="virtual" '. $extra_attr .'>'. esc_textarea( wp_unslash( $input_value ) ).'</textarea>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
22
 
23
  $output = '
24
  <label for="description">'.$item_title.$error_mark.'</label>
25
+ <textarea rows="'.$field['row-count'].'" name="description" maxlength="'. apply_filters( 'wppb_maximum_character_length', '', $field ) .'" class="default_field_description '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" id="description" wrap="virtual" '. $extra_attr .'>'. esc_textarea( wp_unslash( $input_value ) ).'</textarea>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
front-end/default-fields/display-name/display-name.php CHANGED
@@ -37,7 +37,7 @@ function wppb_display_name_handler( $output, $form_location, $field, $user_id, $
37
  $public_display = array_unique( $public_display );
38
 
39
  $output = '<label for="display_name">'.$item_title.$error_mark.'</label>';
40
- $output .= '<select class="default_field_display-name" name="display_name" id="display-name">';
41
 
42
  foreach( $public_display as $display_name_option ) {
43
  $output .= '<option ' . selected( $user_data->display_name, $display_name_option, false ) . '>' . $display_name_option . '</option>';
37
  $public_display = array_unique( $public_display );
38
 
39
  $output = '<label for="display_name">'.$item_title.$error_mark.'</label>';
40
+ $output .= '<select class="default_field_display-name '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="display_name" id="display-name">';
41
 
42
  foreach( $public_display as $display_name_option ) {
43
  $output .= '<option ' . selected( $user_data->display_name, $display_name_option, false ) . '>' . $display_name_option . '</option>';
front-end/default-fields/email/email.php CHANGED
@@ -24,7 +24,7 @@ function wppb_email_handler( $output, $form_location, $field, $user_id, $field_c
24
 
25
  $output = '
26
  <label for="email">'.$item_title.$error_mark.'</label>
27
- <input class="text-input default_field_email" name="email" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="email" id="email" value="'. esc_attr( $input_value ) .'" '. $extra_attr .' />';
28
  if( !empty( $item_description ) )
29
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
30
 
24
 
25
  $output = '
26
  <label for="email">'.$item_title.$error_mark.'</label>
27
+ <input class="text-input default_field_email '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="email" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="email" id="email" value="'. esc_attr( $input_value ) .'" '. $extra_attr .' />';
28
  if( !empty( $item_description ) )
29
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
30
 
front-end/default-fields/first-name/first-name.php CHANGED
@@ -22,7 +22,7 @@ function wppb_first_name_handler( $output, $form_location, $field, $user_id, $fi
22
 
23
  $output = '
24
  <label for="first_name">'.$item_title.$error_mark.'</label>
25
- <input class="text-input default_field_firstname" name="first_name" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="first_name" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .' />';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
22
 
23
  $output = '
24
  <label for="first_name">'.$item_title.$error_mark.'</label>
25
+ <input class="text-input default_field_firstname '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="first_name" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="first_name" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .' />';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
front-end/default-fields/headings/about-yourself.php CHANGED
@@ -4,7 +4,7 @@ function wppb_default_about_yourself_handler( $output, $form_location, $field, $
4
  $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
 
7
- $output = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter">'.$item_description.'</span>';
8
 
9
  return apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
  }
4
  $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
 
7
+ $output = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'">'.$item_description.'</span>';
8
 
9
  return apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
  }
front-end/default-fields/headings/contact-info.php CHANGED
@@ -4,7 +4,7 @@ function wppb_default_contact_info_handler( $output, $form_location, $field, $us
4
  $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_contact_info_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
 
7
- $ret_custom_field = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter">'.$item_description.'</span>';
8
 
9
  return apply_filters( 'wppb_'.$form_location.'_default_heading_contact_info_'.$field['id'], $ret_custom_field, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
  }
4
  $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_contact_info_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
 
7
+ $ret_custom_field = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'">'.$item_description.'</span>';
8
 
9
  return apply_filters( 'wppb_'.$form_location.'_default_heading_contact_info_'.$field['id'], $ret_custom_field, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
  }
front-end/default-fields/headings/name.php CHANGED
@@ -4,7 +4,7 @@ function wppb_default_name_handler( $output, $form_location, $field, $user_id, $
4
  $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_name_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
 
7
- $ret_custom_field = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter">'.$item_description.'</span>';
8
 
9
  return apply_filters( 'wppb_'.$form_location.'_default_heading_name_'.$field['id'], $ret_custom_field, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
  }
4
  $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_name_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
 
7
+ $ret_custom_field = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'">'.$item_description.'</span>';
8
 
9
  return apply_filters( 'wppb_'.$form_location.'_default_heading_name_'.$field['id'], $ret_custom_field, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
  }
front-end/default-fields/jabber/jabber.php CHANGED
@@ -22,7 +22,7 @@ function wppb_jabber_handler( $output, $form_location, $field, $user_id, $field_
22
 
23
  $output = '
24
  <label for="jabber">'.$item_title.$error_mark.'</label>
25
- <input class="text-input" name="jabber" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" class="default_field_jabber" id="jabber" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
22
 
23
  $output = '
24
  <label for="jabber">'.$item_title.$error_mark.'</label>
25
+ <input name="jabber" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" class="text-input default_field_jabber '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" id="jabber" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
front-end/default-fields/last-name/last-name.php CHANGED
@@ -22,7 +22,7 @@ function wppb_last_name_handler( $output, $form_location, $field, $user_id, $fie
22
 
23
  $output = '
24
  <label for="last_name">'.$item_title.$error_mark.'</label>
25
- <input class="text-input default_field_lastname" name="last_name" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="last_name" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
  }
22
 
23
  $output = '
24
  <label for="last_name">'.$item_title.$error_mark.'</label>
25
+ <input class="text-input default_field_lastname '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="last_name" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="last_name" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
  }
front-end/default-fields/nickname/nickname.php CHANGED
@@ -22,7 +22,7 @@ function wppb_nickname_handler( $output, $form_location, $field, $user_id, $fiel
22
 
23
  $output = '
24
  <label for="nickname">'.$item_title.$error_mark.'</label>
25
- <input class="text-input default_field_nickname" name="nickname" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="nickname" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
22
 
23
  $output = '
24
  <label for="nickname">'.$item_title.$error_mark.'</label>
25
+ <input class="text-input default_field_nickname '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="nickname" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="nickname" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
front-end/default-fields/password-repeat/password-repeat.php CHANGED
@@ -14,7 +14,7 @@ function wppb_password_repeat_handler( $output, $form_location, $field, $user_id
14
 
15
  $output = '
16
  <label for="passw2">' . $item_title.$error_mark . '</label>
17
- <input class="text-input" name="passw2" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="password" id="passw2" value="" autocomplete="off" '. $extra_attr .'/>';
18
  if( !empty( $item_description ) )
19
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
20
  }
14
 
15
  $output = '
16
  <label for="passw2">' . $item_title.$error_mark . '</label>
17
+ <input class="text-input '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="passw2" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="password" id="passw2" value="" autocomplete="off" '. $extra_attr .'/>';
18
  if( !empty( $item_description ) )
19
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
20
  }
front-end/default-fields/password/password.php CHANGED
@@ -14,7 +14,7 @@ function wppb_password_handler( $output, $form_location, $field, $user_id, $fiel
14
 
15
  $output = '
16
  <label for="passw1">' . $item_title.$error_mark . '</label>
17
- <input class="text-input" 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
14
 
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
front-end/default-fields/username/username.php CHANGED
@@ -22,7 +22,7 @@ function wppb_username_handler( $output, $form_location, $field, $user_id, $fiel
22
 
23
  $output = '
24
  <label for="username">'.$item_title.$error_mark.'</label>
25
- <input class="text-input default_field_username" name="username" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="username" value="'. esc_attr( $input_value ) .'" '.$readonly.' '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
28
  }
22
 
23
  $output = '
24
  <label for="username">'.$item_title.$error_mark.'</label>
25
+ <input class="text-input default_field_username '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="username" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="username" value="'. esc_attr( $input_value ) .'" '.$readonly.' '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
28
  }
front-end/default-fields/website/website.php CHANGED
@@ -22,7 +22,7 @@ function wppb_website_handler( $output, $form_location, $field, $user_id, $field
22
 
23
  $output = '
24
  <label for="website">'.$item_title.$error_mark.'</label>
25
- <input class="text-input default_field_website" name="website" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="website" value="'.esc_url( wp_unslash( $input_value ) ).'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
22
 
23
  $output = '
24
  <label for="website">'.$item_title.$error_mark.'</label>
25
+ <input class="text-input default_field_website '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="website" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" id="website" value="'.esc_url( wp_unslash( $input_value ) ).'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
front-end/default-fields/yim/yim.php CHANGED
@@ -22,7 +22,7 @@ function wppb_yim_handler( $output, $form_location, $field, $user_id, $field_che
22
 
23
  $output = '
24
  <label for="yim">'.$item_title.$error_mark.'</label>
25
- <input class="text-input" name="yim" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" class="default_field_yim" id="yim" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
22
 
23
  $output = '
24
  <label for="yim">'.$item_title.$error_mark.'</label>
25
+ <input name="yim" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70 ) .'" type="text" class="text-input default_field_yim '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" id="yim" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
26
  if( !empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
28
 
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.5
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.5' );
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.6.6
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.6.6' );
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
5
- Requires at least: 3.1
6
- Tested up to: 4.8
7
- Stable tag: 2.6.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -125,9 +125,9 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
125
 
126
  == Frequently Asked Questions ==
127
 
128
- = I navigated away from Profile Builder and now I cant find it anymore; where is it? =
129
 
130
- Profile Builder can be found in the default menu of your WordPress installation below the Users menu item.
131
 
132
  = Why do the default WordPress user fields still show up in the back-end? =
133
 
@@ -153,6 +153,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
153
  12. Role Editor
154
 
155
  == Changelog ==
 
 
 
 
156
  = 2.6.5 =
157
  * Fixed an issue where certain users could view the Roles Editor page without permission
158
  * Changed the strings in Recover Password accordingly with the option set in 'Allow Users to Log in With' setting
1
+ === User registration & user profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
+ Donate link: https://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
5
+ Requires at least: 3.1.0
6
+ Tested up to: 4.8.1
7
+ Stable tag: 2.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
125
 
126
  == Frequently Asked Questions ==
127
 
128
+ = I navigated away from Profile Builder and now I can't find it anymore; where is it? =
129
 
130
+ Profile Builder can be found in the default menu of your WordPress installation below the Users menu item.
131
 
132
  = Why do the default WordPress user fields still show up in the back-end? =
133
 
153
  12. Role Editor
154
 
155
  == Changelog ==
156
+ = 2.6.6 =
157
+ * Updated translation files
158
+ * Added the wppb_fields_extra_css_class filter to default fields
159
+
160
  = 2.6.5 =
161
  * Fixed an issue where certain users could view the Roles Editor page without permission
162
  * Changed the strings in Recover Password accordingly with the option set in 'Allow Users to Log in With' setting
translation/profile-builder-ar.mo ADDED
Binary file
translation/profile-builder-ar.po ADDED
@@ -0,0 +1,5598 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Profile Builder in Arabic
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:23+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=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\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 "حدد تنسيق التاريخ عند استخدام منسق التاريخ <br/>الخيارات الصحيحة: 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 إذا لم يتم تحديد 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 "عمليات إعادة التوجيه الفردية المعرفة في الرموز القصيرة; <strong><em>redirect_priority=\"top\"</em></strong> يمكن إضافة المعاملات في أي رمز قصير، فستكون أولوية إعادة توجيه الرمز القصير هذه على جميع عمليات إعادة التوجيه الأخرى."
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 "<p>إن ترخيص <strong>Profile Builder</strong> على وشك الانتهاء في %5$s. <br/>الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40&#37; %4$s %6$s تجاهل %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>إن ترخيص <strong>Profile Builder</strong> قد انتهى. <br/>الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40&#37; %4$s %6$s تجاهل %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 "لقد قمت بالفعل بتسجيل الدخول. يمكنك تغيير كلمة المرور الخاصة بك في نموذج تحرير الملف الشخصي."
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 "سيبدو عنوان موقعك على هذا النحو: <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>يمكنك زيارة موقعك على"
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>كما ستتمكن من زيارة موقعك على"
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 "السماح للمستخدمين بالحصول على <strong>حسابات مدفوعة باستخدام أداةProfile Builder</strong>. %1$sمعرفة المزيد >%2$s %3$sتجاهل%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 "مرحبا بك في %1$s! <br/> <br/> <br/> اسم المستخدم الخاص بك هو: %2$s"
105
+
106
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
+ msgid "View Map"
108
+ msgstr "معاينة الخريطة"
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 "متوفر في اصدارات Hobbyist و Pro"
195
+
196
+ #: profile-builder-2.0/admin/add-ons.php:105
197
+ msgid "Available in All Versions"
198
+ msgstr "متوفر في جميع الإصدارات"
199
+
200
+ #: profile-builder-2.0/admin/add-ons.php:148
201
+ msgid "Learn More"
202
+ msgstr "تعلم المزيد"
203
+
204
+ #: profile-builder-2.0/admin/basic-info.php:99
205
+ msgid "Timepicker"
206
+ msgstr "منتقي الوقت"
207
+
208
+ #: profile-builder-2.0/admin/basic-info.php:100
209
+ msgid "Colorpicker"
210
+ msgstr "منتقي اللون"
211
+
212
+ #: profile-builder-2.0/admin/basic-info.php:103
213
+ msgid "Currency Select"
214
+ msgstr "تحديد العملة"
215
+
216
+ #: profile-builder-2.0/admin/basic-info.php:109
217
+ msgid "Number"
218
+ msgstr "رقم"
219
+
220
+ #: profile-builder-2.0/admin/basic-info.php:114
221
+ msgid "Validation"
222
+ msgstr "التحقق"
223
+
224
+ #: profile-builder-2.0/admin/basic-info.php:115
225
+ msgid "Map"
226
+ msgstr "خريطة"
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 "يعمل مع نماذج الواجهة الأمامية فقط. يوصى بإعادة توجيه تسجيل الافتراضي ل WP إلى نموذج Profile Builder يستخدم وحدة \"إعادة توجيه مخصص\"."
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 "استخدم هذا مع وظائف ووردبريس لعرض القيمة في الصفحة التي تختارها <br/> الإكمال التلقائي ولكن في بعض الحالات قابل للتعديل (وفي هذه الحالة يجب أن تكون فريدة من نوعها) <br/> قد يستغرق تغيير هذا الأمر وقتا طويلا في حالة وجود عدد كبير من المستخدمين"
248
+
249
+ #: profile-builder-2.0/admin/manage-fields.php:143
250
+ msgid "Show Currency Symbol"
251
+ msgstr "إظهار رمز العملة"
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 "عرض نوع المقال"
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 "سيتم عرض المقالات من نوع المقال في التحديد."
264
+
265
+ #: profile-builder-2.0/admin/manage-fields.php:145
266
+ msgid "Allowable Values"
267
+ msgstr "القيم المسموح بها"
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 "أدخل قائمة مفصولة بفواصل للقيم المحتملة. عند التسجيل إذا كانت القيمة المقدمة من قبل المستخدم لا تتطابق مع إحدى هذه القيم، لن يتم تسجيل المستخدم."
272
+
273
+ #: profile-builder-2.0/admin/manage-fields.php:146
274
+ msgid "Error Message"
275
+ msgstr "رسالة خطأ"
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 "قم بتعيين رسالة خطأ مخصصة ليتم عرضها للمستخدم."
280
+
281
+ #: profile-builder-2.0/admin/manage-fields.php:147
282
+ msgid "Time Format"
283
+ msgstr "صيغة الوقت"
284
+
285
+ #: profile-builder-2.0/admin/manage-fields.php:147
286
+ msgid "Specify the time format."
287
+ msgstr "تحديد صيغة الوقت"
288
+
289
+ #: profile-builder-2.0/admin/manage-fields.php:148
290
+ msgid "Google Maps API Key"
291
+ msgstr "مفتاح API لخرائط Google"
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 (<a href=\"https://console.developers.google.com/flows/enableapi؟apiid=maps_backend\" target=\"_blank\"> احصل على مفتاح واجهة برمجة التطبيقات </a>). إذا تم إضافة أكثر من حقل خريطة إلى نموذج سيتم استخدام مفتاح API من الخريطة الأولى المعروضة."
296
+
297
+ #: profile-builder-2.0/admin/manage-fields.php:149
298
+ msgid "Default Latitude"
299
+ msgstr "خط العرض الافتراضي"
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 "خط العرض الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس."
304
+
305
+ #: profile-builder-2.0/admin/manage-fields.php:150
306
+ msgid "Default Longitude"
307
+ msgstr "الطول الافتراضي"
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 "خط الطول الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس."
312
+
313
+ #: profile-builder-2.0/admin/manage-fields.php:151
314
+ msgid "Default Zoom Level"
315
+ msgstr "مستوى التكبير الافتراضي"
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 "إضافة رقم من 0 إلى 19. كل ما زاد الرقم زاد التكبير."
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 "محتوى HTML"
332
+
333
+ #: profile-builder-2.0/admin/manage-fields.php:154
334
+ msgid "Add your HTML (or text) content"
335
+ msgstr "أضف محتوى HTML (أو نص)"
336
+
337
+ #: profile-builder-2.0/admin/manage-fields.php:155
338
+ msgid "Phone Format"
339
+ msgstr "تنسيق الهاتف"
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 "يمكنك استخدام: # للأرقام، الأقواس ()، - علامة، + علامة، نقطة. والمساحات."
344
+
345
+ #: profile-builder-2.0/admin/manage-fields.php:155
346
+ msgid "Eg. (###) ###-####"
347
+ msgstr "مثال. (###) ###-####"
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 "الحد الأدنى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)"
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 "الحد الأعلى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)"
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 "قيمة الخطوة 1 للسماح الأعداد الصحيحة فقط، 0.1 للسماح الأعداد الصحيحة والأرقام مع رقم عشري واحد"
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 "للسماح للعديد من الكسور العشرية المستخدمة على سبيل المثال. 0.01 (ل 2 عشري) وما إلى ذلك"
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 "يمكنك أيضا استخدام قيمة الخطوة لتحديد فترات الرقم القانوني (على سبيل المثال الخطوة 2 سوف تسمح فقط -4، -2، 0، 2 وما إلى ذلك)"
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 "يورو"
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 "كرونا آيسلندي"
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 "يمكن أن يحتوي الاسم الوصفي فقط على أحرف صغيرة وأرقام و _ و - وليس مسافات.\n"
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 "رقم الهاتف غير صحيح"
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 "هناك خطأ ما. حاول مرة اخرى."
907
+
908
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
+ msgid "Please enter numbers only"
910
+ msgstr "برجاء إدخال أرقام فقط"
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 "يجب أن تكون القيمة مضاعفا ل %1$s"
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 "يجب أن تكون القيمة أكبر من أو تساوي %1$s"
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 "يجب أن تكون القيمة أكبر من أو تساوي %1$s"
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 "[{{site_name}}] إشعار بتغيير البريد الإلكتروني"
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 "الحد الافتراضي لهذه المجموعة المكرره. <br> اترك 0 بدون تحديد."
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 "اترك 0 لغير محدود."
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 "الرجاء إدخال عنوان حقل فريد.\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 "هل أنت متأكد أنك تريد حذف هذا؟"
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 "إظهار الكل"
1142
+
1143
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
+ msgid "No options available"
1145
+ msgstr "لاتوجد خيارات"
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 ""
1215
+
1216
+ #: pb-add-on-woocommerce/billing-fields.php:9
1217
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1218
+ msgid "Address"
1219
+ msgstr ""
1220
+
1221
+ #: pb-add-on-woocommerce/billing-fields.php:5
1222
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1223
+ msgid "Country"
1224
+ msgstr ""
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 ""
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 ""
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 ""
1240
+
1241
+ #: pb-add-on-woocommerce/billing-fields.php:14
1242
+ msgid "Email Address"
1243
+ msgstr ""
1244
+
1245
+ #: pb-add-on-woocommerce/billing-fields.php:15
1246
+ msgid "Phone"
1247
+ msgstr ""
1248
+
1249
+ #: pb-add-on-woocommerce/billing-fields.php:278
1250
+ msgid "Ship to a different address?"
1251
+ msgstr ""
1252
+
1253
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
+ msgid "Billing Address"
1255
+ msgstr ""
1256
+
1257
+ #: pb-add-on-woocommerce/index.php:169
1258
+ msgid "Displays customer billing fields in front-end. "
1259
+ msgstr ""
1260
+
1261
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
+ msgid "Shipping Address"
1263
+ msgstr ""
1264
+
1265
+ #: pb-add-on-woocommerce/index.php:173
1266
+ msgid "Displays customer shipping fields in front-end. "
1267
+ msgstr ""
1268
+
1269
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
+ msgid "Display on WooCommerce Checkout"
1271
+ msgstr ""
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 ""
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 ""
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 ""
1285
+
1286
+ #: pb-add-on-woocommerce/woosync-page.php:76
1287
+ msgid "Choose Register form to display on My Account page:"
1288
+ msgstr ""
1289
+
1290
+ #: pb-add-on-woocommerce/woosync-page.php:81
1291
+ msgid "Default Register"
1292
+ msgstr ""
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 ""
1297
+
1298
+ #: pb-add-on-woocommerce/woosync-page.php:110
1299
+ msgid "Choose Edit Profile form to display on My Account page:"
1300
+ msgstr ""
1301
+
1302
+ #: pb-add-on-woocommerce/woosync-page.php:115
1303
+ msgid "Default Edit Profile"
1304
+ msgstr ""
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 ""
1309
+
1310
+ #: profile-builder-2.0/admin/add-ons.php:190
1311
+ msgid "Recommended Plugins"
1312
+ msgstr "الإضافات الموصى بها"
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 "مجاني"
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 "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك."
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 "معلومات أكثر"
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 "الإضافة <strong>غير مفعلة</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 "الإضافة <strong>مفعلة</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 "تعذر تثبيت الإضافة. أعد المحاولة أو <a href=\"%s\" target=\"_blank\"> ثبت يدويا </a>."
1346
+
1347
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
+ msgid "Paid Accounts"
1349
+ msgstr "الحسابات المدفوعة"
1350
+
1351
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1352
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1353
+ msgstr "العضوية مدفوعة الاشتراك - إضافة ووردبريس مجانية"
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 "باستخدام حقل الاشتراكات الجديد في Profile Builder، ستسمح استمارات التسجيل لمستخدميك بالاشتراك في الحسابات المدفوعة."
1358
+
1359
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
+ msgid "Paid & Free Subscriptions"
1361
+ msgstr "الاشتراكات المدفوعة والمجانية"
1362
+
1363
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
+ msgid "Restrict Content"
1365
+ msgstr "تقييد المحتوى"
1366
+
1367
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
+ msgid "Member Management"
1369
+ msgstr "إدارة الأعضاء"
1370
+
1371
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
+ msgid "Email Templates"
1373
+ msgstr "قوالب البريد الإلكتروني"
1374
+
1375
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
+ msgid "Account Management"
1377
+ msgstr "إدارة الحساب"
1378
+
1379
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
+ msgid "Subscription Management"
1381
+ msgstr "إدارة الاشتراكات"
1382
+
1383
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
+ msgid "Payment Management"
1385
+ msgstr "إدارة الدفع"
1386
+
1387
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
+ msgid "Plugin is Active"
1389
+ msgstr "الإضافة مفعلة"
1390
+
1391
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
+ msgid "Plugin has been activated"
1393
+ msgstr "تم تفعيل الإضافة"
1394
+
1395
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
+ msgid "Plugin has been deactivated."
1397
+ msgstr "تم تعطيل الإضافة."
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 "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك."
1402
+
1403
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
+ msgid "Step by Step Quick Setup"
1405
+ msgstr "الإعداد السريع خطوة بخطوة"
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 "لتفعيل المستخدم، يرجى النقر على الرابط التالي: <br> <br>%s%s%s<br> <br> بعد التفعيل، ستتلقى رسالة إلكترونية أخرى * مع تسجيل الدخول."
1410
+
1411
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
+ msgid "After Login"
1413
+ msgstr "بعد تسجيل الدخول"
1414
+
1415
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
+ msgid "After Logout"
1417
+ msgstr "بعد تسجيل الخروج"
1418
+
1419
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
+ msgid "After Registration"
1421
+ msgstr "بعد التسجيل"
1422
+
1423
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
+ msgid "After Edit Profile"
1425
+ msgstr "بعد تعديل الملف الشخصي"
1426
+
1427
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
+ msgid "After Successful Email Confirmation"
1429
+ msgstr "بعد تأكيد البريد الإلكتروني بنجاح"
1430
+
1431
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
+ msgid "After Successful Password Reset"
1433
+ msgstr "بعد إعادة كلمة المرور بنجاح"
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 "لوحة التحكم (إعادة توجيه المستخدمين من الدخول إلى لوحة التحكم)"
1438
+
1439
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
+ msgid "User ID"
1441
+ msgstr "معرف المستخدم"
1442
+
1443
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
+ msgid "User ID or Username"
1445
+ msgstr "معرف المستخدم أو اسم المستخدم"
1446
+
1447
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
+ msgid "User ID / Username"
1449
+ msgstr "معرف المستخدم / اسم المستخدم"
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 "يرجى تحديد وإدخال الرقم التعريفي للمستخدم أو اسم المستخدم الخاص به."
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 "نوع إعادة التوجيه"
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 "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 "يمكن أن يحتوي على الوسوم الديناميكية التالية:{{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 "عمليات إعادة توجيه المستخدمين الفرديين"
1480
+
1481
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
+ msgid "... Choose"
1483
+ msgstr "... اختر"
1484
+
1485
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
+ msgid "Select a user role."
1487
+ msgstr "حدد دور المستخدم."
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 "عمليات إعادة التوجيه استنادا إلى دور المستخدم"
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 "عمليات إعادة التوجيه العالمية"
1498
+
1499
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
+ msgid "Login ( wp_login.php )"
1501
+ msgstr "تسجيل الدخول ( 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 "التسجيل ( 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 "فقدت كلمة المرور ( 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 "أرشيف المؤلف (http://sitename.com/author/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 "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات"
1518
+
1519
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
+ msgid "How does this work?"
1521
+ msgstr "كيف يعمل هذا؟"
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>معرف المستخدم / اسم المستخدم</pre><pre>إعادة توجيه</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>دور المستخدم</pre><pre>إعادة توجيه</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>إعادة توجيه</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 "تحدث عمليات إعادة التوجيه هذه بعد إجراء ناجح، مثل التسجيل أو بعد تسجيل دخول ناجح."
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 "تعتمد عملية إعادة التوجيه على الأولوية التالية:"
1543
+
1544
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
+ msgid "Redirect Default WordPress forms and pages"
1546
+ msgstr "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات"
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 "مع هذه يمكنك إعادة توجيه نماذج وورد مختلفة وصفحات إلى صفحات تم إنشاؤها باستخدام profile builder."
1551
+
1552
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
+ msgid "Available tags for dynamic URLs"
1554
+ msgstr "الوسوم المتاحة لعناوين URL الديناميكية"
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 "يمكنك استخدام الوسوم التالية في عناوين URL لإعادة توجيه المستخدمين إلى صفحات مختلفة."
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 "يولد عنوان url للصفحة الرئيسية الحالية."
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 "في ووردبريس يمكن أن يكون <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>عنوان الموقع</a> مختلفا عن عنوان url الرئيسي"
1567
+
1568
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
+ msgid "the ID of the user"
1570
+ msgstr "معرف المستخدم"
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 "النسخة المعقمة لعنوان URL لاسم المستخدم، يمكن استخدام اسم المستخدم اللطيف بأمان في عناوين URL نظرا لأنه لا يمكن أن يحتوي على أحرف خاصة أو مسافات."
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 "عنوان URL للصفحة التي تمت زيارتها سابقا"
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 "لا يمكنك إضافة عمليات إعادة توجيه مكررة!"
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 "عرض الاسم بشكل عام - يظهر فقط في صفحة تعديل الملف الشخصي!"
1589
+
1590
+ #: profile-builder-2.0/admin/basic-info.php:37
1591
+ msgid "Friction-less login using %s shortcode or a widget."
1592
+ msgstr "الاحتكاك أقل في تسجيل الدخول باستخدام %s الرمز القصير أو ودجت."
1593
+
1594
+ #: profile-builder-2.0/admin/basic-info.php:41
1595
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
+ msgstr "أشكال تسجيل جميلة للتخصيص بشكل كامل باستخدام %s الرمز القصير."
1597
+
1598
+ #: profile-builder-2.0/admin/basic-info.php:45
1599
+ msgid "Straight forward edit profile forms using %s shortcode."
1600
+ msgstr "تحرير نماذج الملف الشخصي بشكل بسيط باستخدام %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 "السماح للمستخدمين باستعادة كلمة المرور في الواجهة الأمامية باستخدام %s."
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 "لإنشاء صفحة تحتوي على المستخدمين المسجلين في هذا الموقع / المدونة الحالية، أدخل الرمز القصير التالي في صفحة من اختيارك: %s."
1609
+
1610
+ #: profile-builder-2.0/admin/general-settings.php:115
1611
+ msgid "\"Admin Approval\" on User Role:"
1612
+ msgstr "\"موافقة المشرف\" على دور المستخدم:"
1613
+
1614
+ #: profile-builder-2.0/admin/general-settings.php:134
1615
+ msgid "Select on what user roles to activate Admin Approval."
1616
+ msgstr "حدد ما أدوار المستخدم لتنشيط موافقة المشرف."
1617
+
1618
+ #: profile-builder-2.0/admin/manage-fields.php:133
1619
+ msgid "Display on PB forms"
1620
+ msgstr "عرض على نماذج PB"
1621
+
1622
+ #: profile-builder-2.0/admin/manage-fields.php:133
1623
+ msgid "PB Login"
1624
+ msgstr "تسجيل الدخول PB"
1625
+
1626
+ #: profile-builder-2.0/admin/manage-fields.php:133
1627
+ msgid "PB Register"
1628
+ msgstr "تسجيل PB"
1629
+
1630
+ #: profile-builder-2.0/admin/manage-fields.php:133
1631
+ msgid "PB Recover Password"
1632
+ msgstr "إستعادة كلمة المرور PB"
1633
+
1634
+ #: profile-builder-2.0/admin/manage-fields.php:133
1635
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
+ msgstr "حدد على أي نموذج Profile Builder يتم عرض reCAPTCHA"
1637
+
1638
+ #: profile-builder-2.0/admin/manage-fields.php:134
1639
+ msgid "Display on default WP forms"
1640
+ msgstr "عرض على نماذج WP الإفتراضية"
1641
+
1642
+ #: profile-builder-2.0/admin/manage-fields.php:134
1643
+ msgid "Default WP Login"
1644
+ msgstr "تسجيل الدخول الإفتراضي ل WP"
1645
+
1646
+ #: profile-builder-2.0/admin/manage-fields.php:134
1647
+ msgid "Default WP Register"
1648
+ msgstr "التسجيل الإفتراضي ل WP"
1649
+
1650
+ #: profile-builder-2.0/admin/manage-fields.php:134
1651
+ msgid "Default WP Recover Password"
1652
+ msgstr "إستعادة كلمة المرور الإفتراضي ل WP"
1653
+
1654
+ #: profile-builder-2.0/admin/manage-fields.php:134
1655
+ msgid "Select on which default WP forms to display reCAPTCHA"
1656
+ msgstr "حدد على أي نموذج WP الإفتراضي يتم عرض reCAPTCHA"
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 "الخيار الافتراضي للحقل"
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 "أفغانستان"
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 "جزر آلاند"
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 "ألبانيا"
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 "الجزائر"
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 "ساموا الأمريكية"
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 "أندورا"
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 "أنغولا"
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 "أنغيلا"
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 "القارة القطبية الجنوبية"
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 "أنتيغوا وبربودا"
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 "الأرجنتين"
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 "أرمينيا"
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 "أروبا"
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 "أستراليا"
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 "النمسا"
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 "أزربيجان"
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 "البهاماس"
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 "البحرين"
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 "بنغلاديش"
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 "بربادوس"
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 "بيلاروس"
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 "البلجيك"
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 "بليز"
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 "بنين"
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 "برمودا"
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 "بوتان"
1793
+
1794
+ #: profile-builder-2.0/admin/manage-fields.php:308
1795
+ msgid "Bolivia"
1796
+ msgstr "بوليفيا"
1797
+
1798
+ #: profile-builder-2.0/admin/manage-fields.php:309
1799
+ msgid "Bonaire, Saint Eustatius and Saba"
1800
+ msgstr "بونير، سينت أوستاتيوس وسابا"
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 "البوسنة والهرسك"
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 "بوتسوانا"
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 "جزيرة بوفيت"
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 "البرازيل"
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 "إقليم المحيط البريطاني الهندي"
1826
+
1827
+ #: profile-builder-2.0/admin/manage-fields.php:315
1828
+ msgid "British Virgin Islands"
1829
+ msgstr "جزر فيرجن البريطانية"
1830
+
1831
+ #: profile-builder-2.0/admin/manage-fields.php:316
1832
+ msgid "Brunei"
1833
+ msgstr "بروناي"
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 "بلغاريا"
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 "بوركينا فاسو"
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 "بوروندي"
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 "كمبوديا"
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 "الكاميرون"
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 "كندا"
1864
+
1865
+ #: profile-builder-2.0/admin/manage-fields.php:323
1866
+ msgid "Cape Verde"
1867
+ msgstr "الرأس الأخضر"
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 "جزر الكايمان"
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 "جمهورية افريقيا الوسطى"
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 "تشاد"
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 "تشيلي"
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 "الصين"
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 "جزيرة الكريسماس"
1898
+
1899
+ #: profile-builder-2.0/admin/manage-fields.php:330
1900
+ msgid "Cocos Islands"
1901
+ msgstr "جزر كوكوس"
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 "كولومبيا"
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 "جزر القمر"
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 "جزر كوك"
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 "كوستا ريكا"
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 "كرواتيا"
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 "كوبا"
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 "كوراكاو"
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 "قبرص"
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 "جمهورية التشيك"
1947
+
1948
+ #: profile-builder-2.0/admin/manage-fields.php:340
1949
+ msgid "Democratic Republic of the Congo"
1950
+ msgstr "جمهورية الكونغو الديموقراطية"
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 "الدنمارك"
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 "جيبوتي"
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 "دومينيكا"
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 "جمهورية الدومنيكان"
1971
+
1972
+ #: profile-builder-2.0/admin/manage-fields.php:345
1973
+ msgid "East Timor"
1974
+ msgstr "تيمور الشرقية"
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 "إكوادور"
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 "مصر"
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 "السلفادور"
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 "غينيا الإستوائية"
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 "إريتريا"
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 "إستونيا"
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 "إثيوبيا"
2010
+
2011
+ #: profile-builder-2.0/admin/manage-fields.php:353
2012
+ msgid "Falkland Islands"
2013
+ msgstr "جزر فوكلاند"
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 "جزر صناعية"
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 "فيجي"
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 "فنلندا"
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 "فرنسا"
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 "غيانا الفرنسية"
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 "بولينيزيا الفرنسية"
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 "المناطق الجنوبية لفرنسا"
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 "الغابون"
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 "غامبيا"
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 "جورجيا"
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 "ألمانيا"
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 "غانا"
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 "جبل طارق"
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 "اليونان"
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 "الأرض الخضراء"
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 "غرناطة"
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 "جوادلوب"
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 "غوام"
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 "غواتيمالا"
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 "غيرنسي"
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 "غينيا"
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 "غينيا بيساو"
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 "غيانا"
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 "هايتي"
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 "جزيرة هيرد وجزر ماكدونالد"
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 "هندوراس"
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 "هونج كونج"
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 "هنغاريا"
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 "آيسلندا"
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 "الهند"
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 "إندونيسيا"
2169
+
2170
+ #: profile-builder-2.0/admin/manage-fields.php:385
2171
+ msgid "Iran"
2172
+ msgstr "إيران"
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 "العراق"
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 "إيرلندا"
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 "جزيرة آيل أوف مان"
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 "الكيان الصهيوني"
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 "إيطاليا"
2198
+
2199
+ #: profile-builder-2.0/admin/manage-fields.php:391
2200
+ msgid "Ivory Coast"
2201
+ msgstr "ساحل العاج"
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 "جامايكا"
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 "اليابان"
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 "جيرسي"
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 "الأردن"
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 "كازاخستان"
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 "كينيا"
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 "كيريباس"
2237
+
2238
+ #: profile-builder-2.0/admin/manage-fields.php:399
2239
+ msgid "Kosovo"
2240
+ msgstr "كوسوفو"
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 "الكويت"
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 "كرغيزستان"
2251
+
2252
+ #: profile-builder-2.0/admin/manage-fields.php:402
2253
+ msgid "Laos"
2254
+ msgstr "لاوس"
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 "لاتفيا"
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 "لبنان"
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 "ليسوتو"
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 "ليبيريا"
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 "ليبيا"
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 "ليختنشتاين"
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 "ليتوانيا"
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 "لوكسمبورغ"
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 "ماكاو"
2300
+
2301
+ #: profile-builder-2.0/admin/manage-fields.php:412
2302
+ msgid "Macedonia"
2303
+ msgstr "مقدونيا"
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 "مدغشقر"
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 "ملاوي"
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 "ماليزيا"
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 "المالديف"
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 "مالي"
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 "مالطا"
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 "جزر مارشال"
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 "مارتينيك"
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 "موريتانيا"
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 "موريشيوس"
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 "مايوت"
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 "المكسيك"
2364
+
2365
+ #: profile-builder-2.0/admin/manage-fields.php:425
2366
+ msgid "Micronesia"
2367
+ msgstr "ميكرونيزيا"
2368
+
2369
+ #: profile-builder-2.0/admin/manage-fields.php:426
2370
+ msgid "Moldova"
2371
+ msgstr "مولدوفا"
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 "موناكو"
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 "منغوليا"
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 "مونتنيغرو"
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 "مونتسيرات"
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 "المغرب"
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 "موزمبيق"
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 "ميانمار"
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 "ناميبيا"
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 "ناورو"
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 "نيبال"
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 "هولندا"
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 "كاليدونيا الجديدة"
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 "نيوزيلندا"
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 "نيكاراغوا"
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 "النيجر"
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 "نيجيريا"
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 "نيوي"
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 "جزيرة نورفولك"
2462
+
2463
+ #: profile-builder-2.0/admin/manage-fields.php:445
2464
+ msgid "North Korea"
2465
+ msgstr "كوريا الشمالية"
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 "جزر مريانا الشمالية"
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 "النرويج"
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 "عمان"
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 "باكستان"
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 "بالاو"
2491
+
2492
+ #: profile-builder-2.0/admin/manage-fields.php:451
2493
+ msgid "Palestinian Territory"
2494
+ msgstr "فلسطين"
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 "بنما"
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 "بابوا غينيا الجديدة"
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 "باراغواي"
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 "بيرو"
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 "الفلبين"
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 "بيتكيرن"
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 "بولندا"
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 "البرتغال"
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 "بورتوريكو"
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 "قطر"
2545
+
2546
+ #: profile-builder-2.0/admin/manage-fields.php:462
2547
+ msgid "Republic of the Congo"
2548
+ msgstr "جمهورية الكونغو"
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 "جمع شمل"
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 "رومانيا"
2559
+
2560
+ #: profile-builder-2.0/admin/manage-fields.php:465
2561
+ msgid "Russia"
2562
+ msgstr "روسيا"
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 "رواندا"
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 "سانت بارتيليمي"
2573
+
2574
+ #: profile-builder-2.0/admin/manage-fields.php:468
2575
+ msgid "Saint Helena"
2576
+ msgstr "سانت هيلانة"
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 "سانت كيتس ونيفيس"
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 "القديسة لوسيا"
2587
+
2588
+ #: profile-builder-2.0/admin/manage-fields.php:471
2589
+ msgid "Saint Martin"
2590
+ msgstr "القديس مارتن"
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 "سانت بيير وميكلون"
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 "سانت فنسنت وجزر غرينادين"
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 "ساموا"
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 "سان مارينو"
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 "ساو تومي وبرينسيبي"
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 "المملكة العربية السعودية"
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 "السنغال"
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 "صربيا"
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 "سيشيل"
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 "سيراليون"
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 "سنغافورة"
2646
+
2647
+ #: profile-builder-2.0/admin/manage-fields.php:483
2648
+ msgid "Sint Maarten"
2649
+ msgstr "سانت مارتن"
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 "سلوفاكيا"
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 "سلوفينيا"
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 "جزر سليمان"
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 "الصومال"
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 "جنوب أفريقيا"
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 "جورجيا الجنوبية وجزر ساندويتش الجنوبية"
2680
+
2681
+ #: profile-builder-2.0/admin/manage-fields.php:490
2682
+ msgid "South Korea"
2683
+ msgstr "كوريا الجنوبية"
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 "جنوب السودان"
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 "إسبانيا"
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 "سريلانكا"
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 "السودان"
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 "سورينام"
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 "سفالبارد وجان ماين"
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 "سوازيلاند"
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 "السويد"
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 "سويسرا"
2729
+
2730
+ #: profile-builder-2.0/admin/manage-fields.php:500
2731
+ msgid "Syria"
2732
+ msgstr "سوريا"
2733
+
2734
+ #: profile-builder-2.0/admin/manage-fields.php:501
2735
+ msgid "Taiwan"
2736
+ msgstr "تايوان"
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 "طاجاكستان"
2742
+
2743
+ #: profile-builder-2.0/admin/manage-fields.php:503
2744
+ msgid "Tanzania"
2745
+ msgstr "تنزانيا"
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 "تايلند"
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 "توغو"
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 "توكيلاو"
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 "تونغا"
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 "ترينداد وتوباغو"
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 "تونس"
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 "تركيا"
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 "تركمانستان"
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 "جزر تركس وكايكوس"
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 "توفالو"
2796
+
2797
+ #: profile-builder-2.0/admin/manage-fields.php:514
2798
+ msgid "U.S. Virgin Islands"
2799
+ msgstr "جزر فيرجن الأمريكية"
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 "أوغندا"
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 "أوكرانيا"
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 "الإمارات العربية المتحدة"
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 "المملكة المتحدة"
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 "الولايات المتحدة الأمريكية"
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 "جزر الولايات المتحدة البعيدة الصغرى"
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 "أوروغواي"
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 "أوزبكستان"
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 "فانواتو"
2845
+
2846
+ #: profile-builder-2.0/admin/manage-fields.php:524
2847
+ msgid "Vatican"
2848
+ msgstr "فاتيكان"
2849
+
2850
+ #: profile-builder-2.0/admin/manage-fields.php:525
2851
+ msgid "Venezuela"
2852
+ msgstr "فنزويلا"
2853
+
2854
+ #: profile-builder-2.0/admin/manage-fields.php:526
2855
+ msgid "Vietnam"
2856
+ msgstr "فيتنام"
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 "واليس وفوتونا"
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 "الصحراء الغربية"
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 "اليمن"
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 "زامبيا"
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 "زمبابوي"
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 "مع Profile Builder Pro v2 يمكنك عرض حقول مختلفة في تسجيل وتعديل نماذج الملف الشخصي، وذلك باستخدام نماذج الوحدة النمطية المتعددة تسجيل وتحرير ملف ."
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 "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول."
2890
+
2891
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
+ msgid "Your account has been successfully created!"
2893
+ msgstr "تم إنشاء حسابك بنجاح!"
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 "الرجاء إدخال قيمة ريكابتشا (صالحة)"
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 "انقر على زر الرجوع في المتصفح، ثم أعد المحاولة."
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 "عذرا، لا يمكنك تحميل هذا النوع من الملفات لهذا الحقل."
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 "لقد حدث خطأ، رجاء أعد المحاولة لاحقا."
2915
+
2916
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
+ msgid "More"
2918
+ msgstr "المزيد"
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 "ليس لديك الصلاحيات لعرض قائمة المستخدمين هذه."
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 "ليس لديك دور المستخدم المطلوب لعرض قائمة المستخدمين هذه."
2927
+
2928
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
+ msgid "Ascending"
2930
+ msgstr "تصاعدي"
2931
+
2932
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
+ msgid "Descending"
2934
+ msgstr "تنازلي"
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 "تحميل الآن"
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 "إذا كنت تستمتع باستخدام <strong> %1$s </ strong> فالرجاء <a href=\"%2$s\" target=\"_blank\"> تقييمنا على WordPress.org </a>. المزيد من المستخدمين السعداء يعني المزيد من الميزات، مشاكل أقل ودعم أفضل للجميع."
2946
+
2947
+ #: profile-builder-2.0/admin/manage-fields.php:82
2948
+ msgid "Choose one of the supported field types"
2949
+ msgstr "اختر أحد أنواع الحقول المدعومة"
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 ". تتوفر أنواع الحقول الإضافية في <a href=\"%s\"> إصدارات Hobbyist أو PRO</a>."
2954
+
2955
+ #: profile-builder-2.0/admin/manage-fields.php:131
2956
+ msgid "Site Key"
2957
+ msgstr "مفتاح الموقع"
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 "مفتاح الموقع من 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 "المفتاح السري"
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 "المفتاح السري من 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 "يجب إدخال مفتاح الموقع\n"
2974
+
2975
+ #: profile-builder-2.0/admin/manage-fields.php:1025
2976
+ msgid "You must enter the secret key\n"
2977
+ msgstr "يجب إدخال المفتاح السري\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 "إضافات"
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 "تفعيل"
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 "جار التحميل والتثبيت ..."
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 "اكتمل التثبيت"
3002
+
3003
+ #: profile-builder-2.0/admin/add-ons.php:39
3004
+ msgid "Add-On is Active"
3005
+ msgstr "الإضافة مفعلة"
3006
+
3007
+ #: profile-builder-2.0/admin/add-ons.php:40
3008
+ msgid "Add-On has been activated"
3009
+ msgstr "تم تفعيل الإضافة"
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 "إعادة التثبيت"
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 "الإضافة <strong>مفعلة</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 "الإضافة <strong>غير مفعلة</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 "تعطيل"
3034
+
3035
+ #: profile-builder-2.0/admin/add-ons.php:47
3036
+ msgid "Add-On has been deactivated."
3037
+ msgstr "تم تعطيل الإضافة."
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 "حدث خطأ ما، لم نتمكن من الاتصال بالخادم. الرجاء معاودة المحاولة في وقت لاحق."
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 "تثبيت الآن"
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 "متوافق مع الإصدار الخاص بك من Profile Builder."
3054
+
3055
+ #: profile-builder-2.0/admin/add-ons.php:162
3056
+ msgid "Upgrade Profile Builder"
3057
+ msgstr "ترقية Profile Builder"
3058
+
3059
+ #: profile-builder-2.0/admin/add-ons.php:163
3060
+ msgid "Not compatible with Profile Builder"
3061
+ msgstr "غير متوافق مع 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 "متوافق مع الإصدار الخاص بك من Profile Builder."
3066
+
3067
+ #: profile-builder-2.0/admin/add-ons.php:172
3068
+ msgid "Minimum required Profile Builder version:"
3069
+ msgstr "إصدار 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 "تعذر تثبيت الإضافة. أعد المحاولة أو <a href=\"%s\" target=\"_blank\"> ثبت يدويا </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 "ينبغي إدخال بريد الكتروني صالح."
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 "اسم المستخدم هذا غير صالح لأنه يستخدم أحرفا غير قانونية."
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 "الرجاءادخال اسم مستخدم صحيح."
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 "يمكن للمشرفين فقط مشاهدة هذا الحقل في نماذج الملف الشخصي للتعديل."
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 "بصفتك مشرفا، لا يمكنك تغيير دورك."
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}} قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور. </ p>\n"
3106
+ "<p> كلمة المرور الجديدة هي: {{password}} </ p>\n"
3107
+
3108
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3109
+ msgid "Admin Notification for User Password Reset"
3110
+ msgstr "إعلام المشرف للمستخدم عند إعادة تعيين كلمة المرور"
3111
+
3112
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3113
+ msgid "Reset Key"
3114
+ msgstr "مفتاح إعادة التعيين"
3115
+
3116
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3117
+ msgid "Reset Url"
3118
+ msgstr "إعادة تعيين Url"
3119
+
3120
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3121
+ msgid "Reset Link"
3122
+ msgstr "رابط إعادة التعيين"
3123
+
3124
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3125
+ msgid ""
3126
+ "\n"
3127
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3128
+ "Username: {{username}}</p>\n"
3129
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3130
+ "<p>To reset your password, visit the following address:<br/>\n"
3131
+ "{{{reset_link}}}</p>\n"
3132
+ msgstr ""
3133
+ "\n"
3134
+ "<p> طلب شخص ما إعادة تعيين كلمة المرور للحساب التالي: {{site_name}} <br/>\n"
3135
+ "اسم المستخدم: {{username}} </ p>\n"
3136
+ "<p> إذا كان هذا خطأ، فتجاهل هذا البريد الإلكتروني ولن يحدث أي شيء. </ p>\n"
3137
+ "<p> لإعادة تعيين كلمة المرور، انتقل إلى العنوان التالي: <br/>\n"
3138
+ "{{{reset_link}}} </ P>\n"
3139
+
3140
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3141
+ msgid "[{{site_name}}] Password Reset"
3142
+ msgstr "[{{site_name}}] إعادة تعيين كلمة المرور"
3143
+
3144
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3145
+ msgid "Password Reset Email"
3146
+ msgstr "بريد إعادة كلمة المرور"
3147
+
3148
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3149
+ msgid ""
3150
+ "\n"
3151
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
3152
+ msgstr ""
3153
+ "\n"
3154
+ "<p> لقد أعدت تعيين كلمة المرور بنجاح إلى: {{password}} </ p>\n"
3155
+
3156
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3157
+ msgid "[{{site_name}}] Password Reset Successfully"
3158
+ msgstr "[{{site_name}}] إعادة تعيين كلمة المرور بنجاح"
3159
+
3160
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3161
+ msgid "Password Reset Success Email"
3162
+ msgstr "بريد نجاح إعادة تعيين كلمة المرور"
3163
+
3164
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3165
+ msgid "User Nicename"
3166
+ msgstr "اسم مستخدم لطيف"
3167
+
3168
+ #: pb-add-on-woocommerce/woosync-page.php:80
3169
+ #: pb-add-on-woocommerce/woosync-page.php:114
3170
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3171
+ msgid "None"
3172
+ msgstr "لا شيء"
3173
+
3174
+ #: profile-builder-2.0/admin/admin-functions.php:132
3175
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3176
+ msgstr "<strong> خطأ </ strong>: يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s"
3177
+
3178
+ #: profile-builder-2.0/admin/admin-functions.php:148
3179
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3180
+ msgstr "<strong> خطأ </ strong>: يجب أن يكون الحد الأدنى من القوة لكلمة المرور %s"
3181
+
3182
+ #: profile-builder-2.0/admin/general-settings.php:179
3183
+ msgid "Username and Email"
3184
+ msgstr "اسم المستخدم و البريد الإلكتروني"
3185
+
3186
+ #: profile-builder-2.0/admin/general-settings.php:184
3187
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
3188
+ msgstr "\"اسم المستخدم والبريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بكل من اسم المستخدم والبريد الإلكتروني."
3189
+
3190
+ #: profile-builder-2.0/admin/general-settings.php:185
3191
+ msgid "\"Username\" - users can Log In only with Username."
3192
+ msgstr "\"اسم المستخدم\" - يمكن للمستخدمين تسجيل الدخول باسم المستخدم فقط."
3193
+
3194
+ #: profile-builder-2.0/admin/general-settings.php:186
3195
+ msgid "\"Email\" - users can Log In only with Email."
3196
+ msgstr "\"البريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بالبريد الإلكتروني فقط."
3197
+
3198
+ #: profile-builder-2.0/admin/manage-fields.php:124
3199
+ 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 (.*)"
3200
+ msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها <br/> مثال: .ext1، .ext2، .ext3 <br/> إذا لم يتم تحديد، الإعدادات الافتراضية تكون: .jpg، .jpeg، .gif، .png (. *)"
3201
+
3202
+ #: profile-builder-2.0/admin/manage-fields.php:125
3203
+ 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 (.*)"
3204
+ msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها <br/> مثال: .ext1، .ext2، .ext3 <br/> إذا لم يتم تحديدها، الإعدادات الافتراضية ستكون كل الامتدادات المسموحة في ووردبريس (. *)"
3205
+
3206
+ #: profile-builder-2.0/admin/manage-fields.php:135
3207
+ msgid "User Roles"
3208
+ msgstr "أدوار المستخدمين"
3209
+
3210
+ #: profile-builder-2.0/admin/manage-fields.php:135
3211
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3212
+ msgstr "حدد أدوار المستخدم المراد عرضها للمستخدم (السحب والإفلات للترتيب)"
3213
+
3214
+ #: profile-builder-2.0/admin/manage-fields.php:136
3215
+ msgid "User Roles Order"
3216
+ msgstr "ترتيب أدوار المستخدمين"
3217
+
3218
+ #: profile-builder-2.0/admin/manage-fields.php:136
3219
+ msgid "Save the user role order from the user roles checkboxes"
3220
+ msgstr "احفظ ترتيب دور المستخدم من مربعات اختيار أدوار المستخدم"
3221
+
3222
+ #: profile-builder-2.0/admin/manage-fields.php:1128
3223
+ msgid "Please select at least one user role\n"
3224
+ msgstr "يرجى تحديد دور مستخدم واحد على الأقل\n"
3225
+
3226
+ #: profile-builder-2.0/admin/register-version.php:22
3227
+ msgid "Profile Builder Register"
3228
+ msgstr "تسجيل Profile Builder"
3229
+
3230
+ #: profile-builder-2.0/admin/register-version.php:81
3231
+ msgid "The serial number is about to expire soon!"
3232
+ msgstr "الرقم التسلسلي على وشك الانتهاء قريبا!"
3233
+
3234
+ #: profile-builder-2.0/admin/register-version.php:81
3235
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3236
+ msgstr "الرقم التسلسلي الخاص بك على وشك الانتهاء، يرجى %1$s تجديد الترخيص الخاص بك%2$s."
3237
+
3238
+ #: profile-builder-2.0/admin/register-version.php:83
3239
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3240
+ msgstr "انتهت صلاحية الرقم التسلسلي، يرجى %1$s تجديد الترخيص%2$s."
3241
+
3242
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3243
+ msgid "Add Entry"
3244
+ msgstr "إضافة إدخال"
3245
+
3246
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3247
+ msgid "show"
3248
+ msgstr "إظهار"
3249
+
3250
+ #: profile-builder-2.0/features/functions.php:736
3251
+ 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"
3252
+ msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات الشبكة%2$s, وتحت إعدادات التسجيل تأكد من التحقق من \"حسابات المستخدم قد تكون مسجلة”. %3$sتجاهل%4$s"
3253
+
3254
+ #: profile-builder-2.0/front-end/class-formbuilder.php:659
3255
+ msgid "User to edit:"
3256
+ msgstr "تعديل بيانات المستخدم:"
3257
+
3258
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3259
+ #: profile-builder-2.0/front-end/recover.php:262
3260
+ msgid "The password must have the minimum length of %s characters"
3261
+ msgstr "يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s"
3262
+
3263
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3264
+ #: profile-builder-2.0/front-end/recover.php:266
3265
+ msgid "The password must have a minimum strength of %s"
3266
+ msgstr "يجب أن يكون لكلمة المرور الحد الأدنى من قوة %s"
3267
+
3268
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3269
+ msgid "You cannot register this user role"
3270
+ msgstr "لا يمكنك تسجيل دور المستخدم هذا"
3271
+
3272
+ #: profile-builder-2.0/front-end/login.php:153
3273
+ msgid "username or email"
3274
+ msgstr "اسم المستخدم أو البريد الإلكتروني"
3275
+
3276
+ #: profile-builder-2.0/front-end/login.php:222
3277
+ msgid "Username or Email"
3278
+ msgstr "اسم المستخدم أو البريد الإلكتروني"
3279
+
3280
+ #: profile-builder-2.0/front-end/logout.php:15
3281
+ msgid "You are currently logged in as %s. "
3282
+ msgstr "أنت الآن مسجل الدخول بالمستخدم %s. "
3283
+
3284
+ #: profile-builder-2.0/front-end/logout.php:15
3285
+ msgid "Log out &raquo;"
3286
+ msgstr "تسجيل الخروج &raquo;"
3287
+
3288
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3289
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3290
+ msgid "User Role"
3291
+ msgstr "دور المستخدم"
3292
+
3293
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3294
+ msgid "View all extra shortcode parameters"
3295
+ msgstr "عرض جميع معلمات الاختصارات الإضافية"
3296
+
3297
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3298
+ msgid "displays only the users that you specified the user_id for"
3299
+ msgstr "عرض المستخدمين الذين حددتهم user_id فقط ل"
3300
+
3301
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3302
+ msgid "displays all users except the ones you specified the user_id for"
3303
+ msgstr "عرض جميع المستخدمين باستثناء المستخدمين الذين حددتهم user_id ل"
3304
+
3305
+ #: profile-builder-2.0/features/functions.php:566
3306
+ msgid "Minimum length of %d characters"
3307
+ msgstr "الحد الأدنى هو %d أحرف"
3308
+
3309
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
3310
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
3311
+ msgid "This message is only visible by administrators"
3312
+ msgstr "هذه الرسالة مرئية فقط من قبل المشرفين"
3313
+
3314
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3315
+ msgid "User not found"
3316
+ msgstr "المستخدم غير موجود"
3317
+
3318
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3319
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3320
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
3321
+ msgstr "الوسوم الصالحة {{reply_to}} و {{site_name}}"
3322
+
3323
+ #: profile-builder-2.0/admin/admin-bar.php:48
3324
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3325
+ msgstr "اختر أدوار المستخدم التي تعرض شريط المشرف في الواجهة الأمامية للموقع."
3326
+
3327
+ #: profile-builder-2.0/admin/manage-fields.php:129
3328
+ 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"
3329
+ msgstr "أدخل قائمة قيم مفصولة بفاصلات <br/> يمكن أن يكون أي شيء، لأنه مخفي عن المستخدم، ولكن يجب ألا يحتوي على أحرف خاصة أو الفواصل العليا"
3330
+
3331
+ #: profile-builder-2.0/admin/manage-fields.php:1055
3332
+ msgid "The meta-name cannot be empty\n"
3333
+ msgstr "لا يمكن أن يكون الاسم الوصفي فارغا\n"
3334
+
3335
+ #: profile-builder-2.0/admin/register-version.php:69
3336
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3337
+ msgstr "الآن بعد أن حصلت على نسخة من %s، يجب أن تأخذ قليلاً من الوقت وتسجيله مع الرقم التسلسلي الذي تلقيته"
3338
+
3339
+ #: profile-builder-2.0/admin/register-version.php:243
3340
+ 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>"
3341
+ msgstr "<p> الرقم التسلسلي <strong> Profile Builder </ strong> غير صالح أو مفقود. <br/> يرجى%1$s تسجيل نسختك%2$s لتلقي إمكانية الوصول إلى التحديثات التلقائية والدعم. هل تحتاج إلى مفتاح ترخيص؟ %3$sاشتري واحد الآن%4$s </ p>"
3342
+
3343
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3344
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3345
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3346
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3347
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3348
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3349
+ msgid "...Choose"
3350
+ msgstr "...اختر"
3351
+
3352
+ #: profile-builder-2.0/features/class-list-table.php:526
3353
+ #: profile-builder-2.0/features/class-list-table.php:942
3354
+ msgid "1 item"
3355
+ msgstr "عنصر %s"
3356
+
3357
+ #: profile-builder-2.0/features/functions.php:552
3358
+ msgid "Very Weak"
3359
+ msgstr "ضعيف جدا"
3360
+
3361
+ #: profile-builder-2.0/features/functions.php:640
3362
+ msgid "This field is required"
3363
+ msgstr "هذا الحقل مطلوب"
3364
+
3365
+ #: profile-builder-2.0/features/functions.php:704
3366
+ msgid "Cancel"
3367
+ msgstr "إلغاء"
3368
+
3369
+ #: profile-builder-2.0/features/functions.php:740
3370
+ 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"
3371
+ msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات -> علامة التبويب عام%2$s, وتحت العضوية تأكد من تحقق \"يمكن لأي شخص التسجيل. %3$sتجاهل%4$s"
3372
+
3373
+ #: profile-builder-2.0/front-end/login.php:144
3374
+ msgid "Invalid username."
3375
+ msgstr "اسم المستخدم غير صحيح"
3376
+
3377
+ #: profile-builder-2.0/front-end/login.php:149
3378
+ #: profile-builder-2.0/front-end/login.php:153
3379
+ msgid "username"
3380
+ msgstr "اسم المستخدم"
3381
+
3382
+ #: profile-builder-2.0/front-end/login.php:149
3383
+ msgid "email"
3384
+ msgstr "البريد الإلكتروني"
3385
+
3386
+ #: profile-builder-2.0/front-end/login.php:256
3387
+ msgid "Lost your password?"
3388
+ msgstr "نسيت كلمة المرور؟"
3389
+
3390
+ #: profile-builder-2.0/index.php:34
3391
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3392
+ msgstr "يتم التفعيل أيضا. تحتاج إلى إلغاء تفعيله قبل تفعيل هذا الإصدار من الإضافة."
3393
+
3394
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3395
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3396
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3397
+ msgstr "يجب أن يكون عنوان بريد إلكتروني صالحا أو الوسم {{reply_to}} التي تكون افتراضية إلى البريد الإلكتروني للمشرف"
3398
+
3399
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3400
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3401
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3402
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3403
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3404
+ msgid "Your selected password at signup"
3405
+ msgstr "قمت باختيار كلمة المرور عند الاشتراك"
3406
+
3407
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3408
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3409
+ msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكترونيللمسؤول\" عند الحفظ."
3410
+
3411
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3412
+ msgid "This form is empty."
3413
+ msgstr "هذا النموذج فارغ."
3414
+
3415
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3416
+ msgid "Delete all items"
3417
+ msgstr "حذف جميع العناصر"
3418
+
3419
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3420
+ msgid "Delete all"
3421
+ msgstr "حذف الكل"
3422
+
3423
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3424
+ msgid "Choose..."
3425
+ msgstr "اختر..."
3426
+
3427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3428
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3429
+ msgstr "تعيين عدد المستخدمين ليتم عرضهم على كل جزء مرقم لكل المستخدمين"
3430
+
3431
+ #: profile-builder-2.0/admin/admin-bar.php:10
3432
+ msgid "Show/Hide the Admin Bar on the Front-End"
3433
+ msgstr "إظهار / إخفاء شريط المشرف على الواجهة الأمامية"
3434
+
3435
+ #: profile-builder-2.0/admin/admin-bar.php:10
3436
+ #: profile-builder-2.0/admin/admin-bar.php:47
3437
+ msgid "Admin Bar Settings"
3438
+ msgstr "إعدادات شريط المشرف"
3439
+
3440
+ #: profile-builder-2.0/admin/admin-bar.php:57
3441
+ msgid "User-Role"
3442
+ msgstr "دور المستخدم"
3443
+
3444
+ #: profile-builder-2.0/admin/admin-bar.php:58
3445
+ msgid "Visibility"
3446
+ msgstr "الوضوح"
3447
+
3448
+ #: profile-builder-2.0/admin/admin-bar.php:73
3449
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3450
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3451
+ msgid "Default"
3452
+ msgstr "الإفتراضي"
3453
+
3454
+ #: profile-builder-2.0/admin/admin-bar.php:74
3455
+ msgid "Show"
3456
+ msgstr "إظهار"
3457
+
3458
+ #: profile-builder-2.0/admin/admin-bar.php:75
3459
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3460
+ msgid "Hide"
3461
+ msgstr "إخفاء"
3462
+
3463
+ #: pb-add-on-woocommerce/woosync-page.php:147
3464
+ #: profile-builder-2.0/admin/admin-bar.php:86
3465
+ #: profile-builder-2.0/admin/general-settings.php:224
3466
+ #: profile-builder-2.0/admin/register-version.php:95
3467
+ #: profile-builder-2.0/features/functions.php:697
3468
+ #: profile-builder-2.0/modules/modules.php:127
3469
+ msgid "Save Changes"
3470
+ msgstr "حفظ التغييرات"
3471
+
3472
+ #: profile-builder-2.0/admin/admin-functions.php:37
3473
+ 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 )"
3474
+ msgstr "يتم تعيين تسجيل باستخدام البريد الإلكتروني. لن يظهر هذا الحقل في الواجهة الأمامية! (يمكنك تغيير هذه الإعدادات ضمن علامة التبويب \"%s\")"
3475
+
3476
+ #: profile-builder-2.0/admin/admin-functions.php:37
3477
+ #: profile-builder-2.0/admin/general-settings.php:10
3478
+ #: profile-builder-2.0/admin/general-settings.php:35
3479
+ msgid "General Settings"
3480
+ msgstr "الإعدادات العامة"
3481
+
3482
+ #: profile-builder-2.0/admin/admin-functions.php:137
3483
+ #: profile-builder-2.0/admin/general-settings.php:210
3484
+ msgid "Very weak"
3485
+ msgstr "ضعيف جدا"
3486
+
3487
+ #: profile-builder-2.0/admin/admin-functions.php:137
3488
+ #: profile-builder-2.0/admin/general-settings.php:211
3489
+ #: profile-builder-2.0/features/functions.php:552
3490
+ msgid "Weak"
3491
+ msgstr "ضعيف"
3492
+
3493
+ #: profile-builder-2.0/admin/admin-functions.php:137
3494
+ #: profile-builder-2.0/admin/general-settings.php:212
3495
+ #: profile-builder-2.0/features/functions.php:552
3496
+ msgid "Medium"
3497
+ msgstr "متوسط"
3498
+
3499
+ #: profile-builder-2.0/admin/admin-functions.php:137
3500
+ #: profile-builder-2.0/admin/general-settings.php:213
3501
+ #: profile-builder-2.0/features/functions.php:552
3502
+ msgid "Strong"
3503
+ msgstr "قوي"
3504
+
3505
+ #: profile-builder-2.0/admin/admin-functions.php:187
3506
+ msgid "Add Field"
3507
+ msgstr "إضافة حقل"
3508
+
3509
+ #: profile-builder-2.0/admin/admin-functions.php:189
3510
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3511
+ msgid "Save Settings"
3512
+ msgstr "حفظ الإعدادات"
3513
+
3514
+ #: profile-builder-2.0/admin/basic-info.php:10
3515
+ msgid "Basic Information"
3516
+ msgstr "معلومات اساسية"
3517
+
3518
+ #: profile-builder-2.0/admin/basic-info.php:29
3519
+ msgid "Version %s"
3520
+ msgstr "الاصدار %s"
3521
+
3522
+ #: profile-builder-2.0/admin/basic-info.php:30
3523
+ msgid "<strong>Profile Builder </strong>"
3524
+ msgstr "<strong>Profile Builder </strong>"
3525
+
3526
+ #: profile-builder-2.0/admin/basic-info.php:31
3527
+ msgid "The best way to add front-end registration, edit profile and login forms."
3528
+ msgstr "أفضل طريقة لإضافة تسجيل الواجهة الأمامية, تعديل الملف الشخصي واستمارات تسجيل الدخول."
3529
+
3530
+ #: profile-builder-2.0/admin/basic-info.php:33
3531
+ msgid "For Modern User Interaction"
3532
+ msgstr "لتفاعل المستخدم الحديث"
3533
+
3534
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3535
+ #: profile-builder-2.0/admin/basic-info.php:36
3536
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3537
+ msgid "Login"
3538
+ msgstr "تسجيل الدخول"
3539
+
3540
+ #: profile-builder-2.0/admin/basic-info.php:40
3541
+ msgid "Registration"
3542
+ msgstr "التسجيل"
3543
+
3544
+ #: profile-builder-2.0/admin/basic-info.php:44
3545
+ msgid "Edit Profile"
3546
+ msgstr "تعديل الملف الشخصي"
3547
+
3548
+ #: profile-builder-2.0/admin/basic-info.php:51
3549
+ msgid "Extra Features"
3550
+ msgstr "ميزات اضافية"
3551
+
3552
+ #: profile-builder-2.0/admin/basic-info.php:52
3553
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3554
+ msgstr "الميزات التي تمنحك مزيدا من التحكم في المستخدمين ,زيادة الأمان وتساعدك على محاربة الرسائل غير المرغوب فيها لتسجيل المستخدمين."
3555
+
3556
+ #: profile-builder-2.0/admin/basic-info.php:53
3557
+ msgid "Enable extra features"
3558
+ msgstr "تمكين ميزات إضافية"
3559
+
3560
+ #: profile-builder-2.0/admin/basic-info.php:57
3561
+ msgid "Recover Password"
3562
+ msgstr "إستعادة كلمة المرور"
3563
+
3564
+ #: profile-builder-2.0/admin/basic-info.php:61
3565
+ msgid "Admin Approval (*)"
3566
+ msgstr "موافقة المشرف (*)"
3567
+
3568
+ #: profile-builder-2.0/admin/basic-info.php:62
3569
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3570
+ msgstr "عليك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس."
3571
+
3572
+ #: profile-builder-2.0/admin/basic-info.php:65
3573
+ msgid "Email Confirmation"
3574
+ msgstr "تأكيد البريد الإلكتروني"
3575
+
3576
+ #: profile-builder-2.0/admin/basic-info.php:66
3577
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3578
+ msgstr "تأكد من تسجيل المستخدمين من خلال عناوين بريد إلكتروني حقيقية. عند التسجيل سوف يتلقى المستخدمين إخطارا لتأكيد عنوان بريدهم الإلكتروني."
3579
+
3580
+ #: profile-builder-2.0/admin/basic-info.php:69
3581
+ msgid "Minimum Password Length and Strength Meter"
3582
+ msgstr "الحد الأدنى لطول كلمة المرور وقوتها"
3583
+
3584
+ #: profile-builder-2.0/admin/basic-info.php:70
3585
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3586
+ msgstr "القضاء على كلمات المرور الضعيفة تماما عن طريق وضع الحد الأدنى لطول كلمة المرور وإنفاذ قوة كلمة مرور معينة."
3587
+
3588
+ #: profile-builder-2.0/admin/basic-info.php:73
3589
+ msgid "Login with Email or Username"
3590
+ msgstr "تسجيل الدخول عن طريق اسم المستخدم أو البريد الإلكتروني"
3591
+
3592
+ #: profile-builder-2.0/admin/basic-info.php:74
3593
+ msgid "Allow users to log in with their email or username when accessing your site."
3594
+ msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام البريد الإلكتروني أو اسم المستخدم عند الدخول إلى موقعك."
3595
+
3596
+ #: profile-builder-2.0/admin/basic-info.php:87
3597
+ msgid "Customize Your Forms The Way You Want (*)"
3598
+ msgstr "تخصيص النماذج بالطريقة التي تريدها (*)"
3599
+
3600
+ #: profile-builder-2.0/admin/basic-info.php:88
3601
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3602
+ msgstr "مع حقول الملف الشخصي الإضافية يمكنك إنشاء نموذج التسجيل الدقيق الذي يحتاجه المشروع الخاص بك."
3603
+
3604
+ #: profile-builder-2.0/admin/basic-info.php:90
3605
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3606
+ msgstr "حقول الملف الشخصي إضافية متوفرة في إصدارات Hobbyist أو PRO"
3607
+
3608
+ #: profile-builder-2.0/admin/basic-info.php:92
3609
+ msgid "Get started with extra fields"
3610
+ msgstr "بدء استخدام حقول إضافية"
3611
+
3612
+ #: profile-builder-2.0/admin/basic-info.php:95
3613
+ msgid "Avatar Upload"
3614
+ msgstr "رفع الصورة الرمزية"
3615
+
3616
+ #: profile-builder-2.0/admin/basic-info.php:96
3617
+ msgid "Generic Uploads"
3618
+ msgstr "رفع ملفات عامة"
3619
+
3620
+ #: profile-builder-2.0/admin/basic-info.php:97
3621
+ msgid "Agree To Terms Checkbox"
3622
+ msgstr "موافق على مربع الشروط"
3623
+
3624
+ #: profile-builder-2.0/admin/basic-info.php:98
3625
+ msgid "Datepicker"
3626
+ msgstr "منتقي التاريخ"
3627
+
3628
+ #: profile-builder-2.0/admin/basic-info.php:101
3629
+ msgid "reCAPTCHA"
3630
+ msgstr "اختبار reCAPTCHA"
3631
+
3632
+ #: profile-builder-2.0/admin/basic-info.php:102
3633
+ msgid "Country Select"
3634
+ msgstr "تحديد البلد"
3635
+
3636
+ #: profile-builder-2.0/admin/basic-info.php:104
3637
+ msgid "Timezone Select"
3638
+ msgstr "تحديد المنطقة الزمنية"
3639
+
3640
+ #: profile-builder-2.0/admin/basic-info.php:108
3641
+ msgid "Input / Hidden Input"
3642
+ msgstr "الإدخال / الإدخال الخفي"
3643
+
3644
+ #: profile-builder-2.0/admin/basic-info.php:110
3645
+ msgid "Checkbox"
3646
+ msgstr "مربع اختيار"
3647
+
3648
+ #: profile-builder-2.0/admin/basic-info.php:111
3649
+ msgid "Select"
3650
+ msgstr "تحديد"
3651
+
3652
+ #: profile-builder-2.0/admin/basic-info.php:112
3653
+ msgid "Radio Buttons"
3654
+ msgstr "أزرار الراديو"
3655
+
3656
+ #: profile-builder-2.0/admin/basic-info.php:113
3657
+ msgid "Textarea"
3658
+ msgstr "مساحة النص"
3659
+
3660
+ #: profile-builder-2.0/admin/basic-info.php:125
3661
+ msgid "Powerful Modules (**)"
3662
+ msgstr "وحدات قوية (**)"
3663
+
3664
+ #: profile-builder-2.0/admin/basic-info.php:126
3665
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3666
+ msgstr "كل ما تحتاجه لإدارة المستخدمين الخاص بك هو على الأرجح متاح بالفعل باستخدام وحدات Pro."
3667
+
3668
+ #: profile-builder-2.0/admin/basic-info.php:128
3669
+ msgid "Enable your modules"
3670
+ msgstr "تمكين الوحدات الخاصة بك"
3671
+
3672
+ #: profile-builder-2.0/admin/basic-info.php:131
3673
+ msgid "Find out more about PRO Modules"
3674
+ msgstr "معرفة المزيد عن وحدات PRO"
3675
+
3676
+ #: profile-builder-2.0/admin/basic-info.php:136
3677
+ #: profile-builder-2.0/modules/modules.php:89
3678
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3679
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3680
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3681
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3682
+ msgid "User Listing"
3683
+ msgstr "قائمة المستخدمين"
3684
+
3685
+ #: profile-builder-2.0/admin/basic-info.php:138
3686
+ 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."
3687
+ msgstr "من السهل تعديل النماذج لإدراج مستخدمي موقعك على الويب بالإضافة إلى إنشاء صفحات مستخدم واحد. يعتمد على الرمز القصير، ويقدم العديد من الخيارات لتخصيص القوائم الخاصة بك."
3688
+
3689
+ #: profile-builder-2.0/admin/basic-info.php:144
3690
+ msgid "Email Customizer"
3691
+ msgstr "مخصص البريد الإلكتروني"
3692
+
3693
+ #: profile-builder-2.0/admin/basic-info.php:145
3694
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3695
+ msgstr "تخصيص جميع الرسائل الإلكترونية المرسلة إلى المستخدمين أو المشرفين. على التسجيل، تأكيد البريد الإلكتروني، موافقة المشرف / أو إلغاء الموافقة."
3696
+
3697
+ #: profile-builder-2.0/admin/basic-info.php:148
3698
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3699
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3700
+ #: profile-builder-2.0/modules/modules.php:110
3701
+ msgid "Custom Redirects"
3702
+ msgstr "عمليات إعادة التوجيه المخصصة"
3703
+
3704
+ #: profile-builder-2.0/admin/basic-info.php:149
3705
+ 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."
3706
+ msgstr "حافظ على المستخدمين خارج لوحة معلومات وردبريس, إعادة توجيههم إلى الصفحة الأولى بعد تسجيل الدخول أو التسجيل, كل شيء على بعد نقرات قليلة."
3707
+
3708
+ #: profile-builder-2.0/admin/basic-info.php:154
3709
+ #: profile-builder-2.0/modules/modules.php:75
3710
+ msgid "Multiple Registration Forms"
3711
+ msgstr "نماذج التسجيل المتعددة"
3712
+
3713
+ #: profile-builder-2.0/admin/basic-info.php:155
3714
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3715
+ msgstr "إعداد نماذج تسجيل متعددة مع حقول مختلفة لأدوار معينة للمستخدم. التقاط معلومات مختلفة من أنواع مختلفة من المستخدمين."
3716
+
3717
+ #: profile-builder-2.0/admin/basic-info.php:158
3718
+ #: profile-builder-2.0/modules/modules.php:82
3719
+ msgid "Multiple Edit-profile Forms"
3720
+ msgstr "نماذج تحرير الملف الشخصي المتعددة"
3721
+
3722
+ #: profile-builder-2.0/admin/basic-info.php:159
3723
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3724
+ msgstr "السماح لأدوار المستخدمين المختلفة بتعديل معلوماتهم الخاصة. إعداد نماذج تعديل الملف الشخصي متعددة مع حقول مختلفة لبعض أدوار المستخدم."
3725
+
3726
+ #: profile-builder-2.0/admin/basic-info.php:187
3727
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3728
+ msgstr "* متوفر فقط في إصدارات %1$sHobbyist و Pro%2$s."
3729
+
3730
+ #: profile-builder-2.0/admin/basic-info.php:188
3731
+ msgid "** only available in the %1$sPro version%2$s."
3732
+ msgstr "* متوفر فقط في %1$sإصدارات Pro%2$s."
3733
+
3734
+ #: profile-builder-2.0/admin/general-settings.php:39
3735
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3736
+ msgstr "تحميل ملف CSS ل Profile Builder الخاص بك في الواجهة الأمامية:"
3737
+
3738
+ #: profile-builder-2.0/admin/general-settings.php:42
3739
+ #: profile-builder-2.0/admin/general-settings.php:55
3740
+ #: profile-builder-2.0/admin/general-settings.php:104
3741
+ #: profile-builder-2.0/admin/general-settings.php:151
3742
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3743
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3744
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3745
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3746
+ msgid "Yes"
3747
+ msgstr "نعم"
3748
+
3749
+ #: profile-builder-2.0/admin/general-settings.php:44
3750
+ msgid "You can find the default file here: %1$s"
3751
+ msgstr "يمكنك العثور على الملف الافتراضي هنا: %1$s"
3752
+
3753
+ #: profile-builder-2.0/admin/general-settings.php:51
3754
+ msgid "\"Email Confirmation\" Activated:"
3755
+ msgstr "\"تأكيد البريد الإلكتروني\" مفعل:"
3756
+
3757
+ #: profile-builder-2.0/admin/general-settings.php:56
3758
+ #: profile-builder-2.0/admin/general-settings.php:105
3759
+ #: profile-builder-2.0/admin/general-settings.php:150
3760
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3761
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3762
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3763
+ msgid "No"
3764
+ msgstr "لا"
3765
+
3766
+ #: profile-builder-2.0/admin/general-settings.php:61
3767
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3768
+ msgstr "يمكنك العثور على قائمة بعناوين البريد الإلكتروني غير المؤكدة %1$sالمستخدمين > كل المستخدمين > تأكيد البريد الإلكتروني%2$s."
3769
+
3770
+ #: profile-builder-2.0/admin/general-settings.php:69
3771
+ msgid "\"Email Confirmation\" Landing Page:"
3772
+ msgstr "صفحة هبوط \"تأكيد البريد الإلكتروني\":"
3773
+
3774
+ #: profile-builder-2.0/admin/general-settings.php:74
3775
+ msgid "Existing Pages"
3776
+ msgstr "الصفحات الحالية"
3777
+
3778
+ #: profile-builder-2.0/admin/general-settings.php:89
3779
+ 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."
3780
+ msgstr "حدد الصفحة التي سيتم توجيه المستخدمين إليها عند تأكيد حساب البريد الإلكتروني. قد تختلف هذه الصفحة عن صفحة (صفحات) التسجيل ويمكن تغييرها في أي وقت. إذا لم يتم تحديد أي شيء، سيتم عرض صفحة تأكيد بسيطة للمستخدم."
3781
+
3782
+ #: profile-builder-2.0/admin/general-settings.php:100
3783
+ msgid "\"Admin Approval\" Activated:"
3784
+ msgstr "\"موافقة المشرف\" مفعلة"
3785
+
3786
+ #: profile-builder-2.0/admin/general-settings.php:108
3787
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3788
+ msgstr "يمكنك العثور على قائمة المستخدمين في %1$sالمستخدمين > كل المستخدمين > موافقة المشرف%2$s."
3789
+
3790
+ #: profile-builder-2.0/admin/general-settings.php:165
3791
+ msgid "\"Admin Approval\" Feature:"
3792
+ msgstr "ميزة \"موافقة المشرف\":"
3793
+
3794
+ #: profile-builder-2.0/admin/general-settings.php:168
3795
+ 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."
3796
+ msgstr "يمكنك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس. تمكين موافقة المشرف من خلال الترقية إلى %1$sاصدارات Hobbyist أو PRO %2$s."
3797
+
3798
+ #: profile-builder-2.0/admin/general-settings.php:175
3799
+ msgid "Allow Users to Log in With:"
3800
+ msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام:"
3801
+
3802
+ #: profile-builder-2.0/admin/general-settings.php:180
3803
+ #: profile-builder-2.0/admin/manage-fields.php:201
3804
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3805
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3806
+ #: profile-builder-2.0/front-end/login.php:85
3807
+ #: profile-builder-2.0/front-end/login.php:99
3808
+ #: profile-builder-2.0/front-end/login.php:218
3809
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3810
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3811
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3812
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3813
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3814
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3815
+ msgid "Username"
3816
+ msgstr "اسم المستخدم"
3817
+
3818
+ #: profile-builder-2.0/admin/general-settings.php:181
3819
+ #: profile-builder-2.0/front-end/login.php:215
3820
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3821
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3822
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3823
+ msgid "Email"
3824
+ msgstr "البريد الإلكتروني"
3825
+
3826
+ #: profile-builder-2.0/admin/general-settings.php:193
3827
+ msgid "Minimum Password Length:"
3828
+ msgstr "الحد الأدنى لطول كلمة المرور:"
3829
+
3830
+ #: profile-builder-2.0/admin/general-settings.php:198
3831
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3832
+ msgstr "أدخل الحد الأدنى من الحروف التي يجب أن تحتوي عليها كلمة المرور. اتركه فارغا لعدم تحديد الحد الأدنى"
3833
+
3834
+ #: profile-builder-2.0/admin/general-settings.php:205
3835
+ msgid "Minimum Password Strength:"
3836
+ msgstr "الحد الأدنى لقوة كلمة المرور:"
3837
+
3838
+ #: profile-builder-2.0/admin/general-settings.php:209
3839
+ msgid "Disabled"
3840
+ msgstr "تعطيل"
3841
+
3842
+ #: profile-builder-2.0/admin/manage-fields.php:12
3843
+ msgid "Manage Fields"
3844
+ msgstr "إدارة الحقول"
3845
+
3846
+ #: profile-builder-2.0/admin/manage-fields.php:13
3847
+ msgid "Manage Default and Extra Fields"
3848
+ msgstr "إدارة الحقول الافتراضية والإضافية"
3849
+
3850
+ #: profile-builder-2.0/admin/manage-fields.php:118
3851
+ msgid "Field Title"
3852
+ msgstr "عنوان الحقل"
3853
+
3854
+ #: profile-builder-2.0/admin/manage-fields.php:118
3855
+ msgid "Title of the field"
3856
+ msgstr "عنوان الحقل"
3857
+
3858
+ #: profile-builder-2.0/admin/manage-fields.php:119
3859
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3860
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3861
+ msgid "Field"
3862
+ msgstr "حقل"
3863
+
3864
+ #: profile-builder-2.0/admin/manage-fields.php:120
3865
+ msgid "Meta-name"
3866
+ msgstr "اسم ميتا"
3867
+
3868
+ #: profile-builder-2.0/admin/manage-fields.php:121
3869
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3870
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3871
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3872
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3873
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3874
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3875
+ msgid "ID"
3876
+ msgstr "معرف فريد"
3877
+
3878
+ #: profile-builder-2.0/admin/manage-fields.php:121
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 "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"
3882
+ msgstr "معرف فريد يتم إنشاؤه تلقائيا لهذا الحقل بالذات <br/> يمكنك استخدام هذا الخيار مع فلاتر لاستهداف هذا العنصر إذا لزم الأمر <br/> لا يمكن تعديله"
3883
+
3884
+ #: profile-builder-2.0/admin/manage-fields.php:122
3885
+ msgid "Description"
3886
+ msgstr "وصف"
3887
+
3888
+ #: profile-builder-2.0/admin/manage-fields.php:122
3889
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3890
+ msgstr "أدخل وصفا (مفصلا) للخيار لكي يقرأه المستخدمين النهائيين <br/> اختياري"
3891
+
3892
+ #: profile-builder-2.0/admin/manage-fields.php:123
3893
+ msgid "Row Count"
3894
+ msgstr "عدد الصفوف"
3895
+
3896
+ #: profile-builder-2.0/admin/manage-fields.php:123
3897
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3898
+ msgstr "حدد عدد الصفوف لحقل 'مساحة النص' <br/> إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 5"
3899
+
3900
+ #: profile-builder-2.0/admin/manage-fields.php:124
3901
+ msgid "Allowed Image Extensions"
3902
+ msgstr "صيغ الصور المسموح بها"
3903
+
3904
+ #: profile-builder-2.0/admin/manage-fields.php:125
3905
+ msgid "Allowed Upload Extensions"
3906
+ msgstr "الصيغ المسموح رفعها"
3907
+
3908
+ #: profile-builder-2.0/admin/manage-fields.php:126
3909
+ msgid "Avatar Size"
3910
+ msgstr "حجم الصورة الرمزية"
3911
+
3912
+ #: profile-builder-2.0/admin/manage-fields.php:126
3913
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3914
+ msgstr "أدخل قيمة (بين 20 و 200) لحجم \"الصورة الرمزية\" <br/> إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 100"
3915
+
3916
+ #: profile-builder-2.0/admin/manage-fields.php:127
3917
+ msgid "Date-format"
3918
+ msgstr "صيغة التاريخ"
3919
+
3920
+ #: profile-builder-2.0/admin/manage-fields.php:128
3921
+ msgid "Terms of Agreement"
3922
+ msgstr "شروط الاتفاق"
3923
+
3924
+ #: profile-builder-2.0/admin/manage-fields.php:128
3925
+ 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;"
3926
+ msgstr "أدخل وصفا تفصيليا لشروط الاتفاق ليتمكن المستخدم من قراءته.<br/>يمكن إدراج الروابط باستخدام بنية HTML القياسية: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3927
+
3928
+ #: profile-builder-2.0/admin/manage-fields.php:129
3929
+ msgid "Options"
3930
+ msgstr "خيارات"
3931
+
3932
+ #: profile-builder-2.0/admin/manage-fields.php:130
3933
+ msgid "Labels"
3934
+ msgstr "تسميات"
3935
+
3936
+ #: profile-builder-2.0/admin/manage-fields.php:130
3937
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
3938
+ msgstr "أدخل قائمة تسميات مفصولة بفواصل <br/> مرئية للمستخدم"
3939
+
3940
+ #: profile-builder-2.0/admin/manage-fields.php:137
3941
+ msgid "Default Value"
3942
+ msgstr "القيمة الافتراضية"
3943
+
3944
+ #: profile-builder-2.0/admin/manage-fields.php:137
3945
+ msgid "Default value of the field"
3946
+ msgstr "القيمة الافتراضية للحقل"
3947
+
3948
+ #: profile-builder-2.0/admin/manage-fields.php:138
3949
+ #: profile-builder-2.0/admin/manage-fields.php:140
3950
+ #: profile-builder-2.0/admin/manage-fields.php:141
3951
+ #: profile-builder-2.0/admin/manage-fields.php:142
3952
+ msgid "Default Option"
3953
+ msgstr "الخيار الافتراضي"
3954
+
3955
+ #: profile-builder-2.0/admin/manage-fields.php:138
3956
+ msgid "Specify the option which should be selected by default"
3957
+ msgstr "حدد الخيار الذي يجب تحديده بشكل افتراضي"
3958
+
3959
+ #: profile-builder-2.0/admin/manage-fields.php:139
3960
+ msgid "Default Option(s)"
3961
+ msgstr "الخيار الافتراضي (الخيارات)"
3962
+
3963
+ #: profile-builder-2.0/admin/manage-fields.php:139
3964
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3965
+ msgstr "حدد الخيار الذي يجب تحديده افتراضيا <br/> إذا كانت هناك قيم متعددة، فقم بفصلها مع '،' (فاصلة)"
3966
+
3967
+ #: profile-builder-2.0/admin/manage-fields.php:153
3968
+ msgid "Default Content"
3969
+ msgstr "المحتوى الافتراضي"
3970
+
3971
+ #: profile-builder-2.0/admin/manage-fields.php:153
3972
+ msgid "Default value of the textarea"
3973
+ msgstr "القيمة الافتراضية لمساحة النص"
3974
+
3975
+ #: pb-add-on-woocommerce/index.php:306
3976
+ #: profile-builder-2.0/admin/manage-fields.php:160
3977
+ msgid "Required"
3978
+ msgstr "مطلوب"
3979
+
3980
+ #: profile-builder-2.0/admin/manage-fields.php:160
3981
+ msgid "Whether the field is required or not"
3982
+ msgstr "ما إذا كان الحقل مطلوب أم لا"
3983
+
3984
+ #: profile-builder-2.0/admin/manage-fields.php:161
3985
+ msgid "Overwrite Existing"
3986
+ msgstr "استبدال الحالي"
3987
+
3988
+ #: profile-builder-2.0/admin/manage-fields.php:161
3989
+ 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"
3990
+ msgstr "سيؤدي تحديد \"نعم\" إلى إضافة الحقل إلى القائمة، ولكن سيتم استبدال أي حقل آخر في قاعدة البيانات التي تحتوي على الاسم الوصفي نفسه <br/> استخدم هذا على مسؤوليتك الخاصة"
3991
+
3992
+ #: profile-builder-2.0/admin/manage-fields.php:167
3993
+ msgid "Field Properties"
3994
+ msgstr "خصائص الحقل"
3995
+
3996
+ #: profile-builder-2.0/admin/manage-fields.php:181
3997
+ msgid "Registration & Edit Profile"
3998
+ msgstr "تسجيل وتحرير الملف الشخصي"
3999
+
4000
+ #: profile-builder-2.0/admin/manage-fields.php:200
4001
+ msgid "Name"
4002
+ msgstr "الاسم"
4003
+
4004
+ #: profile-builder-2.0/admin/manage-fields.php:201
4005
+ msgid "Usernames cannot be changed."
4006
+ msgstr "اسم المستخدم لا يمكن تغييره."
4007
+
4008
+ #: pb-add-on-woocommerce/billing-fields.php:6
4009
+ #: pb-add-on-woocommerce/shipping-fields.php:6
4010
+ #: profile-builder-2.0/admin/manage-fields.php:202
4011
+ msgid "First Name"
4012
+ msgstr "الاسم الأول"
4013
+
4014
+ #: pb-add-on-woocommerce/billing-fields.php:7
4015
+ #: pb-add-on-woocommerce/shipping-fields.php:7
4016
+ #: profile-builder-2.0/admin/manage-fields.php:203
4017
+ msgid "Last Name"
4018
+ msgstr "الاسم الأخير"
4019
+
4020
+ #: profile-builder-2.0/admin/manage-fields.php:204
4021
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4022
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4023
+ msgid "Nickname"
4024
+ msgstr "الكنية"
4025
+
4026
+ #: profile-builder-2.0/admin/manage-fields.php:205
4027
+ msgid "Display name publicly as"
4028
+ msgstr "عرض الاسم بشكل عام ك"
4029
+
4030
+ #: profile-builder-2.0/admin/manage-fields.php:206
4031
+ msgid "Contact Info"
4032
+ msgstr "بيانات التواصل"
4033
+
4034
+ #: profile-builder-2.0/admin/manage-fields.php:207
4035
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4036
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4037
+ #: profile-builder-2.0/front-end/recover.php:118
4038
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4039
+ msgid "E-mail"
4040
+ msgstr "البريد الإلكتروني"
4041
+
4042
+ #: profile-builder-2.0/admin/manage-fields.php:208
4043
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4044
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4045
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4046
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4047
+ msgid "Website"
4048
+ msgstr "الموقع"
4049
+
4050
+ #: profile-builder-2.0/admin/manage-fields.php:212
4051
+ msgid "AIM"
4052
+ msgstr "AIM"
4053
+
4054
+ #: profile-builder-2.0/admin/manage-fields.php:213
4055
+ msgid "Yahoo IM"
4056
+ msgstr "Yahoo IM"
4057
+
4058
+ #: profile-builder-2.0/admin/manage-fields.php:214
4059
+ msgid "Jabber / Google Talk"
4060
+ msgstr "Jabber / Google Talk"
4061
+
4062
+ #: profile-builder-2.0/admin/manage-fields.php:217
4063
+ msgid "About Yourself"
4064
+ msgstr "عن الكاتب"
4065
+
4066
+ #: profile-builder-2.0/admin/manage-fields.php:218
4067
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4068
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4069
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4070
+ msgid "Biographical Info"
4071
+ msgstr "السيرة الذاتية"
4072
+
4073
+ #: profile-builder-2.0/admin/manage-fields.php:218
4074
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4075
+ msgstr "مشاركة معلومات عن السيرة الذاتية لملء ملفك الشخصي. قد تظهر ذلك علنا."
4076
+
4077
+ #: profile-builder-2.0/admin/manage-fields.php:219
4078
+ #: profile-builder-2.0/front-end/recover.php:73
4079
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4080
+ msgid "Password"
4081
+ msgstr "كلمة المرور"
4082
+
4083
+ #: profile-builder-2.0/admin/manage-fields.php:219
4084
+ msgid "Type your password."
4085
+ msgstr "قم بكتابة كلمة المرور."
4086
+
4087
+ #: profile-builder-2.0/admin/manage-fields.php:220
4088
+ #: profile-builder-2.0/front-end/recover.php:74
4089
+ msgid "Repeat Password"
4090
+ msgstr "إعادة كلمة المرور"
4091
+
4092
+ #: profile-builder-2.0/admin/manage-fields.php:220
4093
+ msgid "Type your password again. "
4094
+ msgstr "أعد كتابة كلمة المرور مرة أخرى."
4095
+
4096
+ #: profile-builder-2.0/admin/manage-fields.php:980
4097
+ #: profile-builder-2.0/admin/manage-fields.php:1137
4098
+ msgid "You must select a field\n"
4099
+ msgstr "يجب تحديد حقل\n"
4100
+
4101
+ #: profile-builder-2.0/admin/manage-fields.php:990
4102
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4103
+ msgstr "يرجى اختيار نوع حقل مختلف لأن هذا الحقل موجود بالفعل في النموذج (يجب أن يكون فريدا)\n"
4104
+
4105
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4106
+ msgid "The entered avatar size is not between 20 and 200\n"
4107
+ msgstr "حجم الصورة الرمزية الذي تم إدخاله لا يتراوح بين 20 و 200\n"
4108
+
4109
+ #: profile-builder-2.0/admin/manage-fields.php:1004
4110
+ msgid "The entered avatar size is not numerical\n"
4111
+ msgstr "حجم الصورة الرمزية المدخلة ليست رقمية\n"
4112
+
4113
+ #: profile-builder-2.0/admin/manage-fields.php:1012
4114
+ msgid "The entered row number is not numerical\n"
4115
+ msgstr "رقم الصف الذي تم إدخاله غير رقمي\n"
4116
+
4117
+ #: profile-builder-2.0/admin/manage-fields.php:1015
4118
+ msgid "You must enter a value for the row number\n"
4119
+ msgstr "يجب إدخال قيمة لرقم الصف\n"
4120
+
4121
+ #: profile-builder-2.0/admin/manage-fields.php:1036
4122
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
4123
+ msgstr "القيمة المدخلة لمنسق التاريخ ليست تنسيق تاريخ صالح\n"
4124
+
4125
+ #: profile-builder-2.0/admin/manage-fields.php:1039
4126
+ msgid "You must enter a value for the date-format\n"
4127
+ msgstr "يجب إدخال قيمة لتنسيق التاريخ\n"
4128
+
4129
+ #: profile-builder-2.0/admin/manage-fields.php:1067
4130
+ #: profile-builder-2.0/admin/manage-fields.php:1075
4131
+ #: profile-builder-2.0/admin/manage-fields.php:1086
4132
+ msgid "That meta-name is already in use\n"
4133
+ msgstr "هذا الاسم الوصفي قيد الاستخدام \n"
4134
+
4135
+ #: profile-builder-2.0/admin/manage-fields.php:1117
4136
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4137
+ msgstr "لم يتطابق الخيار (الخيارات) التالي مع الخيارات الموجودة في قائمة الخيارات:%s\n"
4138
+
4139
+ #: profile-builder-2.0/admin/manage-fields.php:1121
4140
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
4141
+ msgstr "لم يتطابق الخيار التالي مع تلك الموجودة في قائمة الخيارات: %s\n"
4142
+
4143
+ #: profile-builder-2.0/admin/manage-fields.php:1144
4144
+ msgid "That field is already added in this form\n"
4145
+ msgstr "تمت إضافة هذا الحقل مسبقا في هذا النموذج\n"
4146
+
4147
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4148
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4149
+ msgstr "<pre>العنوان</pre><pre>النوع</pre><pre>الاسم الوصفي</pre><pre class=\"wppb-mb-head-required\">مطلوب</pre>"
4150
+
4151
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4152
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4153
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4154
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4155
+ #: profile-builder-2.0/features/functions.php:718
4156
+ #: profile-builder-2.0/features/functions.php:725
4157
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4158
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4159
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4160
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4161
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4162
+ msgid "Edit"
4163
+ msgstr "تعديل"
4164
+
4165
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4166
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4167
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4168
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4169
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4170
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4171
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4172
+ #: profile-builder-2.0/features/functions.php:711
4173
+ #: profile-builder-2.0/features/functions.php:725
4174
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4175
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4176
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4177
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4178
+ msgid "Delete"
4179
+ msgstr "حذف"
4180
+
4181
+ #: profile-builder-2.0/admin/manage-fields.php:1208
4182
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4183
+ msgstr "استخدم هذه الرموز القصيرة على الصفحات التي تريد عرض النماذج عليها:"
4184
+
4185
+ #: profile-builder-2.0/admin/register-version.php:14
4186
+ msgid "Register Your Version"
4187
+ msgstr "تسجيل الإصدار الخاص بك"
4188
+
4189
+ #: profile-builder-2.0/admin/register-version.php:14
4190
+ msgid "Register Version"
4191
+ msgstr "تسجيل الإصدار"
4192
+
4193
+ #: profile-builder-2.0/admin/register-version.php:70
4194
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4195
+ msgstr "إذا قمت بتسجيل هذا الإصدار من Profile Builder، فستتلقى معلومات بشأن عمليات الترقية والتصحيحات والدعم الفني."
4196
+
4197
+ #: profile-builder-2.0/admin/register-version.php:72
4198
+ msgid " Serial Number:"
4199
+ msgstr "الرقم التسلسلي"
4200
+
4201
+ #: profile-builder-2.0/admin/register-version.php:77
4202
+ msgid "The serial number was successfully validated!"
4203
+ msgstr "تم التحقق من صحة الرقم التسلسلي!"
4204
+
4205
+ #: profile-builder-2.0/admin/register-version.php:79
4206
+ msgid "The serial number entered couldn't be validated!"
4207
+ msgstr "تعذر التحقق من الرقم التسلسلي الذي تم إدخاله!"
4208
+
4209
+ #: profile-builder-2.0/admin/register-version.php:83
4210
+ msgid "The serial number couldn't be validated because it expired!"
4211
+ msgstr "تعذر التحقق من الرقم التسلسلي لأنه منتهي!"
4212
+
4213
+ #: profile-builder-2.0/admin/register-version.php:85
4214
+ 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!"
4215
+ msgstr "تعذر التحقق من الرقم التسلسلي بسبب انتهاء مهلة العملية. من ممكن أن يكون بسبب مشكلة في الخادم. الرجاء معاودة المحاولة في وقت لاحق!"
4216
+
4217
+ #: profile-builder-2.0/admin/register-version.php:87
4218
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4219
+ msgstr "(مثال. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4220
+
4221
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4222
+ #: profile-builder-2.0/features/functions.php:725
4223
+ msgid "Content"
4224
+ msgstr "محتوى"
4225
+
4226
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4227
+ msgid "Edit this item"
4228
+ msgstr "تعديل هذا العنصر"
4229
+
4230
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4231
+ msgid "Delete this item"
4232
+ msgstr "حذف هذا العنصر"
4233
+
4234
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4235
+ msgid "Please enter a value for the required field "
4236
+ msgstr "الرجاء إدخال قيمة للحقل المطلوب"
4237
+
4238
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4239
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4240
+ msgid "Select File"
4241
+ msgstr "حدد ملف"
4242
+
4243
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4244
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4245
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4246
+ msgid "Remove"
4247
+ msgstr "إزالة"
4248
+
4249
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4250
+ msgid "You can add the information for the %s after you add a entry"
4251
+ msgstr "يمكنك إضافة المعلومات ل %s بعد إضافة إدخال"
4252
+
4253
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4254
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4255
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4256
+ msgid "Upload "
4257
+ msgstr "رفع"
4258
+
4259
+ #: profile-builder-2.0/features/class-list-table.php:184
4260
+ msgid "No items found."
4261
+ msgstr "لاتوجد نتائج."
4262
+
4263
+ #: profile-builder-2.0/features/class-list-table.php:308
4264
+ msgid "Bulk Actions"
4265
+ msgstr "إجراءات جملة"
4266
+
4267
+ #: profile-builder-2.0/features/class-list-table.php:318
4268
+ msgid "Apply"
4269
+ msgstr "تطبيق"
4270
+
4271
+ #: profile-builder-2.0/features/class-list-table.php:402
4272
+ msgid "Show all dates"
4273
+ msgstr "إظهار كل التواريخ"
4274
+
4275
+ #: profile-builder-2.0/features/class-list-table.php:415
4276
+ msgid "%1$s %2$d"
4277
+ msgstr "%1$s %2$d"
4278
+
4279
+ #: profile-builder-2.0/features/class-list-table.php:431
4280
+ msgid "List View"
4281
+ msgstr "عرض القائمة"
4282
+
4283
+ #: profile-builder-2.0/features/class-list-table.php:432
4284
+ msgid "Excerpt View"
4285
+ msgstr "عرض مقتطف"
4286
+
4287
+ #: profile-builder-2.0/features/class-list-table.php:458
4288
+ msgid "%s pending"
4289
+ msgstr "%s معلقة"
4290
+
4291
+ #: profile-builder-2.0/features/class-list-table.php:566
4292
+ msgid "%1$s of %2$s"
4293
+ msgstr "%1$s من %2$s"
4294
+
4295
+ #: profile-builder-2.0/features/class-list-table.php:713
4296
+ msgid "Select All"
4297
+ msgstr "تحديد الكل"
4298
+
4299
+ #: profile-builder-2.0/features/functions.php:526
4300
+ msgid "Strength indicator"
4301
+ msgstr "مؤشر القوة"
4302
+
4303
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4304
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4305
+ msgid "Admin Approval"
4306
+ msgstr "موافقة المشرف"
4307
+
4308
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4309
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4310
+ msgid "Do you want to"
4311
+ msgstr "هل تريد أن"
4312
+
4313
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4314
+ msgid "Your session has expired! Please refresh the page and try again"
4315
+ msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى"
4316
+
4317
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4318
+ msgid "User successfully approved!"
4319
+ msgstr "تمت الموافقة على المستخدم بنجاح"
4320
+
4321
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4322
+ msgid "User successfully unapproved!"
4323
+ msgstr "تم إلغاء الموافقة للمستخدم بنجاح!"
4324
+
4325
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4326
+ msgid "User successfully deleted!"
4327
+ msgstr "تم حذف المستخدم بنجاح!"
4328
+
4329
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4330
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4331
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4332
+ msgid "You either don't have permission for that action or there was an error!"
4333
+ msgstr "إما لم يكن لديك صلاحية لهذا الإجراء أو كان هناك خطأ!"
4334
+
4335
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4336
+ msgid "Your session has expired! Please refresh the page and try again."
4337
+ msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى."
4338
+
4339
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4340
+ msgid "Users successfully approved!"
4341
+ msgstr "تمت الموافقة على المستخدمين بنجاح!"
4342
+
4343
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4344
+ msgid "Users successfully unapproved!"
4345
+ msgstr "تم إلغاء الموافقة للمستخدمين بنجاح!"
4346
+
4347
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4348
+ msgid "Users successfully deleted!"
4349
+ msgstr "تم حذف المستخدمين بنجاح!"
4350
+
4351
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4352
+ msgid "Your account on %1$s has been approved!"
4353
+ msgstr "تمت الموافقة على حسابك في%1$s !"
4354
+
4355
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4356
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4357
+ msgid "approved"
4358
+ msgstr "موافقة"
4359
+
4360
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4361
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4362
+ msgstr "لقد وافق المشرف على حسابك للتو على %1$s (%2$s)."
4363
+
4364
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4365
+ msgid "Your account on %1$s has been unapproved!"
4366
+ msgstr "لم يتم اعتماد حسابك على %1$s"
4367
+
4368
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4369
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4370
+ msgid "unapproved"
4371
+ msgstr "إلغاء الموافقة"
4372
+
4373
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4374
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4375
+ msgstr "لم يوافق المشرف سوى على حسابك في %1$s (%2$s)."
4376
+
4377
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4378
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4379
+ msgstr "<strong> خطأ </ strong>: يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول."
4380
+
4381
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4382
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4383
+ msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"."
4384
+
4385
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4386
+ msgid "delete this user?"
4387
+ msgstr "حذف هذا المستخدم؟"
4388
+
4389
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4390
+ msgid "unapprove this user?"
4391
+ msgstr "إلغاء الموافقة على هذا المستخدم؟"
4392
+
4393
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4394
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4395
+ msgid "Unapprove"
4396
+ msgstr "إلغاء الموافقة"
4397
+
4398
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4399
+ msgid "approve this user?"
4400
+ msgstr "الموافقة على هذا المستخدم؟"
4401
+
4402
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4403
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4404
+ msgid "Approve"
4405
+ msgstr "موافقة"
4406
+
4407
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4408
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4409
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4410
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4411
+ msgid "Firstname"
4412
+ msgstr "الاسم الأول"
4413
+
4414
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4415
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4416
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4417
+ msgid "Lastname"
4418
+ msgstr "الاسم الأخير"
4419
+
4420
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4421
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4422
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4423
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4425
+ msgid "Role"
4426
+ msgstr "دور"
4427
+
4428
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4429
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4430
+ msgid "Registered"
4431
+ msgstr "مسجل"
4432
+
4433
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4434
+ msgid "User-status"
4435
+ msgstr "خالة المستخدم"
4436
+
4437
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4438
+ msgid "Do you want to bulk approve the selected users?"
4439
+ msgstr "هل تريد الموافقة على مجموعة المستخدمين المحددين؟"
4440
+
4441
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4442
+ msgid "Do you want to bulk unapprove the selected users?"
4443
+ msgstr "هل تريد إلغاء الموافقة على مجموعة المستخدمين المحددين؟"
4444
+
4445
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4446
+ msgid "Do you want to bulk delete the selected users?"
4447
+ msgstr "هل تريد الحذف على مجموعة المستخدمين المحددين؟"
4448
+
4449
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4450
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4451
+ msgid "Sorry, but you don't have permission to do that!"
4452
+ msgstr "نأسف, ليس لديك الصلاحيات لفعل ذلك."
4453
+
4454
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4455
+ msgid "Approved"
4456
+ msgstr "موافقة"
4457
+
4458
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4459
+ msgid "Unapproved"
4460
+ msgstr "إلغاء الموافقة"
4461
+
4462
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4463
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4464
+ msgid "All Users"
4465
+ msgstr "كل المستخدمين"
4466
+
4467
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4468
+ msgid "delete this user from the _signups table?"
4469
+ msgstr "هل تريد حذف هذا المستخدم من جدول _signups؟"
4470
+
4471
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4472
+ msgid "confirm this email yourself?"
4473
+ msgstr "تأكيد البريد الإلكتروني بنفسك؟"
4474
+
4475
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4476
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4477
+ msgid "Confirm Email"
4478
+ msgstr "تأكيد البريد الإلكتروني"
4479
+
4480
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4481
+ msgid "resend the activation link?"
4482
+ msgstr "إعادة إرسال رابط التفعيل؟"
4483
+
4484
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4485
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4486
+ msgid "Resend Activation Email"
4487
+ msgstr "إعادة إرسال بريد التفعيل"
4488
+
4489
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4490
+ msgid "%s couldn't be deleted"
4491
+ msgstr "%s لا يمكن حذفها"
4492
+
4493
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4494
+ msgid "All users have been successfully deleted"
4495
+ msgstr "تم حذف جميع المستخدمين بنجاح"
4496
+
4497
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4498
+ msgid "The selected users have been activated"
4499
+ msgstr "تم تنشيط المستخدمين المحددين"
4500
+
4501
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4502
+ msgid "The selected users have had their activation emails resent"
4503
+ msgstr "تمت إعادة توجيه رسائل البريد الإلكتروني للتفعيل"
4504
+
4505
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4506
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4507
+ msgid "Users with Unconfirmed Email Address"
4508
+ msgstr "المستخدمون الذين لديهم عنوان بريد إلكتروني غير مؤكد"
4509
+
4510
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4511
+ msgid "There was an error performing that action!"
4512
+ msgstr "حدث خطأ أثناء تنفيذ هذا الإجراء!"
4513
+
4514
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4515
+ msgid "The selected user couldn't be deleted"
4516
+ msgstr "تعذر حذف المستخدم المحدد"
4517
+
4518
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4519
+ msgid "Email notification resent to user"
4520
+ msgstr "تم إعادة إرسال إشعار البريد الإلكتروني للمستخدم"
4521
+
4522
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4523
+ msgid "[%1$s] Activate %2$s"
4524
+ msgstr "[%1$s] تفعيل %2$s"
4525
+
4526
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4527
+ #: profile-builder-2.0/front-end/register.php:71
4528
+ msgid "Could not create user!"
4529
+ msgstr "تعذر إنشاء المستخدم!"
4530
+
4531
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4532
+ msgid "That username is already activated!"
4533
+ msgstr "تم تفعيل هذا المستخدم مسبقاً!"
4534
+
4535
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4536
+ msgid "There was an error while trying to activate the user"
4537
+ msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم"
4538
+
4539
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4540
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4541
+ msgid "A new subscriber has (been) registered!"
4542
+ msgstr "قد تم تسجيل مشترك جديد (تم)!"
4543
+
4544
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4545
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4546
+ msgstr "مشترك جديد في %1$s. <br/> <br/> اسم المستخدم:%2$s<br/> البريد الإلكتروني:%3$s<br/>"
4547
+
4548
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4549
+ 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!"
4550
+ msgstr "تم تفعيل ميزة \"موافقة المشرف\" في وقت التسجيل، لذا يرجى تذكر أنك بحاجة إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول."
4551
+
4552
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4553
+ msgid "[%1$s] Your new account information"
4554
+ msgstr "[%1$s] معلومات حسابك الجديد"
4555
+
4556
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4557
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4558
+ msgstr "مرحبا بك في %1$s! <br/> <br/> <br/> اسم المستخدم الخاص بك هو: %2$s وكلمة المرور: %3$s"
4559
+
4560
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4561
+ #: profile-builder-2.0/front-end/register.php:125
4562
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4563
+ msgstr "قبل أن تتمكن من الدخول إلى حسابك، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني."
4564
+
4565
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4566
+ msgid "This login widget lets you add a login form in the sidebar."
4567
+ msgstr "هذه الودجت تتيح لك إضافة نموذج تسجيل الدخول في الشريط الجانبي."
4568
+
4569
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4570
+ msgid "Profile Builder Login Widget"
4571
+ msgstr "ودجت تسجيل الدخول Profile Builder"
4572
+
4573
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4574
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4575
+ #: profile-builder-2.0/front-end/login.php:250
4576
+ msgid "Register"
4577
+ msgstr "تسجيل عضو جديد"
4578
+
4579
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4580
+ msgid "Title:"
4581
+ msgstr "العنوان:"
4582
+
4583
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4584
+ msgid "After login redirect URL (optional):"
4585
+ msgstr "URL إعادة توجيه تسجيل الدخول (اختياري):"
4586
+
4587
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4588
+ msgid "Register page URL (optional):"
4589
+ msgstr "URL التسجيل (اختياري):"
4590
+
4591
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4592
+ msgid "Password Recovery page URL (optional):"
4593
+ msgstr "URL استعادة كلمة المرور (اختياري):"
4594
+
4595
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4596
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4597
+ msgid "The usernames cannot be changed."
4598
+ msgstr "اسم المستخدم لا يمكن تغييره."
4599
+
4600
+ #: profile-builder-2.0/front-end/class-formbuilder.php:136
4601
+ msgid "Only an administrator can add new users."
4602
+ msgstr "يمكن للمشرف فقط إضافة مستخدمين جدد."
4603
+
4604
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
4605
+ msgid "Users can register themselves or you can manually create users here."
4606
+ msgstr "بإمكان المستخدمين تسجيل عضويتهم أو بإمكانك إضافة أعضاء جدد في هذه الشاشة."
4607
+
4608
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
4609
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4610
+ msgstr "لا يمكن للمستخدمين تسجيل أنفسهم حاليا، ولكن يمكنك إنشاء المستخدمين يدويا هنا."
4611
+
4612
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4613
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4614
+ msgstr "أنت الآن مسجل الدخول بالمستخدم %1s. لا تحتاج إلى حساب آخر. %2s"
4615
+
4616
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4617
+ msgid "Log out of this account."
4618
+ msgstr "تسجيل الخروج من هذا الحساب"
4619
+
4620
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4621
+ msgid "Logout"
4622
+ msgstr "تسجيل الخروج"
4623
+
4624
+ #: profile-builder-2.0/front-end/class-formbuilder.php:175
4625
+ msgid "You must be logged in to edit your profile."
4626
+ msgstr "يجب تسجيل الدخول لتعديل ملفك الشخصي."
4627
+
4628
+ #: profile-builder-2.0/features/functions.php:994
4629
+ msgid "here"
4630
+ msgstr "هنا"
4631
+
4632
+ #: profile-builder-2.0/features/functions.php:995
4633
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4634
+ msgstr "سيتم قريبا إعادة توجيهك تلقائيا. إذا رأيت هذه الصفحة لأكثر من %1$d ثانية، يرجى النقر %2$s.%3$s"
4635
+
4636
+ #: profile-builder-2.0/front-end/class-formbuilder.php:315
4637
+ #: profile-builder-2.0/front-end/class-formbuilder.php:322
4638
+ msgid "The account %1s has been successfully created!"
4639
+ msgstr "تم إنشاء الحساب %1s بنجاح!"
4640
+
4641
+ #: profile-builder-2.0/front-end/class-formbuilder.php:318
4642
+ #: profile-builder-2.0/front-end/class-formbuilder.php:328
4643
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4644
+ msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يجب تأكيد عنوان بريدك الإلكتروني. يرجى التحقق من البريد الوارد والنقر على رابط التفعيل."
4645
+
4646
+ #: profile-builder-2.0/front-end/class-formbuilder.php:324
4647
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4648
+ msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني."
4649
+
4650
+ #: profile-builder-2.0/front-end/class-formbuilder.php:347
4651
+ msgid "Your profile has been successfully updated!"
4652
+ msgstr "تم تحديث ملفك الشخصي بنجاح!"
4653
+
4654
+ #: profile-builder-2.0/front-end/class-formbuilder.php:358
4655
+ msgid "There was an error in the submitted form"
4656
+ msgstr "حدث خطأ في النموذج المقدم"
4657
+
4658
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4659
+ msgid "Add User"
4660
+ msgstr "أضف مستخدم جديد"
4661
+
4662
+ #: profile-builder-2.0/admin/add-ons.php:170
4663
+ #: profile-builder-2.0/front-end/class-formbuilder.php:418
4664
+ msgid "Update"
4665
+ msgstr "تحديث"
4666
+
4667
+ #: profile-builder-2.0/front-end/class-formbuilder.php:481
4668
+ msgid "Send these credentials via email."
4669
+ msgstr "إرسال كلمة المرور عن طريق البريد الإلكتروني"
4670
+
4671
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4672
+ #: profile-builder-2.0/front-end/login.php:137
4673
+ #: profile-builder-2.0/front-end/login.php:144
4674
+ #: profile-builder-2.0/front-end/login.php:158
4675
+ #: profile-builder-2.0/front-end/recover.php:17
4676
+ #: profile-builder-2.0/front-end/recover.php:245
4677
+ msgid "ERROR"
4678
+ msgstr "خطأ"
4679
+
4680
+ #: profile-builder-2.0/front-end/login.php:137
4681
+ msgid "The password you entered is incorrect."
4682
+ msgstr "كلمة المرور التي أدخلتها غير صحيحة."
4683
+
4684
+ #: profile-builder-2.0/front-end/login.php:138
4685
+ #: profile-builder-2.0/front-end/login.php:145
4686
+ msgid "Password Lost and Found."
4687
+ msgstr "تم فقدان كلمة المرور واسترجاعها"
4688
+
4689
+ #: profile-builder-2.0/front-end/login.php:138
4690
+ #: profile-builder-2.0/front-end/login.php:145
4691
+ msgid "Lost your password"
4692
+ msgstr "نسيت كلمة المرور"
4693
+
4694
+ #: profile-builder-2.0/front-end/login.php:158
4695
+ msgid "Both fields are empty."
4696
+ msgstr "كلا الحقلين فارغين"
4697
+
4698
+ #: profile-builder-2.0/front-end/login.php:296
4699
+ msgid "You are currently logged in as %1$s. %2$s"
4700
+ msgstr "أنت الآن مسجل الدخول بالمستخدم %1$s. %2$s"
4701
+
4702
+ #: profile-builder-2.0/front-end/login.php:295
4703
+ #: profile-builder-2.0/front-end/logout.php:25
4704
+ msgid "Log out of this account"
4705
+ msgstr "تسجيل الخروج من هذا الحساب"
4706
+
4707
+ #: profile-builder-2.0/front-end/login.php:295
4708
+ msgid "Log out"
4709
+ msgstr "تسجيل الخروج"
4710
+
4711
+ #: profile-builder-2.0/front-end/recover.php:17
4712
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4713
+ msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"."
4714
+
4715
+ #: profile-builder-2.0/front-end/recover.php:94
4716
+ msgid "Reset Password"
4717
+ msgstr "إعادة كلمة المرور"
4718
+
4719
+ #: profile-builder-2.0/front-end/recover.php:121
4720
+ msgid "Please enter your username or email address."
4721
+ msgstr "الرجاء إدخال اسم المستخدم أو عنوان البريد الإلكتروني."
4722
+
4723
+ #: profile-builder-2.0/front-end/recover.php:125
4724
+ msgid "You will receive a link to create a new password via email."
4725
+ msgstr "ستتلقى رابطا لإنشاء كلمة مرور جديدة عبر البريد الإلكتروني."
4726
+
4727
+ #: profile-builder-2.0/front-end/recover.php:122
4728
+ msgid "Username or E-mail"
4729
+ msgstr "أسم المستخدم او البريد الإلكتروني"
4730
+
4731
+ #: profile-builder-2.0/front-end/recover.php:138
4732
+ msgid "Get New Password"
4733
+ msgstr "احصل على كلمة سر جديدة"
4734
+
4735
+ #: profile-builder-2.0/front-end/recover.php:185
4736
+ msgid "The username entered wasn't found in the database!"
4737
+ msgstr "لم يتم العثور على اسم المستخدم الذي تم إدخاله في قاعدة البيانات!"
4738
+
4739
+ #: profile-builder-2.0/front-end/recover.php:185
4740
+ msgid "Please check that you entered the correct username."
4741
+ msgstr "يرجى التحقق من إدخال اسم المستخدم الصحيح."
4742
+
4743
+ #: profile-builder-2.0/front-end/recover.php:200
4744
+ msgid "Check your e-mail for the confirmation link."
4745
+ msgstr "تحقق من بريدك الإلكتروني للحصول على رابط التأكيد."
4746
+
4747
+ #: profile-builder-2.0/front-end/recover.php:235
4748
+ 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"
4749
+ msgstr "طلب أحد الأشخاص إعادة تعيين كلمة المرور للحساب التالي: <b>%1$s</ b> <br/> إذا كان هذا خطأ، فتجاهل هذه الرسالة الإلكترونية ولن يحدث أي شيء. <br/> لإعادة تعيين كلمة المرور ، انتقل إلى الرابط التالي:%2$s"
4750
+
4751
+ #: profile-builder-2.0/front-end/recover.php:238
4752
+ msgid "Password Reset from \"%1$s\""
4753
+ msgstr "إعادة تعيين كلمة المرور من \"%1$s\""
4754
+
4755
+ #: profile-builder-2.0/front-end/recover.php:245
4756
+ msgid "There was an error while trying to send the activation link to %1$s!"
4757
+ msgstr "حدث خطأ أثناء محاولة إرسال رابط التفعيل إلى %1$s!"
4758
+
4759
+ #: profile-builder-2.0/front-end/recover.php:207
4760
+ msgid "The email address entered wasn't found in the database!"
4761
+ msgstr "لم يتم العثور على عنوان البريد الإلكتروني الذي تم إدخاله في قاعدة البيانات!"
4762
+
4763
+ #: profile-builder-2.0/front-end/recover.php:207
4764
+ msgid "Please check that you entered the correct email address."
4765
+ msgstr "يرجى التحقق من إدخال البريد الإلكتروني الصحيح."
4766
+
4767
+ #: profile-builder-2.0/front-end/recover.php:273
4768
+ msgid "Your password has been successfully changed!"
4769
+ msgstr "كلمة السر الخاصة بك تم تغييرها بنجاح!"
4770
+
4771
+ #: profile-builder-2.0/front-end/recover.php:292
4772
+ msgid "You have successfully reset your password to: %1$s"
4773
+ msgstr "لقد أعدت تعيين كلمة المرور بنجاح إلى: %1$s"
4774
+
4775
+ #: profile-builder-2.0/front-end/recover.php:295
4776
+ #: profile-builder-2.0/front-end/recover.php:306
4777
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4778
+ msgstr "تم بنجاح إعادة تعيين كلمة المرور ل %1$s على \"%2$s\""
4779
+
4780
+ #: profile-builder-2.0/front-end/recover.php:303
4781
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4782
+ msgstr "%1$s قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور. <br/> كلمة المرور الجديدة هي:%2$s"
4783
+
4784
+ #: profile-builder-2.0/front-end/recover.php:320
4785
+ msgid "The entered passwords don't match!"
4786
+ msgstr "لا تتطابق كلمات المرور المدخلة!"
4787
+
4788
+ #: profile-builder-2.0/front-end/recover.php:375
4789
+ msgid "ERROR:"
4790
+ msgstr "خطأ:"
4791
+
4792
+ #: profile-builder-2.0/front-end/recover.php:375
4793
+ msgid "Invalid key!"
4794
+ msgstr "مفتاح غير صالح!"
4795
+
4796
+ #: profile-builder-2.0/front-end/register.php:56
4797
+ msgid "Invalid activation key!"
4798
+ msgstr "مفتاح التنشيط غير صالح!"
4799
+
4800
+ #: profile-builder-2.0/front-end/register.php:60
4801
+ msgid "This username is now active!"
4802
+ msgstr "اسم المستخدم مفعل الآن!"
4803
+
4804
+ #: profile-builder-2.0/front-end/register.php:74
4805
+ msgid "This username is already activated!"
4806
+ msgstr "تم تفعيل هذا المستخدم مسبقاً!"
4807
+
4808
+ #: profile-builder-2.0/front-end/register.php:124
4809
+ msgid "Your email was successfully confirmed."
4810
+ msgstr "تم تأكيد بريدك الإلكتروني بنجاح."
4811
+
4812
+ #: profile-builder-2.0/front-end/register.php:153
4813
+ msgid "There was an error while trying to activate the user."
4814
+ msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم."
4815
+
4816
+ #: pb-add-on-woocommerce/index.php:393
4817
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4818
+ msgid "The email you entered is not a valid email address."
4819
+ msgstr "البريد الإلكتروني الذي أدخلته ليس عنوان بريد إلكتروني صالح."
4820
+
4821
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4822
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4823
+ msgid "This email is already reserved to be used soon."
4824
+ msgstr "هذه الرسالة الإلكترونية محفوظة بالفعل لاستخدامها قريبا."
4825
+
4826
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4827
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4828
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4829
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4830
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4831
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4832
+ msgid "Please try a different one!"
4833
+ msgstr "الرجاء محاولة واحدة مختلفة!"
4834
+
4835
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4836
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4837
+ msgid "This email is already in use."
4838
+ msgstr "هذا البريد استخدم من قبل."
4839
+
4840
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4841
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4842
+ msgid "The passwords do not match"
4843
+ msgstr "كلمات السر لا تتطابق"
4844
+
4845
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4846
+ msgid "This username already exists."
4847
+ msgstr "اسم المستخدم هذا موجود بالفعل."
4848
+
4849
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4850
+ msgid "This username is already reserved to be used soon."
4851
+ msgstr "اسم المستخدم هذا محفوظ مسبقا لاستخدامه قريبا."
4852
+
4853
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4854
+ msgid "Avatar"
4855
+ msgstr "الصورة الرمزية"
4856
+
4857
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4858
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4859
+ #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4860
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4861
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4862
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4863
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4864
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4865
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4866
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4867
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4868
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4869
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4870
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4871
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4872
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4873
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4874
+ msgid "required"
4875
+ msgstr "مطلوب"
4876
+
4877
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4878
+ msgid "To use reCAPTCHA you must get an API key from"
4879
+ msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من"
4880
+
4881
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4882
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4883
+ msgstr "لأسباب أمنية، يجب تمرير عنوان بروتوكول الإنترنت عن بعد ل ريكابتشا!"
4884
+
4885
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4886
+ msgid "To use reCAPTCHA you must get an API public key from:"
4887
+ msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من:"
4888
+
4889
+ #: profile-builder-2.0/modules/modules.php:11
4890
+ #: profile-builder-2.0/modules/modules.php:58
4891
+ msgid "Modules"
4892
+ msgstr "وحدات"
4893
+
4894
+ #: profile-builder-2.0/modules/modules.php:59
4895
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4896
+ msgstr "هنا يمكنك تفعيل / إلغاء تفعيل الوحدات النمطية المتاحة ل Profile Builder."
4897
+
4898
+ #: profile-builder-2.0/modules/modules.php:69
4899
+ msgid "Name/Description"
4900
+ msgstr "اسم / الوصف"
4901
+
4902
+ #: profile-builder-2.0/modules/modules.php:70
4903
+ msgid "Status"
4904
+ msgstr "الحالة"
4905
+
4906
+ #: profile-builder-2.0/modules/modules.php:77
4907
+ #: profile-builder-2.0/modules/modules.php:84
4908
+ #: profile-builder-2.0/modules/modules.php:91
4909
+ #: profile-builder-2.0/modules/modules.php:98
4910
+ #: profile-builder-2.0/modules/modules.php:105
4911
+ #: profile-builder-2.0/modules/modules.php:112
4912
+ #: profile-builder-2.0/modules/modules.php:119
4913
+ msgid "Active"
4914
+ msgstr "مفعّل"
4915
+
4916
+ #: profile-builder-2.0/modules/modules.php:78
4917
+ #: profile-builder-2.0/modules/modules.php:85
4918
+ #: profile-builder-2.0/modules/modules.php:92
4919
+ #: profile-builder-2.0/modules/modules.php:99
4920
+ #: profile-builder-2.0/modules/modules.php:106
4921
+ #: profile-builder-2.0/modules/modules.php:113
4922
+ #: profile-builder-2.0/modules/modules.php:120
4923
+ msgid "Inactive"
4924
+ msgstr "غير مفعّل"
4925
+
4926
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4927
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4928
+ #: profile-builder-2.0/modules/modules.php:96
4929
+ msgid "Admin Email Customizer"
4930
+ msgstr "مخصص البريد الإلكتروني للمشرف"
4931
+
4932
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4933
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4934
+ #: profile-builder-2.0/modules/modules.php:103
4935
+ msgid "User Email Customizer"
4936
+ msgstr "مخصص البريد الإلكتروني"
4937
+
4938
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4939
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4940
+ msgid "Save"
4941
+ msgstr "حفظ"
4942
+
4943
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4944
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4945
+ msgid "Redirect"
4946
+ msgstr "إعادة توجيه"
4947
+
4948
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4949
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4950
+ msgid "URL"
4951
+ msgstr "URL"
4952
+
4953
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4954
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4955
+ msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكتروني للمستخدم\" عند الحفظ."
4956
+
4957
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4958
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4959
+ msgid "From (name)"
4960
+ msgstr "من (الاسم)"
4961
+
4962
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4963
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4964
+ msgid "From (reply-to email)"
4965
+ msgstr "من (الرد إلى البريد الإلكتروني)"
4966
+
4967
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4968
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4969
+ msgid "Common Settings"
4970
+ msgstr "الإعدادات العامة"
4971
+
4972
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4973
+ msgid ""
4974
+ "\n"
4975
+ "<p>New subscriber on {{site_name}}.</p>\n"
4976
+ "<p>Username:{{username}}</p>\n"
4977
+ "<p>E-mail:{{user_email}}</p>\n"
4978
+ msgstr ""
4979
+ "\n"
4980
+ "<p> مشترك جديد في {{site_name}}. </ p>\n"
4981
+ "<p> اسم المستخدم: {{username}} </ P>\n"
4982
+ "<p> البريد الالكتروني: {{user_email}} </ P>\n"
4983
+
4984
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4985
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4986
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4987
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4988
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4989
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4990
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4991
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4992
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4993
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4994
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4995
+ msgid "Email Subject"
4996
+ msgstr "موضوع البريد الإلكتروني"
4997
+
4998
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4999
+ msgid "Default Registration & Registration with Email Confirmation"
5000
+ msgstr "التسجيل الافتراضي والتسجيل مع تأكيد البريد الإلكتروني"
5001
+
5002
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5003
+ msgid ""
5004
+ "\n"
5005
+ "<p>New subscriber on {{site_name}}.</p>\n"
5006
+ "<p>Username:{{username}}</p>\n"
5007
+ "<p>E-mail:{{user_email}}</p>\n"
5008
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
5009
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
5010
+ msgstr ""
5011
+ "\n"
5012
+ "<p> مشترك جديد في {{site_name}}. </ p>\n"
5013
+ "<p> اسم المستخدم: {{username}} </ P>\n"
5014
+ "<p> البريد الالكتروني: {{user_email}} </ P>\n"
5015
+ "<p> تم تنشيط ميزة الموافقة على المشرف في وقت التسجيل،\n"
5016
+ "لذا يرجى تذكر أنك تحتاج إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول! </ p>\n"
5017
+
5018
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5019
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5020
+ msgid "Registration with Admin Approval"
5021
+ msgstr "التسجيل باستخدام موافقة المشرف"
5022
+
5023
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5024
+ msgid "Available Tags"
5025
+ msgstr "الوسوم المتاحة"
5026
+
5027
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5028
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5029
+ msgid "User Meta"
5030
+ msgstr "ميتا المستخدم"
5031
+
5032
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5033
+ msgid "Site Url"
5034
+ msgstr "رابط الموقع"
5035
+
5036
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5037
+ msgid "Site Name"
5038
+ msgstr "اسم الموقع"
5039
+
5040
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5041
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5042
+ msgid "User Id"
5043
+ msgstr "معرف المستخدم"
5044
+
5045
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5046
+ msgid "Reply To"
5047
+ msgstr "الرد على"
5048
+
5049
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5050
+ msgid "Activation Key"
5051
+ msgstr "مفتاح التفعيل"
5052
+
5053
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5054
+ msgid "Activation Url"
5055
+ msgstr "Url التفعيل"
5056
+
5057
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5058
+ msgid "Activation Link"
5059
+ msgstr "رابط التفعيل"
5060
+
5061
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5062
+ msgid ""
5063
+ "\n"
5064
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5065
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5066
+ msgstr ""
5067
+ "\n"
5068
+ "<h3> مرحبا بك في {{site_name}}! </ h3>\n"
5069
+ "<p> اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} </ p>\n"
5070
+
5071
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5072
+ msgid "Default Registration"
5073
+ msgstr "التسجيل الافتراضي"
5074
+
5075
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5076
+ msgid ""
5077
+ "\n"
5078
+ "<p>To activate your user, please click the following link:<br/>\n"
5079
+ "{{{activation_link}}}</p>\n"
5080
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
5081
+ msgstr ""
5082
+ "\n"
5083
+ "<p> لتنشيط المستخدم، يرجى النقر على الرابط التالي: <br/>\n"
5084
+ "{{{activation_link}}} </ P>\n"
5085
+ "<p> بعد التنشيط، ستتلقى رسالة بريد إلكتروني أخرى تتضمن بيانات اعتمادك. </ p>\n"
5086
+
5087
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5088
+ msgid "[{{site_name}}] Activate {{username}}"
5089
+ msgstr "[{{site_name}}] تفعيل {{username}}"
5090
+
5091
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5092
+ msgid "Registration with Email Confirmation"
5093
+ msgstr "التسجيل مع تأكيد البريد الإلكتروني"
5094
+
5095
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5096
+ msgid ""
5097
+ "\n"
5098
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5099
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5100
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5101
+ msgstr ""
5102
+ "\n"
5103
+ "<h3> مرحبا بك في {{site_name}}! </ h3>\n"
5104
+ "<p> اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} </ p>\n"
5105
+ "<p> قبل أن تتمكن من الدخول إلى حسابك، يجب على المشرف الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني. </ p>\n"
5106
+
5107
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5108
+ msgid "A new account has been created for you on {{site_name}}"
5109
+ msgstr "تم إنشاء حساب جديد لك على {{site_name}}"
5110
+
5111
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5112
+ msgid ""
5113
+ "\n"
5114
+ "<h3>Good News!</h3>\n"
5115
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5116
+ msgstr ""
5117
+ "\n"
5118
+ "<h3> أخبار جيدة! </ h3>\n"
5119
+ "<p> وافق المشرف على حسابك: {{username}} على {{site_name}}. </ p>\n"
5120
+
5121
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5122
+ msgid "Your account on {{site_name}} has been approved!"
5123
+ msgstr "تمت الموافقة على حسابك في {{site_name}}!"
5124
+
5125
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5126
+ msgid "User Approval Notification"
5127
+ msgstr "إشعار الموافقة على المستخدم"
5128
+
5129
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5130
+ msgid ""
5131
+ "\n"
5132
+ "<h3>Hello,</h3>\n"
5133
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5134
+ msgstr ""
5135
+ "\n"
5136
+ "<H3> مرحبا، </ H3>\n"
5137
+ "<p> للأسف، لم قام المشرف بعدم الموافقة على حسابك: {{username}} على {{site_name}}. </ p>\n"
5138
+
5139
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5140
+ msgid "Your account on {{site_name}} has been unapproved!"
5141
+ msgstr "لم تتم الموافقة على حسابك في {{site_name}}!"
5142
+
5143
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5144
+ msgid "Unapproved User Notification"
5145
+ msgstr "إشعار مستخدم غير موافق عليه"
5146
+
5147
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5148
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5149
+ msgid "Edit-profile Form"
5150
+ msgstr "استمارة تعديل الملف الشخصي"
5151
+
5152
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5153
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5154
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5155
+ msgid "Add New"
5156
+ msgstr "إضافة جديد"
5157
+
5158
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5159
+ msgid "Add new Edit-profile Form"
5160
+ msgstr "إضافة استمارة جديدة لتعديل الملف الشخصي"
5161
+
5162
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5163
+ msgid "Edit the Edit-profile Forms"
5164
+ msgstr "تعديل استمارات تعديل الملف الشخصي"
5165
+
5166
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5167
+ msgid "New Edit-profile Form"
5168
+ msgstr "استمارة تعديل الملف الشخصي جديدة"
5169
+
5170
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5171
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5172
+ msgid "Edit-profile Forms"
5173
+ msgstr "استمارات تعديل الملف الشخصي"
5174
+
5175
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5176
+ msgid "View the Edit-profile Form"
5177
+ msgstr "عرض نموذج تعديل الملف الشخصي"
5178
+
5179
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5180
+ msgid "Search the Edit-profile Forms"
5181
+ msgstr "ابحث في نماذج تعديل الملف الشخصي"
5182
+
5183
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5184
+ msgid "No Edit-profile Form found"
5185
+ msgstr "لم يتم العثور على نموذج تعديل الملف الشخصي"
5186
+
5187
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5188
+ msgid "No Edit-profile Forms found in trash"
5189
+ msgstr "لم يتم العثور على نماذج تعديل الملف الشخصي في المهملات"
5190
+
5191
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5192
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5193
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5194
+ msgid "Shortcode"
5195
+ msgstr "رمز قصير"
5196
+
5197
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5198
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5199
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5200
+ msgid "(no title)"
5201
+ msgstr "(لايوجد عنوان)"
5202
+
5203
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5204
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5205
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5206
+ msgid "The shortcode will be available after you publish this form."
5207
+ msgstr "سيكون الرمز القصير متاحا بعد نشر هذا النموذج."
5208
+
5209
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5210
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5211
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5212
+ msgid "Use this shortcode on the page you want the form to be displayed:"
5213
+ msgstr "استخدم هذا الرمز القصير في الصفحة التي تريد عرض النموذج عليها:"
5214
+
5215
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5216
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5217
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5218
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5219
+ msgstr "<span style=\"color:red;\">ملاحظة:</span> يؤدي تغيير عنوان النموذج أيضا إلى تغيير الرمز القصير!!"
5220
+
5221
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5222
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5223
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5224
+ msgid "Form Shortcode"
5225
+ msgstr "شكل رمز قصير"
5226
+
5227
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5228
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5229
+ msgid "Whether to redirect the user to a specific page or not"
5230
+ msgstr "سواء لإعادة توجيه المستخدم إلى صفحة معينة أم لا"
5231
+
5232
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5233
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5234
+ msgid "Display Messages"
5235
+ msgstr "عرض الرسائل"
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 "Allowed time to display any success messages (in seconds)"
5240
+ msgstr "الوقت المسموح به لعرض أية رسائل نجاح (بالثواني)"
5241
+
5242
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5243
+ 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"
5244
+ msgstr "حدد عنوان URL للصفحة التي سيتم إعادة توجيه المستخدمين إليها بعد تحديث ملفهم الشخصي باستخدام هذا النموذج <br/> استخدم التنسيق التالي: http://www.mysite.com"
5245
+
5246
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5247
+ msgid "After Profile Update..."
5248
+ msgstr "بعد تعديل الملف الشخصي..."
5249
+
5250
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5251
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5252
+ msgid "Add New Field to the List"
5253
+ msgstr "Add New Field to the List"
5254
+
5255
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5256
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5257
+ msgid "Choose one of the supported fields you manage <a href=\""
5258
+ msgstr "اختر أحد الحقول المدعومة التي تديرها <a href= \""
5259
+
5260
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5261
+ msgid "<pre>Title (Type)</pre>"
5262
+ msgstr "<pre>العنوان (نوع)</pre>"
5263
+
5264
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5265
+ msgid "You need to specify the title of the form before creating it"
5266
+ msgstr "يجب تحديد عنوان النموذج قبل إنشائه"
5267
+
5268
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5269
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5270
+ msgid "Registration Form"
5271
+ msgstr "استمارة تسجيل"
5272
+
5273
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5274
+ msgid "Add new Registration Form"
5275
+ msgstr "إضافة استمارة تسجيل جديده"
5276
+
5277
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5278
+ msgid "Edit the Registration Forms"
5279
+ msgstr "تعديل نماذج التسجيل"
5280
+
5281
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5282
+ msgid "New Registration Form"
5283
+ msgstr "استمارة تسجيل جديده"
5284
+
5285
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5286
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5287
+ msgid "Registration Forms"
5288
+ msgstr "نماذج التسجيل"
5289
+
5290
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5291
+ msgid "View the Registration Form"
5292
+ msgstr "عرض نموذج التسجيل"
5293
+
5294
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5295
+ msgid "Search the Registration Forms"
5296
+ msgstr "ابحث في نماذج التسجيل"
5297
+
5298
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5299
+ msgid "No Registration Form found"
5300
+ msgstr "لم يتم العثور على نموذج تسجيل"
5301
+
5302
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5303
+ msgid "No Registration Forms found in trash"
5304
+ msgstr "لم يتم العثور على نماذج تسجيل في المهملات"
5305
+
5306
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5307
+ msgid "Default Role"
5308
+ msgstr "الدور الافتراضي"
5309
+
5310
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5311
+ msgid "Set Role"
5312
+ msgstr "تعيين الدور"
5313
+
5314
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5315
+ 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"
5316
+ msgstr "اختر الدور الذي سيحصل عليه المستخدم بعد تسجيله <br/> إذا لم يتم تحديده، فسيتم تعيين الإعدادات الافتراضية على الدور المحدد في إعدادات ووردبريس"
5317
+
5318
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5319
+ msgid "Automatically Log In"
5320
+ msgstr "تسجيل الدخول تلقائيا"
5321
+
5322
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5323
+ 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"
5324
+ msgstr "ما إذا كان سيتم تسجيل الدخول تلقائيا إلى المستخدم المسجل حديثا أم لا <br/> يعمل فقط على مواقع فردية بدون تفعيل ميزة \"موافقة المشرف\" و \"تأكيد البريد الإلكتروني\" <br/> تحذير: يؤدي التخزين المؤقت لنموذج التسجيل إلى عدم تسجيل الدخول التلقائي"
5325
+
5326
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5327
+ 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"
5328
+ msgstr "حدد عنوان Url للصفحة التي سيتم إعادة توجيه المستخدمين إليها بمجرد تسجيلهم باستخدام هذا النموذج <br/> استخدم التنسيق التالي: http://www.mysite.com"
5329
+
5330
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5331
+ msgid "After Registration..."
5332
+ msgstr "بعد التسجيل..."
5333
+
5334
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5335
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5336
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5337
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5338
+ msgid "Search Users by All Fields"
5339
+ msgstr "البحث عن المستخدمين من قبل جميع الحقول"
5340
+
5341
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5342
+ msgid "Add new User Listing"
5343
+ msgstr "إضافة قائمة مستخدم جديدة"
5344
+
5345
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5346
+ msgid "Edit the User Listing"
5347
+ msgstr "تعديل قائمة المستخدم"
5348
+
5349
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5350
+ msgid "New User Listing"
5351
+ msgstr "قائمة مستخدم جديدة"
5352
+
5353
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5354
+ msgid "View the User Listing"
5355
+ msgstr "عرض قائمة المستخدم"
5356
+
5357
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5358
+ msgid "Search the User Listing"
5359
+ msgstr "ابحث في قائمة المستخدم"
5360
+
5361
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5362
+ msgid "No User Listing found"
5363
+ msgstr "لم يتم العثور على قائمة مستخدمين"
5364
+
5365
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5366
+ msgid "No User Listing found in trash"
5367
+ msgstr "لم يتم العثور على قائمة مستخدمين في المهملات"
5368
+
5369
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5370
+ msgid "Display name as"
5371
+ msgstr "إظهار الاسم ك"
5372
+
5373
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5374
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5375
+ msgid "Registration Date"
5376
+ msgstr "تاريخ التسجيل"
5377
+
5378
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5379
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5380
+ msgid "Number of Posts"
5381
+ msgstr "عدد المقالات"
5382
+
5383
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5384
+ msgid "More Info"
5385
+ msgstr "معلومات أكثر"
5386
+
5387
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5388
+ msgid "More Info Url"
5389
+ msgstr "مزيد من المعلومات Url"
5390
+
5391
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5392
+ msgid "Avatar or Gravatar"
5393
+ msgstr "صورة رمزية أو Gravatar"
5394
+
5395
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5396
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5397
+ msgid "Extra Functions"
5398
+ msgstr "وظائف إضافية"
5399
+
5400
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5401
+ msgid "Pagination"
5402
+ msgstr "ترقيم الصفحات"
5403
+
5404
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5405
+ msgid "Search all Fields"
5406
+ msgstr "بحث كل الحقول"
5407
+
5408
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5409
+ msgid "Go Back Link"
5410
+ msgstr "رابط الرجوع للخلف"
5411
+
5412
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5413
+ msgid "All-userlisting Template"
5414
+ msgstr "قالب قائمة جميع المستخدمين"
5415
+
5416
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5417
+ msgid "Single-userlisting Template"
5418
+ msgstr "نموذج قائمة مستخدم واحد"
5419
+
5420
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5421
+ msgid "First/Lastname"
5422
+ msgstr "الاسم الأول/الأخير"
5423
+
5424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5425
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5426
+ msgid "Sign-up Date"
5427
+ msgstr "تاريخ التسجيل"
5428
+
5429
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5430
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5431
+ msgid "Display Name"
5432
+ msgstr "اسم العرض"
5433
+
5434
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5435
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5436
+ msgid "Posts"
5437
+ msgstr "المقالات"
5438
+
5439
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5440
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5441
+ msgid "Aim"
5442
+ msgstr "Aim"
5443
+
5444
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5445
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5446
+ msgid "Yim"
5447
+ msgstr "Yim"
5448
+
5449
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5450
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5451
+ msgid "Jabber"
5452
+ msgstr "Jabber"
5453
+
5454
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5455
+ msgid "Click here to see more information about this user"
5456
+ msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم."
5457
+
5458
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5459
+ msgid "More..."
5460
+ msgstr "المزيد..."
5461
+
5462
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5463
+ msgid "Click here to see more information about this user."
5464
+ msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم."
5465
+
5466
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5467
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5468
+ msgid "Click here to go back"
5469
+ msgstr "اضغط هنا للرجوع للخلف"
5470
+
5471
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5472
+ msgid "Back"
5473
+ msgstr "رجوع"
5474
+
5475
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5476
+ msgid "&laquo;&laquo; First"
5477
+ msgstr "&laquo;&laquo; الأول"
5478
+
5479
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5480
+ msgid "&laquo; Prev"
5481
+ msgstr "&laquo; السابق"
5482
+
5483
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5484
+ msgid "Next &raquo; "
5485
+ msgstr "التالي &raquo; "
5486
+
5487
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5488
+ msgid "Last &raquo;&raquo;"
5489
+ msgstr "آخر &raquo;&raquo;"
5490
+
5491
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5492
+ msgid "You don't have any pagination settings on this userlisting!"
5493
+ msgstr "ليس لديك أي إعدادات ترقيم صفحات في قائمة المستخدمين!"
5494
+
5495
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5496
+ msgid "Search"
5497
+ msgstr "بحث"
5498
+
5499
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5500
+ msgid "Clear Results"
5501
+ msgstr "حذف النتائج"
5502
+
5503
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5504
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5505
+ msgid "Extra shortcode parameters"
5506
+ msgstr "معلمات اختصارات إضافية"
5507
+
5508
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5509
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5510
+ msgstr "يعرض المستخدمين الذين لديهم قيمة وصفية معينة ضمن حقل ميتا (إضافي) معين"
5511
+
5512
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5513
+ msgid "Example:"
5514
+ msgstr "مثال:"
5515
+
5516
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5517
+ msgid "Remember though, that the field-value combination must exist in the database."
5518
+ msgstr "تذكر, أن مزيج قيمة الحقل يجب أن تكون موجودة في قاعدة البيانات."
5519
+
5520
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5521
+ msgid "Random (very slow on large databases > 10K user)"
5522
+ msgstr "عشوائي (بطيء جدا على قواعد البيانات الكبيرة> 10 آلاف مستخدم)"
5523
+
5524
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5525
+ msgid "Roles to Display"
5526
+ msgstr "الأدوار التي يتم عرضها"
5527
+
5528
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5529
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5530
+ msgstr "قصر قائمة المستخدمين على هذه الأدوار المحددة فقط <br/> إذا لم يتم تحديدها، فسيكون افتراضيا لجميع الأدوار الحالية"
5531
+
5532
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5533
+ msgid "Number of Users/Page"
5534
+ msgstr "عدد المستخدمين / الصفحة"
5535
+
5536
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5537
+ msgid "Default Sorting Criteria"
5538
+ msgstr "معايير الفرز الإفتراضية"
5539
+
5540
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5541
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5542
+ msgstr "تعيين معايير الفرز الافتراضية <br/> يمكن تغيير هذا مؤقتا لكل جلسة جديدة"
5543
+
5544
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5545
+ msgid "Default Sorting Order"
5546
+ msgstr "ترتيب الفرز الإفتراضي"
5547
+
5548
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5549
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5550
+ msgstr "تعيين ترتيب الفرز الافتراضي <br/> يمكن تغيير هذا مؤقتا لكل جلسة جديدة"
5551
+
5552
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5553
+ msgid "Avatar Size (All-userlisting)"
5554
+ msgstr "حجم الصورة الرمزية (كل المستخدمين)"
5555
+
5556
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5557
+ msgid "Set the avatar size on the all-userlisting only"
5558
+ msgstr "تعيين حجم الصورة الرمزية على جميع-المستخدمين فقط"
5559
+
5560
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5561
+ msgid "Avatar Size (Single-userlisting)"
5562
+ msgstr "حجم الصورة الرمزية (قائمة مستخدم واحد)"
5563
+
5564
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5565
+ msgid "Set the avatar size on the single-userlisting only"
5566
+ msgstr "اضبط حجم الصورة الرمزية على قائمة المستخدمين الفردية فقط"
5567
+
5568
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5569
+ msgid "Visible only to logged in users?"
5570
+ msgstr "مرئية فقط للمستخدمين الذين سجلوا دخولهم؟"
5571
+
5572
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5573
+ msgid "The userlisting will only be visible only to the logged in users"
5574
+ msgstr "لن تكون قائمة المستخدمين مرئية إلا للمستخدمين المسجلين دخولهم"
5575
+
5576
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5577
+ msgid "Visible to following Roles"
5578
+ msgstr "مرئية للأدوار التالية"
5579
+
5580
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5581
+ msgid "The userlisting will only be visible to the following roles"
5582
+ msgstr "لن تكون قائمة المستخدمين مرئية إلا للأدوار التالية"
5583
+
5584
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5585
+ msgid "Userlisting Settings"
5586
+ msgstr "إعدادات قائمة المستخدم"
5587
+
5588
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5589
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5590
+ msgstr "تحتاج إلى تفعيل ميزة عرض المستخدمين من داخل \"وحدات\" علامة التبويب!"
5591
+
5592
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5593
+ msgid "You can find it in the Profile Builder menu."
5594
+ msgstr "بإمكانك إيجادها في قائمة Profile Builder"
5595
+
5596
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5597
+ msgid "No results found!"
5598
+ msgstr "لاتوجد نتائج!"
translation/profile-builder-da_DK.mo CHANGED
Binary file
translation/profile-builder-da_DK.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-07-12 14:10:03+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,2867 +10,3092 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
- #: admin/manage-fields.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  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"
15
  msgstr ""
16
 
17
- #: modules/custom-redirects/custom_redirects_admin.php:244
18
  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."
19
  msgstr ""
20
 
21
- #: admin/manage-fields.php:1214
22
  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."
23
  msgstr ""
24
 
25
- #: modules/custom-redirects/custom_redirects_admin.php:240
26
  msgid "Multiple Registration and Edit Profile form settings Redirects"
27
  msgstr ""
28
 
29
- #: admin/register-version.php:251
30
  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>"
31
  msgstr ""
32
 
33
- #: admin/register-version.php:246
34
  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>"
35
  msgstr ""
36
 
37
- #: front-end/recover.php:151
38
  msgid "You are already logged in. You can change your password on the edit profile form."
39
  msgstr ""
40
 
41
- #: front-end/default-fields/blog-details/blog-details.php:70
42
  msgid "Your site url will look like this:<br>"
43
  msgstr ""
44
 
45
- #: features/functions.php:909
46
  msgid "<br><br>You can visit your site at "
47
  msgstr ""
48
 
49
- #: features/functions.php:896
50
  msgid "<br><br>Also, you will be able to visit your site at "
51
  msgstr ""
52
 
53
- #: front-end/default-fields/blog-details/blog-details.php:138
54
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
55
  msgstr ""
56
 
57
- #: front-end/default-fields/blog-details/blog-details.php:116
58
  msgid "Site Title"
59
  msgstr ""
60
 
61
- #: front-end/default-fields/blog-details/blog-details.php:93
62
  msgid "Site URL slug"
63
  msgstr ""
64
 
65
- #: front-end/default-fields/blog-details/blog-details.php:63
66
  msgid "Yes, I'd like to create a new site"
67
  msgstr ""
68
 
69
- #: modules/email-customizer/email-customizer.php:36
70
- #: modules/user-listing/userlisting.php:118
71
  msgid "Blog URL"
72
  msgstr ""
73
 
74
- #: admin/admin-functions.php:44
75
  msgid "Blog Details - only appears on the Registration page!"
76
  msgstr ""
77
 
78
- #: admin/manage-fields.php:219
79
  msgid "Blog Details"
80
  msgstr ""
81
 
82
- #: admin/pms-cross-promotion.php:239
83
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
84
  msgstr ""
85
 
86
- #: features/email-confirmation/email-confirmation.php:578
87
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
88
  msgstr ""
89
 
90
- #: modules/user-listing/userlisting.php:1303
91
  msgid "View Map"
92
  msgstr ""
93
 
94
- #: admin/add-ons.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Available in Hobbyist and Pro Versions"
96
  msgstr ""
97
 
98
- #: admin/add-ons.php:105
99
  msgid "Available in All Versions"
100
  msgstr ""
101
 
102
- #: admin/add-ons.php:148
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
- #: admin/basic-info.php:99
107
  msgid "Timepicker"
108
  msgstr ""
109
 
110
- #: admin/basic-info.php:100
111
  msgid "Colorpicker"
112
  msgstr ""
113
 
114
- #: admin/basic-info.php:103
115
  msgid "Currency Select"
116
  msgstr ""
117
 
118
- #: admin/basic-info.php:109
119
  msgid "Number"
120
  msgstr ""
121
 
122
- #: admin/basic-info.php:114
123
  msgid "Validation"
124
  msgstr ""
125
 
126
- #: admin/basic-info.php:115
127
  msgid "Map"
128
  msgstr ""
129
 
130
- #: admin/basic-info.php:116
131
  msgid "HTML"
132
  msgstr ""
133
 
134
- #: admin/basic-info.php:162 modules/modules.php:117
 
135
  msgid "Repeater Fields"
136
  msgstr ""
137
 
138
- #: admin/basic-info.php:163
139
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
  msgstr ""
141
 
142
- #: admin/general-settings.php:62
143
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
  msgstr ""
145
 
146
- #: admin/manage-fields.php:118
147
  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"
148
  msgstr ""
149
 
150
- #: admin/manage-fields.php:141
151
  msgid "Show Currency Symbol"
152
  msgstr ""
153
 
154
- #: admin/manage-fields.php:141
155
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
156
  msgstr ""
157
 
158
- #: admin/manage-fields.php:142
159
  msgid "Show Post Type"
160
  msgstr ""
161
 
162
- #: admin/manage-fields.php:142
163
  msgid "Posts from what post type will be displayed in the select."
164
  msgstr ""
165
 
166
- #: admin/manage-fields.php:143
167
  msgid "Allowable Values"
168
  msgstr ""
169
 
170
- #: admin/manage-fields.php:143
171
  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."
172
  msgstr ""
173
 
174
- #: admin/manage-fields.php:144
175
  msgid "Error Message"
176
  msgstr ""
177
 
178
- #: admin/manage-fields.php:144
179
  msgid "Set a custom error message that will be displayed to the user."
180
  msgstr ""
181
 
182
- #: admin/manage-fields.php:145
183
  msgid "Time Format"
184
  msgstr ""
185
 
186
- #: admin/manage-fields.php:145
187
  msgid "Specify the time format."
188
  msgstr ""
189
 
190
- #: admin/manage-fields.php:146
191
  msgid "Google Maps API Key"
192
  msgstr ""
193
 
194
- #: admin/manage-fields.php:146
195
  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."
196
  msgstr ""
197
 
198
- #: admin/manage-fields.php:147
199
  msgid "Default Latitude"
200
  msgstr ""
201
 
202
- #: admin/manage-fields.php:147
203
  msgid "The latitude at which the map should be displayed when no pins are attached."
204
  msgstr ""
205
 
206
- #: admin/manage-fields.php:148
207
  msgid "Default Longitude"
208
  msgstr ""
209
 
210
- #: admin/manage-fields.php:148
211
  msgid "The longitude at which the map should be displayed when no pins are attached."
212
  msgstr ""
213
 
214
- #: admin/manage-fields.php:149
215
  msgid "Default Zoom Level"
216
  msgstr ""
217
 
218
- #: admin/manage-fields.php:149
219
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
220
  msgstr ""
221
 
222
- #: admin/manage-fields.php:150
223
  msgid "Map Height"
224
  msgstr ""
225
 
226
- #: admin/manage-fields.php:150
227
  msgid "The height of the map."
228
  msgstr ""
229
 
230
- #: admin/manage-fields.php:152
231
  msgid "HTML Content"
232
  msgstr ""
233
 
234
- #: admin/manage-fields.php:152
235
  msgid "Add your HTML (or text) content"
236
  msgstr ""
237
 
238
- #: admin/manage-fields.php:153
239
  msgid "Phone Format"
240
  msgstr ""
241
 
242
- #: admin/manage-fields.php:153
243
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
244
  msgstr ""
245
 
246
- #: admin/manage-fields.php:153
247
  msgid "Eg. (###) ###-####"
248
  msgstr ""
249
 
250
- #: admin/manage-fields.php:153
251
  msgid "Empty field won't check for correct phone number."
252
  msgstr ""
253
 
254
- #: admin/manage-fields.php:154
255
  msgid "Heading Tag"
256
  msgstr ""
257
 
258
- #: admin/manage-fields.php:154
259
  msgid "Change heading field size on front-end forms"
260
  msgstr ""
261
 
262
- #: admin/manage-fields.php:155
263
  msgid "Min Number Value"
264
  msgstr ""
265
 
266
- #: admin/manage-fields.php:155
267
  msgid "Min allowed number value (0 to allow only positive numbers)"
268
  msgstr ""
269
 
270
- #: admin/manage-fields.php:155
271
  msgid "Leave it empty for no min value"
272
  msgstr ""
273
 
274
- #: admin/manage-fields.php:156
275
  msgid "Max Number Value"
276
  msgstr ""
277
 
278
- #: admin/manage-fields.php:156
279
  msgid "Max allowed number value (0 to allow only negative numbers)"
280
  msgstr ""
281
 
282
- #: admin/manage-fields.php:156
283
  msgid "Leave it empty for no max value"
284
  msgstr ""
285
 
286
- #: admin/manage-fields.php:157
287
  msgid "Number Step Value"
288
  msgstr ""
289
 
290
- #: admin/manage-fields.php:157
291
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
292
  msgstr ""
293
 
294
- #: admin/manage-fields.php:157
295
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
296
  msgstr ""
297
 
298
- #: admin/manage-fields.php:157
299
  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)"
300
  msgstr ""
301
 
302
- #: admin/manage-fields.php:157
303
  msgid "Leave it empty for no restriction"
304
  msgstr ""
305
 
306
- #: admin/manage-fields.php:561
307
  msgid "Albania Lek"
308
  msgstr ""
309
 
310
- #: admin/manage-fields.php:562
311
  msgid "Afghanistan Afghani"
312
  msgstr ""
313
 
314
- #: admin/manage-fields.php:563
315
  msgid "Argentina Peso"
316
  msgstr ""
317
 
318
- #: admin/manage-fields.php:564
319
  msgid "Aruba Guilder"
320
  msgstr ""
321
 
322
- #: admin/manage-fields.php:565
323
  msgid "Australia Dollar"
324
  msgstr ""
325
 
326
- #: admin/manage-fields.php:566
327
  msgid "Azerbaijan New Manat"
328
  msgstr ""
329
 
330
- #: admin/manage-fields.php:567
331
  msgid "Bahamas Dollar"
332
  msgstr ""
333
 
334
- #: admin/manage-fields.php:568
335
  msgid "Barbados Dollar"
336
  msgstr ""
337
 
338
- #: admin/manage-fields.php:569
339
  msgid "Bangladeshi taka"
340
  msgstr ""
341
 
342
- #: admin/manage-fields.php:570
343
  msgid "Belarus Ruble"
344
  msgstr ""
345
 
346
- #: admin/manage-fields.php:571
347
  msgid "Belize Dollar"
348
  msgstr ""
349
 
350
- #: admin/manage-fields.php:572
351
  msgid "Bermuda Dollar"
352
  msgstr ""
353
 
354
- #: admin/manage-fields.php:573
355
  msgid "Bolivia Boliviano"
356
  msgstr ""
357
 
358
- #: admin/manage-fields.php:574
359
  msgid "Bosnia and Herzegovina Convertible Marka"
360
  msgstr ""
361
 
362
- #: admin/manage-fields.php:575
363
  msgid "Botswana Pula"
364
  msgstr ""
365
 
366
- #: admin/manage-fields.php:576
367
  msgid "Bulgaria Lev"
368
  msgstr ""
369
 
370
- #: admin/manage-fields.php:577
371
  msgid "Brazil Real"
372
  msgstr ""
373
 
374
- #: admin/manage-fields.php:578
375
  msgid "Brunei Darussalam Dollar"
376
  msgstr ""
377
 
378
- #: admin/manage-fields.php:579
379
  msgid "Cambodia Riel"
380
  msgstr ""
381
 
382
- #: admin/manage-fields.php:580
383
  msgid "Canada Dollar"
384
  msgstr ""
385
 
386
- #: admin/manage-fields.php:581
387
  msgid "Cayman Islands Dollar"
388
  msgstr ""
389
 
390
- #: admin/manage-fields.php:582
391
  msgid "Chile Peso"
392
  msgstr ""
393
 
394
- #: admin/manage-fields.php:583
395
  msgid "China Yuan Renminbi"
396
  msgstr ""
397
 
398
- #: admin/manage-fields.php:584
399
  msgid "Colombia Peso"
400
  msgstr ""
401
 
402
- #: admin/manage-fields.php:585
403
  msgid "Costa Rica Colon"
404
  msgstr ""
405
 
406
- #: admin/manage-fields.php:586
407
  msgid "Croatia Kuna"
408
  msgstr ""
409
 
410
- #: admin/manage-fields.php:587
411
  msgid "Cuba Peso"
412
  msgstr ""
413
 
414
- #: admin/manage-fields.php:588
415
  msgid "Czech Republic Koruna"
416
  msgstr ""
417
 
418
- #: admin/manage-fields.php:589
419
  msgid "Denmark Krone"
420
  msgstr ""
421
 
422
- #: admin/manage-fields.php:590
423
  msgid "Dominican Republic Peso"
424
  msgstr ""
425
 
426
- #: admin/manage-fields.php:591
427
  msgid "East Caribbean Dollar"
428
  msgstr ""
429
 
430
- #: admin/manage-fields.php:592
431
  msgid "Egypt Pound"
432
  msgstr ""
433
 
434
- #: admin/manage-fields.php:593
435
  msgid "El Salvador Colon"
436
  msgstr ""
437
 
438
- #: admin/manage-fields.php:594
439
  msgid "Estonia Kroon"
440
  msgstr ""
441
 
442
- #: admin/manage-fields.php:595
443
  msgid "Euro"
444
  msgstr ""
445
 
446
- #: admin/manage-fields.php:596
447
  msgid "Falkland Islands (Malvinas) Pound"
448
  msgstr ""
449
 
450
- #: admin/manage-fields.php:597
451
  msgid "Fiji Dollar"
452
  msgstr ""
453
 
454
- #: admin/manage-fields.php:598
455
  msgid "Ghana Cedis"
456
  msgstr ""
457
 
458
- #: admin/manage-fields.php:599
459
  msgid "Gibraltar Pound"
460
  msgstr ""
461
 
462
- #: admin/manage-fields.php:600
463
  msgid "Guatemala Quetzal"
464
  msgstr ""
465
 
466
- #: admin/manage-fields.php:601
467
  msgid "Guernsey Pound"
468
  msgstr ""
469
 
470
- #: admin/manage-fields.php:602
471
  msgid "Guyana Dollar"
472
  msgstr ""
473
 
474
- #: admin/manage-fields.php:603
475
  msgid "Honduras Lempira"
476
  msgstr ""
477
 
478
- #: admin/manage-fields.php:604
479
  msgid "Hong Kong Dollar"
480
  msgstr ""
481
 
482
- #: admin/manage-fields.php:605
483
  msgid "Hungary Forint"
484
  msgstr ""
485
 
486
- #: admin/manage-fields.php:606
487
  msgid "Iceland Krona"
488
  msgstr ""
489
 
490
- #: admin/manage-fields.php:607
491
  msgid "India Rupee"
492
  msgstr ""
493
 
494
- #: admin/manage-fields.php:608
495
  msgid "Indonesia Rupiah"
496
  msgstr ""
497
 
498
- #: admin/manage-fields.php:609
499
  msgid "Iran Rial"
500
  msgstr ""
501
 
502
- #: admin/manage-fields.php:610
503
  msgid "Isle of Man Pound"
504
  msgstr ""
505
 
506
- #: admin/manage-fields.php:611
507
  msgid "Israel Shekel"
508
  msgstr ""
509
 
510
- #: admin/manage-fields.php:612
511
  msgid "Jamaica Dollar"
512
  msgstr ""
513
 
514
- #: admin/manage-fields.php:613
515
  msgid "Japan Yen"
516
  msgstr ""
517
 
518
- #: admin/manage-fields.php:614
519
  msgid "Jersey Pound"
520
  msgstr ""
521
 
522
- #: admin/manage-fields.php:615
523
  msgid "Kazakhstan Tenge"
524
  msgstr ""
525
 
526
- #: admin/manage-fields.php:616
527
  msgid "Korea (North) Won"
528
  msgstr ""
529
 
530
- #: admin/manage-fields.php:617
531
  msgid "Korea (South) Won"
532
  msgstr ""
533
 
534
- #: admin/manage-fields.php:618
535
  msgid "Kyrgyzstan Som"
536
  msgstr ""
537
 
538
- #: admin/manage-fields.php:619
539
  msgid "Laos Kip"
540
  msgstr ""
541
 
542
- #: admin/manage-fields.php:620
543
  msgid "Latvia Lat"
544
  msgstr ""
545
 
546
- #: admin/manage-fields.php:621
547
  msgid "Lebanon Pound"
548
  msgstr ""
549
 
550
- #: admin/manage-fields.php:622
551
  msgid "Liberia Dollar"
552
  msgstr ""
553
 
554
- #: admin/manage-fields.php:623
555
  msgid "Lithuania Litas"
556
  msgstr ""
557
 
558
- #: admin/manage-fields.php:624
559
  msgid "Macedonia Denar"
560
  msgstr ""
561
 
562
- #: admin/manage-fields.php:625
563
  msgid "Malaysia Ringgit"
564
  msgstr ""
565
 
566
- #: admin/manage-fields.php:626
567
  msgid "Mauritius Rupee"
568
  msgstr ""
569
 
570
- #: admin/manage-fields.php:627
571
  msgid "Mexico Peso"
572
  msgstr ""
573
 
574
- #: admin/manage-fields.php:628
575
  msgid "Mongolia Tughrik"
576
  msgstr ""
577
 
578
- #: admin/manage-fields.php:629
579
  msgid "Mozambique Metical"
580
  msgstr ""
581
 
582
- #: admin/manage-fields.php:630
583
  msgid "Namibia Dollar"
584
  msgstr ""
585
 
586
- #: admin/manage-fields.php:631
587
  msgid "Nepal Rupee"
588
  msgstr ""
589
 
590
- #: admin/manage-fields.php:632
591
  msgid "Netherlands Antilles Guilder"
592
  msgstr ""
593
 
594
- #: admin/manage-fields.php:633
595
  msgid "New Zealand Dollar"
596
  msgstr ""
597
 
598
- #: admin/manage-fields.php:634
599
  msgid "Nicaragua Cordoba"
600
  msgstr ""
601
 
602
- #: admin/manage-fields.php:635
603
  msgid "Nigeria Naira"
604
  msgstr ""
605
 
606
- #: admin/manage-fields.php:636
607
  msgid "Norway Krone"
608
  msgstr ""
609
 
610
- #: admin/manage-fields.php:637
611
  msgid "Oman Rial"
612
  msgstr ""
613
 
614
- #: admin/manage-fields.php:638
615
  msgid "Pakistan Rupee"
616
  msgstr ""
617
 
618
- #: admin/manage-fields.php:639
619
  msgid "Panama Balboa"
620
  msgstr ""
621
 
622
- #: admin/manage-fields.php:640
623
  msgid "Paraguay Guarani"
624
  msgstr ""
625
 
626
- #: admin/manage-fields.php:641
627
  msgid "Peru Nuevo Sol"
628
  msgstr ""
629
 
630
- #: admin/manage-fields.php:642
631
  msgid "Philippines Peso"
632
  msgstr ""
633
 
634
- #: admin/manage-fields.php:643
635
  msgid "Poland Zloty"
636
  msgstr ""
637
 
638
- #: admin/manage-fields.php:644
639
  msgid "Qatar Riyal"
640
  msgstr ""
641
 
642
- #: admin/manage-fields.php:645
643
  msgid "Romania New Leu"
644
  msgstr ""
645
 
646
- #: admin/manage-fields.php:646
647
  msgid "Russia Ruble"
648
  msgstr ""
649
 
650
- #: admin/manage-fields.php:647
651
  msgid "Saint Helena Pound"
652
  msgstr ""
653
 
654
- #: admin/manage-fields.php:648
655
  msgid "Saudi Arabia Riyal"
656
  msgstr ""
657
 
658
- #: admin/manage-fields.php:649
659
  msgid "Serbia Dinar"
660
  msgstr ""
661
 
662
- #: admin/manage-fields.php:650
663
  msgid "Seychelles Rupee"
664
  msgstr ""
665
 
666
- #: admin/manage-fields.php:651
667
  msgid "Singapore Dollar"
668
  msgstr ""
669
 
670
- #: admin/manage-fields.php:652
671
  msgid "Solomon Islands Dollar"
672
  msgstr ""
673
 
674
- #: admin/manage-fields.php:653
675
  msgid "Somalia Shilling"
676
  msgstr ""
677
 
678
- #: admin/manage-fields.php:654
679
  msgid "South Africa Rand"
680
  msgstr ""
681
 
682
- #: admin/manage-fields.php:655
683
  msgid "Sri Lanka Rupee"
684
  msgstr ""
685
 
686
- #: admin/manage-fields.php:656
687
  msgid "Sweden Krona"
688
  msgstr ""
689
 
690
- #: admin/manage-fields.php:657
691
  msgid "Switzerland Franc"
692
  msgstr ""
693
 
694
- #: admin/manage-fields.php:658
695
  msgid "Suriname Dollar"
696
  msgstr ""
697
 
698
- #: admin/manage-fields.php:659
699
  msgid "Syria Pound"
700
  msgstr ""
701
 
702
- #: admin/manage-fields.php:660
703
  msgid "Taiwan New Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:661
707
  msgid "Thailand Baht"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:662
711
  msgid "Trinidad and Tobago Dollar"
712
  msgstr ""
713
 
714
- #: admin/manage-fields.php:663 admin/manage-fields.php:664
 
715
  msgid "Turkey Lira"
716
  msgstr ""
717
 
718
- #: admin/manage-fields.php:665
719
  msgid "Tuvalu Dollar"
720
  msgstr ""
721
 
722
- #: admin/manage-fields.php:666
723
  msgid "Ukraine Hryvna"
724
  msgstr ""
725
 
726
- #: admin/manage-fields.php:667
727
  msgid "United Kingdom Pound"
728
  msgstr ""
729
 
730
- #: admin/manage-fields.php:668
731
  msgid "Uganda Shilling"
732
  msgstr ""
733
 
734
- #: admin/manage-fields.php:669
735
  msgid "US Dollar"
736
  msgstr ""
737
 
738
- #: admin/manage-fields.php:670
739
  msgid "Uruguay Peso"
740
  msgstr ""
741
 
742
- #: admin/manage-fields.php:671
743
  msgid "Uzbekistan Som"
744
  msgstr ""
745
 
746
- #: admin/manage-fields.php:672
747
  msgid "Venezuela Bolivar"
748
  msgstr ""
749
 
750
- #: admin/manage-fields.php:673
751
  msgid "Viet Nam Dong"
752
  msgstr ""
753
 
754
- #: admin/manage-fields.php:674
755
  msgid "Yemen Rial"
756
  msgstr ""
757
 
758
- #: admin/manage-fields.php:675
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
- #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
- #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
- #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
  msgid "You are not allowed to do this."
772
  msgstr ""
773
 
774
- #: features/admin-approval/class-admin-approval.php:461
775
- #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
777
  msgstr ""
778
 
779
- #: features/conditional-fields/conditional-fields.php:78
780
  msgid "Conditional Logic"
781
  msgstr ""
782
 
783
- #: features/conditional-fields/conditional-fields.php:79
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
- #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
791
- #: features/functions.php:685
792
  msgid "Incorrect phone number"
793
  msgstr ""
794
 
795
- #: front-end/class-formbuilder.php:113
796
  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."
797
  msgstr ""
798
 
799
- #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69
 
800
  msgid "Please add the Google Maps API key for this field."
801
  msgstr ""
802
 
803
- #: front-end/extra-fields/map/map.php:134
804
  msgid "Something went wrong. Please try again."
805
  msgstr ""
806
 
807
- #: front-end/extra-fields/number/number.php:69
808
  msgid "Please enter numbers only"
809
  msgstr ""
810
 
811
- #: front-end/extra-fields/number/number.php:73
812
  msgid "Value must be a multiplier of %1$s"
813
  msgstr ""
814
 
815
- #: front-end/extra-fields/number/number.php:77
816
  msgid "Value must be greater than or equal to %1$s"
817
  msgstr ""
818
 
819
- #: front-end/extra-fields/number/number.php:81
820
  msgid "Value must be less than or equal to %1$s"
821
  msgstr ""
822
 
823
- #: front-end/extra-fields/phone/phone.php:22
824
  msgid "Required phone number format: "
825
  msgstr ""
826
 
827
- #: front-end/extra-fields/select-country/select-country.php:10
828
  msgid "Bolivia, __( Plurinational State of"
829
  msgstr ""
830
 
831
- #: front-end/extra-fields/select-country/select-country.php:10
832
  msgid "Bonaire, __( Sint Eustatius and Saba"
833
  msgstr ""
834
 
835
- #: front-end/extra-fields/select-country/select-country.php:10
836
  msgid "Brunei Darussalam"
837
  msgstr ""
838
 
839
- #: front-end/extra-fields/select-country/select-country.php:10
840
  msgid "Cabo Verde"
841
  msgstr ""
842
 
843
- #: front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Cocos (Keeling) Islands"
845
  msgstr ""
846
 
847
- #: front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Congo"
849
  msgstr ""
850
 
851
- #: front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Congo, __( the Democratic Republic of the"
853
  msgstr ""
854
 
855
- #: front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cote dIvoire"
857
  msgstr ""
858
 
859
- #: front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Falkland Islands (Malvinas)"
861
  msgstr ""
862
 
863
- #: front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Holy See (Vatican City State)"
865
  msgstr ""
866
 
867
- #: front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Iran, __( Islamic Republic of"
869
  msgstr ""
870
 
871
- #: front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Korea, __( Democratic Peoples Republic of"
873
  msgstr ""
874
 
875
- #: front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Korea, __( Republic of"
877
  msgstr ""
878
 
879
- #: front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Lao Peoples Democratic Republic"
881
  msgstr ""
882
 
883
- #: front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Macedonia, __( the former Yugoslav Republic of"
885
  msgstr ""
886
 
887
- #: front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Micronesia, __( Federated States of"
889
  msgstr ""
890
 
891
- #: front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Moldova, __( Republic of"
893
  msgstr ""
894
 
895
- #: front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Palestine, __( State of"
897
  msgstr ""
898
 
899
- #: front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Russian Federation"
901
  msgstr ""
902
 
903
- #: front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
905
  msgstr ""
906
 
907
- #: front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Saint Martin (French part)"
909
  msgstr ""
910
 
911
- #: front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Sint Maarten (Dutch part)"
913
  msgstr ""
914
 
915
- #: front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Syrian Arab Republic"
917
  msgstr ""
918
 
919
- #: front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Taiwan, __( Province of China"
921
  msgstr ""
922
 
923
- #: front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Tanzania, __( United Republic of"
925
  msgstr ""
926
 
927
- #: front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Timor-Leste"
929
  msgstr ""
930
 
931
- #: front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Venezuela, __( Bolivarian Republic of"
933
  msgstr ""
934
 
935
- #: front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Viet Nam"
937
  msgstr ""
938
 
939
- #: front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Virgin Islands, __( British"
941
  msgstr ""
942
 
943
- #: front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Virgin Islands, __( U.S."
945
  msgstr ""
946
 
947
- #: modules/email-customizer/email-customizer.php:11
948
- #: modules/user-listing/userlisting.php:186
949
  msgid "User Fields Tags"
950
  msgstr ""
951
 
952
- #: modules/email-customizer/email-customizer.php:479
953
  msgid "The users selected password at signup"
954
  msgstr ""
955
 
956
- #: modules/email-customizer/user-email-customizer.php:278
957
  msgid "[{{site_name}}] Notice of Email Change"
958
  msgstr ""
959
 
960
- #: modules/email-customizer/user-email-customizer.php:289
961
  msgid "Changed Email Address Notification"
962
  msgstr ""
963
 
964
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
965
  msgid "Limit"
966
  msgstr ""
967
 
968
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
969
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
970
  msgstr ""
971
 
972
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
973
  msgid "General Limit"
974
  msgstr ""
975
 
976
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
977
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
978
  msgstr ""
979
 
980
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
981
  msgid "Limit reached message"
982
  msgstr ""
983
 
984
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
985
  msgid "The maximum number of fields has been reached."
986
  msgstr ""
987
 
988
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
989
  msgid "The popup message to display when the limit of repeater groups is reached."
990
  msgstr ""
991
 
992
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
993
  msgid "Limit per Role"
994
  msgstr ""
995
 
996
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
997
  msgid "Leave 0 for unlimited."
998
  msgstr ""
999
 
1000
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
1001
  msgid "Repeated field group"
1002
  msgstr ""
1003
 
1004
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
1005
  msgid "Manage field or group of fields that will be repeatable."
1006
  msgstr ""
1007
 
1008
- #: modules/repeater-field/admin/repeater-manage-fields.php:259
1009
  msgid "Edit field group"
1010
  msgstr ""
1011
 
1012
- #: modules/repeater-field/admin/repeater-manage-fields.php:260
1013
  msgid "Repeatable fields saved!"
1014
  msgstr ""
1015
 
1016
- #: modules/repeater-field/admin/repeater-manage-fields.php:277
1017
- #: modules/repeater-field/admin/repeater-manage-fields.php:326
1018
  msgid "Please enter a unique field title.\n"
1019
  msgstr ""
1020
 
1021
- #: modules/repeater-field/repeater-field.php:258
1022
  msgid "Are you sure you want to delete this?"
1023
  msgstr ""
1024
 
1025
- #: modules/user-listing/userlisting.php:192
1026
  msgid "Sort Tags"
1027
  msgstr ""
1028
 
1029
- #: modules/user-listing/userlisting.php:201
1030
- #: modules/user-listing/userlisting.php:2237
1031
  msgid "Faceted Menus"
1032
  msgstr ""
1033
 
1034
- #: modules/user-listing/userlisting.php:202
1035
  msgid "User Count"
1036
  msgstr ""
1037
 
1038
- #: modules/user-listing/userlisting.php:1536
1039
  msgid "Show All"
1040
  msgstr ""
1041
 
1042
- #: modules/user-listing/userlisting.php:1668
1043
  msgid "No options available"
1044
  msgstr ""
1045
 
1046
- #: modules/user-listing/userlisting.php:1807
1047
  msgid "Remove All Filters"
1048
  msgstr ""
1049
 
1050
- #: modules/user-listing/userlisting.php:2227
1051
  msgid "Label"
1052
  msgstr ""
1053
 
1054
- #: modules/user-listing/userlisting.php:2227
1055
  msgid "Choose the facet name that appears on the frontend"
1056
  msgstr ""
1057
 
1058
- #: modules/user-listing/userlisting.php:2228
1059
  msgid "Facet Type"
1060
  msgstr ""
1061
 
1062
- #: modules/user-listing/userlisting.php:2228
1063
  msgid "Choose the facet menu type"
1064
  msgstr ""
1065
 
1066
- #: modules/user-listing/userlisting.php:2229
1067
  msgid "Facet Meta"
1068
  msgstr ""
1069
 
1070
- #: modules/user-listing/userlisting.php:2229
1071
  msgid "Choose the meta field for the facet menu"
1072
  msgstr ""
1073
 
1074
- #: modules/user-listing/userlisting.php:2230
1075
  msgid "Behaviour"
1076
  msgstr ""
1077
 
1078
- #: modules/user-listing/userlisting.php:2230
1079
  msgid "Narrow the results"
1080
  msgstr ""
1081
 
1082
- #: modules/user-listing/userlisting.php:2230
1083
  msgid "Expand the results"
1084
  msgstr ""
1085
 
1086
- #: modules/user-listing/userlisting.php:2230
1087
  msgid "Choose how multiple selections affect the results"
1088
  msgstr ""
1089
 
1090
- #: modules/user-listing/userlisting.php:2231
1091
  msgid "Visible choices"
1092
  msgstr ""
1093
 
1094
- #: modules/user-listing/userlisting.php:2231
1095
  msgid "Show a toggle link after this many choices. Leave blank for all"
1096
  msgstr ""
1097
 
1098
- #: modules/user-listing/userlisting.php:2254
1099
  msgid "Search Fields"
1100
  msgstr ""
1101
 
1102
- #: modules/user-listing/userlisting.php:2254
1103
  msgid "Choose the fields in which the Search Field will look in"
1104
  msgstr ""
1105
 
1106
- #: modules/user-listing/userlisting.php:2259
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
- #: admin/add-ons.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  msgid "Recommended Plugins"
1112
  msgstr "Anbefalede plugins"
1113
 
1114
- #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
 
1115
  msgid "Free"
1116
  msgstr "Fri"
1117
 
1118
- #: admin/add-ons.php:221
1119
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
  msgstr "Accept user payments, create subscription plans and restrict content on your membership site."
1121
 
1122
- #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
 
1123
  msgid "More Details"
1124
  msgstr "Flere detaljer"
1125
 
1126
- #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
- #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
 
 
1128
  msgid "Plugin is <strong>inactive</strong>"
1129
  msgstr "Plugin er <strong>inaktiv</strong>"
1130
 
1131
- #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87
1132
- #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204
 
 
1133
  msgid "Plugin is <strong>active</strong>"
1134
  msgstr "Plugin er <strong>aktiv</strong>"
1135
 
1136
- #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146
 
1137
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1138
  msgstr "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1139
 
1140
- #: admin/pms-cross-promotion.php:10
1141
  msgid "Paid Accounts"
1142
  msgstr "Betalt konto"
1143
 
1144
- #: admin/pms-cross-promotion.php:33
1145
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
  msgstr "Paid Member Subscriptions - a free WordPress plugin"
1147
 
1148
- #: admin/pms-cross-promotion.php:37
1149
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
  msgstr "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1151
 
1152
- #: admin/pms-cross-promotion.php:40
1153
  msgid "Paid & Free Subscriptions"
1154
  msgstr "Betalt og fri tilmelding"
1155
 
1156
- #: admin/pms-cross-promotion.php:41
1157
  msgid "Restrict Content"
1158
  msgstr "Beskyt indhold"
1159
 
1160
- #: admin/pms-cross-promotion.php:42
1161
  msgid "Member Management"
1162
  msgstr "Medlemsstyring"
1163
 
1164
- #: admin/pms-cross-promotion.php:43
1165
  msgid "Email Templates"
1166
  msgstr "Email skabeloner"
1167
 
1168
- #: admin/pms-cross-promotion.php:44
1169
  msgid "Account Management"
1170
  msgstr "Kontostyring"
1171
 
1172
- #: admin/pms-cross-promotion.php:45
1173
  msgid "Subscription Management"
1174
  msgstr "Tilmeldingsstyring"
1175
 
1176
- #: admin/pms-cross-promotion.php:46
1177
  msgid "Payment Management"
1178
  msgstr "Betalingsstyring"
1179
 
1180
- #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "Plugin er aktiv"
1183
 
1184
- #: admin/pms-cross-promotion.php:84
1185
  msgid "Plugin has been activated"
1186
  msgstr "Plugin er aktiveret"
1187
 
1188
- #: admin/pms-cross-promotion.php:91
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Plugin er blevet deaktiveret"
1191
 
1192
- #: admin/pms-cross-promotion.php:104
1193
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
  msgstr "Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside."
1195
 
1196
- #: admin/pms-cross-promotion.php:155
1197
  msgid "Step by Step Quick Setup"
1198
  msgstr "Step by Step Quick Setup"
1199
 
1200
- #: features/email-confirmation/email-confirmation.php:400
1201
  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."
1202
  msgstr ""
1203
 
1204
- #: modules/custom-redirects/custom_redirects_admin.php:45
1205
  msgid "After Login"
1206
  msgstr "Efter logind"
1207
 
1208
- #: modules/custom-redirects/custom_redirects_admin.php:46
1209
  msgid "After Logout"
1210
  msgstr "Efter logud"
1211
 
1212
- #: modules/custom-redirects/custom_redirects_admin.php:47
1213
  msgid "After Registration"
1214
  msgstr "Efter tilmelding"
1215
 
1216
- #: modules/custom-redirects/custom_redirects_admin.php:48
1217
  msgid "After Edit Profile"
1218
  msgstr "Efter brugerprofil opdatering"
1219
 
1220
- #: modules/custom-redirects/custom_redirects_admin.php:49
1221
  msgid "After Successful Email Confirmation"
1222
  msgstr "Efter email bekræftelse"
1223
 
1224
- #: modules/custom-redirects/custom_redirects_admin.php:50
1225
  msgid "After Successful Password Reset"
1226
  msgstr "Efter psssword reset"
1227
 
1228
- #: modules/custom-redirects/custom_redirects_admin.php:51
1229
  msgid "Dashboard (redirect users from accessing the dashboard)"
1230
  msgstr "Dashboard (redirect users from accessing the dashboard)"
1231
 
1232
- #: modules/custom-redirects/custom_redirects_admin.php:55
1233
  msgid "User ID"
1234
  msgstr "Bruger ID"
1235
 
1236
- #: modules/custom-redirects/custom_redirects_admin.php:61
1237
  msgid "User ID or Username"
1238
  msgstr "Bruger ID eller Brugernavn"
1239
 
1240
- #: modules/custom-redirects/custom_redirects_admin.php:62
1241
  msgid "User ID / Username"
1242
  msgstr "Bruger ID / Brugernavn"
1243
 
1244
- #: modules/custom-redirects/custom_redirects_admin.php:62
1245
  msgid "Please select and enter the ID or username of your user."
1246
  msgstr "Vælg og intast ID eller brugernavn på din bruger"
1247
 
1248
- #: modules/custom-redirects/custom_redirects_admin.php:63
1249
- #: modules/custom-redirects/custom_redirects_admin.php:93
1250
- #: modules/custom-redirects/custom_redirects_admin.php:112
1251
- #: modules/custom-redirects/custom_redirects_admin.php:131
1252
  msgid "Redirect Type"
1253
  msgstr "Redirect Type"
1254
 
1255
- #: modules/custom-redirects/custom_redirects_admin.php:64
1256
- #: modules/custom-redirects/custom_redirects_admin.php:94
1257
- #: modules/custom-redirects/custom_redirects_admin.php:113
1258
- #: modules/custom-redirects/custom_redirects_admin.php:138
1259
  msgid "Redirect URL"
1260
  msgstr "Redirect URL"
1261
 
1262
- #: modules/custom-redirects/custom_redirects_admin.php:64
1263
- #: modules/custom-redirects/custom_redirects_admin.php:94
1264
- #: modules/custom-redirects/custom_redirects_admin.php:113
1265
- #: modules/custom-redirects/custom_redirects_admin.php:138
1266
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1267
  msgstr "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1268
 
1269
- #: modules/custom-redirects/custom_redirects_admin.php:71
1270
- #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr "Individual User Redirects"
1273
 
1274
- #: modules/custom-redirects/custom_redirects_admin.php:84
1275
  msgid "... Choose"
1276
  msgstr "... Vælg"
1277
 
1278
- #: modules/custom-redirects/custom_redirects_admin.php:92
1279
  msgid "Select a user role."
1280
  msgstr "Vælg brugerrolle"
1281
 
1282
- #: modules/custom-redirects/custom_redirects_admin.php:101
1283
- #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr "Rollebaseret bruger redirects"
1286
 
1287
- #: modules/custom-redirects/custom_redirects_admin.php:120
1288
- #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
- msgstr ""
1291
 
1292
- #: modules/custom-redirects/custom_redirects_admin.php:133
1293
  msgid "Login ( wp_login.php )"
1294
  msgstr "Logind ( wp_login.php )"
1295
 
1296
- #: modules/custom-redirects/custom_redirects_admin.php:134
1297
  msgid "Register ( wp-login.php?action=register )"
1298
  msgstr "Tilmeld ( wp-login.php?action=register )"
1299
 
1300
- #: modules/custom-redirects/custom_redirects_admin.php:135
1301
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1302
  msgstr "Mistet kodeord ( wp-login.php?action=lostpassword )"
1303
 
1304
- #: modules/custom-redirects/custom_redirects_admin.php:136
1305
  msgid "Author Archive ( http://sitename.com/author/admin )"
1306
  msgstr "Forfatter arkiv ( http://sitename.com/author/admin )"
1307
 
1308
- #: modules/custom-redirects/custom_redirects_admin.php:145
1309
  msgid "Redirect Default WordPress Forms and Pages"
1310
  msgstr "Redirect Default WordPress Forms and Pages"
1311
 
1312
- #: modules/custom-redirects/custom_redirects_admin.php:157
1313
  msgid "How does this work?"
1314
  msgstr "Hvordan virker dette ?"
1315
 
1316
- #: modules/custom-redirects/custom_redirects_admin.php:179
1317
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1318
  msgstr "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1319
 
1320
- #: modules/custom-redirects/custom_redirects_admin.php:193
1321
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1322
  msgstr "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1323
 
1324
- #: modules/custom-redirects/custom_redirects_admin.php:207
1325
- #: modules/custom-redirects/custom_redirects_admin.php:221
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr "<pre>Redirect</pre><pre>URL</pre>"
1328
 
1329
- #: modules/custom-redirects/custom_redirects_admin.php:236
1330
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
  msgstr "These redirects happen after a successful action, like registration or after a successful login."
1332
 
1333
- #: modules/custom-redirects/custom_redirects_admin.php:238
1334
  msgid "Which redirect happens depends on the following priority:"
1335
  msgstr "Which redirect happens depends on the following priority:"
1336
 
1337
- #: modules/custom-redirects/custom_redirects_admin.php:247
1338
  msgid "Redirect Default WordPress forms and pages"
1339
  msgstr "Redirect Default WordPress forms and pages"
1340
 
1341
- #: modules/custom-redirects/custom_redirects_admin.php:248
1342
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
  msgstr "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1344
 
1345
- #: modules/custom-redirects/custom_redirects_admin.php:250
1346
  msgid "Available tags for dynamic URLs"
1347
  msgstr "Available tags for dynamic URLs"
1348
 
1349
- #: modules/custom-redirects/custom_redirects_admin.php:251
1350
  msgid "You use the following tags in your URLs to redirect users to various pages."
1351
  msgstr "You use the following tags in your URLs to redirect users to various pages."
1352
 
1353
- #: modules/custom-redirects/custom_redirects_admin.php:253
1354
  msgid "generates a url of the current website homepage."
1355
  msgstr "generates a url of the current website homepage."
1356
 
1357
- #: modules/custom-redirects/custom_redirects_admin.php:254
1358
  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"
1359
  msgstr "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"
1360
 
1361
- #: modules/custom-redirects/custom_redirects_admin.php:255
1362
  msgid "the ID of the user"
1363
  msgstr "Bruger ID "
1364
 
1365
- #: modules/custom-redirects/custom_redirects_admin.php:256
1366
  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."
1367
  msgstr "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."
1368
 
1369
- #: modules/custom-redirects/custom_redirects_admin.php:257
1370
  msgid "the URL of the previously visited page"
1371
  msgstr "URL på sidst besøgte side"
1372
 
1373
- #: modules/custom-redirects/custom_redirects_admin.php:340
1374
- #: modules/custom-redirects/custom_redirects_admin.php:346
1375
- #: modules/custom-redirects/custom_redirects_admin.php:352
1376
  msgid "You can't add duplicate redirects!"
1377
  msgstr "Du kan ikke oprette duplicate redirects!"
1378
 
1379
- #: admin/admin-functions.php:41
1380
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1381
- msgstr ""
1382
 
1383
- #: admin/basic-info.php:37
1384
  msgid "Friction-less login using %s shortcode or a widget."
1385
  msgstr "Friction-less login using %s shortcode or a widget."
1386
 
1387
- #: admin/basic-info.php:41
1388
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1389
- msgstr ""
1390
 
1391
- #: admin/basic-info.php:45
1392
  msgid "Straight forward edit profile forms using %s shortcode."
1393
- msgstr ""
1394
 
1395
- #: admin/basic-info.php:58
1396
  msgid "Allow users to recover their password in the front-end using the %s."
1397
- msgstr ""
1398
 
1399
- #: admin/basic-info.php:140
1400
  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."
1401
- msgstr ""
1402
 
1403
- #: admin/general-settings.php:118
1404
  msgid "\"Admin Approval\" on User Role:"
1405
  msgstr "Admin godkendelse på denne brugerrolle"
1406
 
1407
- #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr "Select on what user roles to activate Admin Approval."
1410
 
1411
- #: admin/manage-fields.php:131
1412
  msgid "Display on PB forms"
1413
  msgstr "Se på PB forms"
1414
 
1415
- #: admin/manage-fields.php:131
1416
  msgid "PB Login"
1417
- msgstr ""
1418
 
1419
- #: admin/manage-fields.php:131
1420
  msgid "PB Register"
1421
- msgstr ""
1422
 
1423
- #: admin/manage-fields.php:131
1424
  msgid "PB Recover Password"
1425
- msgstr ""
1426
 
1427
- #: admin/manage-fields.php:131
1428
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1429
- msgstr ""
1430
 
1431
- #: admin/manage-fields.php:132
1432
  msgid "Display on default WP forms"
1433
- msgstr ""
1434
 
1435
- #: admin/manage-fields.php:132
1436
  msgid "Default WP Login"
1437
- msgstr ""
1438
 
1439
- #: admin/manage-fields.php:132
1440
  msgid "Default WP Register"
1441
- msgstr ""
1442
 
1443
- #: admin/manage-fields.php:132
1444
  msgid "Default WP Recover Password"
1445
- msgstr ""
1446
 
1447
- #: admin/manage-fields.php:132
1448
  msgid "Select on which default WP forms to display reCAPTCHA"
1449
  msgstr "Vælg på hvilne standard WP forms de vil se reCAPTCHA"
1450
 
1451
- #: admin/manage-fields.php:138 admin/manage-fields.php:139
1452
- #: admin/manage-fields.php:140
 
1453
  msgid "Default option of the field"
1454
  msgstr "Standard værdi på feltet"
1455
 
1456
- #: admin/manage-fields.php:279
1457
- #: front-end/extra-fields/select-country/select-country.php:10
1458
  msgid "Afghanistan"
1459
  msgstr "Afghanistan"
1460
 
1461
- #: admin/manage-fields.php:280
1462
- #: front-end/extra-fields/select-country/select-country.php:10
1463
  msgid "Aland Islands"
1464
  msgstr "Aland Islands"
1465
 
1466
- #: admin/manage-fields.php:281
1467
- #: front-end/extra-fields/select-country/select-country.php:10
1468
  msgid "Albania"
1469
  msgstr "Albania"
1470
 
1471
- #: admin/manage-fields.php:282
1472
- #: front-end/extra-fields/select-country/select-country.php:10
1473
  msgid "Algeria"
1474
  msgstr "Algeria"
1475
 
1476
- #: admin/manage-fields.php:283
1477
- #: front-end/extra-fields/select-country/select-country.php:10
1478
  msgid "American Samoa"
1479
  msgstr "American Samoa"
1480
 
1481
- #: admin/manage-fields.php:284
1482
- #: front-end/extra-fields/select-country/select-country.php:10
1483
  msgid "Andorra"
1484
  msgstr "Andorra"
1485
 
1486
- #: admin/manage-fields.php:285
1487
- #: front-end/extra-fields/select-country/select-country.php:10
1488
  msgid "Angola"
1489
  msgstr "Angola"
1490
 
1491
- #: admin/manage-fields.php:286
1492
- #: front-end/extra-fields/select-country/select-country.php:10
1493
  msgid "Anguilla"
1494
  msgstr "Anguilla"
1495
 
1496
- #: admin/manage-fields.php:287
1497
- #: front-end/extra-fields/select-country/select-country.php:10
1498
  msgid "Antarctica"
1499
  msgstr "Antarctica"
1500
 
1501
- #: admin/manage-fields.php:288
1502
- #: front-end/extra-fields/select-country/select-country.php:10
1503
  msgid "Antigua and Barbuda"
1504
  msgstr "Antigua and Barbuda"
1505
 
1506
- #: admin/manage-fields.php:289
1507
- #: front-end/extra-fields/select-country/select-country.php:10
1508
  msgid "Argentina"
1509
  msgstr "Argentina"
1510
 
1511
- #: admin/manage-fields.php:290
1512
- #: front-end/extra-fields/select-country/select-country.php:10
1513
  msgid "Armenia"
1514
  msgstr "Armenia"
1515
 
1516
- #: admin/manage-fields.php:291
1517
- #: front-end/extra-fields/select-country/select-country.php:10
1518
  msgid "Aruba"
1519
  msgstr "Aruba"
1520
 
1521
- #: admin/manage-fields.php:292
1522
- #: front-end/extra-fields/select-country/select-country.php:10
1523
  msgid "Australia"
1524
  msgstr "Australia"
1525
 
1526
- #: admin/manage-fields.php:293
1527
- #: front-end/extra-fields/select-country/select-country.php:10
1528
  msgid "Austria"
1529
  msgstr "Austria"
1530
 
1531
- #: admin/manage-fields.php:294
1532
- #: front-end/extra-fields/select-country/select-country.php:10
1533
  msgid "Azerbaijan"
1534
  msgstr "Azerbaijan"
1535
 
1536
- #: admin/manage-fields.php:295
1537
- #: front-end/extra-fields/select-country/select-country.php:10
1538
  msgid "Bahamas"
1539
  msgstr "Bahamas"
1540
 
1541
- #: admin/manage-fields.php:296
1542
- #: front-end/extra-fields/select-country/select-country.php:10
1543
  msgid "Bahrain"
1544
  msgstr "Bahrain"
1545
 
1546
- #: admin/manage-fields.php:297
1547
- #: front-end/extra-fields/select-country/select-country.php:10
1548
  msgid "Bangladesh"
1549
  msgstr "Bangladesh"
1550
 
1551
- #: admin/manage-fields.php:298
1552
- #: front-end/extra-fields/select-country/select-country.php:10
1553
  msgid "Barbados"
1554
  msgstr "Barbados"
1555
 
1556
- #: admin/manage-fields.php:299
1557
- #: front-end/extra-fields/select-country/select-country.php:10
1558
  msgid "Belarus"
1559
  msgstr "Belarus"
1560
 
1561
- #: admin/manage-fields.php:300
1562
- #: front-end/extra-fields/select-country/select-country.php:10
1563
  msgid "Belgium"
1564
  msgstr "Belgium"
1565
 
1566
- #: admin/manage-fields.php:301
1567
- #: front-end/extra-fields/select-country/select-country.php:10
1568
  msgid "Belize"
1569
  msgstr "Belize"
1570
 
1571
- #: admin/manage-fields.php:302
1572
- #: front-end/extra-fields/select-country/select-country.php:10
1573
  msgid "Benin"
1574
  msgstr "Benin"
1575
 
1576
- #: admin/manage-fields.php:303
1577
- #: front-end/extra-fields/select-country/select-country.php:10
1578
  msgid "Bermuda"
1579
  msgstr "Bermuda"
1580
 
1581
- #: admin/manage-fields.php:304
1582
- #: front-end/extra-fields/select-country/select-country.php:10
1583
  msgid "Bhutan"
1584
  msgstr "Bhutan"
1585
 
1586
- #: admin/manage-fields.php:305
1587
  msgid "Bolivia"
1588
  msgstr "Bolivia"
1589
 
1590
- #: admin/manage-fields.php:306
1591
  msgid "Bonaire, Saint Eustatius and Saba"
1592
  msgstr "Bonaire, Saint Eustatius and Saba"
1593
 
1594
- #: admin/manage-fields.php:307
1595
- #: front-end/extra-fields/select-country/select-country.php:10
1596
  msgid "Bosnia and Herzegovina"
1597
  msgstr "Bosnia and Herzegovina"
1598
 
1599
- #: admin/manage-fields.php:308
1600
- #: front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Botswana"
1602
  msgstr "Botswana"
1603
 
1604
- #: admin/manage-fields.php:309
1605
- #: front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Bouvet Island"
1607
  msgstr "Bouvet Island"
1608
 
1609
- #: admin/manage-fields.php:310
1610
- #: front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "Brazil"
1612
  msgstr "Brazil"
1613
 
1614
- #: admin/manage-fields.php:311
1615
- #: front-end/extra-fields/select-country/select-country.php:10
1616
  msgid "British Indian Ocean Territory"
1617
  msgstr "British Indian Ocean Territory"
1618
 
1619
- #: admin/manage-fields.php:312
1620
  msgid "British Virgin Islands"
1621
  msgstr "British Virgin Islands"
1622
 
1623
- #: admin/manage-fields.php:313
1624
  msgid "Brunei"
1625
  msgstr "Brunei"
1626
 
1627
- #: admin/manage-fields.php:314
1628
- #: front-end/extra-fields/select-country/select-country.php:10
1629
  msgid "Bulgaria"
1630
  msgstr "Bulgaria"
1631
 
1632
- #: admin/manage-fields.php:315
1633
- #: front-end/extra-fields/select-country/select-country.php:10
1634
  msgid "Burkina Faso"
1635
  msgstr "Burkina Faso"
1636
 
1637
- #: admin/manage-fields.php:316
1638
- #: front-end/extra-fields/select-country/select-country.php:10
1639
  msgid "Burundi"
1640
  msgstr "Burundi"
1641
 
1642
- #: admin/manage-fields.php:317
1643
- #: front-end/extra-fields/select-country/select-country.php:10
1644
  msgid "Cambodia"
1645
  msgstr "Cambodia"
1646
 
1647
- #: admin/manage-fields.php:318
1648
- #: front-end/extra-fields/select-country/select-country.php:10
1649
  msgid "Cameroon"
1650
  msgstr "Cameroon"
1651
 
1652
- #: admin/manage-fields.php:319
1653
- #: front-end/extra-fields/select-country/select-country.php:10
1654
  msgid "Canada"
1655
  msgstr "Canada"
1656
 
1657
- #: admin/manage-fields.php:320
1658
  msgid "Cape Verde"
1659
  msgstr "Cape Verde"
1660
 
1661
- #: admin/manage-fields.php:321
1662
- #: front-end/extra-fields/select-country/select-country.php:10
1663
  msgid "Cayman Islands"
1664
  msgstr "Cayman Islands"
1665
 
1666
- #: admin/manage-fields.php:322
1667
- #: front-end/extra-fields/select-country/select-country.php:10
1668
  msgid "Central African Republic"
1669
  msgstr "Central African Republic"
1670
 
1671
- #: admin/manage-fields.php:323
1672
- #: front-end/extra-fields/select-country/select-country.php:10
1673
  msgid "Chad"
1674
  msgstr "Chad"
1675
 
1676
- #: admin/manage-fields.php:324
1677
- #: front-end/extra-fields/select-country/select-country.php:10
1678
  msgid "Chile"
1679
  msgstr "Chile"
1680
 
1681
- #: admin/manage-fields.php:325
1682
- #: front-end/extra-fields/select-country/select-country.php:10
1683
  msgid "China"
1684
  msgstr "China"
1685
 
1686
- #: admin/manage-fields.php:326
1687
- #: front-end/extra-fields/select-country/select-country.php:10
1688
  msgid "Christmas Island"
1689
  msgstr "Christmas Island"
1690
 
1691
- #: admin/manage-fields.php:327
1692
  msgid "Cocos Islands"
1693
  msgstr "Cocos Islands"
1694
 
1695
- #: admin/manage-fields.php:328
1696
- #: front-end/extra-fields/select-country/select-country.php:10
1697
  msgid "Colombia"
1698
  msgstr "Colombia"
1699
 
1700
- #: admin/manage-fields.php:329
1701
- #: front-end/extra-fields/select-country/select-country.php:10
1702
  msgid "Comoros"
1703
  msgstr "Comoros"
1704
 
1705
- #: admin/manage-fields.php:330
1706
- #: front-end/extra-fields/select-country/select-country.php:10
1707
  msgid "Cook Islands"
1708
  msgstr "Cook Islands"
1709
 
1710
- #: admin/manage-fields.php:331
1711
- #: front-end/extra-fields/select-country/select-country.php:10
1712
  msgid "Costa Rica"
1713
  msgstr "Costa Rica"
1714
 
1715
- #: admin/manage-fields.php:332
1716
- #: front-end/extra-fields/select-country/select-country.php:10
1717
  msgid "Croatia"
1718
  msgstr "Croatia"
1719
 
1720
- #: admin/manage-fields.php:333
1721
- #: front-end/extra-fields/select-country/select-country.php:10
1722
  msgid "Cuba"
1723
  msgstr "Cuba"
1724
 
1725
- #: admin/manage-fields.php:334
1726
- #: front-end/extra-fields/select-country/select-country.php:10
1727
  msgid "Curacao"
1728
  msgstr "Curacao"
1729
 
1730
- #: admin/manage-fields.php:335
1731
- #: front-end/extra-fields/select-country/select-country.php:10
1732
  msgid "Cyprus"
1733
  msgstr "Cyprus"
1734
 
1735
- #: admin/manage-fields.php:336
1736
- #: front-end/extra-fields/select-country/select-country.php:10
1737
  msgid "Czech Republic"
1738
  msgstr "Czech Republic"
1739
 
1740
- #: admin/manage-fields.php:337
1741
  msgid "Democratic Republic of the Congo"
1742
  msgstr "Democratic Republic of the Congo"
1743
 
1744
- #: admin/manage-fields.php:338
1745
- #: front-end/extra-fields/select-country/select-country.php:10
1746
  msgid "Denmark"
1747
  msgstr "Denmark"
1748
 
1749
- #: admin/manage-fields.php:339
1750
- #: front-end/extra-fields/select-country/select-country.php:10
1751
  msgid "Djibouti"
1752
  msgstr "Djibouti"
1753
 
1754
- #: admin/manage-fields.php:340
1755
- #: front-end/extra-fields/select-country/select-country.php:10
1756
  msgid "Dominica"
1757
  msgstr "Dominica"
1758
 
1759
- #: admin/manage-fields.php:341
1760
- #: front-end/extra-fields/select-country/select-country.php:10
1761
  msgid "Dominican Republic"
1762
  msgstr "Dominican Republic"
1763
 
1764
- #: admin/manage-fields.php:342
1765
  msgid "East Timor"
1766
  msgstr "East Timor"
1767
 
1768
- #: admin/manage-fields.php:343
1769
- #: front-end/extra-fields/select-country/select-country.php:10
1770
  msgid "Ecuador"
1771
  msgstr "Ecuador"
1772
 
1773
- #: admin/manage-fields.php:344
1774
- #: front-end/extra-fields/select-country/select-country.php:10
1775
  msgid "Egypt"
1776
  msgstr "Egypt"
1777
 
1778
- #: admin/manage-fields.php:345
1779
- #: front-end/extra-fields/select-country/select-country.php:10
1780
  msgid "El Salvador"
1781
  msgstr "El Salvador"
1782
 
1783
- #: admin/manage-fields.php:346
1784
- #: front-end/extra-fields/select-country/select-country.php:10
1785
  msgid "Equatorial Guinea"
1786
  msgstr "Equatorial Guinea"
1787
 
1788
- #: admin/manage-fields.php:347
1789
- #: front-end/extra-fields/select-country/select-country.php:10
1790
  msgid "Eritrea"
1791
  msgstr "Eritrea"
1792
 
1793
- #: admin/manage-fields.php:348
1794
- #: front-end/extra-fields/select-country/select-country.php:10
1795
  msgid "Estonia"
1796
  msgstr "Estonia"
1797
 
1798
- #: admin/manage-fields.php:349
1799
- #: front-end/extra-fields/select-country/select-country.php:10
1800
  msgid "Ethiopia"
1801
  msgstr "Ethiopia"
1802
 
1803
- #: admin/manage-fields.php:350
1804
  msgid "Falkland Islands"
1805
  msgstr "Falkland Islands"
1806
 
1807
- #: admin/manage-fields.php:351
1808
- #: front-end/extra-fields/select-country/select-country.php:10
1809
  msgid "Faroe Islands"
1810
  msgstr "Faroe Islands"
1811
 
1812
- #: admin/manage-fields.php:352
1813
- #: front-end/extra-fields/select-country/select-country.php:10
1814
  msgid "Fiji"
1815
  msgstr "Fiji"
1816
 
1817
- #: admin/manage-fields.php:353
1818
- #: front-end/extra-fields/select-country/select-country.php:10
1819
  msgid "Finland"
1820
  msgstr "Finland"
1821
 
1822
- #: admin/manage-fields.php:354
1823
- #: front-end/extra-fields/select-country/select-country.php:10
1824
  msgid "France"
1825
  msgstr "France"
1826
 
1827
- #: admin/manage-fields.php:355
1828
- #: front-end/extra-fields/select-country/select-country.php:10
1829
  msgid "French Guiana"
1830
  msgstr "French Guiana"
1831
 
1832
- #: admin/manage-fields.php:356
1833
- #: front-end/extra-fields/select-country/select-country.php:10
1834
  msgid "French Polynesia"
1835
  msgstr "French Polynesia"
1836
 
1837
- #: admin/manage-fields.php:357
1838
- #: front-end/extra-fields/select-country/select-country.php:10
1839
  msgid "French Southern Territories"
1840
  msgstr "French Southern Territories"
1841
 
1842
- #: admin/manage-fields.php:358
1843
- #: front-end/extra-fields/select-country/select-country.php:10
1844
  msgid "Gabon"
1845
  msgstr "Gabon"
1846
 
1847
- #: admin/manage-fields.php:359
1848
- #: front-end/extra-fields/select-country/select-country.php:10
1849
  msgid "Gambia"
1850
  msgstr "Gambia"
1851
 
1852
- #: admin/manage-fields.php:360
1853
- #: front-end/extra-fields/select-country/select-country.php:10
1854
  msgid "Georgia"
1855
  msgstr "Georgia"
1856
 
1857
- #: admin/manage-fields.php:361
1858
- #: front-end/extra-fields/select-country/select-country.php:10
1859
  msgid "Germany"
1860
  msgstr "Germany"
1861
 
1862
- #: admin/manage-fields.php:362
1863
- #: front-end/extra-fields/select-country/select-country.php:10
1864
  msgid "Ghana"
1865
  msgstr "Ghana"
1866
 
1867
- #: admin/manage-fields.php:363
1868
- #: front-end/extra-fields/select-country/select-country.php:10
1869
  msgid "Gibraltar"
1870
  msgstr "Gibraltar"
1871
 
1872
- #: admin/manage-fields.php:364
1873
- #: front-end/extra-fields/select-country/select-country.php:10
1874
  msgid "Greece"
1875
  msgstr "Greece"
1876
 
1877
- #: admin/manage-fields.php:365
1878
- #: front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Greenland"
1880
  msgstr "Greenland"
1881
 
1882
- #: admin/manage-fields.php:366
1883
- #: front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Grenada"
1885
  msgstr "Grenada"
1886
 
1887
- #: admin/manage-fields.php:367
1888
- #: front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Guadeloupe"
1890
  msgstr "Guadeloupe"
1891
 
1892
- #: admin/manage-fields.php:368
1893
- #: front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Guam"
1895
  msgstr "Guam"
1896
 
1897
- #: admin/manage-fields.php:369
1898
- #: front-end/extra-fields/select-country/select-country.php:10
1899
  msgid "Guatemala"
1900
  msgstr "Guatemala"
1901
 
1902
- #: admin/manage-fields.php:370
1903
- #: front-end/extra-fields/select-country/select-country.php:10
1904
  msgid "Guernsey"
1905
  msgstr "Guernsey"
1906
 
1907
- #: admin/manage-fields.php:371
1908
- #: front-end/extra-fields/select-country/select-country.php:10
1909
  msgid "Guinea"
1910
  msgstr "Guinea"
1911
 
1912
- #: admin/manage-fields.php:372
1913
- #: front-end/extra-fields/select-country/select-country.php:10
1914
  msgid "Guinea-Bissau"
1915
  msgstr "Guinea-Bissau"
1916
 
1917
- #: admin/manage-fields.php:373
1918
- #: front-end/extra-fields/select-country/select-country.php:10
1919
  msgid "Guyana"
1920
  msgstr "Guyana"
1921
 
1922
- #: admin/manage-fields.php:374
1923
- #: front-end/extra-fields/select-country/select-country.php:10
1924
  msgid "Haiti"
1925
  msgstr "Haiti"
1926
 
1927
- #: admin/manage-fields.php:375
1928
- #: front-end/extra-fields/select-country/select-country.php:10
1929
  msgid "Heard Island and McDonald Islands"
1930
  msgstr "Heard Island and McDonald Islands"
1931
 
1932
- #: admin/manage-fields.php:376
1933
- #: front-end/extra-fields/select-country/select-country.php:10
1934
  msgid "Honduras"
1935
  msgstr "Honduras"
1936
 
1937
- #: admin/manage-fields.php:377
1938
- #: front-end/extra-fields/select-country/select-country.php:10
1939
  msgid "Hong Kong"
1940
  msgstr "Hong Kong"
1941
 
1942
- #: admin/manage-fields.php:378
1943
- #: front-end/extra-fields/select-country/select-country.php:10
1944
  msgid "Hungary"
1945
  msgstr "Hungary"
1946
 
1947
- #: admin/manage-fields.php:379
1948
- #: front-end/extra-fields/select-country/select-country.php:10
1949
  msgid "Iceland"
1950
  msgstr "Iceland"
1951
 
1952
- #: admin/manage-fields.php:380
1953
- #: front-end/extra-fields/select-country/select-country.php:10
1954
  msgid "India"
1955
  msgstr "India"
1956
 
1957
- #: admin/manage-fields.php:381
1958
- #: front-end/extra-fields/select-country/select-country.php:10
1959
  msgid "Indonesia"
1960
  msgstr "Indonesia"
1961
 
1962
- #: admin/manage-fields.php:382
1963
  msgid "Iran"
1964
  msgstr "Iran"
1965
 
1966
- #: admin/manage-fields.php:383
1967
- #: front-end/extra-fields/select-country/select-country.php:10
1968
  msgid "Iraq"
1969
  msgstr "Iraq"
1970
 
1971
- #: admin/manage-fields.php:384
1972
- #: front-end/extra-fields/select-country/select-country.php:10
1973
  msgid "Ireland"
1974
  msgstr "Ireland"
1975
 
1976
- #: admin/manage-fields.php:385
1977
- #: front-end/extra-fields/select-country/select-country.php:10
1978
  msgid "Isle of Man"
1979
  msgstr "Isle of Man"
1980
 
1981
- #: admin/manage-fields.php:386
1982
- #: front-end/extra-fields/select-country/select-country.php:10
1983
  msgid "Israel"
1984
  msgstr "Israel"
1985
 
1986
- #: admin/manage-fields.php:387
1987
- #: front-end/extra-fields/select-country/select-country.php:10
1988
  msgid "Italy"
1989
  msgstr "Italy"
1990
 
1991
- #: admin/manage-fields.php:388
1992
  msgid "Ivory Coast"
1993
  msgstr "Ivory Coast"
1994
 
1995
- #: admin/manage-fields.php:389
1996
- #: front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Jamaica"
1998
  msgstr "Jamaica"
1999
 
2000
- #: admin/manage-fields.php:390
2001
- #: front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Japan"
2003
  msgstr "Japan"
2004
 
2005
- #: admin/manage-fields.php:391
2006
- #: front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Jersey"
2008
  msgstr "Jersey"
2009
 
2010
- #: admin/manage-fields.php:392
2011
- #: front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Jordan"
2013
  msgstr "Jordan"
2014
 
2015
- #: admin/manage-fields.php:393
2016
- #: front-end/extra-fields/select-country/select-country.php:10
2017
  msgid "Kazakhstan"
2018
  msgstr "Kazakhstan"
2019
 
2020
- #: admin/manage-fields.php:394
2021
- #: front-end/extra-fields/select-country/select-country.php:10
2022
  msgid "Kenya"
2023
  msgstr "Kenya"
2024
 
2025
- #: admin/manage-fields.php:395
2026
- #: front-end/extra-fields/select-country/select-country.php:10
2027
  msgid "Kiribati"
2028
  msgstr "Kiribati"
2029
 
2030
- #: admin/manage-fields.php:396
2031
  msgid "Kosovo"
2032
  msgstr "Kosovo"
2033
 
2034
- #: admin/manage-fields.php:397
2035
- #: front-end/extra-fields/select-country/select-country.php:10
2036
  msgid "Kuwait"
2037
  msgstr "Kuwait"
2038
 
2039
- #: admin/manage-fields.php:398
2040
- #: front-end/extra-fields/select-country/select-country.php:10
2041
  msgid "Kyrgyzstan"
2042
  msgstr "Kyrgyzstan"
2043
 
2044
- #: admin/manage-fields.php:399
2045
  msgid "Laos"
2046
  msgstr "Laos"
2047
 
2048
- #: admin/manage-fields.php:400
2049
- #: front-end/extra-fields/select-country/select-country.php:10
2050
  msgid "Latvia"
2051
  msgstr "Latvia"
2052
 
2053
- #: admin/manage-fields.php:401
2054
- #: front-end/extra-fields/select-country/select-country.php:10
2055
  msgid "Lebanon"
2056
  msgstr "Lebanon"
2057
 
2058
- #: admin/manage-fields.php:402
2059
- #: front-end/extra-fields/select-country/select-country.php:10
2060
  msgid "Lesotho"
2061
  msgstr "Lesotho"
2062
 
2063
- #: admin/manage-fields.php:403
2064
- #: front-end/extra-fields/select-country/select-country.php:10
2065
  msgid "Liberia"
2066
  msgstr "Liberia"
2067
 
2068
- #: admin/manage-fields.php:404
2069
- #: front-end/extra-fields/select-country/select-country.php:10
2070
  msgid "Libya"
2071
  msgstr "Libya"
2072
 
2073
- #: admin/manage-fields.php:405
2074
- #: front-end/extra-fields/select-country/select-country.php:10
2075
  msgid "Liechtenstein"
2076
  msgstr "Liechtenstein"
2077
 
2078
- #: admin/manage-fields.php:406
2079
- #: front-end/extra-fields/select-country/select-country.php:10
2080
  msgid "Lithuania"
2081
  msgstr "Lithuania"
2082
 
2083
- #: admin/manage-fields.php:407
2084
- #: front-end/extra-fields/select-country/select-country.php:10
2085
  msgid "Luxembourg"
2086
  msgstr "Luxembourg"
2087
 
2088
- #: admin/manage-fields.php:408
2089
- #: front-end/extra-fields/select-country/select-country.php:10
2090
  msgid "Macao"
2091
  msgstr "Macao"
2092
 
2093
- #: admin/manage-fields.php:409
2094
  msgid "Macedonia"
2095
  msgstr "Macedonia"
2096
 
2097
- #: admin/manage-fields.php:410
2098
- #: front-end/extra-fields/select-country/select-country.php:10
2099
  msgid "Madagascar"
2100
  msgstr "Madagascar"
2101
 
2102
- #: admin/manage-fields.php:411
2103
- #: front-end/extra-fields/select-country/select-country.php:10
2104
  msgid "Malawi"
2105
  msgstr "Malawi"
2106
 
2107
- #: admin/manage-fields.php:412
2108
- #: front-end/extra-fields/select-country/select-country.php:10
2109
  msgid "Malaysia"
2110
  msgstr "Malaysia"
2111
 
2112
- #: admin/manage-fields.php:413
2113
- #: front-end/extra-fields/select-country/select-country.php:10
2114
  msgid "Maldives"
2115
  msgstr "Maldives"
2116
 
2117
- #: admin/manage-fields.php:414
2118
- #: front-end/extra-fields/select-country/select-country.php:10
2119
  msgid "Mali"
2120
  msgstr "Mali"
2121
 
2122
- #: admin/manage-fields.php:415
2123
- #: front-end/extra-fields/select-country/select-country.php:10
2124
  msgid "Malta"
2125
  msgstr "Malta"
2126
 
2127
- #: admin/manage-fields.php:416
2128
- #: front-end/extra-fields/select-country/select-country.php:10
2129
  msgid "Marshall Islands"
2130
  msgstr "Marshall Islands"
2131
 
2132
- #: admin/manage-fields.php:417
2133
- #: front-end/extra-fields/select-country/select-country.php:10
2134
  msgid "Martinique"
2135
  msgstr "Martinique"
2136
 
2137
- #: admin/manage-fields.php:418
2138
- #: front-end/extra-fields/select-country/select-country.php:10
2139
  msgid "Mauritania"
2140
  msgstr "Mauritania"
2141
 
2142
- #: admin/manage-fields.php:419
2143
- #: front-end/extra-fields/select-country/select-country.php:10
2144
  msgid "Mauritius"
2145
  msgstr "Mauritius"
2146
 
2147
- #: admin/manage-fields.php:420
2148
- #: front-end/extra-fields/select-country/select-country.php:10
2149
  msgid "Mayotte"
2150
  msgstr "Mayotte"
2151
 
2152
- #: admin/manage-fields.php:421
2153
- #: front-end/extra-fields/select-country/select-country.php:10
2154
  msgid "Mexico"
2155
  msgstr "Mexico"
2156
 
2157
- #: admin/manage-fields.php:422
2158
  msgid "Micronesia"
2159
  msgstr "Micronesia"
2160
 
2161
- #: admin/manage-fields.php:423
2162
  msgid "Moldova"
2163
  msgstr "Moldova"
2164
 
2165
- #: admin/manage-fields.php:424
2166
- #: front-end/extra-fields/select-country/select-country.php:10
2167
  msgid "Monaco"
2168
  msgstr "Monaco"
2169
 
2170
- #: admin/manage-fields.php:425
2171
- #: front-end/extra-fields/select-country/select-country.php:10
2172
  msgid "Mongolia"
2173
  msgstr "Mongolia"
2174
 
2175
- #: admin/manage-fields.php:426
2176
- #: front-end/extra-fields/select-country/select-country.php:10
2177
  msgid "Montenegro"
2178
  msgstr "Montenegro"
2179
 
2180
- #: admin/manage-fields.php:427
2181
- #: front-end/extra-fields/select-country/select-country.php:10
2182
  msgid "Montserrat"
2183
  msgstr "Montserrat"
2184
 
2185
- #: admin/manage-fields.php:428
2186
- #: front-end/extra-fields/select-country/select-country.php:10
2187
  msgid "Morocco"
2188
  msgstr "Morocco"
2189
 
2190
- #: admin/manage-fields.php:429
2191
- #: front-end/extra-fields/select-country/select-country.php:10
2192
  msgid "Mozambique"
2193
  msgstr "Mozambique"
2194
 
2195
- #: admin/manage-fields.php:430
2196
- #: front-end/extra-fields/select-country/select-country.php:10
2197
  msgid "Myanmar"
2198
  msgstr "Myanmar"
2199
 
2200
- #: admin/manage-fields.php:431
2201
- #: front-end/extra-fields/select-country/select-country.php:10
2202
  msgid "Namibia"
2203
  msgstr "Namibia"
2204
 
2205
- #: admin/manage-fields.php:432
2206
- #: front-end/extra-fields/select-country/select-country.php:10
2207
  msgid "Nauru"
2208
  msgstr "Nauru"
2209
 
2210
- #: admin/manage-fields.php:433
2211
- #: front-end/extra-fields/select-country/select-country.php:10
2212
  msgid "Nepal"
2213
  msgstr "Nepal"
2214
 
2215
- #: admin/manage-fields.php:434
2216
- #: front-end/extra-fields/select-country/select-country.php:10
2217
  msgid "Netherlands"
2218
  msgstr "Netherlands"
2219
 
2220
- #: admin/manage-fields.php:435
2221
- #: front-end/extra-fields/select-country/select-country.php:10
2222
  msgid "New Caledonia"
2223
  msgstr "New Caledonia"
2224
 
2225
- #: admin/manage-fields.php:436
2226
- #: front-end/extra-fields/select-country/select-country.php:10
2227
  msgid "New Zealand"
2228
  msgstr "New Zealand"
2229
 
2230
- #: admin/manage-fields.php:437
2231
- #: front-end/extra-fields/select-country/select-country.php:10
2232
  msgid "Nicaragua"
2233
  msgstr "Nicaragua"
2234
 
2235
- #: admin/manage-fields.php:438
2236
- #: front-end/extra-fields/select-country/select-country.php:10
2237
  msgid "Niger"
2238
  msgstr "Niger"
2239
 
2240
- #: admin/manage-fields.php:439
2241
- #: front-end/extra-fields/select-country/select-country.php:10
2242
  msgid "Nigeria"
2243
  msgstr "Nigeria"
2244
 
2245
- #: admin/manage-fields.php:440
2246
- #: front-end/extra-fields/select-country/select-country.php:10
2247
  msgid "Niue"
2248
  msgstr "Niue"
2249
 
2250
- #: admin/manage-fields.php:441
2251
- #: front-end/extra-fields/select-country/select-country.php:10
2252
  msgid "Norfolk Island"
2253
  msgstr "Norfolk Island"
2254
 
2255
- #: admin/manage-fields.php:442
2256
  msgid "North Korea"
2257
  msgstr "North Korea"
2258
 
2259
- #: admin/manage-fields.php:443
2260
- #: front-end/extra-fields/select-country/select-country.php:10
2261
  msgid "Northern Mariana Islands"
2262
  msgstr "Northern Mariana Islands"
2263
 
2264
- #: admin/manage-fields.php:444
2265
- #: front-end/extra-fields/select-country/select-country.php:10
2266
  msgid "Norway"
2267
  msgstr "Norway"
2268
 
2269
- #: admin/manage-fields.php:445
2270
- #: front-end/extra-fields/select-country/select-country.php:10
2271
  msgid "Oman"
2272
  msgstr "Oman"
2273
 
2274
- #: admin/manage-fields.php:446
2275
- #: front-end/extra-fields/select-country/select-country.php:10
2276
  msgid "Pakistan"
2277
  msgstr "Pakistan"
2278
 
2279
- #: admin/manage-fields.php:447
2280
- #: front-end/extra-fields/select-country/select-country.php:10
2281
  msgid "Palau"
2282
  msgstr "Palau"
2283
 
2284
- #: admin/manage-fields.php:448
2285
  msgid "Palestinian Territory"
2286
  msgstr "Palestinian Territory"
2287
 
2288
- #: admin/manage-fields.php:449
2289
- #: front-end/extra-fields/select-country/select-country.php:10
2290
  msgid "Panama"
2291
  msgstr "Panama"
2292
 
2293
- #: admin/manage-fields.php:450
2294
- #: front-end/extra-fields/select-country/select-country.php:10
2295
  msgid "Papua New Guinea"
2296
  msgstr "Papua New Guinea"
2297
 
2298
- #: admin/manage-fields.php:451
2299
- #: front-end/extra-fields/select-country/select-country.php:10
2300
  msgid "Paraguay"
2301
  msgstr "Paraguay"
2302
 
2303
- #: admin/manage-fields.php:452
2304
- #: front-end/extra-fields/select-country/select-country.php:10
2305
  msgid "Peru"
2306
  msgstr "Peru"
2307
 
2308
- #: admin/manage-fields.php:453
2309
- #: front-end/extra-fields/select-country/select-country.php:10
2310
  msgid "Philippines"
2311
  msgstr "Philippines"
2312
 
2313
- #: admin/manage-fields.php:454
2314
- #: front-end/extra-fields/select-country/select-country.php:10
2315
  msgid "Pitcairn"
2316
  msgstr "Pitcairn"
2317
 
2318
- #: admin/manage-fields.php:455
2319
- #: front-end/extra-fields/select-country/select-country.php:10
2320
  msgid "Poland"
2321
  msgstr "Poland"
2322
 
2323
- #: admin/manage-fields.php:456
2324
- #: front-end/extra-fields/select-country/select-country.php:10
2325
  msgid "Portugal"
2326
  msgstr "Portugal"
2327
 
2328
- #: admin/manage-fields.php:457
2329
- #: front-end/extra-fields/select-country/select-country.php:10
2330
  msgid "Puerto Rico"
2331
  msgstr "Puerto Rico"
2332
 
2333
- #: admin/manage-fields.php:458
2334
- #: front-end/extra-fields/select-country/select-country.php:10
2335
  msgid "Qatar"
2336
  msgstr "Qatar"
2337
 
2338
- #: admin/manage-fields.php:459
2339
  msgid "Republic of the Congo"
2340
  msgstr "Republic of the Congo"
2341
 
2342
- #: admin/manage-fields.php:460
2343
- #: front-end/extra-fields/select-country/select-country.php:10
2344
  msgid "Reunion"
2345
  msgstr "Reunion"
2346
 
2347
- #: admin/manage-fields.php:461
2348
- #: front-end/extra-fields/select-country/select-country.php:10
2349
  msgid "Romania"
2350
  msgstr "Romania"
2351
 
2352
- #: admin/manage-fields.php:462
2353
  msgid "Russia"
2354
  msgstr "Russia"
2355
 
2356
- #: admin/manage-fields.php:463
2357
- #: front-end/extra-fields/select-country/select-country.php:10
2358
  msgid "Rwanda"
2359
  msgstr "Rwanda"
2360
 
2361
- #: admin/manage-fields.php:464
2362
- #: front-end/extra-fields/select-country/select-country.php:10
2363
  msgid "Saint Barthelemy"
2364
  msgstr "Saint Barthelemy"
2365
 
2366
- #: admin/manage-fields.php:465
2367
  msgid "Saint Helena"
2368
  msgstr "Saint Helena"
2369
 
2370
- #: admin/manage-fields.php:466
2371
- #: front-end/extra-fields/select-country/select-country.php:10
2372
  msgid "Saint Kitts and Nevis"
2373
  msgstr "Saint Kitts and Nevis"
2374
 
2375
- #: admin/manage-fields.php:467
2376
- #: front-end/extra-fields/select-country/select-country.php:10
2377
  msgid "Saint Lucia"
2378
  msgstr "Saint Lucia"
2379
 
2380
- #: admin/manage-fields.php:468
2381
  msgid "Saint Martin"
2382
  msgstr "Saint Martin"
2383
 
2384
- #: admin/manage-fields.php:469
2385
- #: front-end/extra-fields/select-country/select-country.php:10
2386
  msgid "Saint Pierre and Miquelon"
2387
  msgstr "Saint Pierre and Miquelon"
2388
 
2389
- #: admin/manage-fields.php:470
2390
- #: front-end/extra-fields/select-country/select-country.php:10
2391
  msgid "Saint Vincent and the Grenadines"
2392
  msgstr "Saint Vincent and the Grenadines"
2393
 
2394
- #: admin/manage-fields.php:471
2395
- #: front-end/extra-fields/select-country/select-country.php:10
2396
  msgid "Samoa"
2397
  msgstr "Samoa"
2398
 
2399
- #: admin/manage-fields.php:472
2400
- #: front-end/extra-fields/select-country/select-country.php:10
2401
  msgid "San Marino"
2402
  msgstr "San Marino"
2403
 
2404
- #: admin/manage-fields.php:473
2405
- #: front-end/extra-fields/select-country/select-country.php:10
2406
  msgid "Sao Tome and Principe"
2407
  msgstr "Sao Tome and Principe"
2408
 
2409
- #: admin/manage-fields.php:474
2410
- #: front-end/extra-fields/select-country/select-country.php:10
2411
  msgid "Saudi Arabia"
2412
  msgstr "Saudi Arabia"
2413
 
2414
- #: admin/manage-fields.php:475
2415
- #: front-end/extra-fields/select-country/select-country.php:10
2416
  msgid "Senegal"
2417
  msgstr "Senegal"
2418
 
2419
- #: admin/manage-fields.php:476
2420
- #: front-end/extra-fields/select-country/select-country.php:10
2421
  msgid "Serbia"
2422
  msgstr "Serbia"
2423
 
2424
- #: admin/manage-fields.php:477
2425
- #: front-end/extra-fields/select-country/select-country.php:10
2426
  msgid "Seychelles"
2427
  msgstr "Seychelles"
2428
 
2429
- #: admin/manage-fields.php:478
2430
- #: front-end/extra-fields/select-country/select-country.php:10
2431
  msgid "Sierra Leone"
2432
  msgstr "Sierra Leone"
2433
 
2434
- #: admin/manage-fields.php:479
2435
- #: front-end/extra-fields/select-country/select-country.php:10
2436
  msgid "Singapore"
2437
  msgstr "Singapore"
2438
 
2439
- #: admin/manage-fields.php:480
2440
  msgid "Sint Maarten"
2441
  msgstr "Sint Maarten"
2442
 
2443
- #: admin/manage-fields.php:481
2444
- #: front-end/extra-fields/select-country/select-country.php:10
2445
  msgid "Slovakia"
2446
  msgstr "Slovakia"
2447
 
2448
- #: admin/manage-fields.php:482
2449
- #: front-end/extra-fields/select-country/select-country.php:10
2450
  msgid "Slovenia"
2451
  msgstr "Slovenia"
2452
 
2453
- #: admin/manage-fields.php:483
2454
- #: front-end/extra-fields/select-country/select-country.php:10
2455
  msgid "Solomon Islands"
2456
  msgstr "Solomon Islands"
2457
 
2458
- #: admin/manage-fields.php:484
2459
- #: front-end/extra-fields/select-country/select-country.php:10
2460
  msgid "Somalia"
2461
  msgstr "Somalia"
2462
 
2463
- #: admin/manage-fields.php:485
2464
- #: front-end/extra-fields/select-country/select-country.php:10
2465
  msgid "South Africa"
2466
  msgstr "South Africa"
2467
 
2468
- #: admin/manage-fields.php:486
2469
- #: front-end/extra-fields/select-country/select-country.php:10
2470
  msgid "South Georgia and the South Sandwich Islands"
2471
  msgstr "South Georgia and the South Sandwich Islands"
2472
 
2473
- #: admin/manage-fields.php:487
2474
  msgid "South Korea"
2475
  msgstr "South Korea"
2476
 
2477
- #: admin/manage-fields.php:488
2478
- #: front-end/extra-fields/select-country/select-country.php:10
2479
  msgid "South Sudan"
2480
  msgstr "South Sudan"
2481
 
2482
- #: admin/manage-fields.php:489
2483
- #: front-end/extra-fields/select-country/select-country.php:10
2484
  msgid "Spain"
2485
  msgstr "Spain"
2486
 
2487
- #: admin/manage-fields.php:490
2488
- #: front-end/extra-fields/select-country/select-country.php:10
2489
  msgid "Sri Lanka"
2490
  msgstr "Sri Lanka"
2491
 
2492
- #: admin/manage-fields.php:491
2493
- #: front-end/extra-fields/select-country/select-country.php:10
2494
  msgid "Sudan"
2495
  msgstr "Sudan"
2496
 
2497
- #: admin/manage-fields.php:492
2498
- #: front-end/extra-fields/select-country/select-country.php:10
2499
  msgid "Suriname"
2500
  msgstr "Suriname"
2501
 
2502
- #: admin/manage-fields.php:493
2503
- #: front-end/extra-fields/select-country/select-country.php:10
2504
  msgid "Svalbard and Jan Mayen"
2505
  msgstr "Svalbard and Jan Mayen"
2506
 
2507
- #: admin/manage-fields.php:494
2508
- #: front-end/extra-fields/select-country/select-country.php:10
2509
  msgid "Swaziland"
2510
  msgstr "Swaziland"
2511
 
2512
- #: admin/manage-fields.php:495
2513
- #: front-end/extra-fields/select-country/select-country.php:10
2514
  msgid "Sweden"
2515
  msgstr "Sweden"
2516
 
2517
- #: admin/manage-fields.php:496
2518
- #: front-end/extra-fields/select-country/select-country.php:10
2519
  msgid "Switzerland"
2520
  msgstr "Switzerland"
2521
 
2522
- #: admin/manage-fields.php:497
2523
  msgid "Syria"
2524
  msgstr "Syria"
2525
 
2526
- #: admin/manage-fields.php:498
2527
  msgid "Taiwan"
2528
  msgstr "Taiwan"
2529
 
2530
- #: admin/manage-fields.php:499
2531
- #: front-end/extra-fields/select-country/select-country.php:10
2532
  msgid "Tajikistan"
2533
  msgstr "Tajikistan"
2534
 
2535
- #: admin/manage-fields.php:500
2536
  msgid "Tanzania"
2537
  msgstr "Tanzania"
2538
 
2539
- #: admin/manage-fields.php:501
2540
- #: front-end/extra-fields/select-country/select-country.php:10
2541
  msgid "Thailand"
2542
  msgstr "Thailand"
2543
 
2544
- #: admin/manage-fields.php:502
2545
- #: front-end/extra-fields/select-country/select-country.php:10
2546
  msgid "Togo"
2547
  msgstr "Togo"
2548
 
2549
- #: admin/manage-fields.php:503
2550
- #: front-end/extra-fields/select-country/select-country.php:10
2551
  msgid "Tokelau"
2552
  msgstr "Tokelau"
2553
 
2554
- #: admin/manage-fields.php:504
2555
- #: front-end/extra-fields/select-country/select-country.php:10
2556
  msgid "Tonga"
2557
  msgstr "Tonga"
2558
 
2559
- #: admin/manage-fields.php:505
2560
- #: front-end/extra-fields/select-country/select-country.php:10
2561
  msgid "Trinidad and Tobago"
2562
  msgstr "Trinidad and Tobago"
2563
 
2564
- #: admin/manage-fields.php:506
2565
- #: front-end/extra-fields/select-country/select-country.php:10
2566
  msgid "Tunisia"
2567
  msgstr "Tunisia"
2568
 
2569
- #: admin/manage-fields.php:507
2570
- #: front-end/extra-fields/select-country/select-country.php:10
2571
  msgid "Turkey"
2572
  msgstr "Turkey"
2573
 
2574
- #: admin/manage-fields.php:508
2575
- #: front-end/extra-fields/select-country/select-country.php:10
2576
  msgid "Turkmenistan"
2577
  msgstr "Turkmenistan"
2578
 
2579
- #: admin/manage-fields.php:509
2580
- #: front-end/extra-fields/select-country/select-country.php:10
2581
  msgid "Turks and Caicos Islands"
2582
  msgstr "Turks and Caicos Islands"
2583
 
2584
- #: admin/manage-fields.php:510
2585
- #: front-end/extra-fields/select-country/select-country.php:10
2586
  msgid "Tuvalu"
2587
  msgstr "Tuvalu"
2588
 
2589
- #: admin/manage-fields.php:511
2590
  msgid "U.S. Virgin Islands"
2591
  msgstr "U.S. Virgin Islands"
2592
 
2593
- #: admin/manage-fields.php:512
2594
- #: front-end/extra-fields/select-country/select-country.php:10
2595
  msgid "Uganda"
2596
  msgstr "Uganda"
2597
 
2598
- #: admin/manage-fields.php:513
2599
- #: front-end/extra-fields/select-country/select-country.php:10
2600
  msgid "Ukraine"
2601
  msgstr "Ukraine"
2602
 
2603
- #: admin/manage-fields.php:514
2604
- #: front-end/extra-fields/select-country/select-country.php:10
2605
  msgid "United Arab Emirates"
2606
  msgstr "United Arab Emirates"
2607
 
2608
- #: admin/manage-fields.php:515
2609
- #: front-end/extra-fields/select-country/select-country.php:10
2610
  msgid "United Kingdom"
2611
  msgstr "United Kingdom"
2612
 
2613
- #: admin/manage-fields.php:516
2614
- #: front-end/extra-fields/select-country/select-country.php:10
2615
  msgid "United States"
2616
  msgstr "United States"
2617
 
2618
- #: admin/manage-fields.php:517
2619
- #: front-end/extra-fields/select-country/select-country.php:10
2620
  msgid "United States Minor Outlying Islands"
2621
  msgstr "United States Minor Outlying Islands"
2622
 
2623
- #: admin/manage-fields.php:518
2624
- #: front-end/extra-fields/select-country/select-country.php:10
2625
  msgid "Uruguay"
2626
  msgstr "Uruguay"
2627
 
2628
- #: admin/manage-fields.php:519
2629
- #: front-end/extra-fields/select-country/select-country.php:10
2630
  msgid "Uzbekistan"
2631
  msgstr "Uzbekistan"
2632
 
2633
- #: admin/manage-fields.php:520
2634
- #: front-end/extra-fields/select-country/select-country.php:10
2635
  msgid "Vanuatu"
2636
  msgstr "Vanuatu"
2637
 
2638
- #: admin/manage-fields.php:521
2639
  msgid "Vatican"
2640
  msgstr "Vatican"
2641
 
2642
- #: admin/manage-fields.php:522
2643
  msgid "Venezuela"
2644
  msgstr "Venezuela"
2645
 
2646
- #: admin/manage-fields.php:523
2647
  msgid "Vietnam"
2648
  msgstr "Vietnam"
2649
 
2650
- #: admin/manage-fields.php:524
2651
- #: front-end/extra-fields/select-country/select-country.php:10
2652
  msgid "Wallis and Futuna"
2653
  msgstr "Wallis and Futuna"
2654
 
2655
- #: admin/manage-fields.php:525
2656
- #: front-end/extra-fields/select-country/select-country.php:10
2657
  msgid "Western Sahara"
2658
  msgstr "Western Sahara"
2659
 
2660
- #: admin/manage-fields.php:526
2661
- #: front-end/extra-fields/select-country/select-country.php:10
2662
  msgid "Yemen"
2663
  msgstr "Yemen"
2664
 
2665
- #: admin/manage-fields.php:527
2666
- #: front-end/extra-fields/select-country/select-country.php:10
2667
  msgid "Zambia"
2668
  msgstr "Zambia"
2669
 
2670
- #: admin/manage-fields.php:528
2671
- #: front-end/extra-fields/select-country/select-country.php:10
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
- #: admin/manage-fields.php:1216
2676
  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."
2677
- msgstr ""
2678
 
2679
- #: assets/misc/plugin-compatibilities.php:237
2680
  msgid "Your account has to be confirmed by an administrator before you can log in."
2681
  msgstr "Di konto skal godekendes af en administrator før du kan logge ind"
2682
 
2683
- #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Din konto er oprettet!"
2686
 
2687
- #: features/functions.php:678
2688
- #: front-end/extra-fields/recaptcha/recaptcha.php:374
2689
- #: front-end/extra-fields/recaptcha/recaptcha.php:379
2690
- #: front-end/extra-fields/recaptcha/recaptcha.php:421
2691
- #: front-end/extra-fields/recaptcha/recaptcha.php:458
2692
  msgid "Please enter a (valid) reCAPTCHA value"
2693
  msgstr "Indtast en valid reCAPTCHA værdi"
2694
 
2695
- #: front-end/extra-fields/recaptcha/recaptcha.php:421
2696
  msgid "Click the BACK button on your browser, and try again."
2697
  msgstr "Tryk på BACK knappen i din browser, og prøv igen."
2698
 
2699
- #: front-end/extra-fields/upload/upload_helper_functions.php:78
2700
- #: front-end/extra-fields/upload/upload_helper_functions.php:87
2701
  msgid "Sorry, you cannot upload this file type for this field."
2702
  msgstr "Beklager, du kan ikke uploade denne fil type."
2703
 
2704
- #: front-end/extra-fields/upload/upload_helper_functions.php:94
2705
  msgid "An error occurred, please try again later."
2706
  msgstr "Der opstaod en fejl, prøv venligst igen senere."
2707
 
2708
- #: modules/user-listing/userlisting.php:282
2709
  msgid "More"
2710
  msgstr "Mere"
2711
 
2712
- #: modules/user-listing/userlisting.php:376
2713
  msgid "You do not have permission to view this user list."
2714
  msgstr "Du har ikke lov til at se denne bruger liste."
2715
 
2716
- #: modules/user-listing/userlisting.php:389
2717
  msgid "You do not have the required user role to view this user list."
2718
  msgstr "Du er ikke oprettet med en rigtige brugerrolle for at se denne liste"
2719
 
2720
- #: modules/user-listing/userlisting.php:2186
2721
  msgid "Ascending"
2722
  msgstr "Stigende"
2723
 
2724
- #: modules/user-listing/userlisting.php:2187
2725
  msgid "Descending"
2726
  msgstr "Faldende"
2727
 
2728
- #: admin/add-ons.php:148 admin/add-ons.php:248
2729
- #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213
 
 
2730
  msgid "Download Now"
2731
  msgstr "Download nu"
2732
 
2733
- #: admin/admin-functions.php:200
2734
  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. "
2735
  msgstr "Hvis du kan lide at bruge <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate os på WordPress.org</a>. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle."
2736
 
2737
- #: admin/manage-fields.php:80
2738
  msgid "Choose one of the supported field types"
2739
  msgstr "Vælg en af de supporterede felttyper"
2740
 
2741
- #: admin/manage-fields.php:82
2742
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2743
  msgstr ".Ekstra felttyper er tilgængelig i <a href=\"%s\">Hobbyist or PRO versions</a>."
2744
 
2745
- #: admin/manage-fields.php:129
2746
  msgid "Site Key"
2747
  msgstr "Site nøgle (Key)"
2748
 
2749
- #: admin/manage-fields.php:129
2750
  msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2751
  msgstr "Site nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2752
 
2753
- #: admin/manage-fields.php:130
2754
  msgid "Secret Key"
2755
  msgstr "Hemmelig nøgle (Key)"
2756
 
2757
- #: admin/manage-fields.php:130
2758
  msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2759
  msgstr "Den hemmelige nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2760
 
2761
- #: admin/manage-fields.php:1020
2762
  msgid "You must enter the site key\n"
2763
  msgstr "Du skal enter site nøglen (Key)\n"
2764
 
2765
- #: admin/manage-fields.php:1022
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Du skal enter den hemmelige nøgle (Key)\n"
2768
 
2769
- #: admin/add-ons.php:10 admin/add-ons.php:32
 
2770
  msgid "Add-Ons"
2771
  msgstr "Tilføjelser"
2772
 
2773
- #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231
2774
- #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114
2775
- #: admin/pms-cross-promotion.php:193
 
 
 
2776
  msgid "Activate"
2777
  msgstr "Aktivér"
2778
 
2779
- #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80
 
2780
  msgid "Downloading and installing..."
2781
  msgstr "Dowloader og installerer...."
2782
 
2783
- #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81
 
2784
  msgid "Installation complete"
2785
  msgstr "Installationen gennemført"
2786
 
2787
- #: admin/add-ons.php:39
2788
  msgid "Add-On is Active"
2789
  msgstr "Tilføjelser er aktive"
2790
 
2791
- #: admin/add-ons.php:40
2792
  msgid "Add-On has been activated"
2793
  msgstr "Tilføjelser er blevet aktiveret"
2794
 
2795
- #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85
 
2796
  msgid "Retry Install"
2797
  msgstr "Geninstallér"
2798
 
2799
- #: admin/add-ons.php:43 admin/add-ons.php:140
 
2800
  msgid "Add-On is <strong>active</strong>"
2801
  msgstr "Tilføjelser (add-on) er <strong>active</strong>"
2802
 
2803
- #: admin/add-ons.php:44 admin/add-ons.php:138
 
2804
  msgid "Add-On is <strong>inactive</strong>"
2805
  msgstr "Tilføjelser (add-on) er <strong>inactive</strong>"
2806
 
2807
- #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235
2808
- #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118
2809
- #: admin/pms-cross-promotion.php:197
 
 
 
2810
  msgid "Deactivate"
2811
  msgstr "Deaktivér"
2812
 
2813
- #: admin/add-ons.php:47
2814
  msgid "Add-On has been deactivated."
2815
  msgstr "Tilføjelser er blevet deaktiveret"
2816
 
2817
- #: admin/add-ons.php:59
2818
  msgid "Something went wrong, we could not connect to the server. Please try again later."
2819
  msgstr "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere."
2820
 
2821
- #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216
 
2822
  msgid "Install Now"
2823
  msgstr "Installér nu"
2824
 
2825
- #: admin/add-ons.php:153 admin/add-ons.php:251
2826
- #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220
 
 
2827
  msgid "Compatible with your version of Profile Builder."
2828
  msgstr "Kompatibel med din version af Profile Builder."
2829
 
2830
- #: admin/add-ons.php:162
2831
  msgid "Upgrade Profile Builder"
2832
  msgstr "Opgradér Profile Builder"
2833
 
2834
- #: admin/add-ons.php:163
2835
  msgid "Not compatible with Profile Builder"
2836
  msgstr "Ikke kompatibel med Profile Builder"
2837
 
2838
- #: admin/add-ons.php:171
2839
  msgid "Not compatible with your version of Profile Builder."
2840
  msgstr "Ikke kompatibel med din version af Profile Builder"
2841
 
2842
- #: admin/add-ons.php:172
2843
  msgid "Minimum required Profile Builder version:"
2844
  msgstr "Minimum krævet version af Profile Builder:"
2845
 
2846
- #: admin/add-ons.php:177
2847
  msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
2848
  msgstr "Kunne ikke installere tilføjelse (add-on). Prøv igen eller <a href=\"%s\" target=\"_blank\">install manually</a>."
2849
 
2850
- #: front-end/default-fields/email/email.php:51
2851
  msgid "You must enter a valid email address."
2852
  msgstr "Du skal indtaste en gyldig e-mail adresse."
2853
 
2854
- #: front-end/default-fields/username/username.php:52
2855
- #: front-end/default-fields/username/username.php:60
2856
  msgid "This username is invalid because it uses illegal characters."
2857
  msgstr "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte."
2858
 
2859
- #: front-end/default-fields/username/username.php:52
2860
- #: front-end/default-fields/username/username.php:60
2861
  msgid "Please enter a valid username."
2862
  msgstr "Venligst indtast et gyldigt brugernavn."
2863
 
2864
- #: front-end/extra-fields/user-role/user-role.php:72
2865
- #: front-end/extra-fields/user-role/user-role.php:85
2866
  msgid "Only administrators can see this field on edit profile forms."
2867
  msgstr "Kun administratorer kan se dette felt på rediger profilformularer."
2868
 
2869
- #: front-end/extra-fields/user-role/user-role.php:81
2870
  msgid "As an administrator you cannot change your role."
2871
  msgstr "Som administrator kan du ikke ændre din rolle."
2872
 
2873
- #: modules/email-customizer/admin-email-customizer.php:117
2874
  msgid ""
2875
  "\n"
2876
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
@@ -2882,23 +3107,23 @@ msgstr ""
2882
  "<p>Hans/hendes nye adgangskode er: {{password}}</p>\n"
2883
  "\n"
2884
 
2885
- #: modules/email-customizer/admin-email-customizer.php:141
2886
  msgid "Admin Notification for User Password Reset"
2887
  msgstr "Admin meddelelse for genskabning af bruger adgangskode"
2888
 
2889
- #: modules/email-customizer/email-customizer.php:46
2890
  msgid "Reset Key"
2891
  msgstr "Genskab nøgle"
2892
 
2893
- #: modules/email-customizer/email-customizer.php:47
2894
  msgid "Reset Url"
2895
  msgstr "Genskab URL"
2896
 
2897
- #: modules/email-customizer/email-customizer.php:48
2898
  msgid "Reset Link"
2899
  msgstr "Genskab link"
2900
 
2901
- #: modules/email-customizer/user-email-customizer.php:204
2902
  msgid ""
2903
  "\n"
2904
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
@@ -2914,15 +3139,15 @@ msgstr ""
2914
  "<p>For at genskabe din adgangskode gå ind på følgende adresse:<br/>\n"
2915
  "{{{reset_link}}}</p>\n"
2916
 
2917
- #: modules/email-customizer/user-email-customizer.php:218
2918
  msgid "[{{site_name}}] Password Reset"
2919
  msgstr "[{{site_name}}] Nulstil adgangskode "
2920
 
2921
- #: modules/email-customizer/user-email-customizer.php:229
2922
  msgid "Password Reset Email"
2923
  msgstr "E-mail vedr. nulstilling af adgangskode"
2924
 
2925
- #: modules/email-customizer/user-email-customizer.php:235
2926
  msgid ""
2927
  "\n"
2928
  "<p>You have successfully reset your password to: {{password}}</p>\n"
@@ -2931,1750 +3156,1823 @@ msgstr ""
2931
  "<p>Du har med succes nulstillet din adgangskode til: {{password}}</p>\n"
2932
  "\n"
2933
 
2934
- #: modules/email-customizer/user-email-customizer.php:245
2935
  msgid "[{{site_name}}] Password Reset Successfully"
2936
  msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt"
2937
 
2938
- #: modules/email-customizer/user-email-customizer.php:256
2939
  msgid "Password Reset Success Email"
2940
  msgstr "E-mail vedr. adgangskode nulstillet succesfuldt"
2941
 
2942
- #: modules/user-listing/userlisting.php:159
2943
  msgid "User Nicename"
2944
  msgstr "Bruger kaldenavn"
2945
 
2946
- #: modules/user-listing/userlisting.php:499
 
 
2947
  msgid "None"
2948
  msgstr "Ingen"
2949
 
2950
- #: admin/admin-functions.php:132
2951
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
2952
  msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
2953
 
2954
- #: admin/admin-functions.php:148
2955
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2956
  msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
2957
 
2958
- #: admin/general-settings.php:163
2959
  msgid "Username and Email"
2960
  msgstr "Brugernavn og e-mail"
2961
 
2962
- #: admin/general-settings.php:168
2963
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
2964
  msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
2965
 
2966
- #: admin/general-settings.php:169
2967
  msgid "\"Username\" - users can Log In only with Username."
2968
  msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
2969
 
2970
- #: admin/general-settings.php:170
2971
  msgid "\"Email\" - users can Log In only with Email."
2972
  msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
2973
 
2974
- #: admin/manage-fields.php:122
2975
  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 (.*)"
2976
  msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
2977
 
2978
- #: admin/manage-fields.php:123
2979
  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 (.*)"
2980
  msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)"
2981
 
2982
- #: admin/manage-fields.php:133
2983
  msgid "User Roles"
2984
  msgstr "Brugerroller"
2985
 
2986
- #: admin/manage-fields.php:133
2987
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
2988
  msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)"
2989
 
2990
- #: admin/manage-fields.php:134
2991
  msgid "User Roles Order"
2992
  msgstr "Brugerroller orden"
2993
 
2994
- #: admin/manage-fields.php:134
2995
  msgid "Save the user role order from the user roles checkboxes"
2996
  msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
2997
 
2998
- #: admin/manage-fields.php:1125
2999
  msgid "Please select at least one user role\n"
3000
  msgstr "Vælg venligst mindst en brugerrolle\n"
3001
 
3002
- #: admin/register-version.php:22
3003
  msgid "Profile Builder Register"
3004
  msgstr "Registrer Profile Builder"
3005
 
3006
- #: admin/register-version.php:81
3007
  msgid "The serial number is about to expire soon!"
3008
  msgstr "Serienummeret udløber snart!"
3009
 
3010
- #: admin/register-version.php:81
3011
  msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3012
  msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
3013
 
3014
- #: admin/register-version.php:83
3015
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3016
  msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
3017
 
3018
- #: assets/lib/wck-api/wordpress-creation-kit.php:334
3019
  msgid "Add Entry"
3020
  msgstr "Tilføj post"
3021
 
3022
- #: features/email-confirmation/class-email-confirmation.php:91
3023
  msgid "show"
3024
  msgstr "vis"
3025
 
3026
- #: features/functions.php:736
3027
  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"
3028
  msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
3029
 
3030
- #: front-end/class-formbuilder.php:643
3031
  msgid "User to edit:"
3032
  msgstr "Bruger der skal redigeres:"
3033
 
3034
- #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
 
3035
  msgid "The password must have the minimum length of %s characters"
3036
  msgstr "Adgangskoden skal have en minimumslængde på %s karakterer"
3037
 
3038
- #: front-end/default-fields/password/password.php:50 front-end/recover.php:258
 
3039
  msgid "The password must have a minimum strength of %s"
3040
  msgstr "Adgangskoden skal minimum have en styrke på %s"
3041
 
3042
- #: front-end/extra-fields/user-role/user-role.php:118
3043
  msgid "You cannot register this user role"
3044
  msgstr "Du kan ikke registrere denne brugerrolle"
3045
 
3046
- #: front-end/login.php:153
3047
  msgid "username or email"
3048
  msgstr "brugernavn eller e-mail"
3049
 
3050
- #: front-end/login.php:222
3051
  msgid "Username or Email"
3052
  msgstr "Brugernavn eller e-mail"
3053
 
3054
- #: front-end/logout.php:15
3055
  msgid "You are currently logged in as %s. "
3056
  msgstr "Du er i øjeblikket logget ind som %s."
3057
 
3058
- #: front-end/logout.php:15
3059
  msgid "Log out &raquo;"
3060
  msgstr "Log ud &raquo;"
3061
 
3062
- #: modules/custom-redirects/custom_redirects_admin.php:92
3063
- #: modules/email-customizer/email-customizer.php:31
3064
  msgid "User Role"
3065
  msgstr "Brugerrolle"
3066
 
3067
- #: modules/user-listing/userlisting.php:2100
3068
  msgid "View all extra shortcode parameters"
3069
  msgstr "Se alle ekstra \"shortcode\" parametre"
3070
 
3071
- #: modules/user-listing/userlisting.php:2114
3072
  msgid "displays only the users that you specified the user_id for"
3073
  msgstr "vis kun de brugere som du specificerede 'user_id' for"
3074
 
3075
- #: modules/user-listing/userlisting.php:2120
3076
  msgid "displays all users except the ones you specified the user_id for"
3077
  msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for"
3078
 
3079
- #: features/functions.php:566
3080
  msgid "Minimum length of %d characters"
3081
  msgstr "Minimum længde på %d karakterer"
3082
 
3083
- #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138
 
3084
  msgid "This message is only visible by administrators"
3085
  msgstr "Denne meddelelse er kun synlig for administratorer"
3086
 
3087
- #: modules/user-listing/userlisting.php:413
3088
  msgid "User not found"
3089
  msgstr "Bruger ikke fundet"
3090
 
3091
- #: modules/email-customizer/admin-email-customizer.php:38
3092
- #: modules/email-customizer/user-email-customizer.php:38
3093
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3094
  msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
3095
 
3096
- #: admin/admin-bar.php:48
3097
  msgid "Choose which user roles view the admin bar in the front-end of the website."
3098
  msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
3099
 
3100
- #: admin/manage-fields.php:127
3101
  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"
3102
  msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
3103
 
3104
- #: admin/manage-fields.php:1052
3105
  msgid "The meta-name cannot be empty\n"
3106
  msgstr "'Meta-name' kan ikke være tom\n"
3107
 
3108
- #: admin/register-version.php:69
3109
  msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3110
  msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog."
3111
 
3112
- #: admin/register-version.php:243
3113
  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>"
3114
  msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
3115
 
3116
- #: assets/lib/wck-api/fields/country select.php:14
3117
- #: assets/lib/wck-api/fields/cpt select.php:17
3118
- #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3119
- #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3120
- #: front-end/extra-fields/select-cpt/select-cpt.php:60
 
3121
  msgid "...Choose"
3122
  msgstr "...Vælg"
3123
 
3124
- #: features/class-list-table.php:526 features/class-list-table.php:942
 
3125
  msgid "1 item"
3126
- msgid_plural "%s items"
3127
- msgstr[0] "1 emne"
3128
- msgstr[1] ""
3129
 
3130
- #: features/functions.php:552
3131
  msgid "Very Weak"
3132
  msgstr "Meget svag"
3133
 
3134
- #: features/functions.php:640
3135
  msgid "This field is required"
3136
  msgstr "Dette felt er obligatorisk"
3137
 
3138
- #: features/functions.php:704
3139
  msgid "Cancel"
3140
  msgstr "Annuller"
3141
 
3142
- #: features/functions.php:740
3143
  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"
3144
  msgstr "For at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig\". %3$sAfvis%4$s"
3145
 
3146
- #: front-end/login.php:144
3147
  msgid "Invalid username."
3148
  msgstr "Ugyldigt brugernavn"
3149
 
3150
- #: front-end/login.php:149 front-end/login.php:153
 
3151
  msgid "username"
3152
  msgstr "brugernavn"
3153
 
3154
- #: front-end/login.php:149
3155
  msgid "email"
3156
  msgstr "e-mail"
3157
 
3158
- #: front-end/login.php:256
3159
  msgid "Lost your password?"
3160
  msgstr "Mistet din adgangskode?"
3161
 
3162
- #: index.php:34
3163
  msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3164
  msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
3165
 
3166
- #: modules/email-customizer/admin-email-customizer.php:54
3167
- #: modules/email-customizer/user-email-customizer.php:54
3168
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3169
  msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen"
3170
 
3171
- #: features/email-confirmation/email-confirmation.php:573
3172
- #: features/email-confirmation/email-confirmation.php:582
3173
- #: modules/email-customizer/email-customizer.php:487
3174
- #: modules/email-customizer/email-customizer.php:494
3175
- #: modules/email-customizer/email-customizer.php:508
3176
  msgid "Your selected password at signup"
3177
  msgstr "Din valgte adgangskode ved oprettelse"
3178
 
3179
- #: modules/email-customizer/user-email-customizer.php:38
3180
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3181
  msgstr "Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes."
3182
 
3183
- #: modules/multiple-forms/edit-profile-forms.php:274
3184
  msgid "This form is empty."
3185
  msgstr "Denne formular er tom."
3186
 
3187
- #: modules/multiple-forms/multiple-forms.php:406
3188
  msgid "Delete all items"
3189
  msgstr "Slet alle emner"
3190
 
3191
- #: modules/multiple-forms/multiple-forms.php:406
3192
  msgid "Delete all"
3193
  msgstr "Slet alt"
3194
 
3195
- #: modules/user-listing/userlisting.php:1592
3196
  msgid "Choose..."
3197
  msgstr "Vælg..."
3198
 
3199
- #: modules/user-listing/userlisting.php:2196
3200
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3201
  msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt"
3202
 
3203
- #: admin/admin-bar.php:10
3204
  msgid "Show/Hide the Admin Bar on the Front-End"
3205
  msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
3206
 
3207
- #: admin/admin-bar.php:10 admin/admin-bar.php:47
 
3208
  msgid "Admin Bar Settings"
3209
  msgstr "Admin menu indstillinger "
3210
 
3211
- #: admin/admin-bar.php:57
3212
  msgid "User-Role"
3213
  msgstr "Brugerrolle"
3214
 
3215
- #: admin/admin-bar.php:58
3216
  msgid "Visibility"
3217
  msgstr "Synlighed"
3218
 
3219
- #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3220
- #: modules/multiple-forms/register-forms.php:230
 
3221
  msgid "Default"
3222
  msgstr "Default"
3223
 
3224
- #: admin/admin-bar.php:74
3225
  msgid "Show"
3226
  msgstr "Vis"
3227
 
3228
- #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537
 
3229
  msgid "Hide"
3230
  msgstr "Skjul"
3231
 
3232
- #: admin/admin-bar.php:86 admin/general-settings.php:208
3233
- #: admin/register-version.php:95 features/functions.php:697
3234
- #: modules/modules.php:127
 
 
 
3235
  msgid "Save Changes"
3236
  msgstr "Gem ændringer"
3237
 
3238
- #: admin/admin-functions.php:37
3239
  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 )"
3240
  msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
3241
 
3242
- #: admin/admin-functions.php:37 admin/general-settings.php:10
3243
- #: admin/general-settings.php:38
 
3244
  msgid "General Settings"
3245
  msgstr "Generelle indstillinger"
3246
 
3247
- #: admin/admin-functions.php:137 admin/general-settings.php:194
 
3248
  msgid "Very weak"
3249
  msgstr "Meget svag"
3250
 
3251
- #: admin/admin-functions.php:137 admin/general-settings.php:195
3252
- #: features/functions.php:552
 
3253
  msgid "Weak"
3254
  msgstr "Svag"
3255
 
3256
- #: admin/admin-functions.php:137 admin/general-settings.php:196
3257
- #: features/functions.php:552
 
3258
  msgid "Medium"
3259
  msgstr "Middel"
3260
 
3261
- #: admin/admin-functions.php:137 admin/general-settings.php:197
3262
- #: features/functions.php:552
 
3263
  msgid "Strong"
3264
  msgstr "Stærk"
3265
 
3266
- #: admin/admin-functions.php:187
3267
  msgid "Add Field"
3268
  msgstr "Tilføj felt"
3269
 
3270
- #: admin/admin-functions.php:189
3271
- #: modules/class-mustache-templates/class-mustache-templates.php:390
3272
  msgid "Save Settings"
3273
  msgstr "Gem indstillinger"
3274
 
3275
- #: admin/basic-info.php:10
3276
  msgid "Basic Information"
3277
  msgstr "Basis information"
3278
 
3279
- #: admin/basic-info.php:29
3280
  msgid "Version %s"
3281
  msgstr "Version %s"
3282
 
3283
- #: admin/basic-info.php:30
3284
  msgid "<strong>Profile Builder </strong>"
3285
  msgstr "<strong>Profile Builder </strong>"
3286
 
3287
- #: admin/basic-info.php:31
3288
  msgid "The best way to add front-end registration, edit profile and login forms."
3289
  msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
3290
 
3291
- #: admin/basic-info.php:33
3292
  msgid "For Modern User Interaction"
3293
  msgstr "Til 'Modern User Interaction'"
3294
 
3295
- #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
 
 
3296
  msgid "Login"
3297
  msgstr "Log ind"
3298
 
3299
- #: admin/basic-info.php:40
3300
  msgid "Registration"
3301
  msgstr "Registrering"
3302
 
3303
- #: admin/basic-info.php:44
3304
  msgid "Edit Profile"
3305
  msgstr "Rediger profil"
3306
 
3307
- #: admin/basic-info.php:51
3308
  msgid "Extra Features"
3309
  msgstr "Ekstra funktioner"
3310
 
3311
- #: admin/basic-info.php:52
3312
  msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3313
  msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
3314
 
3315
- #: admin/basic-info.php:53
3316
  msgid "Enable extra features"
3317
  msgstr "Aktiver ekstra funktioner"
3318
 
3319
- #: admin/basic-info.php:57
3320
  msgid "Recover Password"
3321
  msgstr "Genskab adgangskode"
3322
 
3323
- #: admin/basic-info.php:61
3324
  msgid "Admin Approval (*)"
3325
  msgstr "Admin godkendelse (*)"
3326
 
3327
- #: admin/basic-info.php:62
3328
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3329
  msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
3330
 
3331
- #: admin/basic-info.php:65
3332
  msgid "Email Confirmation"
3333
  msgstr "E-mail bekræftelse"
3334
 
3335
- #: admin/basic-info.php:66
3336
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3337
  msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse."
3338
 
3339
- #: admin/basic-info.php:69
3340
  msgid "Minimum Password Length and Strength Meter"
3341
  msgstr "Minimum længde og styrke på adgangskode"
3342
 
3343
- #: admin/basic-info.php:70
3344
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3345
  msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden."
3346
 
3347
- #: admin/basic-info.php:73
3348
  msgid "Login with Email or Username"
3349
  msgstr "Log ind med e-mail eller brugernavn"
3350
 
3351
- #: admin/basic-info.php:74
3352
  msgid "Allow users to log in with their email or username when accessing your site."
3353
  msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
3354
 
3355
- #: admin/basic-info.php:87
3356
  msgid "Customize Your Forms The Way You Want (*)"
3357
  msgstr "Tilpas dine formularer som du ønsker det (*)"
3358
 
3359
- #: admin/basic-info.php:88
3360
  msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3361
  msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
3362
 
3363
- #: admin/basic-info.php:90
3364
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3365
  msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
3366
 
3367
- #: admin/basic-info.php:92
3368
  msgid "Get started with extra fields"
3369
  msgstr "Kom i gang med ekstra felter"
3370
 
3371
- #: admin/basic-info.php:95
3372
  msgid "Avatar Upload"
3373
  msgstr "Avatar upload"
3374
 
3375
- #: admin/basic-info.php:96
3376
  msgid "Generic Uploads"
3377
  msgstr "Generisk upload"
3378
 
3379
- #: admin/basic-info.php:97
3380
  msgid "Agree To Terms Checkbox"
3381
  msgstr "Accept af betingelser tjekboks"
3382
 
3383
- #: admin/basic-info.php:98
3384
  msgid "Datepicker"
3385
  msgstr "Datovælger"
3386
 
3387
- #: admin/basic-info.php:101
3388
  msgid "reCAPTCHA"
3389
  msgstr "reCAPTCHA"
3390
 
3391
- #: admin/basic-info.php:102
3392
  msgid "Country Select"
3393
  msgstr "Landevalg"
3394
 
3395
- #: admin/basic-info.php:104
3396
  msgid "Timezone Select"
3397
  msgstr "Tidszone valg"
3398
 
3399
- #: admin/basic-info.php:108
3400
  msgid "Input / Hidden Input"
3401
  msgstr "Input / Skjult input"
3402
 
3403
- #: admin/basic-info.php:110
3404
  msgid "Checkbox"
3405
  msgstr "Tjekboks"
3406
 
3407
- #: admin/basic-info.php:111
3408
  msgid "Select"
3409
  msgstr "Vælg"
3410
 
3411
- #: admin/basic-info.php:112
3412
  msgid "Radio Buttons"
3413
  msgstr "'Radio' knapper"
3414
 
3415
- #: admin/basic-info.php:113
3416
  msgid "Textarea"
3417
  msgstr "Tekstområde"
3418
 
3419
- #: admin/basic-info.php:125
3420
  msgid "Powerful Modules (**)"
3421
  msgstr "Stærke moduler (**)"
3422
 
3423
- #: admin/basic-info.php:126
3424
  msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3425
  msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
3426
 
3427
- #: admin/basic-info.php:128
3428
  msgid "Enable your modules"
3429
  msgstr "Aktiver dine moduler"
3430
 
3431
- #: admin/basic-info.php:131
3432
  msgid "Find out more about PRO Modules"
3433
  msgstr "Fin ud af mere om PRO Moduler"
3434
 
3435
- #: admin/basic-info.php:136 modules/modules.php:89
3436
- #: modules/user-listing/userlisting.php:11
3437
- #: modules/user-listing/userlisting.php:12
3438
- #: modules/user-listing/userlisting.php:17
3439
- #: modules/user-listing/userlisting.php:23
 
3440
  msgid "User Listing"
3441
  msgstr "Brugeroversigt"
3442
 
3443
- #: admin/basic-info.php:138
3444
  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."
3445
  msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. "
3446
 
3447
- #: admin/basic-info.php:144
3448
  msgid "Email Customizer"
3449
  msgstr "E-mail opsætning"
3450
 
3451
- #: admin/basic-info.php:145
3452
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3453
  msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
3454
 
3455
- #: admin/basic-info.php:148
3456
- #: modules/custom-redirects/custom_redirects_admin.php:32
3457
- #: modules/custom-redirects/custom_redirects_admin.php:33
3458
- #: modules/modules.php:110
3459
  msgid "Custom Redirects"
3460
  msgstr "Brugertilpassede omdirigeringer ('redirects')"
3461
 
3462
- #: admin/basic-info.php:149
3463
  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."
3464
  msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk."
3465
 
3466
- #: admin/basic-info.php:154 modules/modules.php:75
 
3467
  msgid "Multiple Registration Forms"
3468
  msgstr "Forskellige registreringsformularer"
3469
 
3470
- #: admin/basic-info.php:155
3471
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3472
  msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
3473
 
3474
- #: admin/basic-info.php:158 modules/modules.php:82
 
3475
  msgid "Multiple Edit-profile Forms"
3476
  msgstr "Forskellige profil redigerings formularer"
3477
 
3478
- #: admin/basic-info.php:159
3479
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3480
  msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
3481
 
3482
- #: admin/basic-info.php:187
3483
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3484
  msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
3485
 
3486
- #: admin/basic-info.php:188
3487
  msgid "** only available in the %1$sPro version%2$s."
3488
  msgstr "** kun tilgængelig i %1$sPro version%2$s."
3489
 
3490
- #: admin/general-settings.php:42
3491
  msgid "Load Profile Builder's own CSS file in the front-end:"
3492
  msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
3493
 
3494
- #: admin/general-settings.php:45 admin/general-settings.php:58
3495
- #: admin/general-settings.php:107
3496
- #: modules/multiple-forms/edit-profile-forms.php:206
3497
- #: modules/multiple-forms/register-forms.php:229
3498
- #: modules/multiple-forms/register-forms.php:230
3499
- #: modules/user-listing/userlisting.php:2201
 
 
3500
  msgid "Yes"
3501
  msgstr "Ja"
3502
 
3503
- #: admin/general-settings.php:47
3504
  msgid "You can find the default file here: %1$s"
3505
  msgstr "Du kan finde default filen her: %1$s"
3506
 
3507
- #: admin/general-settings.php:54
3508
  msgid "\"Email Confirmation\" Activated:"
3509
  msgstr "\"E-mail bekræftelse\" aktiveret:"
3510
 
3511
- #: admin/general-settings.php:59 admin/general-settings.php:108
3512
- #: modules/multiple-forms/edit-profile-forms.php:206
3513
- #: modules/multiple-forms/register-forms.php:229
3514
- #: modules/multiple-forms/register-forms.php:230
 
 
3515
  msgid "No"
3516
  msgstr "Nej"
3517
 
3518
- #: admin/general-settings.php:64
3519
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3520
  msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
3521
 
3522
- #: admin/general-settings.php:72
3523
  msgid "\"Email Confirmation\" Landing Page:"
3524
  msgstr "\"E-mail bekræftelse\" landings side:"
3525
 
3526
- #: admin/general-settings.php:77
3527
  msgid "Existing Pages"
3528
  msgstr "Eksisterende sider"
3529
 
3530
- #: admin/general-settings.php:92
3531
  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."
3532
  msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren."
3533
 
3534
- #: admin/general-settings.php:103
3535
  msgid "\"Admin Approval\" Activated:"
3536
  msgstr "\"Administrator godkendelse\" aktiveret:"
3537
 
3538
- #: admin/general-settings.php:111
3539
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3540
  msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
3541
 
3542
- #: admin/general-settings.php:149
3543
  msgid "\"Admin Approval\" Feature:"
3544
  msgstr "\"Administrator godkendelse\" funktion:"
3545
 
3546
- #: admin/general-settings.php:152
3547
  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."
3548
  msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
3549
 
3550
- #: admin/general-settings.php:159
3551
  msgid "Allow Users to Log in With:"
3552
  msgstr "Tillad brugere at logge ind med:"
3553
 
3554
- #: admin/general-settings.php:164 admin/manage-fields.php:198
3555
- #: features/admin-approval/class-admin-approval.php:166
3556
- #: features/email-confirmation/class-email-confirmation.php:167
3557
- #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3558
- #: modules/custom-redirects/custom_redirects_admin.php:56
3559
- #: modules/email-customizer/email-customizer.php:28
3560
- #: modules/user-listing/userlisting.php:102
3561
- #: modules/user-listing/userlisting.php:277
3562
- #: modules/user-listing/userlisting.php:730
3563
- #: modules/user-listing/userlisting.php:2152
 
 
 
3564
  msgid "Username"
3565
  msgstr "Brugernavn"
3566
 
3567
- #: admin/general-settings.php:165 front-end/login.php:215
3568
- #: modules/email-customizer/email-customizer.php:29
3569
- #: modules/user-listing/userlisting.php:736
3570
- #: modules/user-listing/userlisting.php:2153
 
3571
  msgid "Email"
3572
  msgstr "E-mail"
3573
 
3574
- #: admin/general-settings.php:177
3575
  msgid "Minimum Password Length:"
3576
  msgstr "Min. længde på adgangskode:"
3577
 
3578
- #: admin/general-settings.php:182
3579
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3580
  msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
3581
 
3582
- #: admin/general-settings.php:189
3583
  msgid "Minimum Password Strength:"
3584
  msgstr "Minimum styrke på adgangskode:"
3585
 
3586
- #: admin/general-settings.php:193
3587
  msgid "Disabled"
3588
  msgstr "Deaktiver"
3589
 
3590
- #: admin/manage-fields.php:12
3591
  msgid "Manage Fields"
3592
  msgstr "Håndter felter"
3593
 
3594
- #: admin/manage-fields.php:13
3595
  msgid "Manage Default and Extra Fields"
3596
  msgstr "Håndter standard ('default') og ekstra felter"
3597
 
3598
- #: admin/manage-fields.php:116
3599
  msgid "Field Title"
3600
  msgstr "Felt titel"
3601
 
3602
- #: admin/manage-fields.php:116
3603
  msgid "Title of the field"
3604
  msgstr "Feltets titel"
3605
 
3606
- #: admin/manage-fields.php:117
3607
- #: modules/multiple-forms/edit-profile-forms.php:245
3608
- #: modules/multiple-forms/register-forms.php:266
3609
  msgid "Field"
3610
  msgstr "Felt"
3611
 
3612
- #: admin/manage-fields.php:118
3613
  msgid "Meta-name"
3614
  msgstr "Meta-navn"
3615
 
3616
- #: admin/manage-fields.php:119
3617
- #: modules/custom-redirects/custom_redirects_admin.php:65
3618
- #: modules/custom-redirects/custom_redirects_admin.php:95
3619
- #: modules/custom-redirects/custom_redirects_admin.php:114
3620
- #: modules/custom-redirects/custom_redirects_admin.php:139
3621
- #: modules/multiple-forms/edit-profile-forms.php:246
3622
- #: modules/multiple-forms/register-forms.php:267
3623
  msgid "ID"
3624
  msgstr "ID"
3625
 
3626
- #: admin/manage-fields.php:119
3627
- #: modules/multiple-forms/edit-profile-forms.php:246
3628
- #: modules/multiple-forms/register-forms.php:267
3629
  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"
3630
  msgstr "En unik autogenereret ID for dette bestemte felt<br/>Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.<br/>Kan ikke redigeres "
3631
 
3632
- #: admin/manage-fields.php:120
3633
  msgid "Description"
3634
  msgstr "Beskrivelse"
3635
 
3636
- #: admin/manage-fields.php:120
3637
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3638
  msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden<br/>Valgfri"
3639
 
3640
- #: admin/manage-fields.php:121
3641
  msgid "Row Count"
3642
  msgstr "Række antal"
3643
 
3644
- #: admin/manage-fields.php:121
3645
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3646
  msgstr "Angiv antallet af rækker i feltet 'Textarea'<br/>Hvis ikke angivet er default 5 rækker"
3647
 
3648
- #: admin/manage-fields.php:122
3649
  msgid "Allowed Image Extensions"
3650
  msgstr "Tilladte billedformater ('extensions')"
3651
 
3652
- #: admin/manage-fields.php:123
3653
  msgid "Allowed Upload Extensions"
3654
  msgstr "Tilladte upload formater ('extensions')"
3655
 
3656
- #: admin/manage-fields.php:124
3657
  msgid "Avatar Size"
3658
  msgstr "Avatar størrelse"
3659
 
3660
- #: admin/manage-fields.php:124
3661
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3662
  msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis ikke angivet er default sat til 100"
3663
 
3664
- #: admin/manage-fields.php:125
3665
  msgid "Date-format"
3666
  msgstr "Datoformat"
3667
 
3668
- #: admin/manage-fields.php:126
3669
  msgid "Terms of Agreement"
3670
  msgstr "Aftalebetingelser"
3671
 
3672
- #: admin/manage-fields.php:126
3673
  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;"
3674
  msgstr "Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.<br/>Link kan indsætte ved at anvende standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3675
 
3676
- #: admin/manage-fields.php:127
3677
  msgid "Options"
3678
  msgstr "Valgmuligheder"
3679
 
3680
- #: admin/manage-fields.php:128
3681
  msgid "Labels"
3682
  msgstr "Labels"
3683
 
3684
- #: admin/manage-fields.php:128
3685
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
3686
  msgstr "Angiv et komme separeret liste med labels<br/>Synlig for brugeren"
3687
 
3688
- #: admin/manage-fields.php:135
3689
  msgid "Default Value"
3690
  msgstr "Standard værdi"
3691
 
3692
- #: admin/manage-fields.php:135
3693
  msgid "Default value of the field"
3694
  msgstr "Feltets standardværdi"
3695
 
3696
- #: admin/manage-fields.php:136 admin/manage-fields.php:138
3697
- #: admin/manage-fields.php:139 admin/manage-fields.php:140
 
 
3698
  msgid "Default Option"
3699
  msgstr "Standard indstillingsvalg"
3700
 
3701
- #: admin/manage-fields.php:136
3702
  msgid "Specify the option which should be selected by default"
3703
  msgstr "Angiv indstillingen som skal vælges som standard"
3704
 
3705
- #: admin/manage-fields.php:137
3706
  msgid "Default Option(s)"
3707
  msgstr "Standard indstillingsvalg (flere)"
3708
 
3709
- #: admin/manage-fields.php:137
3710
  msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3711
  msgstr "Angiv indstillingen som skal vælges som standard<br/>Hvis der er flere valgmuligheder, separer dem med ',' (et komma)"
3712
 
3713
- #: admin/manage-fields.php:151
3714
  msgid "Default Content"
3715
  msgstr "Standard indhold"
3716
 
3717
- #: admin/manage-fields.php:151
3718
  msgid "Default value of the textarea"
3719
  msgstr "Standard værdi for tekstområdet ('textarea')"
3720
 
3721
- #: admin/manage-fields.php:158
 
3722
  msgid "Required"
3723
  msgstr "Krævet"
3724
 
3725
- #: admin/manage-fields.php:158
3726
  msgid "Whether the field is required or not"
3727
  msgstr "Om feltet er krævet eller ikke"
3728
 
3729
- #: admin/manage-fields.php:159
3730
  msgid "Overwrite Existing"
3731
  msgstr "Overskriv eksisterende"
3732
 
3733
- #: admin/manage-fields.php:159
3734
  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"
3735
  msgstr "Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn<br/>Brug dette på eget ansvar"
3736
 
3737
- #: admin/manage-fields.php:165
3738
  msgid "Field Properties"
3739
  msgstr "Felt indstillinger"
3740
 
3741
- #: admin/manage-fields.php:178
3742
  msgid "Registration & Edit Profile"
3743
  msgstr "Registrering & ændre profil"
3744
 
3745
- #: admin/manage-fields.php:197
3746
  msgid "Name"
3747
  msgstr "Navn"
3748
 
3749
- #: admin/manage-fields.php:198
3750
  msgid "Usernames cannot be changed."
3751
  msgstr "Brugernavn kan ikke ændres"
3752
 
3753
- #: admin/manage-fields.php:199
 
 
3754
  msgid "First Name"
3755
  msgstr "Fornavn"
3756
 
3757
- #: admin/manage-fields.php:200
 
 
3758
  msgid "Last Name"
3759
  msgstr "Efternavn"
3760
 
3761
- #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769
3762
- #: modules/user-listing/userlisting.php:2160
 
3763
  msgid "Nickname"
3764
  msgstr "Kælenavn"
3765
 
3766
- #: admin/manage-fields.php:202
3767
  msgid "Display name publicly as"
3768
  msgstr "Vis navn offentligt som"
3769
 
3770
- #: admin/manage-fields.php:203
3771
  msgid "Contact Info"
3772
  msgstr "Kontakt info"
3773
 
3774
- #: admin/manage-fields.php:204
3775
- #: features/admin-approval/class-admin-approval.php:169
3776
- #: features/email-confirmation/class-email-confirmation.php:168
3777
- #: modules/user-listing/userlisting.php:108
 
3778
  msgid "E-mail"
3779
  msgstr "E-mail"
3780
 
3781
- #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32
3782
- #: modules/user-listing/userlisting.php:111
3783
- #: modules/user-listing/userlisting.php:751
3784
- #: modules/user-listing/userlisting.php:2154
 
3785
  msgid "Website"
3786
  msgstr "Website"
3787
 
3788
- #: admin/manage-fields.php:209
3789
  msgid "AIM"
3790
  msgstr "AIM"
3791
 
3792
- #: admin/manage-fields.php:210
3793
  msgid "Yahoo IM"
3794
  msgstr "Yahoo IM"
3795
 
3796
- #: admin/manage-fields.php:211
3797
  msgid "Jabber / Google Talk"
3798
  msgstr "Jabber / Google Talk"
3799
 
3800
- #: admin/manage-fields.php:214
3801
  msgid "About Yourself"
3802
  msgstr "Om dig selv"
3803
 
3804
- #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114
3805
- #: modules/user-listing/userlisting.php:754
3806
- #: modules/user-listing/userlisting.php:2155
 
3807
  msgid "Biographical Info"
3808
  msgstr "Biografi info"
3809
 
3810
- #: admin/manage-fields.php:215
3811
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
3812
  msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt."
3813
 
3814
- #: admin/manage-fields.php:216 front-end/recover.php:73
3815
- #: modules/email-customizer/email-customizer.php:30
 
3816
  msgid "Password"
3817
  msgstr "Kodeord"
3818
 
3819
- #: admin/manage-fields.php:216
3820
  msgid "Type your password."
3821
  msgstr "Skriv din kodeord."
3822
 
3823
- #: admin/manage-fields.php:217 front-end/recover.php:74
 
3824
  msgid "Repeat Password"
3825
  msgstr "Gentag dit kodeord"
3826
 
3827
- #: admin/manage-fields.php:217
3828
  msgid "Type your password again. "
3829
  msgstr "Skriv dit kodeord igen."
3830
 
3831
- #: admin/manage-fields.php:977 admin/manage-fields.php:1134
 
3832
  msgid "You must select a field\n"
3833
  msgstr "Du skal vælge et felt\n"
3834
 
3835
- #: admin/manage-fields.php:987
3836
  msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
3837
  msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n"
3838
 
3839
- #: admin/manage-fields.php:998
3840
  msgid "The entered avatar size is not between 20 and 200\n"
3841
  msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n"
3842
 
3843
- #: admin/manage-fields.php:1001
3844
  msgid "The entered avatar size is not numerical\n"
3845
  msgstr "Det indtastede rækkenummer er ikke nummereret\n"
3846
 
3847
- #: admin/manage-fields.php:1009
3848
  msgid "The entered row number is not numerical\n"
3849
  msgstr "Det indsatte række nummer er ikke nummeret\n"
3850
 
3851
- #: admin/manage-fields.php:1012
3852
  msgid "You must enter a value for the row number\n"
3853
  msgstr "Du skal indtaste en værdi for rækkenummeret\n"
3854
 
3855
- #: admin/manage-fields.php:1033
3856
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3857
  msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
3858
 
3859
- #: admin/manage-fields.php:1036
3860
  msgid "You must enter a value for the date-format\n"
3861
  msgstr "Du skal indskrive en værdi for datoformatet\n"
3862
 
3863
- #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3864
- #: admin/manage-fields.php:1083
 
3865
  msgid "That meta-name is already in use\n"
3866
  msgstr "Det meta-navn er allerede i brug\n"
3867
 
3868
- #: admin/manage-fields.php:1114
3869
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3870
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
3871
 
3872
- #: admin/manage-fields.php:1118
3873
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3874
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
3875
 
3876
- #: admin/manage-fields.php:1141
3877
  msgid "That field is already added in this form\n"
3878
  msgstr "Det felt er allerede tilføjet denne formular\n"
3879
 
3880
- #: admin/manage-fields.php:1190
3881
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3882
  msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
3883
 
3884
- #: admin/manage-fields.php:1190
3885
- #: assets/lib/wck-api/wordpress-creation-kit.php:438
3886
- #: assets/lib/wck-api/wordpress-creation-kit.php:535
3887
- #: features/admin-approval/class-admin-approval.php:108
3888
- #: features/functions.php:718 features/functions.php:725
3889
- #: modules/custom-redirects/custom_redirects_admin.php:179
3890
- #: modules/custom-redirects/custom_redirects_admin.php:193
3891
- #: modules/custom-redirects/custom_redirects_admin.php:207
3892
- #: modules/custom-redirects/custom_redirects_admin.php:221
3893
- #: modules/multiple-forms/multiple-forms.php:406
 
3894
  msgid "Edit"
3895
  msgstr "Rediger"
3896
 
3897
- #: admin/manage-fields.php:1190
3898
- #: assets/lib/wck-api/wordpress-creation-kit.php:438
3899
- #: assets/lib/wck-api/wordpress-creation-kit.php:536
3900
- #: features/admin-approval/class-admin-approval.php:113
3901
- #: features/admin-approval/class-admin-approval.php:224
3902
- #: features/email-confirmation/class-email-confirmation.php:120
3903
- #: features/email-confirmation/class-email-confirmation.php:217
3904
- #: features/functions.php:711 features/functions.php:725
3905
- #: modules/custom-redirects/custom_redirects_admin.php:179
3906
- #: modules/custom-redirects/custom_redirects_admin.php:193
3907
- #: modules/custom-redirects/custom_redirects_admin.php:207
3908
- #: modules/custom-redirects/custom_redirects_admin.php:221
 
3909
  msgid "Delete"
3910
  msgstr "Slet"
3911
 
3912
- #: admin/manage-fields.php:1205
3913
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3914
  msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
3915
 
3916
- #: admin/register-version.php:14
3917
  msgid "Register Your Version"
3918
  msgstr "Registrer din version"
3919
 
3920
- #: admin/register-version.php:14
3921
  msgid "Register Version"
3922
  msgstr "Registrer version"
3923
 
3924
- #: admin/register-version.php:70
3925
  msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3926
  msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
3927
 
3928
- #: admin/register-version.php:72
3929
  msgid " Serial Number:"
3930
  msgstr "Serie Nummer:"
3931
 
3932
- #: admin/register-version.php:77
3933
  msgid "The serial number was successfully validated!"
3934
  msgstr "Serienummeret blev godkendt!"
3935
 
3936
- #: admin/register-version.php:79
3937
  msgid "The serial number entered couldn't be validated!"
3938
  msgstr "Serienummeret som du har indsat er ikke korrekt!"
3939
 
3940
- #: admin/register-version.php:83
3941
  msgid "The serial number couldn't be validated because it expired!"
3942
  msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
3943
 
3944
- #: admin/register-version.php:85
3945
  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!"
3946
  msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
3947
 
3948
- #: admin/register-version.php:87
3949
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3950
  msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3951
 
3952
- #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
 
3953
  msgid "Content"
3954
  msgstr "Indhold"
3955
 
3956
- #: assets/lib/wck-api/wordpress-creation-kit.php:535
3957
  msgid "Edit this item"
3958
  msgstr "Rediger denne"
3959
 
3960
- #: assets/lib/wck-api/wordpress-creation-kit.php:536
3961
  msgid "Delete this item"
3962
  msgstr "Slet denne"
3963
 
3964
- #: assets/lib/wck-api/wordpress-creation-kit.php:705
3965
  msgid "Please enter a value for the required field "
3966
  msgstr "Venligst indsæt en værdi for feltet"
3967
 
3968
- #: front-end/extra-fields/upload/upload.php:122
 
3969
  msgid "Select File"
3970
  msgstr "Vælg en fil"
3971
 
3972
- #: assets/lib/wck-api/fields/upload.php:43
3973
- #: front-end/extra-fields/upload/upload.php:112
 
3974
  msgid "Remove"
3975
  msgstr "Fjern"
3976
 
3977
- #: assets/lib/wck-api/fields/nested repeater.php:8
3978
  msgid "You can add the information for the %s after you add a entry"
3979
  msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
3980
 
3981
- #: assets/lib/wck-api/fields/upload.php:75
3982
- #: front-end/extra-fields/upload/upload.php:128
 
3983
  msgid "Upload "
3984
  msgstr "Upload"
3985
 
3986
- #: features/class-list-table.php:184
3987
  msgid "No items found."
3988
  msgstr "Intet fundet."
3989
 
3990
- #: features/class-list-table.php:308
3991
  msgid "Bulk Actions"
3992
  msgstr "Mængde aktion"
3993
 
3994
- #: features/class-list-table.php:318
3995
  msgid "Apply"
3996
  msgstr "Tilføj"
3997
 
3998
- #: features/class-list-table.php:402
3999
  msgid "Show all dates"
4000
  msgstr "Vis alle datoer"
4001
 
4002
- #: features/class-list-table.php:415
4003
  msgid "%1$s %2$d"
4004
  msgstr "%1$s %2$d"
4005
 
4006
- #: features/class-list-table.php:431
4007
  msgid "List View"
4008
  msgstr "Listevisning"
4009
 
4010
- #: features/class-list-table.php:432
4011
  msgid "Excerpt View"
4012
  msgstr "Uddragsvisning"
4013
 
4014
- #: features/class-list-table.php:458
4015
  msgid "%s pending"
4016
  msgstr "%s afventer"
4017
 
4018
- #: features/class-list-table.php:566
4019
  msgid "%1$s of %2$s"
4020
  msgstr "%1$s of %2$s"
4021
 
4022
- #: features/class-list-table.php:713
4023
  msgid "Select All"
4024
  msgstr "Vælg alt"
4025
 
4026
- #: features/functions.php:526
4027
  msgid "Strength indicator"
4028
  msgstr "Styrkeindikator"
4029
 
4030
- #: features/admin-approval/admin-approval.php:14
4031
- #: features/admin-approval/class-admin-approval.php:453
4032
  msgid "Admin Approval"
4033
  msgstr "Admin godkendelse"
4034
 
4035
- #: features/admin-approval/admin-approval.php:28
4036
- #: features/email-confirmation/email-confirmation.php:58
4037
  msgid "Do you want to"
4038
  msgstr "Vil du"
4039
 
4040
- #: features/admin-approval/admin-approval.php:51
4041
  msgid "Your session has expired! Please refresh the page and try again"
4042
  msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
4043
 
4044
- #: features/admin-approval/admin-approval.php:64
4045
  msgid "User successfully approved!"
4046
  msgstr "Bruger godkendt!"
4047
 
4048
- #: features/admin-approval/admin-approval.php:74
4049
  msgid "User successfully unapproved!"
4050
  msgstr "Bruger ikke godkendt!"
4051
 
4052
- #: features/admin-approval/admin-approval.php:80
4053
  msgid "User successfully deleted!"
4054
  msgstr "Bruger slettet!"
4055
 
4056
- #: features/admin-approval/admin-approval.php:85
4057
- #: features/admin-approval/admin-approval.php:129
4058
- #: features/email-confirmation/email-confirmation.php:132
4059
  msgid "You either don't have permission for that action or there was an error!"
4060
  msgstr "Enten har du ikke tilladelse til dette eller der var en felj!"
4061
 
4062
- #: features/admin-approval/admin-approval.php:96
4063
  msgid "Your session has expired! Please refresh the page and try again."
4064
  msgstr "Din session er udløbet! Opdater venligst siden og prøv igen."
4065
 
4066
- #: features/admin-approval/admin-approval.php:108
4067
  msgid "Users successfully approved!"
4068
  msgstr "Brugere godkendt!"
4069
 
4070
- #: features/admin-approval/admin-approval.php:117
4071
  msgid "Users successfully unapproved!"
4072
  msgstr "Brugere ikke godkendt med succes!"
4073
 
4074
- #: features/admin-approval/admin-approval.php:125
4075
  msgid "Users successfully deleted!"
4076
  msgstr "Brugere slettet!"
4077
 
4078
- #: features/admin-approval/admin-approval.php:145
4079
  msgid "Your account on %1$s has been approved!"
4080
  msgstr "Din konto på %1$s er blevet godkendt!"
4081
 
4082
- #: features/admin-approval/admin-approval.php:146
4083
- #: features/admin-approval/admin-approval.php:149
4084
  msgid "approved"
4085
  msgstr "godkendt"
4086
 
4087
- #: features/admin-approval/admin-approval.php:148
4088
  msgid "An administrator has just approved your account on %1$s (%2$s)."
4089
  msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
4090
 
4091
- #: features/admin-approval/admin-approval.php:153
4092
  msgid "Your account on %1$s has been unapproved!"
4093
  msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!"
4094
 
4095
- #: features/admin-approval/admin-approval.php:154
4096
- #: features/admin-approval/admin-approval.php:157
4097
  msgid "unapproved"
4098
  msgstr "'ikke-godkendt'"
4099
 
4100
- #: features/admin-approval/admin-approval.php:156
4101
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4102
  msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)."
4103
 
4104
- #: features/admin-approval/admin-approval.php:175
4105
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4106
  msgstr "<strong>ERROR</strong>: Din konto skal godkendes af en administrator før du kan logge ind."
4107
 
4108
- #: features/admin-approval/admin-approval.php:187
4109
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4110
  msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'"
4111
 
4112
- #: features/admin-approval/class-admin-approval.php:113
4113
  msgid "delete this user?"
4114
  msgstr "slet denne bruger?"
4115
 
4116
- #: features/admin-approval/class-admin-approval.php:116
4117
  msgid "unapprove this user?"
4118
  msgstr "sæt denne bruge til 'ikke-godkendt'?"
4119
 
4120
- #: features/admin-approval/class-admin-approval.php:116
4121
- #: features/admin-approval/class-admin-approval.php:223
4122
  msgid "Unapprove"
4123
  msgstr "Ophæv godkendelsen"
4124
 
4125
- #: features/admin-approval/class-admin-approval.php:118
4126
  msgid "approve this user?"
4127
  msgstr "godkend denne bruger?"
4128
 
4129
- #: features/admin-approval/class-admin-approval.php:118
4130
- #: features/admin-approval/class-admin-approval.php:222
4131
  msgid "Approve"
4132
  msgstr "Godkend"
4133
 
4134
- #: features/admin-approval/class-admin-approval.php:167
4135
- #: modules/user-listing/userlisting.php:278
4136
- #: modules/user-listing/userlisting.php:742
4137
- #: modules/user-listing/userlisting.php:2157
4138
  msgid "Firstname"
4139
  msgstr "Fornavn"
4140
 
4141
- #: features/admin-approval/class-admin-approval.php:168
4142
- #: modules/user-listing/userlisting.php:745
4143
- #: modules/user-listing/userlisting.php:2158
4144
  msgid "Lastname"
4145
  msgstr "Efternavn"
4146
 
4147
- #: features/admin-approval/class-admin-approval.php:170
4148
- #: modules/user-listing/userlisting.php:149
4149
- #: modules/user-listing/userlisting.php:279
4150
- #: modules/user-listing/userlisting.php:772
4151
- #: modules/user-listing/userlisting.php:2162
4152
  msgid "Role"
4153
  msgstr "Rolle"
4154
 
4155
- #: features/admin-approval/class-admin-approval.php:171
4156
- #: features/email-confirmation/class-email-confirmation.php:169
4157
  msgid "Registered"
4158
  msgstr "Registreret"
4159
 
4160
- #: features/admin-approval/class-admin-approval.php:172
4161
  msgid "User-status"
4162
  msgstr "Brugerstatus"
4163
 
4164
- #: features/admin-approval/class-admin-approval.php:252
4165
  msgid "Do you want to bulk approve the selected users?"
4166
  msgstr "Ønsker du at godkende de valgte brugere på én gang?"
4167
 
4168
- #: features/admin-approval/class-admin-approval.php:260
4169
  msgid "Do you want to bulk unapprove the selected users?"
4170
  msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
4171
 
4172
- #: features/admin-approval/class-admin-approval.php:266
4173
  msgid "Do you want to bulk delete the selected users?"
4174
  msgstr "Ønsker du at slette de valgte brugere på én gang?"
4175
 
4176
- #: features/admin-approval/class-admin-approval.php:274
4177
- #: features/email-confirmation/class-email-confirmation.php:278
4178
  msgid "Sorry, but you don't have permission to do that!"
4179
  msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
4180
 
4181
- #: features/admin-approval/class-admin-approval.php:339
4182
  msgid "Approved"
4183
  msgstr "Godkendt"
4184
 
4185
- #: features/admin-approval/class-admin-approval.php:341
4186
  msgid "Unapproved"
4187
  msgstr "Ikke godkendt"
4188
 
4189
- #: features/admin-approval/class-admin-approval.php:456
4190
- #: features/email-confirmation/class-email-confirmation.php:454
4191
  msgid "All Users"
4192
  msgstr "Alle brugere"
4193
 
4194
- #: features/email-confirmation/class-email-confirmation.php:120
4195
  msgid "delete this user from the _signups table?"
4196
  msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
4197
 
4198
- #: features/email-confirmation/class-email-confirmation.php:121
4199
  msgid "confirm this email yourself?"
4200
  msgstr "bekræft selv denne e-mail?"
4201
 
4202
- #: features/email-confirmation/class-email-confirmation.php:121
4203
- #: features/email-confirmation/class-email-confirmation.php:218
4204
  msgid "Confirm Email"
4205
  msgstr "Bekræft e-mail"
4206
 
4207
- #: features/email-confirmation/class-email-confirmation.php:122
4208
  msgid "resend the activation link?"
4209
  msgstr "gen-send aktiveringslinket?"
4210
 
4211
- #: features/email-confirmation/class-email-confirmation.php:122
4212
- #: features/email-confirmation/class-email-confirmation.php:219
4213
  msgid "Resend Activation Email"
4214
  msgstr "Gen-send aktiverings e-mailen"
4215
 
4216
- #: features/email-confirmation/class-email-confirmation.php:249
4217
  msgid "%s couldn't be deleted"
4218
  msgstr "%s kunne ikke slettes"
4219
 
4220
- #: features/email-confirmation/class-email-confirmation.php:253
4221
  msgid "All users have been successfully deleted"
4222
  msgstr "Alle brugere er blevet slettet uden problemer"
4223
 
4224
- #: features/email-confirmation/class-email-confirmation.php:263
4225
  msgid "The selected users have been activated"
4226
  msgstr "De valgte brugere er blevet aktiveret"
4227
 
4228
- #: features/email-confirmation/class-email-confirmation.php:274
4229
  msgid "The selected users have had their activation emails resent"
4230
  msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
4231
 
4232
- #: features/email-confirmation/class-email-confirmation.php:451
4233
- #: features/email-confirmation/email-confirmation.php:47
4234
  msgid "Users with Unconfirmed Email Address"
4235
  msgstr "Brugere med ubekræftede e-mail adresser"
4236
 
4237
- #: features/email-confirmation/email-confirmation.php:107
4238
  msgid "There was an error performing that action!"
4239
  msgstr "Der opstod en fejl ved udførelsen af denne handling!"
4240
 
4241
- #: features/email-confirmation/email-confirmation.php:115
4242
  msgid "The selected user couldn't be deleted"
4243
  msgstr "De valgte brugere kunne ikke slettes"
4244
 
4245
- #: features/email-confirmation/email-confirmation.php:126
4246
  msgid "Email notification resent to user"
4247
  msgstr "E-mail besked er gensendt til bruger"
4248
 
4249
- #: features/email-confirmation/email-confirmation.php:397
4250
  msgid "[%1$s] Activate %2$s"
4251
  msgstr "[%1$s] Aktivér %2$s"
4252
 
4253
- #: features/email-confirmation/email-confirmation.php:441
4254
- #: front-end/register.php:71
4255
  msgid "Could not create user!"
4256
  msgstr "Kunne ikke oprette bruger!"
4257
 
4258
- #: features/email-confirmation/email-confirmation.php:444
4259
  msgid "That username is already activated!"
4260
  msgstr "Dette brugernavn er allerede i brug!"
4261
 
4262
- #: features/email-confirmation/email-confirmation.php:467
4263
  msgid "There was an error while trying to activate the user"
4264
  msgstr "Der skete en fejl ved forsøg på at aktivere brugeren"
4265
 
4266
- #: features/email-confirmation/email-confirmation.php:515
4267
- #: modules/email-customizer/admin-email-customizer.php:73
4268
  msgid "A new subscriber has (been) registered!"
4269
  msgstr "En ny abonnent ('subscriber') er blevet registreret!"
4270
 
4271
- #: features/email-confirmation/email-confirmation.php:518
4272
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4273
  msgstr "Ny abonnent ('subscriber') på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
4274
 
4275
- #: features/email-confirmation/email-confirmation.php:633
4276
  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!"
4277
  msgstr "\"Administrator godkendelses\" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!"
4278
 
4279
- #: features/email-confirmation/email-confirmation.php:569
4280
  msgid "[%1$s] Your new account information"
4281
  msgstr "[%1$s] Din nye konto information"
4282
 
4283
- #: features/email-confirmation/email-confirmation.php:580
4284
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4285
  msgstr "Velkommen til %1$s!<br/><br/><br/>Dit brugernavn er:%2$s og adgangskoden er:%3$s"
4286
 
4287
- #: features/email-confirmation/email-confirmation.php:641
4288
- #: front-end/register.php:125
4289
  msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4290
  msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail."
4291
 
4292
- #: features/login-widget/login-widget.php:10
4293
  msgid "This login widget lets you add a login form in the sidebar."
4294
  msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar."
4295
 
4296
- #: features/login-widget/login-widget.php:15
4297
  msgid "Profile Builder Login Widget"
4298
  msgstr "Profile Builder login widget"
4299
 
4300
- #: front-end/class-formbuilder.php:399 front-end/login.php:250
 
 
4301
  msgid "Register"
4302
  msgstr "Registrer"
4303
 
4304
- #: features/login-widget/login-widget.php:63
4305
  msgid "Title:"
4306
  msgstr "Titel:"
4307
 
4308
- #: features/login-widget/login-widget.php:68
4309
  msgid "After login redirect URL (optional):"
4310
  msgstr "Efter login URL omdirigering (valgfri):"
4311
 
4312
- #: features/login-widget/login-widget.php:73
4313
  msgid "Register page URL (optional):"
4314
  msgstr "Registrerings side URL (valgfri):"
4315
 
4316
- #: features/login-widget/login-widget.php:78
4317
  msgid "Password Recovery page URL (optional):"
4318
  msgstr "Adgangskode genskabnings side URL (valgfri)"
4319
 
4320
- #: features/upgrades/upgrades-functions.php:91
4321
- #: features/upgrades/upgrades-functions.php:134
4322
  msgid "The usernames cannot be changed."
4323
  msgstr "Brugernavnene kan ikke ændres."
4324
 
4325
- #: front-end/class-formbuilder.php:125
4326
  msgid "Only an administrator can add new users."
4327
  msgstr "Kun administrator kan tilføje nye brugere."
4328
 
4329
- #: front-end/class-formbuilder.php:135
4330
  msgid "Users can register themselves or you can manually create users here."
4331
  msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her."
4332
 
4333
- #: front-end/class-formbuilder.php:138
4334
  msgid "Users cannot currently register themselves, but you can manually create users here."
4335
  msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her."
4336
 
4337
- #: front-end/class-formbuilder.php:158
4338
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4339
  msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s"
4340
 
4341
- #: front-end/class-formbuilder.php:158
4342
  msgid "Log out of this account."
4343
  msgstr "Log ud fra denne konto."
4344
 
4345
- #: front-end/class-formbuilder.php:158
4346
  msgid "Logout"
4347
  msgstr "Log ud"
4348
 
4349
- #: front-end/class-formbuilder.php:164
4350
  msgid "You must be logged in to edit your profile."
4351
  msgstr "Du skal være logget ind for at redigere din profil."
4352
 
4353
- #: features/functions.php:994
4354
  msgid "here"
4355
  msgstr "her"
4356
 
4357
- #: features/functions.php:995
4358
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4359
  msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
4360
 
4361
- #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
 
4362
  msgid "The account %1s has been successfully created!"
4363
  msgstr "Kontoen %1s er oprettet uden problemer!"
4364
 
4365
- #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
 
4366
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4367
  msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
4368
 
4369
- #: front-end/class-formbuilder.php:308
4370
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4371
  msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
4372
 
4373
- #: front-end/class-formbuilder.php:331
4374
  msgid "Your profile has been successfully updated!"
4375
  msgstr "Din profil er blevet opdateret uden problemer!"
4376
 
4377
- #: front-end/class-formbuilder.php:342
4378
  msgid "There was an error in the submitted form"
4379
  msgstr "Der var en fejl i den sendte formular. "
4380
 
4381
- #: front-end/class-formbuilder.php:399
4382
  msgid "Add User"
4383
  msgstr "Tilføj bruger"
4384
 
4385
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
 
4386
  msgid "Update"
4387
  msgstr "Opdater"
4388
 
4389
- #: front-end/class-formbuilder.php:465
4390
  msgid "Send these credentials via email."
4391
  msgstr "Send disse legitimationsoplysninger via e-mail."
4392
 
4393
- #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137
4394
- #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17
4395
- #: front-end/recover.php:237
 
 
 
4396
  msgid "ERROR"
4397
  msgstr "FEJL"
4398
 
4399
- #: front-end/login.php:137
4400
  msgid "The password you entered is incorrect."
4401
  msgstr "Adgangskoden du angav er forkert."
4402
 
4403
- #: front-end/login.php:138 front-end/login.php:145
 
4404
  msgid "Password Lost and Found."
4405
  msgstr "Adgangskode 'mistet og fundet'"
4406
 
4407
- #: front-end/login.php:138 front-end/login.php:145
 
4408
  msgid "Lost your password"
4409
  msgstr "Mistet din adgangskode"
4410
 
4411
- #: front-end/login.php:158
4412
  msgid "Both fields are empty."
4413
  msgstr "Begge felter er tomme."
4414
 
4415
- #: front-end/login.php:296
4416
  msgid "You are currently logged in as %1$s. %2$s"
4417
  msgstr "Du er i øjeblikket logget ind som %1$s. %2$s"
4418
 
4419
- #: front-end/login.php:295 front-end/logout.php:25
 
4420
  msgid "Log out of this account"
4421
  msgstr "Log ud af denne konto"
4422
 
4423
- #: front-end/login.php:295
4424
  msgid "Log out"
4425
  msgstr "Log ud"
4426
 
4427
- #: front-end/recover.php:17
4428
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4429
  msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\""
4430
 
4431
- #: front-end/recover.php:94
4432
  msgid "Reset Password"
4433
  msgstr "Genskab adgangskode"
4434
 
4435
- #: front-end/recover.php:114
4436
  msgid "Please enter your username or email address."
4437
  msgstr "Venligst angiv dit brugernavn eller e-mail adresse."
4438
 
4439
- #: front-end/recover.php:115
4440
  msgid "You will receive a link to create a new password via email."
4441
  msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode"
4442
 
4443
- #: front-end/recover.php:120
4444
  msgid "Username or E-mail"
4445
  msgstr "Brugernavn eller e-mail"
4446
 
4447
- #: front-end/recover.php:130
4448
  msgid "Get New Password"
4449
  msgstr "Anmod om ny adgangskode"
4450
 
4451
- #: front-end/recover.php:177
4452
  msgid "The username entered wasn't found in the database!"
4453
  msgstr "Det angivne brugernavn blev ikke fundet i databasen!"
4454
 
4455
- #: front-end/recover.php:177
4456
  msgid "Please check that you entered the correct username."
4457
  msgstr "Tjek venligst at du angav det korrekte brugernavn."
4458
 
4459
- #: front-end/recover.php:192
4460
  msgid "Check your e-mail for the confirmation link."
4461
  msgstr "Tjek din e-mail for bekræftelseslink."
4462
 
4463
- #: front-end/recover.php:227
4464
  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"
4465
  msgstr "Nogen anmodede om at adgangskoden skulle genskabes for følgende konto: <b>%1$s</b><br/>Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske. <br/>For at genskabe din adgangskode, følge dette link:%2$s"
4466
 
4467
- #: front-end/recover.php:230
4468
  msgid "Password Reset from \"%1$s\""
4469
  msgstr "Adgangskode genskab fra \"%1$s\""
4470
 
4471
- #: front-end/recover.php:237
4472
  msgid "There was an error while trying to send the activation link to %1$s!"
4473
  msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!"
4474
 
4475
- #: front-end/recover.php:199
4476
  msgid "The email address entered wasn't found in the database!"
4477
  msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!"
4478
 
4479
- #: front-end/recover.php:199
4480
  msgid "Please check that you entered the correct email address."
4481
  msgstr "Tjek venligst at du angav den korrekte e-mail adresse."
4482
 
4483
- #: front-end/recover.php:265
4484
  msgid "Your password has been successfully changed!"
4485
  msgstr "Din adgangskode er ændret uden problemer!"
4486
 
4487
- #: front-end/recover.php:284
4488
  msgid "You have successfully reset your password to: %1$s"
4489
  msgstr "Du har med succes genskabt din adgangskode til: %1$s"
4490
 
4491
- #: front-end/recover.php:287 front-end/recover.php:298
 
4492
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4493
  msgstr "Adgangskoden ændret uden problemer for %1$s på \"%2$s\""
4494
 
4495
- #: front-end/recover.php:295
4496
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4497
  msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.<br/>Hans/hendes nye adgagnskode er:%2$s"
4498
 
4499
- #: front-end/recover.php:312
4500
  msgid "The entered passwords don't match!"
4501
  msgstr "Den angivne adgangskode matcher ikke!"
4502
 
4503
- #: front-end/recover.php:367
4504
  msgid "ERROR:"
4505
  msgstr "FEJL:"
4506
 
4507
- #: front-end/recover.php:367
4508
  msgid "Invalid key!"
4509
  msgstr "Ugyldig nøgle!"
4510
 
4511
- #: front-end/register.php:56
4512
  msgid "Invalid activation key!"
4513
  msgstr "Ugyldig aktiveringsnøgle!"
4514
 
4515
- #: front-end/register.php:60
4516
  msgid "This username is now active!"
4517
  msgstr "Dette brugernavn er nu aktivt!"
4518
 
4519
- #: front-end/register.php:74
4520
  msgid "This username is already activated!"
4521
  msgstr "Dette brugernavn er allerede aktiveret!"
4522
 
4523
- #: front-end/register.php:124
4524
  msgid "Your email was successfully confirmed."
4525
  msgstr "Din e-mail blev bekræftet uden problemer."
4526
 
4527
- #: front-end/register.php:153
4528
  msgid "There was an error while trying to activate the user."
4529
  msgstr "Der skete en fejl under forsøget på at aktivere brugeren."
4530
 
4531
- #: front-end/default-fields/email/email.php:47
 
4532
  msgid "The email you entered is not a valid email address."
4533
  msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse."
4534
 
4535
- #: front-end/default-fields/email/email.php:60
4536
- #: front-end/default-fields/email/email.php:67
4537
  msgid "This email is already reserved to be used soon."
4538
  msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt."
4539
 
4540
- #: front-end/default-fields/email/email.php:60
4541
- #: front-end/default-fields/email/email.php:67
4542
- #: front-end/default-fields/email/email.php:77
4543
- #: front-end/default-fields/email/email.php:95
4544
- #: front-end/default-fields/username/username.php:49
4545
- #: front-end/default-fields/username/username.php:65
4546
  msgid "Please try a different one!"
4547
  msgstr "Venligst prøv en anden!"
4548
 
4549
- #: front-end/default-fields/email/email.php:77
4550
- #: front-end/default-fields/email/email.php:95
4551
  msgid "This email is already in use."
4552
  msgstr "Denne e-mail er allerede i brug."
4553
 
4554
- #: front-end/default-fields/password-repeat/password-repeat.php:37
4555
- #: front-end/default-fields/password-repeat/password-repeat.php:41
4556
  msgid "The passwords do not match"
4557
  msgstr "Adgangskoden matcher ikke"
4558
 
4559
- #: front-end/default-fields/username/username.php:49
4560
  msgid "This username already exists."
4561
  msgstr "Dette brugernavn eksisterer allerede."
4562
 
4563
- #: front-end/default-fields/username/username.php:65
4564
  msgid "This username is already reserved to be used soon."
4565
  msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt."
4566
 
4567
- #: modules/user-listing/userlisting.php:276
4568
  msgid "Avatar"
4569
  msgstr "Avatar"
4570
 
4571
- #: front-end/extra-fields/avatar/avatar.php:72
4572
- #: front-end/extra-fields/checkbox/checkbox.php:45
4573
- #: front-end/extra-fields/colorpicker/colorpicker.php:45
4574
- #: front-end/extra-fields/datepicker/datepicker.php:40
4575
- #: front-end/extra-fields/input-hidden/input-hidden.php:34
4576
- #: front-end/extra-fields/input/input.php:30
4577
- #: front-end/extra-fields/map/map.php:51
4578
- #: front-end/extra-fields/number/number.php:30
4579
- #: front-end/extra-fields/phone/phone.php:39
4580
- #: front-end/extra-fields/radio/radio.php:44
4581
- #: front-end/extra-fields/select-cpt/select-cpt.php:52
4582
- #: front-end/extra-fields/select-multiple/select-multiple.php:46
4583
- #: front-end/extra-fields/select-timezone/select-timezone.php:49
4584
- #: front-end/extra-fields/select/select.php:51
4585
- #: front-end/extra-fields/textarea/textarea.php:30
4586
- #: front-end/extra-fields/upload/upload.php:70
4587
- #: front-end/extra-fields/wysiwyg/wysiwyg.php:33
4588
  msgid "required"
4589
  msgstr "krævet"
4590
 
4591
- #: front-end/extra-fields/recaptcha/recaptcha.php:48
4592
  msgid "To use reCAPTCHA you must get an API key from"
4593
  msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra"
4594
 
4595
- #: front-end/extra-fields/recaptcha/recaptcha.php:131
4596
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4597
  msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!"
4598
 
4599
- #: front-end/extra-fields/recaptcha/recaptcha.php:192
4600
  msgid "To use reCAPTCHA you must get an API public key from:"
4601
  msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
4602
 
4603
- #: modules/modules.php:11 modules/modules.php:58
 
4604
  msgid "Modules"
4605
  msgstr "Moduler"
4606
 
4607
- #: modules/modules.php:59
4608
  msgid "Here you can activate / deactivate available modules for Profile Builder."
4609
  msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
4610
 
4611
- #: modules/modules.php:69
4612
  msgid "Name/Description"
4613
  msgstr "Navn/Beskrivelse"
4614
 
4615
- #: modules/modules.php:70
4616
  msgid "Status"
4617
  msgstr "Status"
4618
 
4619
- #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4620
- #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4621
- #: modules/modules.php:119
 
 
 
 
4622
  msgid "Active"
4623
  msgstr "Aktiv"
4624
 
4625
- #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4626
- #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4627
- #: modules/modules.php:120
 
 
 
 
4628
  msgid "Inactive"
4629
  msgstr "Inaktiv"
4630
 
4631
- #: modules/email-customizer/admin-email-customizer.php:11
4632
- #: modules/email-customizer/admin-email-customizer.php:12
4633
- #: modules/modules.php:96
4634
  msgid "Admin Email Customizer"
4635
  msgstr "Opsætning af administrator e-mails"
4636
 
4637
- #: modules/email-customizer/user-email-customizer.php:11
4638
- #: modules/email-customizer/user-email-customizer.php:12
4639
- #: modules/modules.php:103
4640
  msgid "User Email Customizer"
4641
  msgstr "Opsætning af bruger e-mails"
4642
 
4643
- #: assets/lib/wck-api/wordpress-creation-kit.php:334
4644
- #: modules/class-mustache-templates/class-mustache-templates.php:253
4645
  msgid "Save"
4646
  msgstr "Gem"
4647
 
4648
- #: modules/multiple-forms/edit-profile-forms.php:206
4649
- #: modules/multiple-forms/register-forms.php:230
4650
  msgid "Redirect"
4651
  msgstr "Omdiriger"
4652
 
4653
- #: modules/multiple-forms/edit-profile-forms.php:208
4654
- #: modules/multiple-forms/register-forms.php:232
4655
  msgid "URL"
4656
  msgstr "URL"
4657
 
4658
- #: modules/email-customizer/admin-email-customizer.php:38
4659
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4660
  msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes."
4661
 
4662
- #: modules/email-customizer/admin-email-customizer.php:41
4663
- #: modules/email-customizer/user-email-customizer.php:41
4664
  msgid "From (name)"
4665
  msgstr "Fra (navn)"
4666
 
4667
- #: modules/email-customizer/admin-email-customizer.php:49
4668
- #: modules/email-customizer/user-email-customizer.php:49
4669
  msgid "From (reply-to email)"
4670
  msgstr "Fra (svar-til e-mail)"
4671
 
4672
- #: modules/email-customizer/admin-email-customizer.php:57
4673
- #: modules/email-customizer/user-email-customizer.php:57
4674
  msgid "Common Settings"
4675
  msgstr "Fælles indstillinger"
4676
 
4677
- #: modules/email-customizer/admin-email-customizer.php:60
4678
  msgid ""
4679
  "\n"
4680
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4686,25 +4984,25 @@ msgstr ""
4686
  "<p>Brugernavn:{{username}}</p>\n"
4687
  "<p>E-mail:{{user_email}}</p>\n"
4688
 
4689
- #: modules/email-customizer/admin-email-customizer.php:69
4690
- #: modules/email-customizer/admin-email-customizer.php:99
4691
- #: modules/email-customizer/admin-email-customizer.php:126
4692
- #: modules/email-customizer/user-email-customizer.php:71
4693
- #: modules/email-customizer/user-email-customizer.php:99
4694
- #: modules/email-customizer/user-email-customizer.php:128
4695
- #: modules/email-customizer/user-email-customizer.php:155
4696
- #: modules/email-customizer/user-email-customizer.php:183
4697
- #: modules/email-customizer/user-email-customizer.php:214
4698
- #: modules/email-customizer/user-email-customizer.php:241
4699
- #: modules/email-customizer/user-email-customizer.php:274
4700
  msgid "Email Subject"
4701
  msgstr "E-mail emne"
4702
 
4703
- #: modules/email-customizer/admin-email-customizer.php:84
4704
  msgid "Default Registration & Registration with Email Confirmation"
4705
  msgstr "Standard registrering & registrering med e-mail bekræftelse"
4706
 
4707
- #: modules/email-customizer/admin-email-customizer.php:87
4708
  msgid ""
4709
  "\n"
4710
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4720,50 +5018,50 @@ msgstr ""
4720
  "<p>Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering,\n"
4721
  "så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!</p>\n"
4722
 
4723
- #: modules/email-customizer/admin-email-customizer.php:114
4724
- #: modules/email-customizer/user-email-customizer.php:143
4725
  msgid "Registration with Admin Approval"
4726
  msgstr "Registrering med administrator godkendelse"
4727
 
4728
- #: modules/email-customizer/email-customizer.php:7
4729
  msgid "Available Tags"
4730
  msgstr "Tilgængelige 'tags'"
4731
 
4732
- #: features/email-confirmation/class-email-confirmation.php:91
4733
- #: features/email-confirmation/class-email-confirmation.php:170
4734
  msgid "User Meta"
4735
  msgstr "Bruger 'meta'"
4736
 
4737
- #: modules/email-customizer/email-customizer.php:21
4738
  msgid "Site Url"
4739
  msgstr "Site URL"
4740
 
4741
- #: modules/email-customizer/email-customizer.php:22
4742
  msgid "Site Name"
4743
  msgstr "Site navn"
4744
 
4745
- #: modules/email-customizer/email-customizer.php:25
4746
- #: modules/user-listing/userlisting.php:158
4747
  msgid "User Id"
4748
  msgstr "Bruger ID"
4749
 
4750
- #: modules/email-customizer/email-customizer.php:33
4751
  msgid "Reply To"
4752
  msgstr "Svar til"
4753
 
4754
- #: modules/email-customizer/email-customizer.php:40
4755
  msgid "Activation Key"
4756
  msgstr "Aktiveringsnøgle"
4757
 
4758
- #: modules/email-customizer/email-customizer.php:41
4759
  msgid "Activation Url"
4760
  msgstr "Aktiverings URL"
4761
 
4762
- #: modules/email-customizer/email-customizer.php:42
4763
  msgid "Activation Link"
4764
  msgstr "Aktiveringslink"
4765
 
4766
- #: modules/email-customizer/user-email-customizer.php:64
4767
  msgid ""
4768
  "\n"
4769
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -4773,11 +5071,11 @@ msgstr ""
4773
  "<h3>Velkommen til {{site_name}}!</h3>\n"
4774
  "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
4775
 
4776
- #: modules/email-customizer/user-email-customizer.php:85
4777
  msgid "Default Registration"
4778
  msgstr "Standard registrering"
4779
 
4780
- #: modules/email-customizer/user-email-customizer.php:91
4781
  msgid ""
4782
  "\n"
4783
  "<p>To activate your user, please click the following link:<br/>\n"
@@ -4789,15 +5087,15 @@ msgstr ""
4789
  "{{{activation_link}}}</p>\n"
4790
  "<p>Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.</p>\n"
4791
 
4792
- #: modules/email-customizer/user-email-customizer.php:103
4793
  msgid "[{{site_name}}] Activate {{username}}"
4794
  msgstr "[{{site_name}}] Aktivér {{username}}"
4795
 
4796
- #: modules/email-customizer/user-email-customizer.php:114
4797
  msgid "Registration with Email Confirmation"
4798
  msgstr "Registrering med e-mail bekræftelse"
4799
 
4800
- #: modules/email-customizer/user-email-customizer.php:120
4801
  msgid ""
4802
  "\n"
4803
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -4809,11 +5107,11 @@ msgstr ""
4809
  "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
4810
  "<p>Før du kan tilgå din konto skal en administrator først godkende den. Du vil få yderligere besked via e-mail.</p>\n"
4811
 
4812
- #: modules/email-customizer/user-email-customizer.php:132
4813
  msgid "A new account has been created for you on {{site_name}}"
4814
  msgstr "En ny konto er blevet oprettet til dig på {{site_name}}"
4815
 
4816
- #: modules/email-customizer/user-email-customizer.php:148
4817
  msgid ""
4818
  "\n"
4819
  "<h3>Good News!</h3>\n"
@@ -4823,15 +5121,15 @@ msgstr ""
4823
  "<h3>Gode nyheder!</h3>\n"
4824
  "<p>En administrator har netop godkendt din konto: {{username}} på {{site_name}}.</p>\n"
4825
 
4826
- #: modules/email-customizer/user-email-customizer.php:159
4827
  msgid "Your account on {{site_name}} has been approved!"
4828
  msgstr "Din konto på {{site_name}} er blevet godkendt!"
4829
 
4830
- #: modules/email-customizer/user-email-customizer.php:170
4831
  msgid "User Approval Notification"
4832
  msgstr "Meddelelse om brugergodkendelse"
4833
 
4834
- #: modules/email-customizer/user-email-customizer.php:175
4835
  msgid ""
4836
  "\n"
4837
  "<h3>Hello,</h3>\n"
@@ -4841,463 +5139,463 @@ msgstr ""
4841
  "<h3>Hej,</h3>\n"
4842
  "<p>En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.</p>\n"
4843
 
4844
- #: modules/email-customizer/user-email-customizer.php:187
4845
  msgid "Your account on {{site_name}} has been unapproved!"
4846
  msgstr "Din konto på {{site_name}} er ikke længere godkendt!"
4847
 
4848
- #: modules/email-customizer/user-email-customizer.php:198
4849
  msgid "Unapproved User Notification"
4850
  msgstr "Meddelelse om ophævelse af brugerkonto"
4851
 
4852
- #: modules/multiple-forms/edit-profile-forms.php:11
4853
- #: modules/multiple-forms/edit-profile-forms.php:12
4854
  msgid "Edit-profile Form"
4855
  msgstr "Formular til profilredigering"
4856
 
4857
- #: modules/multiple-forms/edit-profile-forms.php:13
4858
- #: modules/multiple-forms/register-forms.php:13
4859
- #: modules/user-listing/userlisting.php:13
4860
  msgid "Add New"
4861
  msgstr "Tilføj ny"
4862
 
4863
- #: modules/multiple-forms/edit-profile-forms.php:14
4864
  msgid "Add new Edit-profile Form"
4865
  msgstr "Tilføj ny formular til profilredigering"
4866
 
4867
- #: modules/multiple-forms/edit-profile-forms.php:15
4868
  msgid "Edit the Edit-profile Forms"
4869
  msgstr "Rediger profilredigerings formularer"
4870
 
4871
- #: modules/multiple-forms/edit-profile-forms.php:16
4872
  msgid "New Edit-profile Form"
4873
  msgstr "Ny profilredigerings formular"
4874
 
4875
- #: modules/multiple-forms/edit-profile-forms.php:17
4876
- #: modules/multiple-forms/edit-profile-forms.php:23
4877
  msgid "Edit-profile Forms"
4878
  msgstr "Profilredigerings formularer"
4879
 
4880
- #: modules/multiple-forms/edit-profile-forms.php:18
4881
  msgid "View the Edit-profile Form"
4882
  msgstr "Vis profilredigerings formular"
4883
 
4884
- #: modules/multiple-forms/edit-profile-forms.php:19
4885
  msgid "Search the Edit-profile Forms"
4886
  msgstr "Søg profilredigerings formularer"
4887
 
4888
- #: modules/multiple-forms/edit-profile-forms.php:20
4889
  msgid "No Edit-profile Form found"
4890
  msgstr "Ingen profilredigerings formular fundet"
4891
 
4892
- #: modules/multiple-forms/edit-profile-forms.php:21
4893
  msgid "No Edit-profile Forms found in trash"
4894
  msgstr "Ingen profilredigerings formular fundet i papirkurven"
4895
 
4896
- #: modules/multiple-forms/edit-profile-forms.php:135
4897
- #: modules/multiple-forms/register-forms.php:138
4898
- #: modules/user-listing/userlisting.php:2048
4899
  msgid "Shortcode"
4900
  msgstr "'Shortcode'"
4901
 
4902
- #: modules/multiple-forms/edit-profile-forms.php:155
4903
- #: modules/multiple-forms/register-forms.php:159
4904
- #: modules/user-listing/userlisting.php:2069
4905
  msgid "(no title)"
4906
  msgstr "(ingen titel)"
4907
 
4908
- #: modules/multiple-forms/edit-profile-forms.php:175
4909
- #: modules/multiple-forms/register-forms.php:178
4910
- #: modules/user-listing/userlisting.php:2089
4911
  msgid "The shortcode will be available after you publish this form."
4912
  msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular."
4913
 
4914
- #: modules/multiple-forms/edit-profile-forms.php:177
4915
- #: modules/multiple-forms/register-forms.php:180
4916
- #: modules/user-listing/userlisting.php:2091
4917
  msgid "Use this shortcode on the page you want the form to be displayed:"
4918
  msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:"
4919
 
4920
- #: modules/multiple-forms/edit-profile-forms.php:181
4921
- #: modules/multiple-forms/register-forms.php:184
4922
- #: modules/user-listing/userlisting.php:2095
4923
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
4924
  msgstr "<span style=\"color:red;\">Bemærk:</span> ændring af denne formulars titel ændrer også 'shortcode'!"
4925
 
4926
- #: modules/multiple-forms/edit-profile-forms.php:187
4927
- #: modules/multiple-forms/register-forms.php:190
4928
- #: modules/user-listing/userlisting.php:2128
4929
  msgid "Form Shortcode"
4930
  msgstr "Formular 'shortcode'"
4931
 
4932
- #: modules/multiple-forms/edit-profile-forms.php:206
4933
- #: modules/multiple-forms/register-forms.php:230
4934
  msgid "Whether to redirect the user to a specific page or not"
4935
  msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke"
4936
 
4937
- #: modules/multiple-forms/edit-profile-forms.php:207
4938
- #: modules/multiple-forms/register-forms.php:231
4939
  msgid "Display Messages"
4940
  msgstr "Vis meddelelser"
4941
 
4942
- #: modules/multiple-forms/edit-profile-forms.php:207
4943
- #: modules/multiple-forms/register-forms.php:231
4944
  msgid "Allowed time to display any success messages (in seconds)"
4945
  msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser"
4946
 
4947
- #: modules/multiple-forms/edit-profile-forms.php:208
4948
  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"
4949
  msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular<br/>Brug følgende format: http://www.mysite.com"
4950
 
4951
- #: modules/multiple-forms/edit-profile-forms.php:215
4952
  msgid "After Profile Update..."
4953
  msgstr "Efter profilopdatering..."
4954
 
4955
- #: modules/multiple-forms/edit-profile-forms.php:241
4956
- #: modules/multiple-forms/register-forms.php:262
4957
  msgid "Add New Field to the List"
4958
  msgstr "Tilføj nyt felt til listen"
4959
 
4960
- #: modules/multiple-forms/edit-profile-forms.php:245
4961
- #: modules/multiple-forms/register-forms.php:266
4962
  msgid "Choose one of the supported fields you manage <a href=\""
4963
  msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
4964
 
4965
- #: modules/multiple-forms/multiple-forms.php:406
4966
  msgid "<pre>Title (Type)</pre>"
4967
  msgstr "<pre>Titel (Type)</pre>"
4968
 
4969
- #: modules/multiple-forms/multiple-forms.php:222
4970
  msgid "You need to specify the title of the form before creating it"
4971
  msgstr "Du skal specificere formularens titel før du opretter den"
4972
 
4973
- #: modules/multiple-forms/register-forms.php:11
4974
- #: modules/multiple-forms/register-forms.php:12
4975
  msgid "Registration Form"
4976
  msgstr "Registreringsformular"
4977
 
4978
- #: modules/multiple-forms/register-forms.php:14
4979
  msgid "Add new Registration Form"
4980
  msgstr "Tilføj ny registreringsformular"
4981
 
4982
- #: modules/multiple-forms/register-forms.php:15
4983
  msgid "Edit the Registration Forms"
4984
  msgstr "Rediger registreringsformularer"
4985
 
4986
- #: modules/multiple-forms/register-forms.php:16
4987
  msgid "New Registration Form"
4988
  msgstr "Ny registreringsformular"
4989
 
4990
- #: modules/multiple-forms/register-forms.php:17
4991
- #: modules/multiple-forms/register-forms.php:23
4992
  msgid "Registration Forms"
4993
  msgstr "Registreringsformularer"
4994
 
4995
- #: modules/multiple-forms/register-forms.php:18
4996
  msgid "View the Registration Form"
4997
  msgstr "Vis registrerinsformularen"
4998
 
4999
- #: modules/multiple-forms/register-forms.php:19
5000
  msgid "Search the Registration Forms"
5001
  msgstr "Søg registreringsformularer"
5002
 
5003
- #: modules/multiple-forms/register-forms.php:20
5004
  msgid "No Registration Form found"
5005
  msgstr "Ingen registreringsformular funder"
5006
 
5007
- #: modules/multiple-forms/register-forms.php:21
5008
  msgid "No Registration Forms found in trash"
5009
  msgstr "Ingen registreringsformularer fundet i papirkurven"
5010
 
5011
- #: modules/multiple-forms/register-forms.php:219
5012
  msgid "Default Role"
5013
  msgstr "Standard rolle"
5014
 
5015
- #: modules/multiple-forms/register-forms.php:228
5016
  msgid "Set Role"
5017
  msgstr "Indstil rolle"
5018
 
5019
- #: modules/multiple-forms/register-forms.php:228
5020
  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"
5021
  msgstr "Vælg hvilken rolle brugeren får efter han/hun har registreret sig<br/>Hvis ikke specificeret, anvendes rollen der er sat som 'default' i WordPress indstillingerne"
5022
 
5023
- #: modules/multiple-forms/register-forms.php:229
5024
  msgid "Automatically Log In"
5025
  msgstr "Automatisk log ind"
5026
 
5027
- #: modules/multiple-forms/register-forms.php:229
5028
  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"
5029
  msgstr "Hvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke<br/>Virker kun på 'single-sites' hvor \"Administrator godkendelse\" og \"E-mail bekræftelse\" ikke er aktiveret<br/>ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungere"
5030
 
5031
- #: modules/multiple-forms/register-forms.php:232
5032
  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"
5033
  msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.<br/>Brug følgende format: http://www.mysite.com"
5034
 
5035
- #: modules/multiple-forms/register-forms.php:238
5036
  msgid "After Registration..."
5037
  msgstr "Efter registrering..."
5038
 
5039
- #: modules/user-listing/userlisting.php:1021
5040
- #: modules/user-listing/userlisting.php:1468
5041
- #: modules/user-listing/userlisting.php:1886
5042
- #: modules/user-listing/userlisting.php:2355
5043
  msgid "Search Users by All Fields"
5044
  msgstr "Søg brugere ved at bruge 'Alle felter'"
5045
 
5046
- #: modules/user-listing/userlisting.php:14
5047
  msgid "Add new User Listing"
5048
  msgstr "Tilføj ny brugeroversigt"
5049
 
5050
- #: modules/user-listing/userlisting.php:15
5051
  msgid "Edit the User Listing"
5052
  msgstr "Rediger brugeroversigten"
5053
 
5054
- #: modules/user-listing/userlisting.php:16
5055
  msgid "New User Listing"
5056
  msgstr "Ny brugeroversigt"
5057
 
5058
- #: modules/user-listing/userlisting.php:18
5059
  msgid "View the User Listing"
5060
  msgstr "Vis brugeroversigten"
5061
 
5062
- #: modules/user-listing/userlisting.php:19
5063
  msgid "Search the User Listing"
5064
  msgstr "Søg i brugeroversigt"
5065
 
5066
- #: modules/user-listing/userlisting.php:20
5067
  msgid "No User Listing found"
5068
  msgstr "Ingen brugeroversigt fundet"
5069
 
5070
- #: modules/user-listing/userlisting.php:21
5071
  msgid "No User Listing found in trash"
5072
  msgstr "Ingen brugeroversigt fundet i papirkurven"
5073
 
5074
- #: modules/user-listing/userlisting.php:105
5075
  msgid "Display name as"
5076
  msgstr "Vis navn som"
5077
 
5078
- #: modules/user-listing/userlisting.php:150
5079
- #: modules/user-listing/userlisting.php:2156
5080
  msgid "Registration Date"
5081
  msgstr "Registreringsdato"
5082
 
5083
- #: modules/user-listing/userlisting.php:151
5084
- #: modules/user-listing/userlisting.php:2161
5085
  msgid "Number of Posts"
5086
  msgstr "Antal poster"
5087
 
5088
- #: modules/user-listing/userlisting.php:155
5089
  msgid "More Info"
5090
  msgstr "Mere info"
5091
 
5092
- #: modules/user-listing/userlisting.php:156
5093
  msgid "More Info Url"
5094
  msgstr "Mere info URL"
5095
 
5096
- #: modules/user-listing/userlisting.php:157
5097
  msgid "Avatar or Gravatar"
5098
  msgstr "Avatar eller Gravatar"
5099
 
5100
- #: modules/user-listing/userlisting.php:196
5101
- #: modules/user-listing/userlisting.php:227
5102
  msgid "Extra Functions"
5103
  msgstr "Ekstra funktioner"
5104
 
5105
- #: modules/user-listing/userlisting.php:199
5106
  msgid "Pagination"
5107
  msgstr "Sideopdeling"
5108
 
5109
- #: modules/user-listing/userlisting.php:200
5110
  msgid "Search all Fields"
5111
  msgstr "Søg 'Alle felter'"
5112
 
5113
- #: modules/user-listing/userlisting.php:229
5114
  msgid "Go Back Link"
5115
  msgstr "Tilbage link"
5116
 
5117
- #: modules/user-listing/userlisting.php:247
5118
  msgid "All-userlisting Template"
5119
  msgstr "Skabelon for flere-brugeroversigt"
5120
 
5121
- #: modules/user-listing/userlisting.php:250
5122
  msgid "Single-userlisting Template"
5123
  msgstr "Skabelon for enkelt-brugeroversigt"
5124
 
5125
- #: modules/user-listing/userlisting.php:733
5126
  msgid "First/Lastname"
5127
  msgstr "For-/Efternavn"
5128
 
5129
- #: modules/user-listing/userlisting.php:281
5130
- #: modules/user-listing/userlisting.php:739
5131
  msgid "Sign-up Date"
5132
  msgstr "Tilmeldingsdato"
5133
 
5134
- #: modules/user-listing/userlisting.php:748
5135
- #: modules/user-listing/userlisting.php:2159
5136
  msgid "Display Name"
5137
  msgstr "Vis navn som"
5138
 
5139
- #: modules/user-listing/userlisting.php:280
5140
- #: modules/user-listing/userlisting.php:757
5141
  msgid "Posts"
5142
  msgstr "Poster"
5143
 
5144
- #: modules/user-listing/userlisting.php:760
5145
- #: modules/user-listing/userlisting.php:2166
5146
  msgid "Aim"
5147
  msgstr "'Aim'"
5148
 
5149
- #: modules/user-listing/userlisting.php:763
5150
- #: modules/user-listing/userlisting.php:2167
5151
  msgid "Yim"
5152
  msgstr "'Yim'"
5153
 
5154
- #: modules/user-listing/userlisting.php:766
5155
- #: modules/user-listing/userlisting.php:2168
5156
  msgid "Jabber"
5157
  msgstr "'Jabber'"
5158
 
5159
- #: modules/user-listing/userlisting.php:1273
5160
  msgid "Click here to see more information about this user"
5161
  msgstr "Klik her for at se mere information om denne bruger"
5162
 
5163
- #: modules/user-listing/userlisting.php:1273
5164
  msgid "More..."
5165
  msgstr "Mere..."
5166
 
5167
- #: modules/user-listing/userlisting.php:1276
5168
  msgid "Click here to see more information about this user."
5169
  msgstr "Klik her for at se mere information om denne bruger."
5170
 
5171
- #: modules/user-listing/userlisting.php:1422
5172
- #: modules/user-listing/userlisting.php:1425
5173
  msgid "Click here to go back"
5174
  msgstr "Klik her for at gå tilbage"
5175
 
5176
- #: modules/user-listing/userlisting.php:1422
5177
  msgid "Back"
5178
  msgstr "Tilbage"
5179
 
5180
- #: modules/user-listing/userlisting.php:1455
5181
  msgid "&laquo;&laquo; First"
5182
  msgstr "&laquo;&laquo; Først"
5183
 
5184
- #: modules/user-listing/userlisting.php:1456
5185
  msgid "&laquo; Prev"
5186
  msgstr "&laquo; Forrige"
5187
 
5188
- #: modules/user-listing/userlisting.php:1457
5189
  msgid "Next &raquo; "
5190
  msgstr "Næste &raquo; "
5191
 
5192
- #: modules/user-listing/userlisting.php:1458
5193
  msgid "Last &raquo;&raquo;"
5194
  msgstr "Sidste &raquo;&raquo;"
5195
 
5196
- #: modules/user-listing/userlisting.php:1487
5197
  msgid "You don't have any pagination settings on this userlisting!"
5198
  msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!"
5199
 
5200
- #: modules/user-listing/userlisting.php:1903
5201
  msgid "Search"
5202
  msgstr "Søg"
5203
 
5204
- #: modules/user-listing/userlisting.php:1904
5205
  msgid "Clear Results"
5206
  msgstr "Ryd resultatet"
5207
 
5208
- #: modules/user-listing/userlisting.php:2098
5209
- #: modules/user-listing/userlisting.php:2102
5210
  msgid "Extra shortcode parameters"
5211
  msgstr "Ekstra 'shortcode' parametre"
5212
 
5213
- #: modules/user-listing/userlisting.php:2105
5214
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5215
  msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt"
5216
 
5217
- #: modules/user-listing/userlisting.php:2106
5218
  msgid "Example:"
5219
  msgstr "Eksempel:"
5220
 
5221
- #: modules/user-listing/userlisting.php:2108
5222
  msgid "Remember though, that the field-value combination must exist in the database."
5223
  msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen."
5224
 
5225
- #: modules/user-listing/userlisting.php:2183
5226
  msgid "Random (very slow on large databases > 10K user)"
5227
  msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)"
5228
 
5229
- #: modules/user-listing/userlisting.php:2195
5230
  msgid "Roles to Display"
5231
  msgstr "Roller der skal vises"
5232
 
5233
- #: modules/user-listing/userlisting.php:2195
5234
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5235
  msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller<br/>Hvis ikke specificeret, så bruges alle eksisterende roller"
5236
 
5237
- #: modules/user-listing/userlisting.php:2196
5238
  msgid "Number of Users/Page"
5239
  msgstr "Antal brugere/side"
5240
 
5241
- #: modules/user-listing/userlisting.php:2197
5242
  msgid "Default Sorting Criteria"
5243
  msgstr "Standard sorteringskriterie"
5244
 
5245
- #: modules/user-listing/userlisting.php:2197
5246
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5247
  msgstr "Sæt standard sorteringskriteriet<br/>Denne kan ændres midlertidigt for hver ny session"
5248
 
5249
- #: modules/user-listing/userlisting.php:2198
5250
  msgid "Default Sorting Order"
5251
  msgstr "Standard sorteringsorden"
5252
 
5253
- #: modules/user-listing/userlisting.php:2198
5254
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5255
  msgstr "Sæt standard sorteringsorden<br/>Denne kan ændres midlertidigt for hver ny session"
5256
 
5257
- #: modules/user-listing/userlisting.php:2199
5258
  msgid "Avatar Size (All-userlisting)"
5259
  msgstr "Avatar størrelse (Flere-brugeroversigt)"
5260
 
5261
- #: modules/user-listing/userlisting.php:2199
5262
  msgid "Set the avatar size on the all-userlisting only"
5263
  msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten "
5264
 
5265
- #: modules/user-listing/userlisting.php:2200
5266
  msgid "Avatar Size (Single-userlisting)"
5267
  msgstr "Avatar størrelse (enkelt-brugeroversigt)"
5268
 
5269
- #: modules/user-listing/userlisting.php:2200
5270
  msgid "Set the avatar size on the single-userlisting only"
5271
  msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten"
5272
 
5273
- #: modules/user-listing/userlisting.php:2201
5274
  msgid "Visible only to logged in users?"
5275
  msgstr "Synlig kun for brugere, der er logget ind?"
5276
 
5277
- #: modules/user-listing/userlisting.php:2201
5278
  msgid "The userlisting will only be visible only to the logged in users"
5279
  msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind"
5280
 
5281
- #: modules/user-listing/userlisting.php:2202
5282
  msgid "Visible to following Roles"
5283
  msgstr "Synlig for følgende roller"
5284
 
5285
- #: modules/user-listing/userlisting.php:2202
5286
  msgid "The userlisting will only be visible to the following roles"
5287
  msgstr "Brugeroversigten vil kun være synlig for følgende roller"
5288
 
5289
- #: modules/user-listing/userlisting.php:2208
5290
  msgid "Userlisting Settings"
5291
  msgstr "Opsætning af brugeroversigt"
5292
 
5293
- #: modules/user-listing/userlisting.php:2331
5294
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5295
  msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!"
5296
 
5297
- #: modules/user-listing/userlisting.php:2331
5298
  msgid "You can find it in the Profile Builder menu."
5299
  msgstr "Du kan finde det i Profile Builder menuen."
5300
 
5301
- #: modules/user-listing/userlisting.php:2494
5302
  msgid "No results found!"
5303
  msgstr "Ingen resultater fundet!"
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-05-08 09:42:03+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\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 ""
105
 
106
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
  msgid "View Map"
108
  msgstr ""
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 ""
195
 
196
+ #: profile-builder-2.0/admin/add-ons.php:105
197
  msgid "Available in All Versions"
198
  msgstr ""
199
 
200
+ #: profile-builder-2.0/admin/add-ons.php:148
201
  msgid "Learn More"
202
  msgstr ""
203
 
204
+ #: profile-builder-2.0/admin/basic-info.php:99
205
  msgid "Timepicker"
206
  msgstr ""
207
 
208
+ #: profile-builder-2.0/admin/basic-info.php:100
209
  msgid "Colorpicker"
210
  msgstr ""
211
 
212
+ #: profile-builder-2.0/admin/basic-info.php:103
213
  msgid "Currency Select"
214
  msgstr ""
215
 
216
+ #: profile-builder-2.0/admin/basic-info.php:109
217
  msgid "Number"
218
  msgstr ""
219
 
220
+ #: profile-builder-2.0/admin/basic-info.php:114
221
  msgid "Validation"
222
  msgstr ""
223
 
224
+ #: profile-builder-2.0/admin/basic-info.php:115
225
  msgid "Map"
226
  msgstr ""
227
 
228
+ #: profile-builder-2.0/admin/basic-info.php:116
229
  msgid "HTML"
230
  msgstr ""
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 ""
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 ""
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 ""
264
 
265
+ #: profile-builder-2.0/admin/manage-fields.php:145
266
  msgid "Allowable Values"
267
  msgstr ""
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 ""
272
 
273
+ #: profile-builder-2.0/admin/manage-fields.php:146
274
  msgid "Error Message"
275
  msgstr ""
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 ""
280
 
281
+ #: profile-builder-2.0/admin/manage-fields.php:147
282
  msgid "Time Format"
283
  msgstr ""
284
 
285
+ #: profile-builder-2.0/admin/manage-fields.php:147
286
  msgid "Specify the time format."
287
  msgstr ""
288
 
289
+ #: profile-builder-2.0/admin/manage-fields.php:148
290
  msgid "Google Maps API Key"
291
  msgstr ""
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 ""
296
 
297
+ #: profile-builder-2.0/admin/manage-fields.php:149
298
  msgid "Default Latitude"
299
  msgstr ""
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 ""
304
 
305
+ #: profile-builder-2.0/admin/manage-fields.php:150
306
  msgid "Default Longitude"
307
  msgstr ""
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 ""
312
 
313
+ #: profile-builder-2.0/admin/manage-fields.php:151
314
  msgid "Default Zoom Level"
315
  msgstr ""
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 ""
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 ""
344
 
345
+ #: profile-builder-2.0/admin/manage-fields.php:155
346
  msgid "Eg. (###) ###-####"
347
  msgstr ""
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 ""
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 ""
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 ""
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 ""
907
 
908
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
  msgid "Please enter numbers only"
910
  msgstr ""
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 ""
1142
 
1143
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
  msgid "No options available"
1145
  msgstr ""
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 "Firmanavn"
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 "Land"
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 ""
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 "Stat"
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 "Postnr"
1240
+
1241
+ #: pb-add-on-woocommerce/billing-fields.php:14
1242
+ msgid "Email Address"
1243
+ msgstr "Email"
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 "Send til anden adresse"
1252
+
1253
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
+ msgid "Billing Address"
1255
+ msgstr "Fakturerings adresse"
1256
+
1257
+ #: pb-add-on-woocommerce/index.php:169
1258
+ msgid "Displays customer billing fields in front-end. "
1259
+ msgstr "Se kunde faktureringsfelter i front-end"
1260
+
1261
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
+ msgid "Shipping Address"
1263
+ msgstr "Leveringsadresse"
1264
+
1265
+ #: pb-add-on-woocommerce/index.php:173
1266
+ msgid "Displays customer shipping fields in front-end. "
1267
+ msgstr "Se kunde leveringsfelter i front-end"
1268
+
1269
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
+ msgid "Display on WooCommerce Checkout"
1271
+ msgstr "Se på WooCommerce betal siden"
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 ""
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 "WooCommerce skal installeres ag aktiveret for at Profile Builder - WooCommerce Sync Add-on virker!"
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 Sync"
1285
+
1286
+ #: pb-add-on-woocommerce/woosync-page.php:76
1287
+ msgid "Choose Register form to display on My Account page:"
1288
+ msgstr "Choose Register form to display on My Account page:"
1289
+
1290
+ #: pb-add-on-woocommerce/woosync-page.php:81
1291
+ msgid "Default Register"
1292
+ msgstr "Default Register"
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 ""
1297
+
1298
+ #: pb-add-on-woocommerce/woosync-page.php:110
1299
+ msgid "Choose Edit Profile form to display on My Account page:"
1300
+ msgstr "Choose Edit Profile form to display on My Account page:"
1301
+
1302
+ #: pb-add-on-woocommerce/woosync-page.php:115
1303
+ msgid "Default Edit Profile"
1304
+ msgstr "Standard editerings profil"
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 "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1309
+
1310
+ #: profile-builder-2.0/admin/add-ons.php:190
1311
  msgid "Recommended Plugins"
1312
  msgstr "Anbefalede plugins"
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 "Fri"
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 "Accept user payments, create subscription plans and restrict content on your membership site."
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 "Flere detaljer"
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 "Plugin er <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 "Plugin er <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 "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1346
 
1347
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
  msgid "Paid Accounts"
1349
  msgstr "Betalt konto"
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 - a free WordPress plugin"
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 "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1358
 
1359
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
  msgid "Paid & Free Subscriptions"
1361
  msgstr "Betalt og fri tilmelding"
1362
 
1363
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
  msgid "Restrict Content"
1365
  msgstr "Beskyt indhold"
1366
 
1367
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
  msgid "Member Management"
1369
  msgstr "Medlemsstyring"
1370
 
1371
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
  msgid "Email Templates"
1373
  msgstr "Email skabeloner"
1374
 
1375
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
  msgid "Account Management"
1377
  msgstr "Kontostyring"
1378
 
1379
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
  msgid "Subscription Management"
1381
  msgstr "Tilmeldingsstyring"
1382
 
1383
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
  msgid "Payment Management"
1385
  msgstr "Betalingsstyring"
1386
 
1387
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
  msgid "Plugin is Active"
1389
  msgstr "Plugin er aktiv"
1390
 
1391
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
  msgid "Plugin has been activated"
1393
  msgstr "Plugin er aktiveret"
1394
 
1395
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
  msgid "Plugin has been deactivated."
1397
  msgstr "Plugin er blevet deaktiveret"
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 "Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside."
1402
 
1403
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
  msgid "Step by Step Quick Setup"
1405
  msgstr "Step by Step Quick Setup"
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 ""
1410
 
1411
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
  msgid "After Login"
1413
  msgstr "Efter logind"
1414
 
1415
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
  msgid "After Logout"
1417
  msgstr "Efter logud"
1418
 
1419
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
  msgid "After Registration"
1421
  msgstr "Efter tilmelding"
1422
 
1423
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
  msgid "After Edit Profile"
1425
  msgstr "Efter brugerprofil opdatering"
1426
 
1427
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
  msgid "After Successful Email Confirmation"
1429
  msgstr "Efter email bekræftelse"
1430
 
1431
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
  msgid "After Successful Password Reset"
1433
  msgstr "Efter psssword reset"
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 "Dashboard (redirect users from accessing the dashboard)"
1438
 
1439
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
  msgid "User ID"
1441
  msgstr "Bruger ID"
1442
 
1443
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
  msgid "User ID or Username"
1445
  msgstr "Bruger ID eller Brugernavn"
1446
 
1447
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
  msgid "User ID / Username"
1449
  msgstr "Bruger ID / Brugernavn"
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 "Vælg og intast ID eller brugernavn på din bruger"
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 "Redirect Type"
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 "Redirect 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 "Can contain the following dynamic tags:{{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 "Individual User Redirects"
1480
 
1481
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
  msgid "... Choose"
1483
  msgstr "... Vælg"
1484
 
1485
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
  msgid "Select a user role."
1487
  msgstr "Vælg brugerrolle"
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 "Rollebaseret bruger redirects"
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 "Global Redirects"
1498
 
1499
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
  msgid "Login ( wp_login.php )"
1501
  msgstr "Logind ( 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 "Tilmeld ( 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 "Mistet kodeord ( 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 "Forfatter arkiv ( http://sitename.com/author/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 "Redirect Default WordPress Forms and Pages"
1518
 
1519
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
  msgid "How does this work?"
1521
  msgstr "Hvordan virker dette ?"
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>User ID / Username</pre><pre>Redirect</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>User Role</pre><pre>Redirect</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>Redirect</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 "These redirects happen after a successful action, like registration or after a successful 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 "Which redirect happens depends on the following priority:"
1543
 
1544
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
  msgid "Redirect Default WordPress forms and pages"
1546
  msgstr "Redirect Default WordPress forms and pages"
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 "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1551
 
1552
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
  msgid "Available tags for dynamic URLs"
1554
  msgstr "Available tags for dynamic 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 "You use the following tags in your URLs to redirect users to various pages."
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 "generates a url of the current website homepage."
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 the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1567
 
1568
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
  msgid "the ID of the user"
1570
  msgstr "Bruger ID "
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 "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."
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 "URL på sidst besøgte side"
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 "Du kan ikke oprette duplicate redirects!"
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 "Display name publicly as - only appears on the Edit Profile page!"
1589
 
1590
+ #: profile-builder-2.0/admin/basic-info.php:37
1591
  msgid "Friction-less login using %s shortcode or a widget."
1592
  msgstr "Friction-less login using %s shortcode or a widget."
1593
 
1594
+ #: profile-builder-2.0/admin/basic-info.php:41
1595
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
+ msgstr "Beautiful registration forms fully customizable using the %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 "Straight forward edit profile forms using %s shortcode."
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 "Allow users to recover their password in the front-end using the %s."
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 "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1609
 
1610
+ #: profile-builder-2.0/admin/general-settings.php:115
1611
  msgid "\"Admin Approval\" on User Role:"
1612
  msgstr "Admin godkendelse på denne brugerrolle"
1613
 
1614
+ #: profile-builder-2.0/admin/general-settings.php:134
1615
  msgid "Select on what user roles to activate Admin Approval."
1616
  msgstr "Select on what user roles to activate Admin Approval."
1617
 
1618
+ #: profile-builder-2.0/admin/manage-fields.php:133
1619
  msgid "Display on PB forms"
1620
  msgstr "Se på PB forms"
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 Register"
1629
 
1630
+ #: profile-builder-2.0/admin/manage-fields.php:133
1631
  msgid "PB Recover Password"
1632
+ msgstr "PB Recover Password"
1633
 
1634
+ #: profile-builder-2.0/admin/manage-fields.php:133
1635
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
+ msgstr "Select on which Profile Builder forms to display reCAPTCHA"
1637
 
1638
+ #: profile-builder-2.0/admin/manage-fields.php:134
1639
  msgid "Display on default WP forms"
1640
+ msgstr "Display on default WP forms"
1641
 
1642
+ #: profile-builder-2.0/admin/manage-fields.php:134
1643
  msgid "Default WP Login"
1644
+ msgstr "Default WP Login"
1645
 
1646
+ #: profile-builder-2.0/admin/manage-fields.php:134
1647
  msgid "Default WP Register"
1648
+ msgstr "Default WP Register"
1649
 
1650
+ #: profile-builder-2.0/admin/manage-fields.php:134
1651
  msgid "Default WP Recover Password"
1652
+ msgstr "Default WP Recover Password"
1653
 
1654
+ #: profile-builder-2.0/admin/manage-fields.php:134
1655
  msgid "Select on which default WP forms to display reCAPTCHA"
1656
  msgstr "Vælg på hvilne standard WP forms de vil se reCAPTCHA"
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 "Standard værdi på feltet"
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 "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."
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 "Di konto skal godekendes af en administrator før du kan logge ind"
2890
 
2891
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
  msgid "Your account has been successfully created!"
2893
  msgstr "Din konto er oprettet!"
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 "Indtast en valid reCAPTCHA værdi"
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 "Tryk på BACK knappen i din browser, og prøv igen."
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 "Beklager, du kan ikke uploade denne fil type."
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 "Der opstaod en fejl, prøv venligst igen senere."
2915
 
2916
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
  msgid "More"
2918
  msgstr "Mere"
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 "Du har ikke lov til at se denne bruger liste."
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 "Du er ikke oprettet med en rigtige brugerrolle for at se denne liste"
2927
 
2928
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
  msgid "Ascending"
2930
  msgstr "Stigende"
2931
 
2932
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
  msgid "Descending"
2934
  msgstr "Faldende"
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 "Download nu"
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 "Hvis du kan lide at bruge <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate os på WordPress.org</a>. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle."
2946
 
2947
+ #: profile-builder-2.0/admin/manage-fields.php:82
2948
  msgid "Choose one of the supported field types"
2949
  msgstr "Vælg en af de supporterede felttyper"
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 ".Ekstra felttyper er tilgængelig i <a href=\"%s\">Hobbyist or PRO versions</a>."
2954
 
2955
+ #: profile-builder-2.0/admin/manage-fields.php:131
2956
  msgid "Site Key"
2957
  msgstr "Site nøgle (Key)"
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 "Site nøgle (Key) fra 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 "Hemmelig nøgle (Key)"
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 "Den hemmelige nøgle (Key) fra 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 "Du skal enter site nøglen (Key)\n"
2974
 
2975
+ #: profile-builder-2.0/admin/manage-fields.php:1025
2976
  msgid "You must enter the secret key\n"
2977
  msgstr "Du skal enter den hemmelige nøgle (Key)\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 "Tilføjelser"
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 "Aktivér"
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 "Dowloader og installerer...."
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 "Installationen gennemført"
3002
 
3003
+ #: profile-builder-2.0/admin/add-ons.php:39
3004
  msgid "Add-On is Active"
3005
  msgstr "Tilføjelser er aktive"
3006
 
3007
+ #: profile-builder-2.0/admin/add-ons.php:40
3008
  msgid "Add-On has been activated"
3009
  msgstr "Tilføjelser er blevet aktiveret"
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 "Geninstallér"
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 "Tilføjelser (add-on) er <strong>active</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 "Tilføjelser (add-on) er <strong>inactive</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 "Deaktivér"
3034
 
3035
+ #: profile-builder-2.0/admin/add-ons.php:47
3036
  msgid "Add-On has been deactivated."
3037
  msgstr "Tilføjelser er blevet deaktiveret"
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 "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere."
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 "Installér nu"
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 med din version af Profile Builder."
3054
 
3055
+ #: profile-builder-2.0/admin/add-ons.php:162
3056
  msgid "Upgrade Profile Builder"
3057
  msgstr "Opgradér Profile Builder"
3058
 
3059
+ #: profile-builder-2.0/admin/add-ons.php:163
3060
  msgid "Not compatible with Profile Builder"
3061
  msgstr "Ikke kompatibel med 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 "Ikke kompatibel med din version af Profile Builder"
3066
 
3067
+ #: profile-builder-2.0/admin/add-ons.php:172
3068
  msgid "Minimum required Profile Builder version:"
3069
  msgstr "Minimum krævet version af 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 "Kunne ikke installere tilføjelse (add-on). Prøv igen eller <a href=\"%s\" target=\"_blank\">install manually</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 "Du skal indtaste en gyldig e-mail adresse."
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 "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte."
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 "Venligst indtast et gyldigt brugernavn."
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 "Kun administratorer kan se dette felt på rediger profilformularer."
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 "Som administrator kan du ikke ændre din rolle."
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"
3107
  "<p>Hans/hendes nye adgangskode er: {{password}}</p>\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 meddelelse for genskabning af bruger adgangskode"
3113
 
3114
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3115
  msgid "Reset Key"
3116
  msgstr "Genskab nøgle"
3117
 
3118
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3119
  msgid "Reset Url"
3120
  msgstr "Genskab URL"
3121
 
3122
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3123
  msgid "Reset Link"
3124
  msgstr "Genskab 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"
3139
  "<p>For at genskabe din adgangskode gå ind på følgende adresse:<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}}] Nulstil adgangskode "
3145
 
3146
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3147
  msgid "Password Reset Email"
3148
  msgstr "E-mail vedr. nulstilling af adgangskode"
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"
3156
  "<p>Du har med succes nulstillet din adgangskode til: {{password}}</p>\n"
3157
  "\n"
3158
 
3159
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3160
  msgid "[{{site_name}}] Password Reset Successfully"
3161
  msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt"
3162
 
3163
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3164
  msgid "Password Reset Success Email"
3165
  msgstr "E-mail vedr. adgangskode nulstillet succesfuldt"
3166
 
3167
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3168
  msgid "User Nicename"
3169
  msgstr "Bruger kaldenavn"
3170
 
3171
+ #: pb-add-on-woocommerce/woosync-page.php:80
3172
+ #: pb-add-on-woocommerce/woosync-page.php:114
3173
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3174
  msgid "None"
3175
  msgstr "Ingen"
3176
 
3177
+ #: profile-builder-2.0/admin/admin-functions.php:132
3178
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3179
  msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
3180
 
3181
+ #: profile-builder-2.0/admin/admin-functions.php:148
3182
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3183
  msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
3184
 
3185
+ #: profile-builder-2.0/admin/general-settings.php:179
3186
  msgid "Username and Email"
3187
  msgstr "Brugernavn og e-mail"
3188
 
3189
+ #: profile-builder-2.0/admin/general-settings.php:184
3190
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
3191
  msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
3192
 
3193
+ #: profile-builder-2.0/admin/general-settings.php:185
3194
  msgid "\"Username\" - users can Log In only with Username."
3195
  msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
3196
 
3197
+ #: profile-builder-2.0/admin/general-settings.php:186
3198
  msgid "\"Email\" - users can Log In only with Email."
3199
  msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
3200
 
3201
+ #: profile-builder-2.0/admin/manage-fields.php:124
3202
  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 (.*)"
3203
  msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
3204
 
3205
+ #: profile-builder-2.0/admin/manage-fields.php:125
3206
  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 (.*)"
3207
  msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)"
3208
 
3209
+ #: profile-builder-2.0/admin/manage-fields.php:135
3210
  msgid "User Roles"
3211
  msgstr "Brugerroller"
3212
 
3213
+ #: profile-builder-2.0/admin/manage-fields.php:135
3214
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3215
  msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)"
3216
 
3217
+ #: profile-builder-2.0/admin/manage-fields.php:136
3218
  msgid "User Roles Order"
3219
  msgstr "Brugerroller orden"
3220
 
3221
+ #: profile-builder-2.0/admin/manage-fields.php:136
3222
  msgid "Save the user role order from the user roles checkboxes"
3223
  msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
3224
 
3225
+ #: profile-builder-2.0/admin/manage-fields.php:1128
3226
  msgid "Please select at least one user role\n"
3227
  msgstr "Vælg venligst mindst en brugerrolle\n"
3228
 
3229
+ #: profile-builder-2.0/admin/register-version.php:22
3230
  msgid "Profile Builder Register"
3231
  msgstr "Registrer Profile Builder"
3232
 
3233
+ #: profile-builder-2.0/admin/register-version.php:81
3234
  msgid "The serial number is about to expire soon!"
3235
  msgstr "Serienummeret udløber snart!"
3236
 
3237
+ #: profile-builder-2.0/admin/register-version.php:81
3238
  msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3239
  msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
3240
 
3241
+ #: profile-builder-2.0/admin/register-version.php:83
3242
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3243
  msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
3244
 
3245
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3246
  msgid "Add Entry"
3247
  msgstr "Tilføj post"
3248
 
3249
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3250
  msgid "show"
3251
  msgstr "vis"
3252
 
3253
+ #: profile-builder-2.0/features/functions.php:736
3254
  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"
3255
  msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
3256
 
3257
+ #: profile-builder-2.0/front-end/class-formbuilder.php:659
3258
  msgid "User to edit:"
3259
  msgstr "Bruger der skal redigeres:"
3260
 
3261
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3262
+ #: profile-builder-2.0/front-end/recover.php:262
3263
  msgid "The password must have the minimum length of %s characters"
3264
  msgstr "Adgangskoden skal have en minimumslængde på %s karakterer"
3265
 
3266
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3267
+ #: profile-builder-2.0/front-end/recover.php:266
3268
  msgid "The password must have a minimum strength of %s"
3269
  msgstr "Adgangskoden skal minimum have en styrke på %s"
3270
 
3271
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3272
  msgid "You cannot register this user role"
3273
  msgstr "Du kan ikke registrere denne brugerrolle"
3274
 
3275
+ #: profile-builder-2.0/front-end/login.php:153
3276
  msgid "username or email"
3277
  msgstr "brugernavn eller e-mail"
3278
 
3279
+ #: profile-builder-2.0/front-end/login.php:222
3280
  msgid "Username or Email"
3281
  msgstr "Brugernavn eller e-mail"
3282
 
3283
+ #: profile-builder-2.0/front-end/logout.php:15
3284
  msgid "You are currently logged in as %s. "
3285
  msgstr "Du er i øjeblikket logget ind som %s."
3286
 
3287
+ #: profile-builder-2.0/front-end/logout.php:15
3288
  msgid "Log out &raquo;"
3289
  msgstr "Log ud &raquo;"
3290
 
3291
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3292
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3293
  msgid "User Role"
3294
  msgstr "Brugerrolle"
3295
 
3296
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3297
  msgid "View all extra shortcode parameters"
3298
  msgstr "Se alle ekstra \"shortcode\" parametre"
3299
 
3300
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3301
  msgid "displays only the users that you specified the user_id for"
3302
  msgstr "vis kun de brugere som du specificerede 'user_id' for"
3303
 
3304
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3305
  msgid "displays all users except the ones you specified the user_id for"
3306
  msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for"
3307
 
3308
+ #: profile-builder-2.0/features/functions.php:566
3309
  msgid "Minimum length of %d characters"
3310
  msgstr "Minimum længde på %d karakterer"
3311
 
3312
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
3313
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
3314
  msgid "This message is only visible by administrators"
3315
  msgstr "Denne meddelelse er kun synlig for administratorer"
3316
 
3317
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3318
  msgid "User not found"
3319
  msgstr "Bruger ikke fundet"
3320
 
3321
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3322
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3323
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3324
  msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
3325
 
3326
+ #: profile-builder-2.0/admin/admin-bar.php:48
3327
  msgid "Choose which user roles view the admin bar in the front-end of the website."
3328
  msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
3329
 
3330
+ #: profile-builder-2.0/admin/manage-fields.php:129
3331
  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"
3332
  msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
3333
 
3334
+ #: profile-builder-2.0/admin/manage-fields.php:1055
3335
  msgid "The meta-name cannot be empty\n"
3336
  msgstr "'Meta-name' kan ikke være tom\n"
3337
 
3338
+ #: profile-builder-2.0/admin/register-version.php:69
3339
  msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3340
  msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog."
3341
 
3342
+ #: profile-builder-2.0/admin/register-version.php:243
3343
  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>"
3344
  msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
3345
 
3346
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3347
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3348
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3349
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3350
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3351
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3352
  msgid "...Choose"
3353
  msgstr "...Vælg"
3354
 
3355
+ #: profile-builder-2.0/features/class-list-table.php:526
3356
+ #: profile-builder-2.0/features/class-list-table.php:942
3357
  msgid "1 item"
3358
+ msgstr "1 emne"
 
 
3359
 
3360
+ #: profile-builder-2.0/features/functions.php:552
3361
  msgid "Very Weak"
3362
  msgstr "Meget svag"
3363
 
3364
+ #: profile-builder-2.0/features/functions.php:640
3365
  msgid "This field is required"
3366
  msgstr "Dette felt er obligatorisk"
3367
 
3368
+ #: profile-builder-2.0/features/functions.php:704
3369
  msgid "Cancel"
3370
  msgstr "Annuller"
3371
 
3372
+ #: profile-builder-2.0/features/functions.php:740
3373
  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"
3374
  msgstr "For at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig\". %3$sAfvis%4$s"
3375
 
3376
+ #: profile-builder-2.0/front-end/login.php:144
3377
  msgid "Invalid username."
3378
  msgstr "Ugyldigt brugernavn"
3379
 
3380
+ #: profile-builder-2.0/front-end/login.php:149
3381
+ #: profile-builder-2.0/front-end/login.php:153
3382
  msgid "username"
3383
  msgstr "brugernavn"
3384
 
3385
+ #: profile-builder-2.0/front-end/login.php:149
3386
  msgid "email"
3387
  msgstr "e-mail"
3388
 
3389
+ #: profile-builder-2.0/front-end/login.php:256
3390
  msgid "Lost your password?"
3391
  msgstr "Mistet din adgangskode?"
3392
 
3393
+ #: profile-builder-2.0/index.php:34
3394
  msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3395
  msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
3396
 
3397
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3398
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3399
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3400
  msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen"
3401
 
3402
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3403
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3404
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3405
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3406
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3407
  msgid "Your selected password at signup"
3408
  msgstr "Din valgte adgangskode ved oprettelse"
3409
 
3410
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3411
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3412
  msgstr "Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes."
3413
 
3414
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3415
  msgid "This form is empty."
3416
  msgstr "Denne formular er tom."
3417
 
3418
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3419
  msgid "Delete all items"
3420
  msgstr "Slet alle emner"
3421
 
3422
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3423
  msgid "Delete all"
3424
  msgstr "Slet alt"
3425
 
3426
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3427
  msgid "Choose..."
3428
  msgstr "Vælg..."
3429
 
3430
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3431
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3432
  msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt"
3433
 
3434
+ #: profile-builder-2.0/admin/admin-bar.php:10
3435
  msgid "Show/Hide the Admin Bar on the Front-End"
3436
  msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
3437
 
3438
+ #: profile-builder-2.0/admin/admin-bar.php:10
3439
+ #: profile-builder-2.0/admin/admin-bar.php:47
3440
  msgid "Admin Bar Settings"
3441
  msgstr "Admin menu indstillinger "
3442
 
3443
+ #: profile-builder-2.0/admin/admin-bar.php:57
3444
  msgid "User-Role"
3445
  msgstr "Brugerrolle"
3446
 
3447
+ #: profile-builder-2.0/admin/admin-bar.php:58
3448
  msgid "Visibility"
3449
  msgstr "Synlighed"
3450
 
3451
+ #: profile-builder-2.0/admin/admin-bar.php:73
3452
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3453
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3454
  msgid "Default"
3455
  msgstr "Default"
3456
 
3457
+ #: profile-builder-2.0/admin/admin-bar.php:74
3458
  msgid "Show"
3459
  msgstr "Vis"
3460
 
3461
+ #: profile-builder-2.0/admin/admin-bar.php:75
3462
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3463
  msgid "Hide"
3464
  msgstr "Skjul"
3465
 
3466
+ #: pb-add-on-woocommerce/woosync-page.php:147
3467
+ #: profile-builder-2.0/admin/admin-bar.php:86
3468
+ #: profile-builder-2.0/admin/general-settings.php:224
3469
+ #: profile-builder-2.0/admin/register-version.php:95
3470
+ #: profile-builder-2.0/features/functions.php:697
3471
+ #: profile-builder-2.0/modules/modules.php:127
3472
  msgid "Save Changes"
3473
  msgstr "Gem ændringer"
3474
 
3475
+ #: profile-builder-2.0/admin/admin-functions.php:37
3476
  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 )"
3477
  msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
3478
 
3479
+ #: profile-builder-2.0/admin/admin-functions.php:37
3480
+ #: profile-builder-2.0/admin/general-settings.php:10
3481
+ #: profile-builder-2.0/admin/general-settings.php:35
3482
  msgid "General Settings"
3483
  msgstr "Generelle indstillinger"
3484
 
3485
+ #: profile-builder-2.0/admin/admin-functions.php:137
3486
+ #: profile-builder-2.0/admin/general-settings.php:210
3487
  msgid "Very weak"
3488
  msgstr "Meget svag"
3489
 
3490
+ #: profile-builder-2.0/admin/admin-functions.php:137
3491
+ #: profile-builder-2.0/admin/general-settings.php:211
3492
+ #: profile-builder-2.0/features/functions.php:552
3493
  msgid "Weak"
3494
  msgstr "Svag"
3495
 
3496
+ #: profile-builder-2.0/admin/admin-functions.php:137
3497
+ #: profile-builder-2.0/admin/general-settings.php:212
3498
+ #: profile-builder-2.0/features/functions.php:552
3499
  msgid "Medium"
3500
  msgstr "Middel"
3501
 
3502
+ #: profile-builder-2.0/admin/admin-functions.php:137
3503
+ #: profile-builder-2.0/admin/general-settings.php:213
3504
+ #: profile-builder-2.0/features/functions.php:552
3505
  msgid "Strong"
3506
  msgstr "Stærk"
3507
 
3508
+ #: profile-builder-2.0/admin/admin-functions.php:187
3509
  msgid "Add Field"
3510
  msgstr "Tilføj felt"
3511
 
3512
+ #: profile-builder-2.0/admin/admin-functions.php:189
3513
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3514
  msgid "Save Settings"
3515
  msgstr "Gem indstillinger"
3516
 
3517
+ #: profile-builder-2.0/admin/basic-info.php:10
3518
  msgid "Basic Information"
3519
  msgstr "Basis information"
3520
 
3521
+ #: profile-builder-2.0/admin/basic-info.php:29
3522
  msgid "Version %s"
3523
  msgstr "Version %s"
3524
 
3525
+ #: profile-builder-2.0/admin/basic-info.php:30
3526
  msgid "<strong>Profile Builder </strong>"
3527
  msgstr "<strong>Profile Builder </strong>"
3528
 
3529
+ #: profile-builder-2.0/admin/basic-info.php:31
3530
  msgid "The best way to add front-end registration, edit profile and login forms."
3531
  msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
3532
 
3533
+ #: profile-builder-2.0/admin/basic-info.php:33
3534
  msgid "For Modern User Interaction"
3535
  msgstr "Til 'Modern User Interaction'"
3536
 
3537
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3538
+ #: profile-builder-2.0/admin/basic-info.php:36
3539
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3540
  msgid "Login"
3541
  msgstr "Log ind"
3542
 
3543
+ #: profile-builder-2.0/admin/basic-info.php:40
3544
  msgid "Registration"
3545
  msgstr "Registrering"
3546
 
3547
+ #: profile-builder-2.0/admin/basic-info.php:44
3548
  msgid "Edit Profile"
3549
  msgstr "Rediger profil"
3550
 
3551
+ #: profile-builder-2.0/admin/basic-info.php:51
3552
  msgid "Extra Features"
3553
  msgstr "Ekstra funktioner"
3554
 
3555
+ #: profile-builder-2.0/admin/basic-info.php:52
3556
  msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3557
  msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
3558
 
3559
+ #: profile-builder-2.0/admin/basic-info.php:53
3560
  msgid "Enable extra features"
3561
  msgstr "Aktiver ekstra funktioner"
3562
 
3563
+ #: profile-builder-2.0/admin/basic-info.php:57
3564
  msgid "Recover Password"
3565
  msgstr "Genskab adgangskode"
3566
 
3567
+ #: profile-builder-2.0/admin/basic-info.php:61
3568
  msgid "Admin Approval (*)"
3569
  msgstr "Admin godkendelse (*)"
3570
 
3571
+ #: profile-builder-2.0/admin/basic-info.php:62
3572
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3573
  msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
3574
 
3575
+ #: profile-builder-2.0/admin/basic-info.php:65
3576
  msgid "Email Confirmation"
3577
  msgstr "E-mail bekræftelse"
3578
 
3579
+ #: profile-builder-2.0/admin/basic-info.php:66
3580
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3581
  msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse."
3582
 
3583
+ #: profile-builder-2.0/admin/basic-info.php:69
3584
  msgid "Minimum Password Length and Strength Meter"
3585
  msgstr "Minimum længde og styrke på adgangskode"
3586
 
3587
+ #: profile-builder-2.0/admin/basic-info.php:70
3588
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3589
  msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden."
3590
 
3591
+ #: profile-builder-2.0/admin/basic-info.php:73
3592
  msgid "Login with Email or Username"
3593
  msgstr "Log ind med e-mail eller brugernavn"
3594
 
3595
+ #: profile-builder-2.0/admin/basic-info.php:74
3596
  msgid "Allow users to log in with their email or username when accessing your site."
3597
  msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
3598
 
3599
+ #: profile-builder-2.0/admin/basic-info.php:87
3600
  msgid "Customize Your Forms The Way You Want (*)"
3601
  msgstr "Tilpas dine formularer som du ønsker det (*)"
3602
 
3603
+ #: profile-builder-2.0/admin/basic-info.php:88
3604
  msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3605
  msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
3606
 
3607
+ #: profile-builder-2.0/admin/basic-info.php:90
3608
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3609
  msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
3610
 
3611
+ #: profile-builder-2.0/admin/basic-info.php:92
3612
  msgid "Get started with extra fields"
3613
  msgstr "Kom i gang med ekstra felter"
3614
 
3615
+ #: profile-builder-2.0/admin/basic-info.php:95
3616
  msgid "Avatar Upload"
3617
  msgstr "Avatar upload"
3618
 
3619
+ #: profile-builder-2.0/admin/basic-info.php:96
3620
  msgid "Generic Uploads"
3621
  msgstr "Generisk upload"
3622
 
3623
+ #: profile-builder-2.0/admin/basic-info.php:97
3624
  msgid "Agree To Terms Checkbox"
3625
  msgstr "Accept af betingelser tjekboks"
3626
 
3627
+ #: profile-builder-2.0/admin/basic-info.php:98
3628
  msgid "Datepicker"
3629
  msgstr "Datovælger"
3630
 
3631
+ #: profile-builder-2.0/admin/basic-info.php:101
3632
  msgid "reCAPTCHA"
3633
  msgstr "reCAPTCHA"
3634
 
3635
+ #: profile-builder-2.0/admin/basic-info.php:102
3636
  msgid "Country Select"
3637
  msgstr "Landevalg"
3638
 
3639
+ #: profile-builder-2.0/admin/basic-info.php:104
3640
  msgid "Timezone Select"
3641
  msgstr "Tidszone valg"
3642
 
3643
+ #: profile-builder-2.0/admin/basic-info.php:108
3644
  msgid "Input / Hidden Input"
3645
  msgstr "Input / Skjult input"
3646
 
3647
+ #: profile-builder-2.0/admin/basic-info.php:110
3648
  msgid "Checkbox"
3649
  msgstr "Tjekboks"
3650
 
3651
+ #: profile-builder-2.0/admin/basic-info.php:111
3652
  msgid "Select"
3653
  msgstr "Vælg"
3654
 
3655
+ #: profile-builder-2.0/admin/basic-info.php:112
3656
  msgid "Radio Buttons"
3657
  msgstr "'Radio' knapper"
3658
 
3659
+ #: profile-builder-2.0/admin/basic-info.php:113
3660
  msgid "Textarea"
3661
  msgstr "Tekstområde"
3662
 
3663
+ #: profile-builder-2.0/admin/basic-info.php:125
3664
  msgid "Powerful Modules (**)"
3665
  msgstr "Stærke moduler (**)"
3666
 
3667
+ #: profile-builder-2.0/admin/basic-info.php:126
3668
  msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3669
  msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
3670
 
3671
+ #: profile-builder-2.0/admin/basic-info.php:128
3672
  msgid "Enable your modules"
3673
  msgstr "Aktiver dine moduler"
3674
 
3675
+ #: profile-builder-2.0/admin/basic-info.php:131
3676
  msgid "Find out more about PRO Modules"
3677
  msgstr "Fin ud af mere om PRO Moduler"
3678
 
3679
+ #: profile-builder-2.0/admin/basic-info.php:136
3680
+ #: profile-builder-2.0/modules/modules.php:89
3681
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3682
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3683
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3684
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3685
  msgid "User Listing"
3686
  msgstr "Brugeroversigt"
3687
 
3688
+ #: profile-builder-2.0/admin/basic-info.php:138
3689
  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."
3690
  msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. "
3691
 
3692
+ #: profile-builder-2.0/admin/basic-info.php:144
3693
  msgid "Email Customizer"
3694
  msgstr "E-mail opsætning"
3695
 
3696
+ #: profile-builder-2.0/admin/basic-info.php:145
3697
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3698
  msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
3699
 
3700
+ #: profile-builder-2.0/admin/basic-info.php:148
3701
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3702
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3703
+ #: profile-builder-2.0/modules/modules.php:110
3704
  msgid "Custom Redirects"
3705
  msgstr "Brugertilpassede omdirigeringer ('redirects')"
3706
 
3707
+ #: profile-builder-2.0/admin/basic-info.php:149
3708
  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."
3709
  msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk."
3710
 
3711
+ #: profile-builder-2.0/admin/basic-info.php:154
3712
+ #: profile-builder-2.0/modules/modules.php:75
3713
  msgid "Multiple Registration Forms"
3714
  msgstr "Forskellige registreringsformularer"
3715
 
3716
+ #: profile-builder-2.0/admin/basic-info.php:155
3717
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3718
  msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
3719
 
3720
+ #: profile-builder-2.0/admin/basic-info.php:158
3721
+ #: profile-builder-2.0/modules/modules.php:82
3722
  msgid "Multiple Edit-profile Forms"
3723
  msgstr "Forskellige profil redigerings formularer"
3724
 
3725
+ #: profile-builder-2.0/admin/basic-info.php:159
3726
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3727
  msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
3728
 
3729
+ #: profile-builder-2.0/admin/basic-info.php:187
3730
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3731
  msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
3732
 
3733
+ #: profile-builder-2.0/admin/basic-info.php:188
3734
  msgid "** only available in the %1$sPro version%2$s."
3735
  msgstr "** kun tilgængelig i %1$sPro version%2$s."
3736
 
3737
+ #: profile-builder-2.0/admin/general-settings.php:39
3738
  msgid "Load Profile Builder's own CSS file in the front-end:"
3739
  msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
3740
 
3741
+ #: profile-builder-2.0/admin/general-settings.php:42
3742
+ #: profile-builder-2.0/admin/general-settings.php:55
3743
+ #: profile-builder-2.0/admin/general-settings.php:104
3744
+ #: profile-builder-2.0/admin/general-settings.php:151
3745
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3746
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3747
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3748
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3749
  msgid "Yes"
3750
  msgstr "Ja"
3751
 
3752
+ #: profile-builder-2.0/admin/general-settings.php:44
3753
  msgid "You can find the default file here: %1$s"
3754
  msgstr "Du kan finde default filen her: %1$s"
3755
 
3756
+ #: profile-builder-2.0/admin/general-settings.php:51
3757
  msgid "\"Email Confirmation\" Activated:"
3758
  msgstr "\"E-mail bekræftelse\" aktiveret:"
3759
 
3760
+ #: profile-builder-2.0/admin/general-settings.php:56
3761
+ #: profile-builder-2.0/admin/general-settings.php:105
3762
+ #: profile-builder-2.0/admin/general-settings.php:150
3763
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3764
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3765
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3766
  msgid "No"
3767
  msgstr "Nej"
3768
 
3769
+ #: profile-builder-2.0/admin/general-settings.php:61
3770
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3771
  msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
3772
 
3773
+ #: profile-builder-2.0/admin/general-settings.php:69
3774
  msgid "\"Email Confirmation\" Landing Page:"
3775
  msgstr "\"E-mail bekræftelse\" landings side:"
3776
 
3777
+ #: profile-builder-2.0/admin/general-settings.php:74
3778
  msgid "Existing Pages"
3779
  msgstr "Eksisterende sider"
3780
 
3781
+ #: profile-builder-2.0/admin/general-settings.php:89
3782
  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."
3783
  msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren."
3784
 
3785
+ #: profile-builder-2.0/admin/general-settings.php:100
3786
  msgid "\"Admin Approval\" Activated:"
3787
  msgstr "\"Administrator godkendelse\" aktiveret:"
3788
 
3789
+ #: profile-builder-2.0/admin/general-settings.php:108
3790
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3791
  msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
3792
 
3793
+ #: profile-builder-2.0/admin/general-settings.php:165
3794
  msgid "\"Admin Approval\" Feature:"
3795
  msgstr "\"Administrator godkendelse\" funktion:"
3796
 
3797
+ #: profile-builder-2.0/admin/general-settings.php:168
3798
  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."
3799
  msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
3800
 
3801
+ #: profile-builder-2.0/admin/general-settings.php:175
3802
  msgid "Allow Users to Log in With:"
3803
  msgstr "Tillad brugere at logge ind med:"
3804
 
3805
+ #: profile-builder-2.0/admin/general-settings.php:180
3806
+ #: profile-builder-2.0/admin/manage-fields.php:201
3807
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3808
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3809
+ #: profile-builder-2.0/front-end/login.php:85
3810
+ #: profile-builder-2.0/front-end/login.php:99
3811
+ #: profile-builder-2.0/front-end/login.php:218
3812
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3813
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3814
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3815
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3816
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3817
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3818
  msgid "Username"
3819
  msgstr "Brugernavn"
3820
 
3821
+ #: profile-builder-2.0/admin/general-settings.php:181
3822
+ #: profile-builder-2.0/front-end/login.php:215
3823
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3824
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3825
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3826
  msgid "Email"
3827
  msgstr "E-mail"
3828
 
3829
+ #: profile-builder-2.0/admin/general-settings.php:193
3830
  msgid "Minimum Password Length:"
3831
  msgstr "Min. længde på adgangskode:"
3832
 
3833
+ #: profile-builder-2.0/admin/general-settings.php:198
3834
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3835
  msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
3836
 
3837
+ #: profile-builder-2.0/admin/general-settings.php:205
3838
  msgid "Minimum Password Strength:"
3839
  msgstr "Minimum styrke på adgangskode:"
3840
 
3841
+ #: profile-builder-2.0/admin/general-settings.php:209
3842
  msgid "Disabled"
3843
  msgstr "Deaktiver"
3844
 
3845
+ #: profile-builder-2.0/admin/manage-fields.php:12
3846
  msgid "Manage Fields"
3847
  msgstr "Håndter felter"
3848
 
3849
+ #: profile-builder-2.0/admin/manage-fields.php:13
3850
  msgid "Manage Default and Extra Fields"
3851
  msgstr "Håndter standard ('default') og ekstra felter"
3852
 
3853
+ #: profile-builder-2.0/admin/manage-fields.php:118
3854
  msgid "Field Title"
3855
  msgstr "Felt titel"
3856
 
3857
+ #: profile-builder-2.0/admin/manage-fields.php:118
3858
  msgid "Title of the field"
3859
  msgstr "Feltets titel"
3860
 
3861
+ #: profile-builder-2.0/admin/manage-fields.php:119
3862
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3863
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3864
  msgid "Field"
3865
  msgstr "Felt"
3866
 
3867
+ #: profile-builder-2.0/admin/manage-fields.php:120
3868
  msgid "Meta-name"
3869
  msgstr "Meta-navn"
3870
 
3871
+ #: profile-builder-2.0/admin/manage-fields.php:121
3872
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3873
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3874
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3875
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3876
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3877
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3878
  msgid "ID"
3879
  msgstr "ID"
3880
 
3881
+ #: profile-builder-2.0/admin/manage-fields.php:121
3882
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3883
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3884
  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"
3885
  msgstr "En unik autogenereret ID for dette bestemte felt<br/>Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.<br/>Kan ikke redigeres "
3886
 
3887
+ #: profile-builder-2.0/admin/manage-fields.php:122
3888
  msgid "Description"
3889
  msgstr "Beskrivelse"
3890
 
3891
+ #: profile-builder-2.0/admin/manage-fields.php:122
3892
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3893
  msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden<br/>Valgfri"
3894
 
3895
+ #: profile-builder-2.0/admin/manage-fields.php:123
3896
  msgid "Row Count"
3897
  msgstr "Række antal"
3898
 
3899
+ #: profile-builder-2.0/admin/manage-fields.php:123
3900
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3901
  msgstr "Angiv antallet af rækker i feltet 'Textarea'<br/>Hvis ikke angivet er default 5 rækker"
3902
 
3903
+ #: profile-builder-2.0/admin/manage-fields.php:124
3904
  msgid "Allowed Image Extensions"
3905
  msgstr "Tilladte billedformater ('extensions')"
3906
 
3907
+ #: profile-builder-2.0/admin/manage-fields.php:125
3908
  msgid "Allowed Upload Extensions"
3909
  msgstr "Tilladte upload formater ('extensions')"
3910
 
3911
+ #: profile-builder-2.0/admin/manage-fields.php:126
3912
  msgid "Avatar Size"
3913
  msgstr "Avatar størrelse"
3914
 
3915
+ #: profile-builder-2.0/admin/manage-fields.php:126
3916
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3917
  msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis ikke angivet er default sat til 100"
3918
 
3919
+ #: profile-builder-2.0/admin/manage-fields.php:127
3920
  msgid "Date-format"
3921
  msgstr "Datoformat"
3922
 
3923
+ #: profile-builder-2.0/admin/manage-fields.php:128
3924
  msgid "Terms of Agreement"
3925
  msgstr "Aftalebetingelser"
3926
 
3927
+ #: profile-builder-2.0/admin/manage-fields.php:128
3928
  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;"
3929
  msgstr "Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.<br/>Link kan indsætte ved at anvende standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3930
 
3931
+ #: profile-builder-2.0/admin/manage-fields.php:129
3932
  msgid "Options"
3933
  msgstr "Valgmuligheder"
3934
 
3935
+ #: profile-builder-2.0/admin/manage-fields.php:130
3936
  msgid "Labels"
3937
  msgstr "Labels"
3938
 
3939
+ #: profile-builder-2.0/admin/manage-fields.php:130
3940
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
3941
  msgstr "Angiv et komme separeret liste med labels<br/>Synlig for brugeren"
3942
 
3943
+ #: profile-builder-2.0/admin/manage-fields.php:137
3944
  msgid "Default Value"
3945
  msgstr "Standard værdi"
3946
 
3947
+ #: profile-builder-2.0/admin/manage-fields.php:137
3948
  msgid "Default value of the field"
3949
  msgstr "Feltets standardværdi"
3950
 
3951
+ #: profile-builder-2.0/admin/manage-fields.php:138
3952
+ #: profile-builder-2.0/admin/manage-fields.php:140
3953
+ #: profile-builder-2.0/admin/manage-fields.php:141
3954
+ #: profile-builder-2.0/admin/manage-fields.php:142
3955
  msgid "Default Option"
3956
  msgstr "Standard indstillingsvalg"
3957
 
3958
+ #: profile-builder-2.0/admin/manage-fields.php:138
3959
  msgid "Specify the option which should be selected by default"
3960
  msgstr "Angiv indstillingen som skal vælges som standard"
3961
 
3962
+ #: profile-builder-2.0/admin/manage-fields.php:139
3963
  msgid "Default Option(s)"
3964
  msgstr "Standard indstillingsvalg (flere)"
3965
 
3966
+ #: profile-builder-2.0/admin/manage-fields.php:139
3967
  msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3968
  msgstr "Angiv indstillingen som skal vælges som standard<br/>Hvis der er flere valgmuligheder, separer dem med ',' (et komma)"
3969
 
3970
+ #: profile-builder-2.0/admin/manage-fields.php:153
3971
  msgid "Default Content"
3972
  msgstr "Standard indhold"
3973
 
3974
+ #: profile-builder-2.0/admin/manage-fields.php:153
3975
  msgid "Default value of the textarea"
3976
  msgstr "Standard værdi for tekstområdet ('textarea')"
3977
 
3978
+ #: pb-add-on-woocommerce/index.php:306
3979
+ #: profile-builder-2.0/admin/manage-fields.php:160
3980
  msgid "Required"
3981
  msgstr "Krævet"
3982
 
3983
+ #: profile-builder-2.0/admin/manage-fields.php:160
3984
  msgid "Whether the field is required or not"
3985
  msgstr "Om feltet er krævet eller ikke"
3986
 
3987
+ #: profile-builder-2.0/admin/manage-fields.php:161
3988
  msgid "Overwrite Existing"
3989
  msgstr "Overskriv eksisterende"
3990
 
3991
+ #: profile-builder-2.0/admin/manage-fields.php:161
3992
  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"
3993
  msgstr "Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn<br/>Brug dette på eget ansvar"
3994
 
3995
+ #: profile-builder-2.0/admin/manage-fields.php:167
3996
  msgid "Field Properties"
3997
  msgstr "Felt indstillinger"
3998
 
3999
+ #: profile-builder-2.0/admin/manage-fields.php:181
4000
  msgid "Registration & Edit Profile"
4001
  msgstr "Registrering & ændre profil"
4002
 
4003
+ #: profile-builder-2.0/admin/manage-fields.php:200
4004
  msgid "Name"
4005
  msgstr "Navn"
4006
 
4007
+ #: profile-builder-2.0/admin/manage-fields.php:201
4008
  msgid "Usernames cannot be changed."
4009
  msgstr "Brugernavn kan ikke ændres"
4010
 
4011
+ #: pb-add-on-woocommerce/billing-fields.php:6
4012
+ #: pb-add-on-woocommerce/shipping-fields.php:6
4013
+ #: profile-builder-2.0/admin/manage-fields.php:202
4014
  msgid "First Name"
4015
  msgstr "Fornavn"
4016
 
4017
+ #: pb-add-on-woocommerce/billing-fields.php:7
4018
+ #: pb-add-on-woocommerce/shipping-fields.php:7
4019
+ #: profile-builder-2.0/admin/manage-fields.php:203
4020
  msgid "Last Name"
4021
  msgstr "Efternavn"
4022
 
4023
+ #: profile-builder-2.0/admin/manage-fields.php:204
4024
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4025
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4026
  msgid "Nickname"
4027
  msgstr "Kælenavn"
4028
 
4029
+ #: profile-builder-2.0/admin/manage-fields.php:205
4030
  msgid "Display name publicly as"
4031
  msgstr "Vis navn offentligt som"
4032
 
4033
+ #: profile-builder-2.0/admin/manage-fields.php:206
4034
  msgid "Contact Info"
4035
  msgstr "Kontakt info"
4036
 
4037
+ #: profile-builder-2.0/admin/manage-fields.php:207
4038
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4039
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4040
+ #: profile-builder-2.0/front-end/recover.php:118
4041
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4042
  msgid "E-mail"
4043
  msgstr "E-mail"
4044
 
4045
+ #: profile-builder-2.0/admin/manage-fields.php:208
4046
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4047
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4048
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4049
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4050
  msgid "Website"
4051
  msgstr "Website"
4052
 
4053
+ #: profile-builder-2.0/admin/manage-fields.php:212
4054
  msgid "AIM"
4055
  msgstr "AIM"
4056
 
4057
+ #: profile-builder-2.0/admin/manage-fields.php:213
4058
  msgid "Yahoo IM"
4059
  msgstr "Yahoo IM"
4060
 
4061
+ #: profile-builder-2.0/admin/manage-fields.php:214
4062
  msgid "Jabber / Google Talk"
4063
  msgstr "Jabber / Google Talk"
4064
 
4065
+ #: profile-builder-2.0/admin/manage-fields.php:217
4066
  msgid "About Yourself"
4067
  msgstr "Om dig selv"
4068
 
4069
+ #: profile-builder-2.0/admin/manage-fields.php:218
4070
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4071
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4072
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4073
  msgid "Biographical Info"
4074
  msgstr "Biografi info"
4075
 
4076
+ #: profile-builder-2.0/admin/manage-fields.php:218
4077
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4078
  msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt."
4079
 
4080
+ #: profile-builder-2.0/admin/manage-fields.php:219
4081
+ #: profile-builder-2.0/front-end/recover.php:73
4082
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4083
  msgid "Password"
4084
  msgstr "Kodeord"
4085
 
4086
+ #: profile-builder-2.0/admin/manage-fields.php:219
4087
  msgid "Type your password."
4088
  msgstr "Skriv din kodeord."
4089
 
4090
+ #: profile-builder-2.0/admin/manage-fields.php:220
4091
+ #: profile-builder-2.0/front-end/recover.php:74
4092
  msgid "Repeat Password"
4093
  msgstr "Gentag dit kodeord"
4094
 
4095
+ #: profile-builder-2.0/admin/manage-fields.php:220
4096
  msgid "Type your password again. "
4097
  msgstr "Skriv dit kodeord igen."
4098
 
4099
+ #: profile-builder-2.0/admin/manage-fields.php:980
4100
+ #: profile-builder-2.0/admin/manage-fields.php:1137
4101
  msgid "You must select a field\n"
4102
  msgstr "Du skal vælge et felt\n"
4103
 
4104
+ #: profile-builder-2.0/admin/manage-fields.php:990
4105
  msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4106
  msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n"
4107
 
4108
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4109
  msgid "The entered avatar size is not between 20 and 200\n"
4110
  msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n"
4111
 
4112
+ #: profile-builder-2.0/admin/manage-fields.php:1004
4113
  msgid "The entered avatar size is not numerical\n"
4114
  msgstr "Det indtastede rækkenummer er ikke nummereret\n"
4115
 
4116
+ #: profile-builder-2.0/admin/manage-fields.php:1012
4117
  msgid "The entered row number is not numerical\n"
4118
  msgstr "Det indsatte række nummer er ikke nummeret\n"
4119
 
4120
+ #: profile-builder-2.0/admin/manage-fields.php:1015
4121
  msgid "You must enter a value for the row number\n"
4122
  msgstr "Du skal indtaste en værdi for rækkenummeret\n"
4123
 
4124
+ #: profile-builder-2.0/admin/manage-fields.php:1036
4125
  msgid "The entered value for the Datepicker is not a valid date-format\n"
4126
  msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
4127
 
4128
+ #: profile-builder-2.0/admin/manage-fields.php:1039
4129
  msgid "You must enter a value for the date-format\n"
4130
  msgstr "Du skal indskrive en værdi for datoformatet\n"
4131
 
4132
+ #: profile-builder-2.0/admin/manage-fields.php:1067
4133
+ #: profile-builder-2.0/admin/manage-fields.php:1075
4134
+ #: profile-builder-2.0/admin/manage-fields.php:1086
4135
  msgid "That meta-name is already in use\n"
4136
  msgstr "Det meta-navn er allerede i brug\n"
4137
 
4138
+ #: profile-builder-2.0/admin/manage-fields.php:1117
4139
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4140
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
4141
 
4142
+ #: profile-builder-2.0/admin/manage-fields.php:1121
4143
  msgid "The following option did not coincide with the ones in the options list: %s\n"
4144
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
4145
 
4146
+ #: profile-builder-2.0/admin/manage-fields.php:1144
4147
  msgid "That field is already added in this form\n"
4148
  msgstr "Det felt er allerede tilføjet denne formular\n"
4149
 
4150
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4151
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4152
  msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
4153
 
4154
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4155
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4156
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4157
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4158
+ #: profile-builder-2.0/features/functions.php:718
4159
+ #: profile-builder-2.0/features/functions.php:725
4160
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4161
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4162
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4163
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4164
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4165
  msgid "Edit"
4166
  msgstr "Rediger"
4167
 
4168
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4169
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4170
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4171
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4172
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4173
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4174
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4175
+ #: profile-builder-2.0/features/functions.php:711
4176
+ #: profile-builder-2.0/features/functions.php:725
4177
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4178
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4179
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4180
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4181
  msgid "Delete"
4182
  msgstr "Slet"
4183
 
4184
+ #: profile-builder-2.0/admin/manage-fields.php:1208
4185
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4186
  msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
4187
 
4188
+ #: profile-builder-2.0/admin/register-version.php:14
4189
  msgid "Register Your Version"
4190
  msgstr "Registrer din version"
4191
 
4192
+ #: profile-builder-2.0/admin/register-version.php:14
4193
  msgid "Register Version"
4194
  msgstr "Registrer version"
4195
 
4196
+ #: profile-builder-2.0/admin/register-version.php:70
4197
  msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4198
  msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
4199
 
4200
+ #: profile-builder-2.0/admin/register-version.php:72
4201
  msgid " Serial Number:"
4202
  msgstr "Serie Nummer:"
4203
 
4204
+ #: profile-builder-2.0/admin/register-version.php:77
4205
  msgid "The serial number was successfully validated!"
4206
  msgstr "Serienummeret blev godkendt!"
4207
 
4208
+ #: profile-builder-2.0/admin/register-version.php:79
4209
  msgid "The serial number entered couldn't be validated!"
4210
  msgstr "Serienummeret som du har indsat er ikke korrekt!"
4211
 
4212
+ #: profile-builder-2.0/admin/register-version.php:83
4213
  msgid "The serial number couldn't be validated because it expired!"
4214
  msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
4215
 
4216
+ #: profile-builder-2.0/admin/register-version.php:85
4217
  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!"
4218
  msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
4219
 
4220
+ #: profile-builder-2.0/admin/register-version.php:87
4221
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4222
  msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4223
 
4224
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4225
+ #: profile-builder-2.0/features/functions.php:725
4226
  msgid "Content"
4227
  msgstr "Indhold"
4228
 
4229
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4230
  msgid "Edit this item"
4231
  msgstr "Rediger denne"
4232
 
4233
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4234
  msgid "Delete this item"
4235
  msgstr "Slet denne"
4236
 
4237
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4238
  msgid "Please enter a value for the required field "
4239
  msgstr "Venligst indsæt en værdi for feltet"
4240
 
4241
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4242
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4243
  msgid "Select File"
4244
  msgstr "Vælg en fil"
4245
 
4246
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4247
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4248
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4249
  msgid "Remove"
4250
  msgstr "Fjern"
4251
 
4252
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4253
  msgid "You can add the information for the %s after you add a entry"
4254
  msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
4255
 
4256
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4257
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4258
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4259
  msgid "Upload "
4260
  msgstr "Upload"
4261
 
4262
+ #: profile-builder-2.0/features/class-list-table.php:184
4263
  msgid "No items found."
4264
  msgstr "Intet fundet."
4265
 
4266
+ #: profile-builder-2.0/features/class-list-table.php:308
4267
  msgid "Bulk Actions"
4268
  msgstr "Mængde aktion"
4269
 
4270
+ #: profile-builder-2.0/features/class-list-table.php:318
4271
  msgid "Apply"
4272
  msgstr "Tilføj"
4273
 
4274
+ #: profile-builder-2.0/features/class-list-table.php:402
4275
  msgid "Show all dates"
4276
  msgstr "Vis alle datoer"
4277
 
4278
+ #: profile-builder-2.0/features/class-list-table.php:415
4279
  msgid "%1$s %2$d"
4280
  msgstr "%1$s %2$d"
4281
 
4282
+ #: profile-builder-2.0/features/class-list-table.php:431
4283
  msgid "List View"
4284
  msgstr "Listevisning"
4285
 
4286
+ #: profile-builder-2.0/features/class-list-table.php:432
4287
  msgid "Excerpt View"
4288
  msgstr "Uddragsvisning"
4289
 
4290
+ #: profile-builder-2.0/features/class-list-table.php:458
4291
  msgid "%s pending"
4292
  msgstr "%s afventer"
4293
 
4294
+ #: profile-builder-2.0/features/class-list-table.php:566
4295
  msgid "%1$s of %2$s"
4296
  msgstr "%1$s of %2$s"
4297
 
4298
+ #: profile-builder-2.0/features/class-list-table.php:713
4299
  msgid "Select All"
4300
  msgstr "Vælg alt"
4301
 
4302
+ #: profile-builder-2.0/features/functions.php:526
4303
  msgid "Strength indicator"
4304
  msgstr "Styrkeindikator"
4305
 
4306
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4307
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4308
  msgid "Admin Approval"
4309
  msgstr "Admin godkendelse"
4310
 
4311
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4312
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4313
  msgid "Do you want to"
4314
  msgstr "Vil du"
4315
 
4316
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4317
  msgid "Your session has expired! Please refresh the page and try again"
4318
  msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
4319
 
4320
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4321
  msgid "User successfully approved!"
4322
  msgstr "Bruger godkendt!"
4323
 
4324
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4325
  msgid "User successfully unapproved!"
4326
  msgstr "Bruger ikke godkendt!"
4327
 
4328
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4329
  msgid "User successfully deleted!"
4330
  msgstr "Bruger slettet!"
4331
 
4332
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4333
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4334
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4335
  msgid "You either don't have permission for that action or there was an error!"
4336
  msgstr "Enten har du ikke tilladelse til dette eller der var en felj!"
4337
 
4338
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4339
  msgid "Your session has expired! Please refresh the page and try again."
4340
  msgstr "Din session er udløbet! Opdater venligst siden og prøv igen."
4341
 
4342
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4343
  msgid "Users successfully approved!"
4344
  msgstr "Brugere godkendt!"
4345
 
4346
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4347
  msgid "Users successfully unapproved!"
4348
  msgstr "Brugere ikke godkendt med succes!"
4349
 
4350
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4351
  msgid "Users successfully deleted!"
4352
  msgstr "Brugere slettet!"
4353
 
4354
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4355
  msgid "Your account on %1$s has been approved!"
4356
  msgstr "Din konto på %1$s er blevet godkendt!"
4357
 
4358
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4359
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4360
  msgid "approved"
4361
  msgstr "godkendt"
4362
 
4363
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4364
  msgid "An administrator has just approved your account on %1$s (%2$s)."
4365
  msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
4366
 
4367
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4368
  msgid "Your account on %1$s has been unapproved!"
4369
  msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!"
4370
 
4371
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4372
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4373
  msgid "unapproved"
4374
  msgstr "'ikke-godkendt'"
4375
 
4376
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4377
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4378
  msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)."
4379
 
4380
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4381
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4382
  msgstr "<strong>ERROR</strong>: Din konto skal godkendes af en administrator før du kan logge ind."
4383
 
4384
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4385
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4386
  msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'"
4387
 
4388
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4389
  msgid "delete this user?"
4390
  msgstr "slet denne bruger?"
4391
 
4392
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4393
  msgid "unapprove this user?"
4394
  msgstr "sæt denne bruge til 'ikke-godkendt'?"
4395
 
4396
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4397
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4398
  msgid "Unapprove"
4399
  msgstr "Ophæv godkendelsen"
4400
 
4401
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4402
  msgid "approve this user?"
4403
  msgstr "godkend denne bruger?"
4404
 
4405
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4406
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4407
  msgid "Approve"
4408
  msgstr "Godkend"
4409
 
4410
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4411
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4412
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4413
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4414
  msgid "Firstname"
4415
  msgstr "Fornavn"
4416
 
4417
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4418
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4419
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4420
  msgid "Lastname"
4421
  msgstr "Efternavn"
4422
 
4423
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4425
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4426
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4428
  msgid "Role"
4429
  msgstr "Rolle"
4430
 
4431
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4432
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4433
  msgid "Registered"
4434
  msgstr "Registreret"
4435
 
4436
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4437
  msgid "User-status"
4438
  msgstr "Brugerstatus"
4439
 
4440
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4441
  msgid "Do you want to bulk approve the selected users?"
4442
  msgstr "Ønsker du at godkende de valgte brugere på én gang?"
4443
 
4444
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4445
  msgid "Do you want to bulk unapprove the selected users?"
4446
  msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
4447
 
4448
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4449
  msgid "Do you want to bulk delete the selected users?"
4450
  msgstr "Ønsker du at slette de valgte brugere på én gang?"
4451
 
4452
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4453
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4454
  msgid "Sorry, but you don't have permission to do that!"
4455
  msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
4456
 
4457
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4458
  msgid "Approved"
4459
  msgstr "Godkendt"
4460
 
4461
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4462
  msgid "Unapproved"
4463
  msgstr "Ikke godkendt"
4464
 
4465
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4466
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4467
  msgid "All Users"
4468
  msgstr "Alle brugere"
4469
 
4470
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4471
  msgid "delete this user from the _signups table?"
4472
  msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
4473
 
4474
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4475
  msgid "confirm this email yourself?"
4476
  msgstr "bekræft selv denne e-mail?"
4477
 
4478
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4479
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4480
  msgid "Confirm Email"
4481
  msgstr "Bekræft e-mail"
4482
 
4483
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4484
  msgid "resend the activation link?"
4485
  msgstr "gen-send aktiveringslinket?"
4486
 
4487
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4488
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4489
  msgid "Resend Activation Email"
4490
  msgstr "Gen-send aktiverings e-mailen"
4491
 
4492
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4493
  msgid "%s couldn't be deleted"
4494
  msgstr "%s kunne ikke slettes"
4495
 
4496
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4497
  msgid "All users have been successfully deleted"
4498
  msgstr "Alle brugere er blevet slettet uden problemer"
4499
 
4500
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4501
  msgid "The selected users have been activated"
4502
  msgstr "De valgte brugere er blevet aktiveret"
4503
 
4504
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4505
  msgid "The selected users have had their activation emails resent"
4506
  msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
4507
 
4508
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4509
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4510
  msgid "Users with Unconfirmed Email Address"
4511
  msgstr "Brugere med ubekræftede e-mail adresser"
4512
 
4513
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4514
  msgid "There was an error performing that action!"
4515
  msgstr "Der opstod en fejl ved udførelsen af denne handling!"
4516
 
4517
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4518
  msgid "The selected user couldn't be deleted"
4519
  msgstr "De valgte brugere kunne ikke slettes"
4520
 
4521
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4522
  msgid "Email notification resent to user"
4523
  msgstr "E-mail besked er gensendt til bruger"
4524
 
4525
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4526
  msgid "[%1$s] Activate %2$s"
4527
  msgstr "[%1$s] Aktivér %2$s"
4528
 
4529
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4530
+ #: profile-builder-2.0/front-end/register.php:71
4531
  msgid "Could not create user!"
4532
  msgstr "Kunne ikke oprette bruger!"
4533
 
4534
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4535
  msgid "That username is already activated!"
4536
  msgstr "Dette brugernavn er allerede i brug!"
4537
 
4538
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4539
  msgid "There was an error while trying to activate the user"
4540
  msgstr "Der skete en fejl ved forsøg på at aktivere brugeren"
4541
 
4542
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4543
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4544
  msgid "A new subscriber has (been) registered!"
4545
  msgstr "En ny abonnent ('subscriber') er blevet registreret!"
4546
 
4547
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4548
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4549
  msgstr "Ny abonnent ('subscriber') på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
4550
 
4551
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4552
  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!"
4553
  msgstr "\"Administrator godkendelses\" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!"
4554
 
4555
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4556
  msgid "[%1$s] Your new account information"
4557
  msgstr "[%1$s] Din nye konto information"
4558
 
4559
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4560
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4561
  msgstr "Velkommen til %1$s!<br/><br/><br/>Dit brugernavn er:%2$s og adgangskoden er:%3$s"
4562
 
4563
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4564
+ #: profile-builder-2.0/front-end/register.php:125
4565
  msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4566
  msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail."
4567
 
4568
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4569
  msgid "This login widget lets you add a login form in the sidebar."
4570
  msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar."
4571
 
4572
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4573
  msgid "Profile Builder Login Widget"
4574
  msgstr "Profile Builder login widget"
4575
 
4576
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4577
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4578
+ #: profile-builder-2.0/front-end/login.php:250
4579
  msgid "Register"
4580
  msgstr "Registrer"
4581
 
4582
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4583
  msgid "Title:"
4584
  msgstr "Titel:"
4585
 
4586
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4587
  msgid "After login redirect URL (optional):"
4588
  msgstr "Efter login URL omdirigering (valgfri):"
4589
 
4590
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4591
  msgid "Register page URL (optional):"
4592
  msgstr "Registrerings side URL (valgfri):"
4593
 
4594
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4595
  msgid "Password Recovery page URL (optional):"
4596
  msgstr "Adgangskode genskabnings side URL (valgfri)"
4597
 
4598
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4599
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4600
  msgid "The usernames cannot be changed."
4601
  msgstr "Brugernavnene kan ikke ændres."
4602
 
4603
+ #: profile-builder-2.0/front-end/class-formbuilder.php:136
4604
  msgid "Only an administrator can add new users."
4605
  msgstr "Kun administrator kan tilføje nye brugere."
4606
 
4607
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
4608
  msgid "Users can register themselves or you can manually create users here."
4609
  msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her."
4610
 
4611
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
4612
  msgid "Users cannot currently register themselves, but you can manually create users here."
4613
  msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her."
4614
 
4615
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4616
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4617
  msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s"
4618
 
4619
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4620
  msgid "Log out of this account."
4621
  msgstr "Log ud fra denne konto."
4622
 
4623
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4624
  msgid "Logout"
4625
  msgstr "Log ud"
4626
 
4627
+ #: profile-builder-2.0/front-end/class-formbuilder.php:175
4628
  msgid "You must be logged in to edit your profile."
4629
  msgstr "Du skal være logget ind for at redigere din profil."
4630
 
4631
+ #: profile-builder-2.0/features/functions.php:994
4632
  msgid "here"
4633
  msgstr "her"
4634
 
4635
+ #: profile-builder-2.0/features/functions.php:995
4636
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4637
  msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
4638
 
4639
+ #: profile-builder-2.0/front-end/class-formbuilder.php:315
4640
+ #: profile-builder-2.0/front-end/class-formbuilder.php:322
4641
  msgid "The account %1s has been successfully created!"
4642
  msgstr "Kontoen %1s er oprettet uden problemer!"
4643
 
4644
+ #: profile-builder-2.0/front-end/class-formbuilder.php:318
4645
+ #: profile-builder-2.0/front-end/class-formbuilder.php:328
4646
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4647
  msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
4648
 
4649
+ #: profile-builder-2.0/front-end/class-formbuilder.php:324
4650
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4651
  msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
4652
 
4653
+ #: profile-builder-2.0/front-end/class-formbuilder.php:347
4654
  msgid "Your profile has been successfully updated!"
4655
  msgstr "Din profil er blevet opdateret uden problemer!"
4656
 
4657
+ #: profile-builder-2.0/front-end/class-formbuilder.php:358
4658
  msgid "There was an error in the submitted form"
4659
  msgstr "Der var en fejl i den sendte formular. "
4660
 
4661
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4662
  msgid "Add User"
4663
  msgstr "Tilføj bruger"
4664
 
4665
+ #: profile-builder-2.0/admin/add-ons.php:170
4666
+ #: profile-builder-2.0/front-end/class-formbuilder.php:418
4667
  msgid "Update"
4668
  msgstr "Opdater"
4669
 
4670
+ #: profile-builder-2.0/front-end/class-formbuilder.php:481
4671
  msgid "Send these credentials via email."
4672
  msgstr "Send disse legitimationsoplysninger via e-mail."
4673
 
4674
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4675
+ #: profile-builder-2.0/front-end/login.php:137
4676
+ #: profile-builder-2.0/front-end/login.php:144
4677
+ #: profile-builder-2.0/front-end/login.php:158
4678
+ #: profile-builder-2.0/front-end/recover.php:17
4679
+ #: profile-builder-2.0/front-end/recover.php:245
4680
  msgid "ERROR"
4681
  msgstr "FEJL"
4682
 
4683
+ #: profile-builder-2.0/front-end/login.php:137
4684
  msgid "The password you entered is incorrect."
4685
  msgstr "Adgangskoden du angav er forkert."
4686
 
4687
+ #: profile-builder-2.0/front-end/login.php:138
4688
+ #: profile-builder-2.0/front-end/login.php:145
4689
  msgid "Password Lost and Found."
4690
  msgstr "Adgangskode 'mistet og fundet'"
4691
 
4692
+ #: profile-builder-2.0/front-end/login.php:138
4693
+ #: profile-builder-2.0/front-end/login.php:145
4694
  msgid "Lost your password"
4695
  msgstr "Mistet din adgangskode"
4696
 
4697
+ #: profile-builder-2.0/front-end/login.php:158
4698
  msgid "Both fields are empty."
4699
  msgstr "Begge felter er tomme."
4700
 
4701
+ #: profile-builder-2.0/front-end/login.php:296
4702
  msgid "You are currently logged in as %1$s. %2$s"
4703
  msgstr "Du er i øjeblikket logget ind som %1$s. %2$s"
4704
 
4705
+ #: profile-builder-2.0/front-end/login.php:295
4706
+ #: profile-builder-2.0/front-end/logout.php:25
4707
  msgid "Log out of this account"
4708
  msgstr "Log ud af denne konto"
4709
 
4710
+ #: profile-builder-2.0/front-end/login.php:295
4711
  msgid "Log out"
4712
  msgstr "Log ud"
4713
 
4714
+ #: profile-builder-2.0/front-end/recover.php:17
4715
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4716
  msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\""
4717
 
4718
+ #: profile-builder-2.0/front-end/recover.php:94
4719
  msgid "Reset Password"
4720
  msgstr "Genskab adgangskode"
4721
 
4722
+ #: profile-builder-2.0/front-end/recover.php:121
4723
  msgid "Please enter your username or email address."
4724
  msgstr "Venligst angiv dit brugernavn eller e-mail adresse."
4725
 
4726
+ #: profile-builder-2.0/front-end/recover.php:125
4727
  msgid "You will receive a link to create a new password via email."
4728
  msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode"
4729
 
4730
+ #: profile-builder-2.0/front-end/recover.php:122
4731
  msgid "Username or E-mail"
4732
  msgstr "Brugernavn eller e-mail"
4733
 
4734
+ #: profile-builder-2.0/front-end/recover.php:138
4735
  msgid "Get New Password"
4736
  msgstr "Anmod om ny adgangskode"
4737
 
4738
+ #: profile-builder-2.0/front-end/recover.php:185
4739
  msgid "The username entered wasn't found in the database!"
4740
  msgstr "Det angivne brugernavn blev ikke fundet i databasen!"
4741
 
4742
+ #: profile-builder-2.0/front-end/recover.php:185
4743
  msgid "Please check that you entered the correct username."
4744
  msgstr "Tjek venligst at du angav det korrekte brugernavn."
4745
 
4746
+ #: profile-builder-2.0/front-end/recover.php:200
4747
  msgid "Check your e-mail for the confirmation link."
4748
  msgstr "Tjek din e-mail for bekræftelseslink."
4749
 
4750
+ #: profile-builder-2.0/front-end/recover.php:235
4751
  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"
4752
  msgstr "Nogen anmodede om at adgangskoden skulle genskabes for følgende konto: <b>%1$s</b><br/>Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske. <br/>For at genskabe din adgangskode, følge dette link:%2$s"
4753
 
4754
+ #: profile-builder-2.0/front-end/recover.php:238
4755
  msgid "Password Reset from \"%1$s\""
4756
  msgstr "Adgangskode genskab fra \"%1$s\""
4757
 
4758
+ #: profile-builder-2.0/front-end/recover.php:245
4759
  msgid "There was an error while trying to send the activation link to %1$s!"
4760
  msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!"
4761
 
4762
+ #: profile-builder-2.0/front-end/recover.php:207
4763
  msgid "The email address entered wasn't found in the database!"
4764
  msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!"
4765
 
4766
+ #: profile-builder-2.0/front-end/recover.php:207
4767
  msgid "Please check that you entered the correct email address."
4768
  msgstr "Tjek venligst at du angav den korrekte e-mail adresse."
4769
 
4770
+ #: profile-builder-2.0/front-end/recover.php:273
4771
  msgid "Your password has been successfully changed!"
4772
  msgstr "Din adgangskode er ændret uden problemer!"
4773
 
4774
+ #: profile-builder-2.0/front-end/recover.php:292
4775
  msgid "You have successfully reset your password to: %1$s"
4776
  msgstr "Du har med succes genskabt din adgangskode til: %1$s"
4777
 
4778
+ #: profile-builder-2.0/front-end/recover.php:295
4779
+ #: profile-builder-2.0/front-end/recover.php:306
4780
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4781
  msgstr "Adgangskoden ændret uden problemer for %1$s på \"%2$s\""
4782
 
4783
+ #: profile-builder-2.0/front-end/recover.php:303
4784
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4785
  msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.<br/>Hans/hendes nye adgagnskode er:%2$s"
4786
 
4787
+ #: profile-builder-2.0/front-end/recover.php:320
4788
  msgid "The entered passwords don't match!"
4789
  msgstr "Den angivne adgangskode matcher ikke!"
4790
 
4791
+ #: profile-builder-2.0/front-end/recover.php:375
4792
  msgid "ERROR:"
4793
  msgstr "FEJL:"
4794
 
4795
+ #: profile-builder-2.0/front-end/recover.php:375
4796
  msgid "Invalid key!"
4797
  msgstr "Ugyldig nøgle!"
4798
 
4799
+ #: profile-builder-2.0/front-end/register.php:56
4800
  msgid "Invalid activation key!"
4801
  msgstr "Ugyldig aktiveringsnøgle!"
4802
 
4803
+ #: profile-builder-2.0/front-end/register.php:60
4804
  msgid "This username is now active!"
4805
  msgstr "Dette brugernavn er nu aktivt!"
4806
 
4807
+ #: profile-builder-2.0/front-end/register.php:74
4808
  msgid "This username is already activated!"
4809
  msgstr "Dette brugernavn er allerede aktiveret!"
4810
 
4811
+ #: profile-builder-2.0/front-end/register.php:124
4812
  msgid "Your email was successfully confirmed."
4813
  msgstr "Din e-mail blev bekræftet uden problemer."
4814
 
4815
+ #: profile-builder-2.0/front-end/register.php:153
4816
  msgid "There was an error while trying to activate the user."
4817
  msgstr "Der skete en fejl under forsøget på at aktivere brugeren."
4818
 
4819
+ #: pb-add-on-woocommerce/index.php:393
4820
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4821
  msgid "The email you entered is not a valid email address."
4822
  msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse."
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
  msgid "This email is already reserved to be used soon."
4827
  msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt."
4828
 
4829
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4830
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4831
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4832
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4833
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4834
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4835
  msgid "Please try a different one!"
4836
  msgstr "Venligst prøv en anden!"
4837
 
4838
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4839
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4840
  msgid "This email is already in use."
4841
  msgstr "Denne e-mail er allerede i brug."
4842
 
4843
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4844
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4845
  msgid "The passwords do not match"
4846
  msgstr "Adgangskoden matcher ikke"
4847
 
4848
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4849
  msgid "This username already exists."
4850
  msgstr "Dette brugernavn eksisterer allerede."
4851
 
4852
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4853
  msgid "This username is already reserved to be used soon."
4854
  msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt."
4855
 
4856
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4857
  msgid "Avatar"
4858
  msgstr "Avatar"
4859
 
4860
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4861
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4862
+ #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4863
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4864
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4865
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4866
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4867
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4868
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4869
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4870
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4871
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4872
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4873
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4874
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4875
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4876
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4877
  msgid "required"
4878
  msgstr "krævet"
4879
 
4880
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4881
  msgid "To use reCAPTCHA you must get an API key from"
4882
  msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra"
4883
 
4884
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4885
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4886
  msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!"
4887
 
4888
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4889
  msgid "To use reCAPTCHA you must get an API public key from:"
4890
  msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
4891
 
4892
+ #: profile-builder-2.0/modules/modules.php:11
4893
+ #: profile-builder-2.0/modules/modules.php:58
4894
  msgid "Modules"
4895
  msgstr "Moduler"
4896
 
4897
+ #: profile-builder-2.0/modules/modules.php:59
4898
  msgid "Here you can activate / deactivate available modules for Profile Builder."
4899
  msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
4900
 
4901
+ #: profile-builder-2.0/modules/modules.php:69
4902
  msgid "Name/Description"
4903
  msgstr "Navn/Beskrivelse"
4904
 
4905
+ #: profile-builder-2.0/modules/modules.php:70
4906
  msgid "Status"
4907
  msgstr "Status"
4908
 
4909
+ #: profile-builder-2.0/modules/modules.php:77
4910
+ #: profile-builder-2.0/modules/modules.php:84
4911
+ #: profile-builder-2.0/modules/modules.php:91
4912
+ #: profile-builder-2.0/modules/modules.php:98
4913
+ #: profile-builder-2.0/modules/modules.php:105
4914
+ #: profile-builder-2.0/modules/modules.php:112
4915
+ #: profile-builder-2.0/modules/modules.php:119
4916
  msgid "Active"
4917
  msgstr "Aktiv"
4918
 
4919
+ #: profile-builder-2.0/modules/modules.php:78
4920
+ #: profile-builder-2.0/modules/modules.php:85
4921
+ #: profile-builder-2.0/modules/modules.php:92
4922
+ #: profile-builder-2.0/modules/modules.php:99
4923
+ #: profile-builder-2.0/modules/modules.php:106
4924
+ #: profile-builder-2.0/modules/modules.php:113
4925
+ #: profile-builder-2.0/modules/modules.php:120
4926
  msgid "Inactive"
4927
  msgstr "Inaktiv"
4928
 
4929
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4930
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4931
+ #: profile-builder-2.0/modules/modules.php:96
4932
  msgid "Admin Email Customizer"
4933
  msgstr "Opsætning af administrator e-mails"
4934
 
4935
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4936
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4937
+ #: profile-builder-2.0/modules/modules.php:103
4938
  msgid "User Email Customizer"
4939
  msgstr "Opsætning af bruger e-mails"
4940
 
4941
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4942
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4943
  msgid "Save"
4944
  msgstr "Gem"
4945
 
4946
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4947
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4948
  msgid "Redirect"
4949
  msgstr "Omdiriger"
4950
 
4951
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4952
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4953
  msgid "URL"
4954
  msgstr "URL"
4955
 
4956
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4957
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4958
  msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes."
4959
 
4960
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4961
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4962
  msgid "From (name)"
4963
  msgstr "Fra (navn)"
4964
 
4965
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4966
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4967
  msgid "From (reply-to email)"
4968
  msgstr "Fra (svar-til e-mail)"
4969
 
4970
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4971
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4972
  msgid "Common Settings"
4973
  msgstr "Fælles indstillinger"
4974
 
4975
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4976
  msgid ""
4977
  "\n"
4978
  "<p>New subscriber on {{site_name}}.</p>\n"
4984
  "<p>Brugernavn:{{username}}</p>\n"
4985
  "<p>E-mail:{{user_email}}</p>\n"
4986
 
4987
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4988
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4989
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4990
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4991
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4992
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4993
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4994
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4995
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4996
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4997
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4998
  msgid "Email Subject"
4999
  msgstr "E-mail emne"
5000
 
5001
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
5002
  msgid "Default Registration & Registration with Email Confirmation"
5003
  msgstr "Standard registrering & registrering med e-mail bekræftelse"
5004
 
5005
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5006
  msgid ""
5007
  "\n"
5008
  "<p>New subscriber on {{site_name}}.</p>\n"
5018
  "<p>Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering,\n"
5019
  "så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!</p>\n"
5020
 
5021
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5022
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5023
  msgid "Registration with Admin Approval"
5024
  msgstr "Registrering med administrator godkendelse"
5025
 
5026
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5027
  msgid "Available Tags"
5028
  msgstr "Tilgængelige 'tags'"
5029
 
5030
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5031
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5032
  msgid "User Meta"
5033
  msgstr "Bruger 'meta'"
5034
 
5035
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5036
  msgid "Site Url"
5037
  msgstr "Site URL"
5038
 
5039
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5040
  msgid "Site Name"
5041
  msgstr "Site navn"
5042
 
5043
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5044
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5045
  msgid "User Id"
5046
  msgstr "Bruger ID"
5047
 
5048
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5049
  msgid "Reply To"
5050
  msgstr "Svar til"
5051
 
5052
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5053
  msgid "Activation Key"
5054
  msgstr "Aktiveringsnøgle"
5055
 
5056
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5057
  msgid "Activation Url"
5058
  msgstr "Aktiverings URL"
5059
 
5060
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5061
  msgid "Activation Link"
5062
  msgstr "Aktiveringslink"
5063
 
5064
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5065
  msgid ""
5066
  "\n"
5067
  "<h3>Welcome to {{site_name}}!</h3>\n"
5071
  "<h3>Velkommen til {{site_name}}!</h3>\n"
5072
  "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5073
 
5074
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5075
  msgid "Default Registration"
5076
  msgstr "Standard registrering"
5077
 
5078
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5079
  msgid ""
5080
  "\n"
5081
  "<p>To activate your user, please click the following link:<br/>\n"
5087
  "{{{activation_link}}}</p>\n"
5088
  "<p>Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.</p>\n"
5089
 
5090
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5091
  msgid "[{{site_name}}] Activate {{username}}"
5092
  msgstr "[{{site_name}}] Aktivér {{username}}"
5093
 
5094
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5095
  msgid "Registration with Email Confirmation"
5096
  msgstr "Registrering med e-mail bekræftelse"
5097
 
5098
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5099
  msgid ""
5100
  "\n"
5101
  "<h3>Welcome to {{site_name}}!</h3>\n"
5107
  "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5108
  "<p>Før du kan tilgå din konto skal en administrator først godkende den. Du vil få yderligere besked via e-mail.</p>\n"
5109
 
5110
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5111
  msgid "A new account has been created for you on {{site_name}}"
5112
  msgstr "En ny konto er blevet oprettet til dig på {{site_name}}"
5113
 
5114
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5115
  msgid ""
5116
  "\n"
5117
  "<h3>Good News!</h3>\n"
5121
  "<h3>Gode nyheder!</h3>\n"
5122
  "<p>En administrator har netop godkendt din konto: {{username}} på {{site_name}}.</p>\n"
5123
 
5124
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5125
  msgid "Your account on {{site_name}} has been approved!"
5126
  msgstr "Din konto på {{site_name}} er blevet godkendt!"
5127
 
5128
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5129
  msgid "User Approval Notification"
5130
  msgstr "Meddelelse om brugergodkendelse"
5131
 
5132
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5133
  msgid ""
5134
  "\n"
5135
  "<h3>Hello,</h3>\n"
5139
  "<h3>Hej,</h3>\n"
5140
  "<p>En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.</p>\n"
5141
 
5142
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5143
  msgid "Your account on {{site_name}} has been unapproved!"
5144
  msgstr "Din konto på {{site_name}} er ikke længere godkendt!"
5145
 
5146
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5147
  msgid "Unapproved User Notification"
5148
  msgstr "Meddelelse om ophævelse af brugerkonto"
5149
 
5150
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5151
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5152
  msgid "Edit-profile Form"
5153
  msgstr "Formular til profilredigering"
5154
 
5155
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5156
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5157
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5158
  msgid "Add New"
5159
  msgstr "Tilføj ny"
5160
 
5161
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5162
  msgid "Add new Edit-profile Form"
5163
  msgstr "Tilføj ny formular til profilredigering"
5164
 
5165
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5166
  msgid "Edit the Edit-profile Forms"
5167
  msgstr "Rediger profilredigerings formularer"
5168
 
5169
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5170
  msgid "New Edit-profile Form"
5171
  msgstr "Ny profilredigerings formular"
5172
 
5173
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5174
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5175
  msgid "Edit-profile Forms"
5176
  msgstr "Profilredigerings formularer"
5177
 
5178
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5179
  msgid "View the Edit-profile Form"
5180
  msgstr "Vis profilredigerings formular"
5181
 
5182
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5183
  msgid "Search the Edit-profile Forms"
5184
  msgstr "Søg profilredigerings formularer"
5185
 
5186
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5187
  msgid "No Edit-profile Form found"
5188
  msgstr "Ingen profilredigerings formular fundet"
5189
 
5190
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5191
  msgid "No Edit-profile Forms found in trash"
5192
  msgstr "Ingen profilredigerings formular fundet i papirkurven"
5193
 
5194
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5195
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5196
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5197
  msgid "Shortcode"
5198
  msgstr "'Shortcode'"
5199
 
5200
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5201
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5202
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5203
  msgid "(no title)"
5204
  msgstr "(ingen titel)"
5205
 
5206
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5207
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5208
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5209
  msgid "The shortcode will be available after you publish this form."
5210
  msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular."
5211
 
5212
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5213
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5214
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5215
  msgid "Use this shortcode on the page you want the form to be displayed:"
5216
  msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:"
5217
 
5218
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5219
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5220
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5221
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5222
  msgstr "<span style=\"color:red;\">Bemærk:</span> ændring af denne formulars titel ændrer også 'shortcode'!"
5223
 
5224
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5225
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5226
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5227
  msgid "Form Shortcode"
5228
  msgstr "Formular 'shortcode'"
5229
 
5230
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5231
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5232
  msgid "Whether to redirect the user to a specific page or not"
5233
  msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke"
5234
 
5235
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5236
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5237
  msgid "Display Messages"
5238
  msgstr "Vis meddelelser"
5239
 
5240
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5241
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5242
  msgid "Allowed time to display any success messages (in seconds)"
5243
  msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser"
5244
 
5245
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5246
  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"
5247
  msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular<br/>Brug følgende format: http://www.mysite.com"
5248
 
5249
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5250
  msgid "After Profile Update..."
5251
  msgstr "Efter profilopdatering..."
5252
 
5253
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5254
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5255
  msgid "Add New Field to the List"
5256
  msgstr "Tilføj nyt felt til listen"
5257
 
5258
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5259
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5260
  msgid "Choose one of the supported fields you manage <a href=\""
5261
  msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
5262
 
5263
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5264
  msgid "<pre>Title (Type)</pre>"
5265
  msgstr "<pre>Titel (Type)</pre>"
5266
 
5267
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5268
  msgid "You need to specify the title of the form before creating it"
5269
  msgstr "Du skal specificere formularens titel før du opretter den"
5270
 
5271
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5272
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5273
  msgid "Registration Form"
5274
  msgstr "Registreringsformular"
5275
 
5276
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5277
  msgid "Add new Registration Form"
5278
  msgstr "Tilføj ny registreringsformular"
5279
 
5280
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5281
  msgid "Edit the Registration Forms"
5282
  msgstr "Rediger registreringsformularer"
5283
 
5284
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5285
  msgid "New Registration Form"
5286
  msgstr "Ny registreringsformular"
5287
 
5288
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5289
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5290
  msgid "Registration Forms"
5291
  msgstr "Registreringsformularer"
5292
 
5293
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5294
  msgid "View the Registration Form"
5295
  msgstr "Vis registrerinsformularen"
5296
 
5297
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5298
  msgid "Search the Registration Forms"
5299
  msgstr "Søg registreringsformularer"
5300
 
5301
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5302
  msgid "No Registration Form found"
5303
  msgstr "Ingen registreringsformular funder"
5304
 
5305
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5306
  msgid "No Registration Forms found in trash"
5307
  msgstr "Ingen registreringsformularer fundet i papirkurven"
5308
 
5309
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5310
  msgid "Default Role"
5311
  msgstr "Standard rolle"
5312
 
5313
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5314
  msgid "Set Role"
5315
  msgstr "Indstil rolle"
5316
 
5317
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5318
  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"
5319
  msgstr "Vælg hvilken rolle brugeren får efter han/hun har registreret sig<br/>Hvis ikke specificeret, anvendes rollen der er sat som 'default' i WordPress indstillingerne"
5320
 
5321
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5322
  msgid "Automatically Log In"
5323
  msgstr "Automatisk log ind"
5324
 
5325
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5326
  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"
5327
  msgstr "Hvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke<br/>Virker kun på 'single-sites' hvor \"Administrator godkendelse\" og \"E-mail bekræftelse\" ikke er aktiveret<br/>ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungere"
5328
 
5329
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5330
  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"
5331
  msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.<br/>Brug følgende format: http://www.mysite.com"
5332
 
5333
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5334
  msgid "After Registration..."
5335
  msgstr "Efter registrering..."
5336
 
5337
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5338
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5339
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5340
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5341
  msgid "Search Users by All Fields"
5342
  msgstr "Søg brugere ved at bruge 'Alle felter'"
5343
 
5344
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5345
  msgid "Add new User Listing"
5346
  msgstr "Tilføj ny brugeroversigt"
5347
 
5348
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5349
  msgid "Edit the User Listing"
5350
  msgstr "Rediger brugeroversigten"
5351
 
5352
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5353
  msgid "New User Listing"
5354
  msgstr "Ny brugeroversigt"
5355
 
5356
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5357
  msgid "View the User Listing"
5358
  msgstr "Vis brugeroversigten"
5359
 
5360
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5361
  msgid "Search the User Listing"
5362
  msgstr "Søg i brugeroversigt"
5363
 
5364
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5365
  msgid "No User Listing found"
5366
  msgstr "Ingen brugeroversigt fundet"
5367
 
5368
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5369
  msgid "No User Listing found in trash"
5370
  msgstr "Ingen brugeroversigt fundet i papirkurven"
5371
 
5372
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5373
  msgid "Display name as"
5374
  msgstr "Vis navn som"
5375
 
5376
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5377
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5378
  msgid "Registration Date"
5379
  msgstr "Registreringsdato"
5380
 
5381
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5382
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5383
  msgid "Number of Posts"
5384
  msgstr "Antal poster"
5385
 
5386
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5387
  msgid "More Info"
5388
  msgstr "Mere info"
5389
 
5390
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5391
  msgid "More Info Url"
5392
  msgstr "Mere info URL"
5393
 
5394
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5395
  msgid "Avatar or Gravatar"
5396
  msgstr "Avatar eller Gravatar"
5397
 
5398
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5399
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5400
  msgid "Extra Functions"
5401
  msgstr "Ekstra funktioner"
5402
 
5403
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5404
  msgid "Pagination"
5405
  msgstr "Sideopdeling"
5406
 
5407
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5408
  msgid "Search all Fields"
5409
  msgstr "Søg 'Alle felter'"
5410
 
5411
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5412
  msgid "Go Back Link"
5413
  msgstr "Tilbage link"
5414
 
5415
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5416
  msgid "All-userlisting Template"
5417
  msgstr "Skabelon for flere-brugeroversigt"
5418
 
5419
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5420
  msgid "Single-userlisting Template"
5421
  msgstr "Skabelon for enkelt-brugeroversigt"
5422
 
5423
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5424
  msgid "First/Lastname"
5425
  msgstr "For-/Efternavn"
5426
 
5427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5428
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5429
  msgid "Sign-up Date"
5430
  msgstr "Tilmeldingsdato"
5431
 
5432
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5433
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5434
  msgid "Display Name"
5435
  msgstr "Vis navn som"
5436
 
5437
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5438
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5439
  msgid "Posts"
5440
  msgstr "Poster"
5441
 
5442
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5443
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5444
  msgid "Aim"
5445
  msgstr "'Aim'"
5446
 
5447
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5448
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5449
  msgid "Yim"
5450
  msgstr "'Yim'"
5451
 
5452
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5453
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5454
  msgid "Jabber"
5455
  msgstr "'Jabber'"
5456
 
5457
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5458
  msgid "Click here to see more information about this user"
5459
  msgstr "Klik her for at se mere information om denne bruger"
5460
 
5461
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5462
  msgid "More..."
5463
  msgstr "Mere..."
5464
 
5465
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5466
  msgid "Click here to see more information about this user."
5467
  msgstr "Klik her for at se mere information om denne bruger."
5468
 
5469
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5470
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5471
  msgid "Click here to go back"
5472
  msgstr "Klik her for at gå tilbage"
5473
 
5474
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5475
  msgid "Back"
5476
  msgstr "Tilbage"
5477
 
5478
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5479
  msgid "&laquo;&laquo; First"
5480
  msgstr "&laquo;&laquo; Først"
5481
 
5482
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5483
  msgid "&laquo; Prev"
5484
  msgstr "&laquo; Forrige"
5485
 
5486
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5487
  msgid "Next &raquo; "
5488
  msgstr "Næste &raquo; "
5489
 
5490
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5491
  msgid "Last &raquo;&raquo;"
5492
  msgstr "Sidste &raquo;&raquo;"
5493
 
5494
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5495
  msgid "You don't have any pagination settings on this userlisting!"
5496
  msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!"
5497
 
5498
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5499
  msgid "Search"
5500
  msgstr "Søg"
5501
 
5502
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5503
  msgid "Clear Results"
5504
  msgstr "Ryd resultatet"
5505
 
5506
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5507
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5508
  msgid "Extra shortcode parameters"
5509
  msgstr "Ekstra 'shortcode' parametre"
5510
 
5511
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5512
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5513
  msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt"
5514
 
5515
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5516
  msgid "Example:"
5517
  msgstr "Eksempel:"
5518
 
5519
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5520
  msgid "Remember though, that the field-value combination must exist in the database."
5521
  msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen."
5522
 
5523
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5524
  msgid "Random (very slow on large databases > 10K user)"
5525
  msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)"
5526
 
5527
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5528
  msgid "Roles to Display"
5529
  msgstr "Roller der skal vises"
5530
 
5531
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5532
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5533
  msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller<br/>Hvis ikke specificeret, så bruges alle eksisterende roller"
5534
 
5535
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5536
  msgid "Number of Users/Page"
5537
  msgstr "Antal brugere/side"
5538
 
5539
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5540
  msgid "Default Sorting Criteria"
5541
  msgstr "Standard sorteringskriterie"
5542
 
5543
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5544
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5545
  msgstr "Sæt standard sorteringskriteriet<br/>Denne kan ændres midlertidigt for hver ny session"
5546
 
5547
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5548
  msgid "Default Sorting Order"
5549
  msgstr "Standard sorteringsorden"
5550
 
5551
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5552
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5553
  msgstr "Sæt standard sorteringsorden<br/>Denne kan ændres midlertidigt for hver ny session"
5554
 
5555
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5556
  msgid "Avatar Size (All-userlisting)"
5557
  msgstr "Avatar størrelse (Flere-brugeroversigt)"
5558
 
5559
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5560
  msgid "Set the avatar size on the all-userlisting only"
5561
  msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten "
5562
 
5563
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5564
  msgid "Avatar Size (Single-userlisting)"
5565
  msgstr "Avatar størrelse (enkelt-brugeroversigt)"
5566
 
5567
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5568
  msgid "Set the avatar size on the single-userlisting only"
5569
  msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten"
5570
 
5571
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5572
  msgid "Visible only to logged in users?"
5573
  msgstr "Synlig kun for brugere, der er logget ind?"
5574
 
5575
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5576
  msgid "The userlisting will only be visible only to the logged in users"
5577
  msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind"
5578
 
5579
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5580
  msgid "Visible to following Roles"
5581
  msgstr "Synlig for følgende roller"
5582
 
5583
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5584
  msgid "The userlisting will only be visible to the following roles"
5585
  msgstr "Brugeroversigten vil kun være synlig for følgende roller"
5586
 
5587
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5588
  msgid "Userlisting Settings"
5589
  msgstr "Opsætning af brugeroversigt"
5590
 
5591
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5592
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5593
  msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!"
5594
 
5595
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5596
  msgid "You can find it in the Profile Builder menu."
5597
  msgstr "Du kan finde det i Profile Builder menuen."
5598
 
5599
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5600
  msgid "No results found!"
5601
  msgstr "Ingen resultater fundet!"
translation/profile-builder-de_DE.mo CHANGED
Binary file
translation/profile-builder-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-04-04 12:26:59+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,2867 +10,3092 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
- #: admin/manage-fields.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  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"
15
  msgstr ""
16
 
17
- #: modules/custom-redirects/custom_redirects_admin.php:244
18
  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."
19
  msgstr ""
20
 
21
- #: admin/manage-fields.php:1214
22
  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."
23
  msgstr ""
24
 
25
- #: modules/custom-redirects/custom_redirects_admin.php:240
26
  msgid "Multiple Registration and Edit Profile form settings Redirects"
27
  msgstr ""
28
 
29
- #: admin/register-version.php:251
30
  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>"
31
  msgstr ""
32
 
33
- #: admin/register-version.php:246
34
  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>"
35
  msgstr ""
36
 
37
- #: front-end/recover.php:151
38
  msgid "You are already logged in. You can change your password on the edit profile form."
39
  msgstr ""
40
 
41
- #: front-end/default-fields/blog-details/blog-details.php:70
42
  msgid "Your site url will look like this:<br>"
43
  msgstr ""
44
 
45
- #: features/functions.php:909
46
  msgid "<br><br>You can visit your site at "
47
  msgstr ""
48
 
49
- #: features/functions.php:896
50
  msgid "<br><br>Also, you will be able to visit your site at "
51
  msgstr ""
52
 
53
- #: front-end/default-fields/blog-details/blog-details.php:138
54
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
55
  msgstr ""
56
 
57
- #: front-end/default-fields/blog-details/blog-details.php:116
58
  msgid "Site Title"
59
  msgstr ""
60
 
61
- #: front-end/default-fields/blog-details/blog-details.php:93
62
  msgid "Site URL slug"
63
  msgstr ""
64
 
65
- #: front-end/default-fields/blog-details/blog-details.php:63
66
  msgid "Yes, I'd like to create a new site"
67
  msgstr ""
68
 
69
- #: modules/email-customizer/email-customizer.php:36
70
- #: modules/user-listing/userlisting.php:118
71
  msgid "Blog URL"
72
  msgstr ""
73
 
74
- #: admin/admin-functions.php:44
75
  msgid "Blog Details - only appears on the Registration page!"
76
  msgstr ""
77
 
78
- #: admin/manage-fields.php:219
79
  msgid "Blog Details"
80
  msgstr ""
81
 
82
- #: admin/pms-cross-promotion.php:239
83
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
84
  msgstr ""
85
 
86
- #: features/email-confirmation/email-confirmation.php:578
87
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
88
- msgstr ""
89
 
90
- #: modules/user-listing/userlisting.php:1303
91
  msgid "View Map"
92
  msgstr "Karte ansehen"
93
 
94
- #: admin/add-ons.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Available in Hobbyist and Pro Versions"
96
  msgstr "Verfügbar in den Versionen Hobbyist und Pro"
97
 
98
- #: admin/add-ons.php:105
99
  msgid "Available in All Versions"
100
  msgstr "In allen Versionen verfügbar"
101
 
102
- #: admin/add-ons.php:148
103
  msgid "Learn More"
104
  msgstr "Weitere Informationen"
105
 
106
- #: admin/basic-info.php:99
107
  msgid "Timepicker"
108
- msgstr ""
109
 
110
- #: admin/basic-info.php:100
111
  msgid "Colorpicker"
112
- msgstr ""
113
 
114
- #: admin/basic-info.php:103
115
  msgid "Currency Select"
116
- msgstr ""
117
 
118
- #: admin/basic-info.php:109
119
  msgid "Number"
120
- msgstr ""
121
 
122
- #: admin/basic-info.php:114
123
  msgid "Validation"
124
- msgstr ""
125
 
126
- #: admin/basic-info.php:115
127
  msgid "Map"
128
- msgstr ""
129
 
130
- #: admin/basic-info.php:116
131
  msgid "HTML"
132
- msgstr ""
133
 
134
- #: admin/basic-info.php:162 modules/modules.php:117
 
135
  msgid "Repeater Fields"
136
  msgstr ""
137
 
138
- #: admin/basic-info.php:163
139
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
  msgstr ""
141
 
142
- #: admin/general-settings.php:62
143
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
  msgstr ""
145
 
146
- #: admin/manage-fields.php:118
147
  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"
148
  msgstr ""
149
 
150
- #: admin/manage-fields.php:141
151
  msgid "Show Currency Symbol"
152
- msgstr ""
153
 
154
- #: admin/manage-fields.php:141
155
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
156
  msgstr ""
157
 
158
- #: admin/manage-fields.php:142
159
  msgid "Show Post Type"
160
  msgstr "Beitragstyp anzeigen"
161
 
162
- #: admin/manage-fields.php:142
163
  msgid "Posts from what post type will be displayed in the select."
164
  msgstr "Diese Beitragstypen werden in der Auswahl angezeigt."
165
 
166
- #: admin/manage-fields.php:143
167
  msgid "Allowable Values"
168
  msgstr "Erlaubte Werte"
169
 
170
- #: admin/manage-fields.php:143
171
  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."
172
  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."
173
 
174
- #: admin/manage-fields.php:144
175
  msgid "Error Message"
176
  msgstr "Fehlermeldung"
177
 
178
- #: admin/manage-fields.php:144
179
  msgid "Set a custom error message that will be displayed to the user."
180
  msgstr "Eigene Fehlermeldung angeben, die dem Nutzer angezeigt wird."
181
 
182
- #: admin/manage-fields.php:145
183
  msgid "Time Format"
184
  msgstr "Zeitformat"
185
 
186
- #: admin/manage-fields.php:145
187
  msgid "Specify the time format."
188
  msgstr "Zeitformat festlegen."
189
 
190
- #: admin/manage-fields.php:146
191
  msgid "Google Maps API Key"
192
  msgstr "Google Maps API Schlüssel"
193
 
194
- #: admin/manage-fields.php:146
195
  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."
196
  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."
197
 
198
- #: admin/manage-fields.php:147
199
  msgid "Default Latitude"
200
  msgstr "Standard Breitengrad (Latitude)"
201
 
202
- #: admin/manage-fields.php:147
203
  msgid "The latitude at which the map should be displayed when no pins are attached."
204
  msgstr "Auf der Karte angezeigter Breitengrad (Latitude) falls keine Pins vorhanden sind."
205
 
206
- #: admin/manage-fields.php:148
207
  msgid "Default Longitude"
208
  msgstr "Standard Längengrad (Longitude)"
209
 
210
- #: admin/manage-fields.php:148
211
  msgid "The longitude at which the map should be displayed when no pins are attached."
212
  msgstr "Auf der Karte angezeigter Längengrad (Longitude) falls keine Pins vorhanden sind."
213
 
214
- #: admin/manage-fields.php:149
215
  msgid "Default Zoom Level"
216
  msgstr "Standard Zoomstufe"
217
 
218
- #: admin/manage-fields.php:149
219
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
220
  msgstr ""
221
 
222
- #: admin/manage-fields.php:150
223
  msgid "Map Height"
224
  msgstr ""
225
 
226
- #: admin/manage-fields.php:150
227
  msgid "The height of the map."
228
  msgstr ""
229
 
230
- #: admin/manage-fields.php:152
231
  msgid "HTML Content"
232
  msgstr ""
233
 
234
- #: admin/manage-fields.php:152
235
  msgid "Add your HTML (or text) content"
236
  msgstr ""
237
 
238
- #: admin/manage-fields.php:153
239
  msgid "Phone Format"
240
- msgstr ""
241
 
242
- #: admin/manage-fields.php:153
243
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
244
- msgstr ""
245
 
246
- #: admin/manage-fields.php:153
247
  msgid "Eg. (###) ###-####"
248
- msgstr ""
249
 
250
- #: admin/manage-fields.php:153
251
  msgid "Empty field won't check for correct phone number."
252
  msgstr ""
253
 
254
- #: admin/manage-fields.php:154
255
  msgid "Heading Tag"
256
  msgstr ""
257
 
258
- #: admin/manage-fields.php:154
259
  msgid "Change heading field size on front-end forms"
260
  msgstr ""
261
 
262
- #: admin/manage-fields.php:155
263
  msgid "Min Number Value"
264
  msgstr ""
265
 
266
- #: admin/manage-fields.php:155
267
  msgid "Min allowed number value (0 to allow only positive numbers)"
268
  msgstr ""
269
 
270
- #: admin/manage-fields.php:155
271
  msgid "Leave it empty for no min value"
272
  msgstr ""
273
 
274
- #: admin/manage-fields.php:156
275
  msgid "Max Number Value"
276
  msgstr ""
277
 
278
- #: admin/manage-fields.php:156
279
  msgid "Max allowed number value (0 to allow only negative numbers)"
280
  msgstr ""
281
 
282
- #: admin/manage-fields.php:156
283
  msgid "Leave it empty for no max value"
284
  msgstr ""
285
 
286
- #: admin/manage-fields.php:157
287
  msgid "Number Step Value"
288
  msgstr ""
289
 
290
- #: admin/manage-fields.php:157
291
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
292
  msgstr ""
293
 
294
- #: admin/manage-fields.php:157
295
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
296
  msgstr ""
297
 
298
- #: admin/manage-fields.php:157
299
  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)"
300
  msgstr ""
301
 
302
- #: admin/manage-fields.php:157
303
  msgid "Leave it empty for no restriction"
304
  msgstr ""
305
 
306
- #: admin/manage-fields.php:561
307
  msgid "Albania Lek"
308
  msgstr ""
309
 
310
- #: admin/manage-fields.php:562
311
  msgid "Afghanistan Afghani"
312
  msgstr ""
313
 
314
- #: admin/manage-fields.php:563
315
  msgid "Argentina Peso"
316
  msgstr ""
317
 
318
- #: admin/manage-fields.php:564
319
  msgid "Aruba Guilder"
320
  msgstr ""
321
 
322
- #: admin/manage-fields.php:565
323
  msgid "Australia Dollar"
324
  msgstr ""
325
 
326
- #: admin/manage-fields.php:566
327
  msgid "Azerbaijan New Manat"
328
  msgstr ""
329
 
330
- #: admin/manage-fields.php:567
331
  msgid "Bahamas Dollar"
332
  msgstr ""
333
 
334
- #: admin/manage-fields.php:568
335
  msgid "Barbados Dollar"
336
  msgstr ""
337
 
338
- #: admin/manage-fields.php:569
339
  msgid "Bangladeshi taka"
340
  msgstr ""
341
 
342
- #: admin/manage-fields.php:570
343
  msgid "Belarus Ruble"
344
  msgstr ""
345
 
346
- #: admin/manage-fields.php:571
347
  msgid "Belize Dollar"
348
  msgstr ""
349
 
350
- #: admin/manage-fields.php:572
351
  msgid "Bermuda Dollar"
352
  msgstr ""
353
 
354
- #: admin/manage-fields.php:573
355
  msgid "Bolivia Boliviano"
356
  msgstr ""
357
 
358
- #: admin/manage-fields.php:574
359
  msgid "Bosnia and Herzegovina Convertible Marka"
360
  msgstr ""
361
 
362
- #: admin/manage-fields.php:575
363
  msgid "Botswana Pula"
364
  msgstr ""
365
 
366
- #: admin/manage-fields.php:576
367
  msgid "Bulgaria Lev"
368
  msgstr ""
369
 
370
- #: admin/manage-fields.php:577
371
  msgid "Brazil Real"
372
  msgstr ""
373
 
374
- #: admin/manage-fields.php:578
375
  msgid "Brunei Darussalam Dollar"
376
  msgstr ""
377
 
378
- #: admin/manage-fields.php:579
379
  msgid "Cambodia Riel"
380
  msgstr ""
381
 
382
- #: admin/manage-fields.php:580
383
  msgid "Canada Dollar"
384
  msgstr ""
385
 
386
- #: admin/manage-fields.php:581
387
  msgid "Cayman Islands Dollar"
388
  msgstr ""
389
 
390
- #: admin/manage-fields.php:582
391
  msgid "Chile Peso"
392
  msgstr ""
393
 
394
- #: admin/manage-fields.php:583
395
  msgid "China Yuan Renminbi"
396
  msgstr ""
397
 
398
- #: admin/manage-fields.php:584
399
  msgid "Colombia Peso"
400
  msgstr ""
401
 
402
- #: admin/manage-fields.php:585
403
  msgid "Costa Rica Colon"
404
  msgstr ""
405
 
406
- #: admin/manage-fields.php:586
407
  msgid "Croatia Kuna"
408
  msgstr ""
409
 
410
- #: admin/manage-fields.php:587
411
  msgid "Cuba Peso"
412
  msgstr ""
413
 
414
- #: admin/manage-fields.php:588
415
  msgid "Czech Republic Koruna"
416
  msgstr ""
417
 
418
- #: admin/manage-fields.php:589
419
  msgid "Denmark Krone"
420
  msgstr ""
421
 
422
- #: admin/manage-fields.php:590
423
  msgid "Dominican Republic Peso"
424
  msgstr ""
425
 
426
- #: admin/manage-fields.php:591
427
  msgid "East Caribbean Dollar"
428
  msgstr ""
429
 
430
- #: admin/manage-fields.php:592
431
  msgid "Egypt Pound"
432
  msgstr ""
433
 
434
- #: admin/manage-fields.php:593
435
  msgid "El Salvador Colon"
436
  msgstr ""
437
 
438
- #: admin/manage-fields.php:594
439
  msgid "Estonia Kroon"
440
  msgstr ""
441
 
442
- #: admin/manage-fields.php:595
443
  msgid "Euro"
444
- msgstr ""
445
 
446
- #: admin/manage-fields.php:596
447
  msgid "Falkland Islands (Malvinas) Pound"
448
  msgstr ""
449
 
450
- #: admin/manage-fields.php:597
451
  msgid "Fiji Dollar"
452
  msgstr ""
453
 
454
- #: admin/manage-fields.php:598
455
  msgid "Ghana Cedis"
456
  msgstr ""
457
 
458
- #: admin/manage-fields.php:599
459
  msgid "Gibraltar Pound"
460
  msgstr ""
461
 
462
- #: admin/manage-fields.php:600
463
  msgid "Guatemala Quetzal"
464
  msgstr ""
465
 
466
- #: admin/manage-fields.php:601
467
  msgid "Guernsey Pound"
468
  msgstr ""
469
 
470
- #: admin/manage-fields.php:602
471
  msgid "Guyana Dollar"
472
  msgstr ""
473
 
474
- #: admin/manage-fields.php:603
475
  msgid "Honduras Lempira"
476
  msgstr ""
477
 
478
- #: admin/manage-fields.php:604
479
  msgid "Hong Kong Dollar"
480
  msgstr ""
481
 
482
- #: admin/manage-fields.php:605
483
  msgid "Hungary Forint"
484
  msgstr ""
485
 
486
- #: admin/manage-fields.php:606
487
  msgid "Iceland Krona"
488
- msgstr ""
489
 
490
- #: admin/manage-fields.php:607
491
  msgid "India Rupee"
492
  msgstr ""
493
 
494
- #: admin/manage-fields.php:608
495
  msgid "Indonesia Rupiah"
496
  msgstr ""
497
 
498
- #: admin/manage-fields.php:609
499
  msgid "Iran Rial"
500
  msgstr ""
501
 
502
- #: admin/manage-fields.php:610
503
  msgid "Isle of Man Pound"
504
  msgstr ""
505
 
506
- #: admin/manage-fields.php:611
507
  msgid "Israel Shekel"
508
  msgstr ""
509
 
510
- #: admin/manage-fields.php:612
511
  msgid "Jamaica Dollar"
512
  msgstr ""
513
 
514
- #: admin/manage-fields.php:613
515
  msgid "Japan Yen"
516
  msgstr ""
517
 
518
- #: admin/manage-fields.php:614
519
  msgid "Jersey Pound"
520
  msgstr ""
521
 
522
- #: admin/manage-fields.php:615
523
  msgid "Kazakhstan Tenge"
524
  msgstr ""
525
 
526
- #: admin/manage-fields.php:616
527
  msgid "Korea (North) Won"
528
  msgstr ""
529
 
530
- #: admin/manage-fields.php:617
531
  msgid "Korea (South) Won"
532
  msgstr ""
533
 
534
- #: admin/manage-fields.php:618
535
  msgid "Kyrgyzstan Som"
536
  msgstr ""
537
 
538
- #: admin/manage-fields.php:619
539
  msgid "Laos Kip"
540
  msgstr ""
541
 
542
- #: admin/manage-fields.php:620
543
  msgid "Latvia Lat"
544
  msgstr ""
545
 
546
- #: admin/manage-fields.php:621
547
  msgid "Lebanon Pound"
548
  msgstr ""
549
 
550
- #: admin/manage-fields.php:622
551
  msgid "Liberia Dollar"
552
  msgstr ""
553
 
554
- #: admin/manage-fields.php:623
555
  msgid "Lithuania Litas"
556
  msgstr ""
557
 
558
- #: admin/manage-fields.php:624
559
  msgid "Macedonia Denar"
560
  msgstr ""
561
 
562
- #: admin/manage-fields.php:625
563
  msgid "Malaysia Ringgit"
564
  msgstr ""
565
 
566
- #: admin/manage-fields.php:626
567
  msgid "Mauritius Rupee"
568
  msgstr ""
569
 
570
- #: admin/manage-fields.php:627
571
  msgid "Mexico Peso"
572
  msgstr ""
573
 
574
- #: admin/manage-fields.php:628
575
  msgid "Mongolia Tughrik"
576
  msgstr ""
577
 
578
- #: admin/manage-fields.php:629
579
  msgid "Mozambique Metical"
580
  msgstr ""
581
 
582
- #: admin/manage-fields.php:630
583
  msgid "Namibia Dollar"
584
  msgstr ""
585
 
586
- #: admin/manage-fields.php:631
587
  msgid "Nepal Rupee"
588
  msgstr ""
589
 
590
- #: admin/manage-fields.php:632
591
  msgid "Netherlands Antilles Guilder"
592
  msgstr ""
593
 
594
- #: admin/manage-fields.php:633
595
  msgid "New Zealand Dollar"
596
  msgstr ""
597
 
598
- #: admin/manage-fields.php:634
599
  msgid "Nicaragua Cordoba"
600
  msgstr ""
601
 
602
- #: admin/manage-fields.php:635
603
  msgid "Nigeria Naira"
604
  msgstr ""
605
 
606
- #: admin/manage-fields.php:636
607
  msgid "Norway Krone"
608
  msgstr ""
609
 
610
- #: admin/manage-fields.php:637
611
  msgid "Oman Rial"
612
  msgstr ""
613
 
614
- #: admin/manage-fields.php:638
615
  msgid "Pakistan Rupee"
616
  msgstr ""
617
 
618
- #: admin/manage-fields.php:639
619
  msgid "Panama Balboa"
620
  msgstr ""
621
 
622
- #: admin/manage-fields.php:640
623
  msgid "Paraguay Guarani"
624
  msgstr ""
625
 
626
- #: admin/manage-fields.php:641
627
  msgid "Peru Nuevo Sol"
628
  msgstr ""
629
 
630
- #: admin/manage-fields.php:642
631
  msgid "Philippines Peso"
632
  msgstr ""
633
 
634
- #: admin/manage-fields.php:643
635
  msgid "Poland Zloty"
636
  msgstr ""
637
 
638
- #: admin/manage-fields.php:644
639
  msgid "Qatar Riyal"
640
  msgstr ""
641
 
642
- #: admin/manage-fields.php:645
643
  msgid "Romania New Leu"
644
  msgstr ""
645
 
646
- #: admin/manage-fields.php:646
647
  msgid "Russia Ruble"
648
  msgstr ""
649
 
650
- #: admin/manage-fields.php:647
651
  msgid "Saint Helena Pound"
652
  msgstr ""
653
 
654
- #: admin/manage-fields.php:648
655
  msgid "Saudi Arabia Riyal"
656
  msgstr ""
657
 
658
- #: admin/manage-fields.php:649
659
  msgid "Serbia Dinar"
660
  msgstr ""
661
 
662
- #: admin/manage-fields.php:650
663
  msgid "Seychelles Rupee"
664
  msgstr ""
665
 
666
- #: admin/manage-fields.php:651
667
  msgid "Singapore Dollar"
668
  msgstr ""
669
 
670
- #: admin/manage-fields.php:652
671
  msgid "Solomon Islands Dollar"
672
  msgstr ""
673
 
674
- #: admin/manage-fields.php:653
675
  msgid "Somalia Shilling"
676
  msgstr ""
677
 
678
- #: admin/manage-fields.php:654
679
  msgid "South Africa Rand"
680
  msgstr ""
681
 
682
- #: admin/manage-fields.php:655
683
  msgid "Sri Lanka Rupee"
684
  msgstr ""
685
 
686
- #: admin/manage-fields.php:656
687
  msgid "Sweden Krona"
688
  msgstr ""
689
 
690
- #: admin/manage-fields.php:657
691
  msgid "Switzerland Franc"
692
  msgstr ""
693
 
694
- #: admin/manage-fields.php:658
695
  msgid "Suriname Dollar"
696
  msgstr ""
697
 
698
- #: admin/manage-fields.php:659
699
  msgid "Syria Pound"
700
  msgstr ""
701
 
702
- #: admin/manage-fields.php:660
703
  msgid "Taiwan New Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:661
707
  msgid "Thailand Baht"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:662
711
  msgid "Trinidad and Tobago Dollar"
712
  msgstr ""
713
 
714
- #: admin/manage-fields.php:663 admin/manage-fields.php:664
 
715
  msgid "Turkey Lira"
716
  msgstr ""
717
 
718
- #: admin/manage-fields.php:665
719
  msgid "Tuvalu Dollar"
720
  msgstr ""
721
 
722
- #: admin/manage-fields.php:666
723
  msgid "Ukraine Hryvna"
724
  msgstr ""
725
 
726
- #: admin/manage-fields.php:667
727
  msgid "United Kingdom Pound"
728
  msgstr ""
729
 
730
- #: admin/manage-fields.php:668
731
  msgid "Uganda Shilling"
732
  msgstr ""
733
 
734
- #: admin/manage-fields.php:669
735
  msgid "US Dollar"
736
  msgstr ""
737
 
738
- #: admin/manage-fields.php:670
739
  msgid "Uruguay Peso"
740
  msgstr ""
741
 
742
- #: admin/manage-fields.php:671
743
  msgid "Uzbekistan Som"
744
  msgstr ""
745
 
746
- #: admin/manage-fields.php:672
747
  msgid "Venezuela Bolivar"
748
  msgstr ""
749
 
750
- #: admin/manage-fields.php:673
751
  msgid "Viet Nam Dong"
752
  msgstr ""
753
 
754
- #: admin/manage-fields.php:674
755
  msgid "Yemen Rial"
756
  msgstr ""
757
 
758
- #: admin/manage-fields.php:675
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
- #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
- #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
- #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
  msgid "You are not allowed to do this."
772
  msgstr ""
773
 
774
- #: features/admin-approval/class-admin-approval.php:461
775
- #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
777
  msgstr ""
778
 
779
- #: features/conditional-fields/conditional-fields.php:78
780
  msgid "Conditional Logic"
781
  msgstr ""
782
 
783
- #: features/conditional-fields/conditional-fields.php:79
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
- #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
791
- #: features/functions.php:685
792
  msgid "Incorrect phone number"
793
- msgstr ""
794
 
795
- #: front-end/class-formbuilder.php:113
796
  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."
797
  msgstr ""
798
 
799
- #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69
 
800
  msgid "Please add the Google Maps API key for this field."
801
  msgstr ""
802
 
803
- #: front-end/extra-fields/map/map.php:134
804
  msgid "Something went wrong. Please try again."
805
- msgstr ""
806
 
807
- #: front-end/extra-fields/number/number.php:69
808
  msgid "Please enter numbers only"
809
- msgstr ""
810
 
811
- #: front-end/extra-fields/number/number.php:73
812
  msgid "Value must be a multiplier of %1$s"
813
  msgstr ""
814
 
815
- #: front-end/extra-fields/number/number.php:77
816
  msgid "Value must be greater than or equal to %1$s"
817
  msgstr ""
818
 
819
- #: front-end/extra-fields/number/number.php:81
820
  msgid "Value must be less than or equal to %1$s"
821
  msgstr ""
822
 
823
- #: front-end/extra-fields/phone/phone.php:22
824
  msgid "Required phone number format: "
825
  msgstr ""
826
 
827
- #: front-end/extra-fields/select-country/select-country.php:10
828
  msgid "Bolivia, __( Plurinational State of"
829
  msgstr ""
830
 
831
- #: front-end/extra-fields/select-country/select-country.php:10
832
  msgid "Bonaire, __( Sint Eustatius and Saba"
833
  msgstr ""
834
 
835
- #: front-end/extra-fields/select-country/select-country.php:10
836
  msgid "Brunei Darussalam"
837
  msgstr ""
838
 
839
- #: front-end/extra-fields/select-country/select-country.php:10
840
  msgid "Cabo Verde"
841
  msgstr ""
842
 
843
- #: front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Cocos (Keeling) Islands"
845
  msgstr ""
846
 
847
- #: front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Congo"
849
  msgstr ""
850
 
851
- #: front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Congo, __( the Democratic Republic of the"
853
  msgstr ""
854
 
855
- #: front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cote dIvoire"
857
  msgstr ""
858
 
859
- #: front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Falkland Islands (Malvinas)"
861
  msgstr ""
862
 
863
- #: front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Holy See (Vatican City State)"
865
  msgstr ""
866
 
867
- #: front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Iran, __( Islamic Republic of"
869
  msgstr ""
870
 
871
- #: front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Korea, __( Democratic Peoples Republic of"
873
  msgstr ""
874
 
875
- #: front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Korea, __( Republic of"
877
  msgstr ""
878
 
879
- #: front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Lao Peoples Democratic Republic"
881
  msgstr ""
882
 
883
- #: front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Macedonia, __( the former Yugoslav Republic of"
885
  msgstr ""
886
 
887
- #: front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Micronesia, __( Federated States of"
889
  msgstr ""
890
 
891
- #: front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Moldova, __( Republic of"
893
  msgstr ""
894
 
895
- #: front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Palestine, __( State of"
897
  msgstr ""
898
 
899
- #: front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Russian Federation"
901
  msgstr ""
902
 
903
- #: front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
905
  msgstr ""
906
 
907
- #: front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Saint Martin (French part)"
909
  msgstr ""
910
 
911
- #: front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Sint Maarten (Dutch part)"
913
  msgstr ""
914
 
915
- #: front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Syrian Arab Republic"
917
  msgstr ""
918
 
919
- #: front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Taiwan, __( Province of China"
921
  msgstr ""
922
 
923
- #: front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Tanzania, __( United Republic of"
925
  msgstr ""
926
 
927
- #: front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Timor-Leste"
929
  msgstr ""
930
 
931
- #: front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Venezuela, __( Bolivarian Republic of"
933
  msgstr ""
934
 
935
- #: front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Viet Nam"
937
  msgstr ""
938
 
939
- #: front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Virgin Islands, __( British"
941
  msgstr ""
942
 
943
- #: front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Virgin Islands, __( U.S."
945
  msgstr ""
946
 
947
- #: modules/email-customizer/email-customizer.php:11
948
- #: modules/user-listing/userlisting.php:186
949
  msgid "User Fields Tags"
950
  msgstr ""
951
 
952
- #: modules/email-customizer/email-customizer.php:479
953
  msgid "The users selected password at signup"
954
  msgstr ""
955
 
956
- #: modules/email-customizer/user-email-customizer.php:278
957
  msgid "[{{site_name}}] Notice of Email Change"
958
  msgstr ""
959
 
960
- #: modules/email-customizer/user-email-customizer.php:289
961
  msgid "Changed Email Address Notification"
962
  msgstr ""
963
 
964
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
965
  msgid "Limit"
966
  msgstr ""
967
 
968
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
969
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
970
  msgstr ""
971
 
972
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
973
  msgid "General Limit"
974
  msgstr ""
975
 
976
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
977
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
978
  msgstr ""
979
 
980
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
981
  msgid "Limit reached message"
982
  msgstr ""
983
 
984
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
985
  msgid "The maximum number of fields has been reached."
986
  msgstr ""
987
 
988
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
989
  msgid "The popup message to display when the limit of repeater groups is reached."
990
  msgstr ""
991
 
992
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
993
  msgid "Limit per Role"
994
  msgstr ""
995
 
996
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
997
  msgid "Leave 0 for unlimited."
998
  msgstr ""
999
 
1000
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
1001
  msgid "Repeated field group"
1002
  msgstr ""
1003
 
1004
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
1005
  msgid "Manage field or group of fields that will be repeatable."
1006
  msgstr ""
1007
 
1008
- #: modules/repeater-field/admin/repeater-manage-fields.php:259
1009
  msgid "Edit field group"
1010
  msgstr ""
1011
 
1012
- #: modules/repeater-field/admin/repeater-manage-fields.php:260
1013
  msgid "Repeatable fields saved!"
1014
  msgstr ""
1015
 
1016
- #: modules/repeater-field/admin/repeater-manage-fields.php:277
1017
- #: modules/repeater-field/admin/repeater-manage-fields.php:326
1018
  msgid "Please enter a unique field title.\n"
1019
  msgstr ""
1020
 
1021
- #: modules/repeater-field/repeater-field.php:258
1022
  msgid "Are you sure you want to delete this?"
1023
  msgstr ""
1024
 
1025
- #: modules/user-listing/userlisting.php:192
1026
  msgid "Sort Tags"
1027
  msgstr ""
1028
 
1029
- #: modules/user-listing/userlisting.php:201
1030
- #: modules/user-listing/userlisting.php:2237
1031
  msgid "Faceted Menus"
1032
  msgstr ""
1033
 
1034
- #: modules/user-listing/userlisting.php:202
1035
  msgid "User Count"
1036
  msgstr ""
1037
 
1038
- #: modules/user-listing/userlisting.php:1536
1039
  msgid "Show All"
1040
- msgstr ""
1041
 
1042
- #: modules/user-listing/userlisting.php:1668
1043
  msgid "No options available"
1044
- msgstr ""
1045
 
1046
- #: modules/user-listing/userlisting.php:1807
1047
  msgid "Remove All Filters"
1048
  msgstr ""
1049
 
1050
- #: modules/user-listing/userlisting.php:2227
1051
  msgid "Label"
1052
  msgstr ""
1053
 
1054
- #: modules/user-listing/userlisting.php:2227
1055
  msgid "Choose the facet name that appears on the frontend"
1056
  msgstr ""
1057
 
1058
- #: modules/user-listing/userlisting.php:2228
1059
  msgid "Facet Type"
1060
  msgstr ""
1061
 
1062
- #: modules/user-listing/userlisting.php:2228
1063
  msgid "Choose the facet menu type"
1064
  msgstr ""
1065
 
1066
- #: modules/user-listing/userlisting.php:2229
1067
  msgid "Facet Meta"
1068
  msgstr ""
1069
 
1070
- #: modules/user-listing/userlisting.php:2229
1071
  msgid "Choose the meta field for the facet menu"
1072
  msgstr ""
1073
 
1074
- #: modules/user-listing/userlisting.php:2230
1075
  msgid "Behaviour"
1076
  msgstr ""
1077
 
1078
- #: modules/user-listing/userlisting.php:2230
1079
  msgid "Narrow the results"
1080
  msgstr ""
1081
 
1082
- #: modules/user-listing/userlisting.php:2230
1083
  msgid "Expand the results"
1084
  msgstr ""
1085
 
1086
- #: modules/user-listing/userlisting.php:2230
1087
  msgid "Choose how multiple selections affect the results"
1088
  msgstr ""
1089
 
1090
- #: modules/user-listing/userlisting.php:2231
1091
  msgid "Visible choices"
1092
  msgstr ""
1093
 
1094
- #: modules/user-listing/userlisting.php:2231
1095
  msgid "Show a toggle link after this many choices. Leave blank for all"
1096
  msgstr ""
1097
 
1098
- #: modules/user-listing/userlisting.php:2254
1099
  msgid "Search Fields"
1100
  msgstr ""
1101
 
1102
- #: modules/user-listing/userlisting.php:2254
1103
  msgid "Choose the fields in which the Search Field will look in"
1104
  msgstr ""
1105
 
1106
- #: modules/user-listing/userlisting.php:2259
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
- #: admin/add-ons.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  msgid "Recommended Plugins"
1112
  msgstr "Empfohlene Erweiterungen"
1113
 
1114
- #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
 
1115
  msgid "Free"
1116
  msgstr "Kostenlos"
1117
 
1118
- #: admin/add-ons.php:221
1119
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
  msgstr "Bezahlvorgänge, Abonnements und Inhaltsbeschränkungen für Ihre Mitgliedsseite."
1121
 
1122
- #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
 
1123
  msgid "More Details"
1124
  msgstr "Weitere Details"
1125
 
1126
- #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
- #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
 
 
1128
  msgid "Plugin is <strong>inactive</strong>"
1129
  msgstr "Die Erweiterung ist <strong>inaktiv</strong>"
1130
 
1131
- #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87
1132
- #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204
 
 
1133
  msgid "Plugin is <strong>active</strong>"
1134
  msgstr "Die Erweiterung ist <strong>aktiv</strong>"
1135
 
1136
- #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146
 
1137
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1138
  msgstr "Die Erweiterung konnte nicht installiert werden. Versuchen Sie es noch einmal oder <a href=\"%s\" target=\"_blank\">installieren Sie die Erweiterung manuell</a>."
1139
 
1140
- #: admin/pms-cross-promotion.php:10
1141
  msgid "Paid Accounts"
1142
  msgstr "Paid Accounts"
1143
 
1144
- #: admin/pms-cross-promotion.php:33
1145
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
  msgstr "Paid Member Subscriptions - eine kostenloses WordPress Erweiterung"
1147
 
1148
- #: admin/pms-cross-promotion.php:37
1149
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
  msgstr ""
1151
 
1152
- #: admin/pms-cross-promotion.php:40
1153
  msgid "Paid & Free Subscriptions"
1154
  msgstr "Paid & Free Subscriptions"
1155
 
1156
- #: admin/pms-cross-promotion.php:41
1157
  msgid "Restrict Content"
1158
  msgstr "Restrict Content"
1159
 
1160
- #: admin/pms-cross-promotion.php:42
1161
  msgid "Member Management"
1162
  msgstr "Member Management"
1163
 
1164
- #: admin/pms-cross-promotion.php:43
1165
  msgid "Email Templates"
1166
  msgstr "Emailvorlagen"
1167
 
1168
- #: admin/pms-cross-promotion.php:44
1169
  msgid "Account Management"
1170
  msgstr "Account Management"
1171
 
1172
- #: admin/pms-cross-promotion.php:45
1173
  msgid "Subscription Management"
1174
  msgstr "Subscription Management"
1175
 
1176
- #: admin/pms-cross-promotion.php:46
1177
  msgid "Payment Management"
1178
  msgstr "Payment Management"
1179
 
1180
- #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "Erweiterung aktiv"
1183
 
1184
- #: admin/pms-cross-promotion.php:84
1185
  msgid "Plugin has been activated"
1186
  msgstr "Die Erweiterung wurde aktiviert."
1187
 
1188
- #: admin/pms-cross-promotion.php:91
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Die Erweiterung wurde deaktiviert."
1191
 
1192
- #: admin/pms-cross-promotion.php:104
1193
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
  msgstr "Aktzeptiere Benutzerzahlungen, erstelle Abonnement-Pläne und schränke den Inhalt deiner Webseite ein."
1195
 
1196
- #: admin/pms-cross-promotion.php:155
1197
  msgid "Step by Step Quick Setup"
1198
  msgstr "Schnelle Schritt für Schritt Einrichtung"
1199
 
1200
- #: features/email-confirmation/email-confirmation.php:400
1201
  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."
1202
  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."
1203
 
1204
- #: modules/custom-redirects/custom_redirects_admin.php:45
1205
  msgid "After Login"
1206
  msgstr "Nach dem Login"
1207
 
1208
- #: modules/custom-redirects/custom_redirects_admin.php:46
1209
  msgid "After Logout"
1210
  msgstr "Nach dem Logout"
1211
 
1212
- #: modules/custom-redirects/custom_redirects_admin.php:47
1213
  msgid "After Registration"
1214
  msgstr "Nach der Registrierung"
1215
 
1216
- #: modules/custom-redirects/custom_redirects_admin.php:48
1217
  msgid "After Edit Profile"
1218
  msgstr "Nach dem Editieren eines Profils"
1219
 
1220
- #: modules/custom-redirects/custom_redirects_admin.php:49
1221
  msgid "After Successful Email Confirmation"
1222
  msgstr "Nach erfolgreicher Emailbestätigung"
1223
 
1224
- #: modules/custom-redirects/custom_redirects_admin.php:50
1225
  msgid "After Successful Password Reset"
1226
  msgstr "Nach erfolgreichem Zurücksetzen des Passworts"
1227
 
1228
- #: modules/custom-redirects/custom_redirects_admin.php:51
1229
  msgid "Dashboard (redirect users from accessing the dashboard)"
1230
  msgstr "Übersichtsseite (leitet Benutzer weiter, wenn sie auf diese Seite wollen)"
1231
 
1232
- #: modules/custom-redirects/custom_redirects_admin.php:55
1233
  msgid "User ID"
1234
  msgstr "Benutzer ID"
1235
 
1236
- #: modules/custom-redirects/custom_redirects_admin.php:61
1237
  msgid "User ID or Username"
1238
  msgstr "Benutzer ID oder Benutzername"
1239
 
1240
- #: modules/custom-redirects/custom_redirects_admin.php:62
1241
  msgid "User ID / Username"
1242
  msgstr "Benutzer ID / Benutzername"
1243
 
1244
- #: modules/custom-redirects/custom_redirects_admin.php:62
1245
  msgid "Please select and enter the ID or username of your user."
1246
  msgstr "Bitte geben Sie Ihre Benutzer ID oder Ihren Benutzernamen an."
1247
 
1248
- #: modules/custom-redirects/custom_redirects_admin.php:63
1249
- #: modules/custom-redirects/custom_redirects_admin.php:93
1250
- #: modules/custom-redirects/custom_redirects_admin.php:112
1251
- #: modules/custom-redirects/custom_redirects_admin.php:131
1252
  msgid "Redirect Type"
1253
  msgstr "Umleitungy Typ"
1254
 
1255
- #: modules/custom-redirects/custom_redirects_admin.php:64
1256
- #: modules/custom-redirects/custom_redirects_admin.php:94
1257
- #: modules/custom-redirects/custom_redirects_admin.php:113
1258
- #: modules/custom-redirects/custom_redirects_admin.php:138
1259
  msgid "Redirect URL"
1260
  msgstr "Umleitungs URL"
1261
 
1262
- #: modules/custom-redirects/custom_redirects_admin.php:64
1263
- #: modules/custom-redirects/custom_redirects_admin.php:94
1264
- #: modules/custom-redirects/custom_redirects_admin.php:113
1265
- #: modules/custom-redirects/custom_redirects_admin.php:138
1266
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1267
  msgstr "Kann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1268
 
1269
- #: modules/custom-redirects/custom_redirects_admin.php:71
1270
- #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr "Individuelle Benutzer-Weiterleitungen"
1273
 
1274
- #: modules/custom-redirects/custom_redirects_admin.php:84
1275
  msgid "... Choose"
1276
  msgstr "... Auswählen"
1277
 
1278
- #: modules/custom-redirects/custom_redirects_admin.php:92
1279
  msgid "Select a user role."
1280
  msgstr "Wähle eine Benutzerrolle aus."
1281
 
1282
- #: modules/custom-redirects/custom_redirects_admin.php:101
1283
- #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr "Benutzerrollen basierte Weiterleitungen"
1286
 
1287
- #: modules/custom-redirects/custom_redirects_admin.php:120
1288
- #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr "Globale Weiterleitungen"
1291
 
1292
- #: modules/custom-redirects/custom_redirects_admin.php:133
1293
  msgid "Login ( wp_login.php )"
1294
  msgstr "Login ( wp_login.php )"
1295
 
1296
- #: modules/custom-redirects/custom_redirects_admin.php:134
1297
  msgid "Register ( wp-login.php?action=register )"
1298
  msgstr "Registrierung ( wp-login.php?action=register )"
1299
 
1300
- #: modules/custom-redirects/custom_redirects_admin.php:135
1301
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1302
  msgstr "Passwort vergessen ( wp-login.php?action=lostpassword )"
1303
 
1304
- #: modules/custom-redirects/custom_redirects_admin.php:136
1305
  msgid "Author Archive ( http://sitename.com/author/admin )"
1306
  msgstr "Autoren Archiv ( http://seitenname.com/autor/admin )"
1307
 
1308
- #: modules/custom-redirects/custom_redirects_admin.php:145
1309
  msgid "Redirect Default WordPress Forms and Pages"
1310
  msgstr "Standard WordPress Formulare und Seiten umleiten"
1311
 
1312
- #: modules/custom-redirects/custom_redirects_admin.php:157
1313
  msgid "How does this work?"
1314
  msgstr "Wie funktioniert das?"
1315
 
1316
- #: modules/custom-redirects/custom_redirects_admin.php:179
1317
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1318
  msgstr "<pre>Benutzer ID / Benutzername </pre><pre>Weiterleitung</pre><pre>URL</pre>"
1319
 
1320
- #: modules/custom-redirects/custom_redirects_admin.php:193
1321
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1322
  msgstr "<pre>Benutzer-Rolle</pre><pre>Weiterleitung</pre><pre>URL</pre>"
1323
 
1324
- #: modules/custom-redirects/custom_redirects_admin.php:207
1325
- #: modules/custom-redirects/custom_redirects_admin.php:221
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr "<pre>Umleitung</pre><pre>URL</pre>"
1328
 
1329
- #: modules/custom-redirects/custom_redirects_admin.php:236
1330
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
  msgstr "Die Weiterleitungen werden nach einer erfolgreichen Aktion ausgelöst, wie z.B. einer Registrierung oder einem Login."
1332
 
1333
- #: modules/custom-redirects/custom_redirects_admin.php:238
1334
  msgid "Which redirect happens depends on the following priority:"
1335
  msgstr "Welche Weiterleitung greift kommt auf die folgende Priorität an:"
1336
 
1337
- #: modules/custom-redirects/custom_redirects_admin.php:247
1338
  msgid "Redirect Default WordPress forms and pages"
1339
  msgstr "Standard WordPress Formulare und Seiten umleiten"
1340
 
1341
- #: modules/custom-redirects/custom_redirects_admin.php:248
1342
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
  msgstr "Damit können Sie verschiedene WordPress Formulare und Seiten zu den Profile Builder Äquivalenten umleiten."
1344
 
1345
- #: modules/custom-redirects/custom_redirects_admin.php:250
1346
  msgid "Available tags for dynamic URLs"
1347
  msgstr "Verfügbare Tags für dynamische URLs"
1348
 
1349
- #: modules/custom-redirects/custom_redirects_admin.php:251
1350
  msgid "You use the following tags in your URLs to redirect users to various pages."
1351
  msgstr "Sie nutzen folgende Tags in Ihren Umleitungs-URLs."
1352
 
1353
- #: modules/custom-redirects/custom_redirects_admin.php:253
1354
  msgid "generates a url of the current website homepage."
1355
  msgstr "Generiert eine URL der Startseite."
1356
 
1357
- #: modules/custom-redirects/custom_redirects_admin.php:254
1358
  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"
1359
  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."
1360
 
1361
- #: modules/custom-redirects/custom_redirects_admin.php:255
1362
  msgid "the ID of the user"
1363
  msgstr "die ID des Benutzers"
1364
 
1365
- #: modules/custom-redirects/custom_redirects_admin.php:256
1366
  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."
1367
  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."
1368
 
1369
- #: modules/custom-redirects/custom_redirects_admin.php:257
1370
  msgid "the URL of the previously visited page"
1371
  msgstr "die URL der vorherigen besuchten Seite"
1372
 
1373
- #: modules/custom-redirects/custom_redirects_admin.php:340
1374
- #: modules/custom-redirects/custom_redirects_admin.php:346
1375
- #: modules/custom-redirects/custom_redirects_admin.php:352
1376
  msgid "You can't add duplicate redirects!"
1377
  msgstr "Sie können keine doppelten Weiterleitungen anlegen!"
1378
 
1379
- #: admin/admin-functions.php:41
1380
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1381
  msgstr "Den Namen öffentlich anzeigen - erscheint nur auf der Edit Profile Seite!"
1382
 
1383
- #: admin/basic-info.php:37
1384
  msgid "Friction-less login using %s shortcode or a widget."
1385
  msgstr "Reibungsloser Login indem man %s oder ein Widget benutzt."
1386
 
1387
- #: admin/basic-info.php:41
1388
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1389
  msgstr "Wunderschöne und voll anpassbare Registrierformulare mit der Nutzung von %s Shortcode."
1390
 
1391
- #: admin/basic-info.php:45
1392
  msgid "Straight forward edit profile forms using %s shortcode."
1393
  msgstr ""
1394
 
1395
- #: admin/basic-info.php:58
1396
  msgid "Allow users to recover their password in the front-end using the %s."
1397
  msgstr "Ermöglicht dem User, sein Passwort im Front-End-Bereich unter Anwendung von %s wiederherzustellen"
1398
 
1399
- #: admin/basic-info.php:140
1400
  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."
1401
  msgstr ""
1402
 
1403
- #: admin/general-settings.php:118
1404
  msgid "\"Admin Approval\" on User Role:"
1405
  msgstr "\"Genehmigung durch Admin\" auf Benutzer-Rolle:"
1406
 
1407
- #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr "Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen."
1410
 
1411
- #: admin/manage-fields.php:131
1412
  msgid "Display on PB forms"
1413
  msgstr "Zeige auf PB Formularen"
1414
 
1415
- #: admin/manage-fields.php:131
1416
  msgid "PB Login"
1417
  msgstr "PB Login"
1418
 
1419
- #: admin/manage-fields.php:131
1420
  msgid "PB Register"
1421
  msgstr "PB Registrierung"
1422
 
1423
- #: admin/manage-fields.php:131
1424
  msgid "PB Recover Password"
1425
  msgstr "PB Passwort wiederherstellen"
1426
 
1427
- #: admin/manage-fields.php:131
1428
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1429
  msgstr "Auswählen auf welchen Profile Builder Formularen reCSelect on which Profile Builder forms reCAPTCHA angezeigt werden soll."
1430
 
1431
- #: admin/manage-fields.php:132
1432
  msgid "Display on default WP forms"
1433
  msgstr "Zeige auf standardmäßigen WP Formularen"
1434
 
1435
- #: admin/manage-fields.php:132
1436
  msgid "Default WP Login"
1437
  msgstr "Standardmäßige WP Anmeldung"
1438
 
1439
- #: admin/manage-fields.php:132
1440
  msgid "Default WP Register"
1441
  msgstr "Standardmäßiges WP Register"
1442
 
1443
- #: admin/manage-fields.php:132
1444
  msgid "Default WP Recover Password"
1445
  msgstr "Standard WordPress \"Passwort wiederherstellen\""
1446
 
1447
- #: admin/manage-fields.php:132
1448
  msgid "Select on which default WP forms to display reCAPTCHA"
1449
  msgstr "Wählen Sie die Standard WordPress Formulare, auf denen ein reCAPTCHA angezeigt werden soll"
1450
 
1451
- #: admin/manage-fields.php:138 admin/manage-fields.php:139
1452
- #: admin/manage-fields.php:140
 
1453
  msgid "Default option of the field"
1454
  msgstr "Voreinstellung des Felds"
1455
 
1456
- #: admin/manage-fields.php:279
1457
- #: front-end/extra-fields/select-country/select-country.php:10
1458
  msgid "Afghanistan"
1459
  msgstr "Afghanistan"
1460
 
1461
- #: admin/manage-fields.php:280
1462
- #: front-end/extra-fields/select-country/select-country.php:10
1463
  msgid "Aland Islands"
1464
  msgstr "Aland Islands"
1465
 
1466
- #: admin/manage-fields.php:281
1467
- #: front-end/extra-fields/select-country/select-country.php:10
1468
  msgid "Albania"
1469
  msgstr "Albania"
1470
 
1471
- #: admin/manage-fields.php:282
1472
- #: front-end/extra-fields/select-country/select-country.php:10
1473
  msgid "Algeria"
1474
  msgstr "Algeria"
1475
 
1476
- #: admin/manage-fields.php:283
1477
- #: front-end/extra-fields/select-country/select-country.php:10
1478
  msgid "American Samoa"
1479
  msgstr "American Samoa"
1480
 
1481
- #: admin/manage-fields.php:284
1482
- #: front-end/extra-fields/select-country/select-country.php:10
1483
  msgid "Andorra"
1484
  msgstr "Andorra"
1485
 
1486
- #: admin/manage-fields.php:285
1487
- #: front-end/extra-fields/select-country/select-country.php:10
1488
  msgid "Angola"
1489
  msgstr "Angola"
1490
 
1491
- #: admin/manage-fields.php:286
1492
- #: front-end/extra-fields/select-country/select-country.php:10
1493
  msgid "Anguilla"
1494
  msgstr "Anguilla"
1495
 
1496
- #: admin/manage-fields.php:287
1497
- #: front-end/extra-fields/select-country/select-country.php:10
1498
  msgid "Antarctica"
1499
  msgstr "Antarctica"
1500
 
1501
- #: admin/manage-fields.php:288
1502
- #: front-end/extra-fields/select-country/select-country.php:10
1503
  msgid "Antigua and Barbuda"
1504
  msgstr "Antigua and Barbuda"
1505
 
1506
- #: admin/manage-fields.php:289
1507
- #: front-end/extra-fields/select-country/select-country.php:10
1508
  msgid "Argentina"
1509
  msgstr "Argentina"
1510
 
1511
- #: admin/manage-fields.php:290
1512
- #: front-end/extra-fields/select-country/select-country.php:10
1513
  msgid "Armenia"
1514
  msgstr "Armenia"
1515
 
1516
- #: admin/manage-fields.php:291
1517
- #: front-end/extra-fields/select-country/select-country.php:10
1518
  msgid "Aruba"
1519
  msgstr "Aruba"
1520
 
1521
- #: admin/manage-fields.php:292
1522
- #: front-end/extra-fields/select-country/select-country.php:10
1523
  msgid "Australia"
1524
  msgstr "Australia"
1525
 
1526
- #: admin/manage-fields.php:293
1527
- #: front-end/extra-fields/select-country/select-country.php:10
1528
  msgid "Austria"
1529
  msgstr "Austria"
1530
 
1531
- #: admin/manage-fields.php:294
1532
- #: front-end/extra-fields/select-country/select-country.php:10
1533
  msgid "Azerbaijan"
1534
  msgstr "Azerbaijan"
1535
 
1536
- #: admin/manage-fields.php:295
1537
- #: front-end/extra-fields/select-country/select-country.php:10
1538
  msgid "Bahamas"
1539
  msgstr "Bahamas"
1540
 
1541
- #: admin/manage-fields.php:296
1542
- #: front-end/extra-fields/select-country/select-country.php:10
1543
  msgid "Bahrain"
1544
  msgstr "Bahrain"
1545
 
1546
- #: admin/manage-fields.php:297
1547
- #: front-end/extra-fields/select-country/select-country.php:10
1548
  msgid "Bangladesh"
1549
  msgstr "Bangladesh"
1550
 
1551
- #: admin/manage-fields.php:298
1552
- #: front-end/extra-fields/select-country/select-country.php:10
1553
  msgid "Barbados"
1554
  msgstr "Barbados"
1555
 
1556
- #: admin/manage-fields.php:299
1557
- #: front-end/extra-fields/select-country/select-country.php:10
1558
  msgid "Belarus"
1559
  msgstr "Belarus"
1560
 
1561
- #: admin/manage-fields.php:300
1562
- #: front-end/extra-fields/select-country/select-country.php:10
1563
  msgid "Belgium"
1564
  msgstr "Belgium"
1565
 
1566
- #: admin/manage-fields.php:301
1567
- #: front-end/extra-fields/select-country/select-country.php:10
1568
  msgid "Belize"
1569
  msgstr "Belize"
1570
 
1571
- #: admin/manage-fields.php:302
1572
- #: front-end/extra-fields/select-country/select-country.php:10
1573
  msgid "Benin"
1574
  msgstr "Benin"
1575
 
1576
- #: admin/manage-fields.php:303
1577
- #: front-end/extra-fields/select-country/select-country.php:10
1578
  msgid "Bermuda"
1579
  msgstr "Bermuda"
1580
 
1581
- #: admin/manage-fields.php:304
1582
- #: front-end/extra-fields/select-country/select-country.php:10
1583
  msgid "Bhutan"
1584
  msgstr "Bhutan"
1585
 
1586
- #: admin/manage-fields.php:305
1587
  msgid "Bolivia"
1588
  msgstr "Bolivia"
1589
 
1590
- #: admin/manage-fields.php:306
1591
  msgid "Bonaire, Saint Eustatius and Saba"
1592
  msgstr "Bonaire, Saint Eustatius and Saba"
1593
 
1594
- #: admin/manage-fields.php:307
1595
- #: front-end/extra-fields/select-country/select-country.php:10
1596
  msgid "Bosnia and Herzegovina"
1597
  msgstr "Bosnia and Herzegovina"
1598
 
1599
- #: admin/manage-fields.php:308
1600
- #: front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Botswana"
1602
  msgstr "Botswana"
1603
 
1604
- #: admin/manage-fields.php:309
1605
- #: front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Bouvet Island"
1607
  msgstr "Bouvet Island"
1608
 
1609
- #: admin/manage-fields.php:310
1610
- #: front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "Brazil"
1612
  msgstr "Brazil"
1613
 
1614
- #: admin/manage-fields.php:311
1615
- #: front-end/extra-fields/select-country/select-country.php:10
1616
  msgid "British Indian Ocean Territory"
1617
  msgstr "British Indian Ocean Territory"
1618
 
1619
- #: admin/manage-fields.php:312
1620
  msgid "British Virgin Islands"
1621
  msgstr "British Virgin Islands"
1622
 
1623
- #: admin/manage-fields.php:313
1624
  msgid "Brunei"
1625
  msgstr "Brunei"
1626
 
1627
- #: admin/manage-fields.php:314
1628
- #: front-end/extra-fields/select-country/select-country.php:10
1629
  msgid "Bulgaria"
1630
  msgstr "Bulgaria"
1631
 
1632
- #: admin/manage-fields.php:315
1633
- #: front-end/extra-fields/select-country/select-country.php:10
1634
  msgid "Burkina Faso"
1635
  msgstr "Burkina Faso"
1636
 
1637
- #: admin/manage-fields.php:316
1638
- #: front-end/extra-fields/select-country/select-country.php:10
1639
  msgid "Burundi"
1640
  msgstr "Burundi"
1641
 
1642
- #: admin/manage-fields.php:317
1643
- #: front-end/extra-fields/select-country/select-country.php:10
1644
  msgid "Cambodia"
1645
  msgstr "Cambodia"
1646
 
1647
- #: admin/manage-fields.php:318
1648
- #: front-end/extra-fields/select-country/select-country.php:10
1649
  msgid "Cameroon"
1650
  msgstr "Cameroon"
1651
 
1652
- #: admin/manage-fields.php:319
1653
- #: front-end/extra-fields/select-country/select-country.php:10
1654
  msgid "Canada"
1655
  msgstr "Canada"
1656
 
1657
- #: admin/manage-fields.php:320
1658
  msgid "Cape Verde"
1659
  msgstr "Cape Verde"
1660
 
1661
- #: admin/manage-fields.php:321
1662
- #: front-end/extra-fields/select-country/select-country.php:10
1663
  msgid "Cayman Islands"
1664
  msgstr "Cayman Islands"
1665
 
1666
- #: admin/manage-fields.php:322
1667
- #: front-end/extra-fields/select-country/select-country.php:10
1668
  msgid "Central African Republic"
1669
  msgstr "Central African Republic"
1670
 
1671
- #: admin/manage-fields.php:323
1672
- #: front-end/extra-fields/select-country/select-country.php:10
1673
  msgid "Chad"
1674
  msgstr "Chad"
1675
 
1676
- #: admin/manage-fields.php:324
1677
- #: front-end/extra-fields/select-country/select-country.php:10
1678
  msgid "Chile"
1679
  msgstr "Chile"
1680
 
1681
- #: admin/manage-fields.php:325
1682
- #: front-end/extra-fields/select-country/select-country.php:10
1683
  msgid "China"
1684
  msgstr "China"
1685
 
1686
- #: admin/manage-fields.php:326
1687
- #: front-end/extra-fields/select-country/select-country.php:10
1688
  msgid "Christmas Island"
1689
  msgstr "Christmas Island"
1690
 
1691
- #: admin/manage-fields.php:327
1692
  msgid "Cocos Islands"
1693
  msgstr "Cocos Islands"
1694
 
1695
- #: admin/manage-fields.php:328
1696
- #: front-end/extra-fields/select-country/select-country.php:10
1697
  msgid "Colombia"
1698
  msgstr "Colombia"
1699
 
1700
- #: admin/manage-fields.php:329
1701
- #: front-end/extra-fields/select-country/select-country.php:10
1702
  msgid "Comoros"
1703
  msgstr "Comoros"
1704
 
1705
- #: admin/manage-fields.php:330
1706
- #: front-end/extra-fields/select-country/select-country.php:10
1707
  msgid "Cook Islands"
1708
  msgstr "Cook Islands"
1709
 
1710
- #: admin/manage-fields.php:331
1711
- #: front-end/extra-fields/select-country/select-country.php:10
1712
  msgid "Costa Rica"
1713
  msgstr "Costa Rica"
1714
 
1715
- #: admin/manage-fields.php:332
1716
- #: front-end/extra-fields/select-country/select-country.php:10
1717
  msgid "Croatia"
1718
  msgstr "Croatia"
1719
 
1720
- #: admin/manage-fields.php:333
1721
- #: front-end/extra-fields/select-country/select-country.php:10
1722
  msgid "Cuba"
1723
  msgstr "Cuba"
1724
 
1725
- #: admin/manage-fields.php:334
1726
- #: front-end/extra-fields/select-country/select-country.php:10
1727
  msgid "Curacao"
1728
  msgstr "Curacao"
1729
 
1730
- #: admin/manage-fields.php:335
1731
- #: front-end/extra-fields/select-country/select-country.php:10
1732
  msgid "Cyprus"
1733
  msgstr "Cyprus"
1734
 
1735
- #: admin/manage-fields.php:336
1736
- #: front-end/extra-fields/select-country/select-country.php:10
1737
  msgid "Czech Republic"
1738
  msgstr "Czech Republic"
1739
 
1740
- #: admin/manage-fields.php:337
1741
  msgid "Democratic Republic of the Congo"
1742
  msgstr "Democratic Republic of the Congo"
1743
 
1744
- #: admin/manage-fields.php:338
1745
- #: front-end/extra-fields/select-country/select-country.php:10
1746
  msgid "Denmark"
1747
  msgstr "Denmark"
1748
 
1749
- #: admin/manage-fields.php:339
1750
- #: front-end/extra-fields/select-country/select-country.php:10
1751
  msgid "Djibouti"
1752
  msgstr "Djibouti"
1753
 
1754
- #: admin/manage-fields.php:340
1755
- #: front-end/extra-fields/select-country/select-country.php:10
1756
  msgid "Dominica"
1757
  msgstr "Dominica"
1758
 
1759
- #: admin/manage-fields.php:341
1760
- #: front-end/extra-fields/select-country/select-country.php:10
1761
  msgid "Dominican Republic"
1762
  msgstr "Dominican Republic"
1763
 
1764
- #: admin/manage-fields.php:342
1765
  msgid "East Timor"
1766
  msgstr "East Timor"
1767
 
1768
- #: admin/manage-fields.php:343
1769
- #: front-end/extra-fields/select-country/select-country.php:10
1770
  msgid "Ecuador"
1771
  msgstr "Ecuador"
1772
 
1773
- #: admin/manage-fields.php:344
1774
- #: front-end/extra-fields/select-country/select-country.php:10
1775
  msgid "Egypt"
1776
  msgstr "Egypt"
1777
 
1778
- #: admin/manage-fields.php:345
1779
- #: front-end/extra-fields/select-country/select-country.php:10
1780
  msgid "El Salvador"
1781
  msgstr "El Salvador"
1782
 
1783
- #: admin/manage-fields.php:346
1784
- #: front-end/extra-fields/select-country/select-country.php:10
1785
  msgid "Equatorial Guinea"
1786
  msgstr "Equatorial Guinea"
1787
 
1788
- #: admin/manage-fields.php:347
1789
- #: front-end/extra-fields/select-country/select-country.php:10
1790
  msgid "Eritrea"
1791
  msgstr "Eritrea"
1792
 
1793
- #: admin/manage-fields.php:348
1794
- #: front-end/extra-fields/select-country/select-country.php:10
1795
  msgid "Estonia"
1796
  msgstr "Estonia"
1797
 
1798
- #: admin/manage-fields.php:349
1799
- #: front-end/extra-fields/select-country/select-country.php:10
1800
  msgid "Ethiopia"
1801
  msgstr "Ethiopia"
1802
 
1803
- #: admin/manage-fields.php:350
1804
  msgid "Falkland Islands"
1805
  msgstr "Falkland Islands"
1806
 
1807
- #: admin/manage-fields.php:351
1808
- #: front-end/extra-fields/select-country/select-country.php:10
1809
  msgid "Faroe Islands"
1810
  msgstr "Faroe Islands"
1811
 
1812
- #: admin/manage-fields.php:352
1813
- #: front-end/extra-fields/select-country/select-country.php:10
1814
  msgid "Fiji"
1815
  msgstr "Fiji"
1816
 
1817
- #: admin/manage-fields.php:353
1818
- #: front-end/extra-fields/select-country/select-country.php:10
1819
  msgid "Finland"
1820
  msgstr "Finland"
1821
 
1822
- #: admin/manage-fields.php:354
1823
- #: front-end/extra-fields/select-country/select-country.php:10
1824
  msgid "France"
1825
  msgstr "France"
1826
 
1827
- #: admin/manage-fields.php:355
1828
- #: front-end/extra-fields/select-country/select-country.php:10
1829
  msgid "French Guiana"
1830
  msgstr "French Guiana"
1831
 
1832
- #: admin/manage-fields.php:356
1833
- #: front-end/extra-fields/select-country/select-country.php:10
1834
  msgid "French Polynesia"
1835
  msgstr "French Polynesia"
1836
 
1837
- #: admin/manage-fields.php:357
1838
- #: front-end/extra-fields/select-country/select-country.php:10
1839
  msgid "French Southern Territories"
1840
  msgstr "French Southern Territories"
1841
 
1842
- #: admin/manage-fields.php:358
1843
- #: front-end/extra-fields/select-country/select-country.php:10
1844
  msgid "Gabon"
1845
  msgstr "Gabon"
1846
 
1847
- #: admin/manage-fields.php:359
1848
- #: front-end/extra-fields/select-country/select-country.php:10
1849
  msgid "Gambia"
1850
  msgstr "Gambia"
1851
 
1852
- #: admin/manage-fields.php:360
1853
- #: front-end/extra-fields/select-country/select-country.php:10
1854
  msgid "Georgia"
1855
  msgstr "Georgia"
1856
 
1857
- #: admin/manage-fields.php:361
1858
- #: front-end/extra-fields/select-country/select-country.php:10
1859
  msgid "Germany"
1860
  msgstr "Germany"
1861
 
1862
- #: admin/manage-fields.php:362
1863
- #: front-end/extra-fields/select-country/select-country.php:10
1864
  msgid "Ghana"
1865
  msgstr "Ghana"
1866
 
1867
- #: admin/manage-fields.php:363
1868
- #: front-end/extra-fields/select-country/select-country.php:10
1869
  msgid "Gibraltar"
1870
  msgstr "Gibraltar"
1871
 
1872
- #: admin/manage-fields.php:364
1873
- #: front-end/extra-fields/select-country/select-country.php:10
1874
  msgid "Greece"
1875
  msgstr "Greece"
1876
 
1877
- #: admin/manage-fields.php:365
1878
- #: front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Greenland"
1880
  msgstr "Greenland"
1881
 
1882
- #: admin/manage-fields.php:366
1883
- #: front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Grenada"
1885
  msgstr "Grenada"
1886
 
1887
- #: admin/manage-fields.php:367
1888
- #: front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Guadeloupe"
1890
  msgstr "Guadeloupe"
1891
 
1892
- #: admin/manage-fields.php:368
1893
- #: front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Guam"
1895
  msgstr "Guam"
1896
 
1897
- #: admin/manage-fields.php:369
1898
- #: front-end/extra-fields/select-country/select-country.php:10
1899
  msgid "Guatemala"
1900
  msgstr "Guatemala"
1901
 
1902
- #: admin/manage-fields.php:370
1903
- #: front-end/extra-fields/select-country/select-country.php:10
1904
  msgid "Guernsey"
1905
  msgstr "Guernsey"
1906
 
1907
- #: admin/manage-fields.php:371
1908
- #: front-end/extra-fields/select-country/select-country.php:10
1909
  msgid "Guinea"
1910
  msgstr "Guinea"
1911
 
1912
- #: admin/manage-fields.php:372
1913
- #: front-end/extra-fields/select-country/select-country.php:10
1914
  msgid "Guinea-Bissau"
1915
  msgstr "Guinea-Bissau"
1916
 
1917
- #: admin/manage-fields.php:373
1918
- #: front-end/extra-fields/select-country/select-country.php:10
1919
  msgid "Guyana"
1920
  msgstr "Guyana"
1921
 
1922
- #: admin/manage-fields.php:374
1923
- #: front-end/extra-fields/select-country/select-country.php:10
1924
  msgid "Haiti"
1925
  msgstr "Haiti"
1926
 
1927
- #: admin/manage-fields.php:375
1928
- #: front-end/extra-fields/select-country/select-country.php:10
1929
  msgid "Heard Island and McDonald Islands"
1930
  msgstr "Heard Island and McDonald Islands"
1931
 
1932
- #: admin/manage-fields.php:376
1933
- #: front-end/extra-fields/select-country/select-country.php:10
1934
  msgid "Honduras"
1935
  msgstr "Honduras"
1936
 
1937
- #: admin/manage-fields.php:377
1938
- #: front-end/extra-fields/select-country/select-country.php:10
1939
  msgid "Hong Kong"
1940
  msgstr "Hong Kong"
1941
 
1942
- #: admin/manage-fields.php:378
1943
- #: front-end/extra-fields/select-country/select-country.php:10
1944
  msgid "Hungary"
1945
  msgstr "Hungary"
1946
 
1947
- #: admin/manage-fields.php:379
1948
- #: front-end/extra-fields/select-country/select-country.php:10
1949
  msgid "Iceland"
1950
  msgstr "Iceland"
1951
 
1952
- #: admin/manage-fields.php:380
1953
- #: front-end/extra-fields/select-country/select-country.php:10
1954
  msgid "India"
1955
  msgstr "India"
1956
 
1957
- #: admin/manage-fields.php:381
1958
- #: front-end/extra-fields/select-country/select-country.php:10
1959
  msgid "Indonesia"
1960
  msgstr "Indonesia"
1961
 
1962
- #: admin/manage-fields.php:382
1963
  msgid "Iran"
1964
  msgstr "Iran"
1965
 
1966
- #: admin/manage-fields.php:383
1967
- #: front-end/extra-fields/select-country/select-country.php:10
1968
  msgid "Iraq"
1969
  msgstr "Iraq"
1970
 
1971
- #: admin/manage-fields.php:384
1972
- #: front-end/extra-fields/select-country/select-country.php:10
1973
  msgid "Ireland"
1974
  msgstr "Ireland"
1975
 
1976
- #: admin/manage-fields.php:385
1977
- #: front-end/extra-fields/select-country/select-country.php:10
1978
  msgid "Isle of Man"
1979
  msgstr "Isle of Man"
1980
 
1981
- #: admin/manage-fields.php:386
1982
- #: front-end/extra-fields/select-country/select-country.php:10
1983
  msgid "Israel"
1984
  msgstr "Israel"
1985
 
1986
- #: admin/manage-fields.php:387
1987
- #: front-end/extra-fields/select-country/select-country.php:10
1988
  msgid "Italy"
1989
  msgstr "Italy"
1990
 
1991
- #: admin/manage-fields.php:388
1992
  msgid "Ivory Coast"
1993
  msgstr "Ivory Coast"
1994
 
1995
- #: admin/manage-fields.php:389
1996
- #: front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Jamaica"
1998
  msgstr "Jamaica"
1999
 
2000
- #: admin/manage-fields.php:390
2001
- #: front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Japan"
2003
  msgstr "Japan"
2004
 
2005
- #: admin/manage-fields.php:391
2006
- #: front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Jersey"
2008
  msgstr "Jersey"
2009
 
2010
- #: admin/manage-fields.php:392
2011
- #: front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Jordan"
2013
  msgstr "Jordan"
2014
 
2015
- #: admin/manage-fields.php:393
2016
- #: front-end/extra-fields/select-country/select-country.php:10
2017
  msgid "Kazakhstan"
2018
  msgstr "Kazakhstan"
2019
 
2020
- #: admin/manage-fields.php:394
2021
- #: front-end/extra-fields/select-country/select-country.php:10
2022
  msgid "Kenya"
2023
  msgstr "Kenya"
2024
 
2025
- #: admin/manage-fields.php:395
2026
- #: front-end/extra-fields/select-country/select-country.php:10
2027
  msgid "Kiribati"
2028
  msgstr "Kiribati"
2029
 
2030
- #: admin/manage-fields.php:396
2031
  msgid "Kosovo"
2032
  msgstr "Kosovo"
2033
 
2034
- #: admin/manage-fields.php:397
2035
- #: front-end/extra-fields/select-country/select-country.php:10
2036
  msgid "Kuwait"
2037
  msgstr "Kuwait"
2038
 
2039
- #: admin/manage-fields.php:398
2040
- #: front-end/extra-fields/select-country/select-country.php:10
2041
  msgid "Kyrgyzstan"
2042
  msgstr "Kyrgyzstan"
2043
 
2044
- #: admin/manage-fields.php:399
2045
  msgid "Laos"
2046
  msgstr "Laos"
2047
 
2048
- #: admin/manage-fields.php:400
2049
- #: front-end/extra-fields/select-country/select-country.php:10
2050
  msgid "Latvia"
2051
  msgstr "Latvia"
2052
 
2053
- #: admin/manage-fields.php:401
2054
- #: front-end/extra-fields/select-country/select-country.php:10
2055
  msgid "Lebanon"
2056
  msgstr "Lebanon"
2057
 
2058
- #: admin/manage-fields.php:402
2059
- #: front-end/extra-fields/select-country/select-country.php:10
2060
  msgid "Lesotho"
2061
  msgstr "Lesotho"
2062
 
2063
- #: admin/manage-fields.php:403
2064
- #: front-end/extra-fields/select-country/select-country.php:10
2065
  msgid "Liberia"
2066
  msgstr "Liberia"
2067
 
2068
- #: admin/manage-fields.php:404
2069
- #: front-end/extra-fields/select-country/select-country.php:10
2070
  msgid "Libya"
2071
  msgstr "Libya"
2072
 
2073
- #: admin/manage-fields.php:405
2074
- #: front-end/extra-fields/select-country/select-country.php:10
2075
  msgid "Liechtenstein"
2076
  msgstr "Liechtenstein"
2077
 
2078
- #: admin/manage-fields.php:406
2079
- #: front-end/extra-fields/select-country/select-country.php:10
2080
  msgid "Lithuania"
2081
  msgstr "Lithuania"
2082
 
2083
- #: admin/manage-fields.php:407
2084
- #: front-end/extra-fields/select-country/select-country.php:10
2085
  msgid "Luxembourg"
2086
  msgstr "Luxembourg"
2087
 
2088
- #: admin/manage-fields.php:408
2089
- #: front-end/extra-fields/select-country/select-country.php:10
2090
  msgid "Macao"
2091
  msgstr "Macao"
2092
 
2093
- #: admin/manage-fields.php:409
2094
  msgid "Macedonia"
2095
  msgstr "Macedonia"
2096
 
2097
- #: admin/manage-fields.php:410
2098
- #: front-end/extra-fields/select-country/select-country.php:10
2099
  msgid "Madagascar"
2100
  msgstr "Madagascar"
2101
 
2102
- #: admin/manage-fields.php:411
2103
- #: front-end/extra-fields/select-country/select-country.php:10
2104
  msgid "Malawi"
2105
  msgstr "Malawi"
2106
 
2107
- #: admin/manage-fields.php:412
2108
- #: front-end/extra-fields/select-country/select-country.php:10
2109
  msgid "Malaysia"
2110
  msgstr "Malaysia"
2111
 
2112
- #: admin/manage-fields.php:413
2113
- #: front-end/extra-fields/select-country/select-country.php:10
2114
  msgid "Maldives"
2115
  msgstr "Maldives"
2116
 
2117
- #: admin/manage-fields.php:414
2118
- #: front-end/extra-fields/select-country/select-country.php:10
2119
  msgid "Mali"
2120
  msgstr "Mali"
2121
 
2122
- #: admin/manage-fields.php:415
2123
- #: front-end/extra-fields/select-country/select-country.php:10
2124
  msgid "Malta"
2125
  msgstr "Malta"
2126
 
2127
- #: admin/manage-fields.php:416
2128
- #: front-end/extra-fields/select-country/select-country.php:10
2129
  msgid "Marshall Islands"
2130
  msgstr "Marshall Islands"
2131
 
2132
- #: admin/manage-fields.php:417
2133
- #: front-end/extra-fields/select-country/select-country.php:10
2134
  msgid "Martinique"
2135
  msgstr "Martinique"
2136
 
2137
- #: admin/manage-fields.php:418
2138
- #: front-end/extra-fields/select-country/select-country.php:10
2139
  msgid "Mauritania"
2140
  msgstr "Mauritania"
2141
 
2142
- #: admin/manage-fields.php:419
2143
- #: front-end/extra-fields/select-country/select-country.php:10
2144
  msgid "Mauritius"
2145
  msgstr "Mauritius"
2146
 
2147
- #: admin/manage-fields.php:420
2148
- #: front-end/extra-fields/select-country/select-country.php:10
2149
  msgid "Mayotte"
2150
  msgstr "Mayotte"
2151
 
2152
- #: admin/manage-fields.php:421
2153
- #: front-end/extra-fields/select-country/select-country.php:10
2154
  msgid "Mexico"
2155
  msgstr "Mexico"
2156
 
2157
- #: admin/manage-fields.php:422
2158
  msgid "Micronesia"
2159
  msgstr "Micronesia"
2160
 
2161
- #: admin/manage-fields.php:423
2162
  msgid "Moldova"
2163
  msgstr "Moldova"
2164
 
2165
- #: admin/manage-fields.php:424
2166
- #: front-end/extra-fields/select-country/select-country.php:10
2167
  msgid "Monaco"
2168
  msgstr "Monaco"
2169
 
2170
- #: admin/manage-fields.php:425
2171
- #: front-end/extra-fields/select-country/select-country.php:10
2172
  msgid "Mongolia"
2173
  msgstr "Mongolia"
2174
 
2175
- #: admin/manage-fields.php:426
2176
- #: front-end/extra-fields/select-country/select-country.php:10
2177
  msgid "Montenegro"
2178
  msgstr "Montenegro"
2179
 
2180
- #: admin/manage-fields.php:427
2181
- #: front-end/extra-fields/select-country/select-country.php:10
2182
  msgid "Montserrat"
2183
  msgstr "Montserrat"
2184
 
2185
- #: admin/manage-fields.php:428
2186
- #: front-end/extra-fields/select-country/select-country.php:10
2187
  msgid "Morocco"
2188
  msgstr "Morocco"
2189
 
2190
- #: admin/manage-fields.php:429
2191
- #: front-end/extra-fields/select-country/select-country.php:10
2192
  msgid "Mozambique"
2193
  msgstr "Mozambique"
2194
 
2195
- #: admin/manage-fields.php:430
2196
- #: front-end/extra-fields/select-country/select-country.php:10
2197
  msgid "Myanmar"
2198
  msgstr "Myanmar"
2199
 
2200
- #: admin/manage-fields.php:431
2201
- #: front-end/extra-fields/select-country/select-country.php:10
2202
  msgid "Namibia"
2203
  msgstr "Namibia"
2204
 
2205
- #: admin/manage-fields.php:432
2206
- #: front-end/extra-fields/select-country/select-country.php:10
2207
  msgid "Nauru"
2208
  msgstr "Nauru"
2209
 
2210
- #: admin/manage-fields.php:433
2211
- #: front-end/extra-fields/select-country/select-country.php:10
2212
  msgid "Nepal"
2213
  msgstr "Nepal"
2214
 
2215
- #: admin/manage-fields.php:434
2216
- #: front-end/extra-fields/select-country/select-country.php:10
2217
  msgid "Netherlands"
2218
  msgstr "Netherlands"
2219
 
2220
- #: admin/manage-fields.php:435
2221
- #: front-end/extra-fields/select-country/select-country.php:10
2222
  msgid "New Caledonia"
2223
  msgstr "New Caledonia"
2224
 
2225
- #: admin/manage-fields.php:436
2226
- #: front-end/extra-fields/select-country/select-country.php:10
2227
  msgid "New Zealand"
2228
  msgstr "New Zealand"
2229
 
2230
- #: admin/manage-fields.php:437
2231
- #: front-end/extra-fields/select-country/select-country.php:10
2232
  msgid "Nicaragua"
2233
  msgstr "Nicaragua"
2234
 
2235
- #: admin/manage-fields.php:438
2236
- #: front-end/extra-fields/select-country/select-country.php:10
2237
  msgid "Niger"
2238
  msgstr "Niger"
2239
 
2240
- #: admin/manage-fields.php:439
2241
- #: front-end/extra-fields/select-country/select-country.php:10
2242
  msgid "Nigeria"
2243
  msgstr "Nigeria"
2244
 
2245
- #: admin/manage-fields.php:440
2246
- #: front-end/extra-fields/select-country/select-country.php:10
2247
  msgid "Niue"
2248
  msgstr "Niue"
2249
 
2250
- #: admin/manage-fields.php:441
2251
- #: front-end/extra-fields/select-country/select-country.php:10
2252
  msgid "Norfolk Island"
2253
  msgstr "Norfolk Island"
2254
 
2255
- #: admin/manage-fields.php:442
2256
  msgid "North Korea"
2257
  msgstr "North Korea"
2258
 
2259
- #: admin/manage-fields.php:443
2260
- #: front-end/extra-fields/select-country/select-country.php:10
2261
  msgid "Northern Mariana Islands"
2262
  msgstr "Northern Mariana Islands"
2263
 
2264
- #: admin/manage-fields.php:444
2265
- #: front-end/extra-fields/select-country/select-country.php:10
2266
  msgid "Norway"
2267
  msgstr "Norway"
2268
 
2269
- #: admin/manage-fields.php:445
2270
- #: front-end/extra-fields/select-country/select-country.php:10
2271
  msgid "Oman"
2272
  msgstr "Oman"
2273
 
2274
- #: admin/manage-fields.php:446
2275
- #: front-end/extra-fields/select-country/select-country.php:10
2276
  msgid "Pakistan"
2277
  msgstr "Pakistan"
2278
 
2279
- #: admin/manage-fields.php:447
2280
- #: front-end/extra-fields/select-country/select-country.php:10
2281
  msgid "Palau"
2282
  msgstr "Palau"
2283
 
2284
- #: admin/manage-fields.php:448
2285
  msgid "Palestinian Territory"
2286
  msgstr "Palestinian Territory"
2287
 
2288
- #: admin/manage-fields.php:449
2289
- #: front-end/extra-fields/select-country/select-country.php:10
2290
  msgid "Panama"
2291
  msgstr "Panama"
2292
 
2293
- #: admin/manage-fields.php:450
2294
- #: front-end/extra-fields/select-country/select-country.php:10
2295
  msgid "Papua New Guinea"
2296
  msgstr "Papua New Guinea"
2297
 
2298
- #: admin/manage-fields.php:451
2299
- #: front-end/extra-fields/select-country/select-country.php:10
2300
  msgid "Paraguay"
2301
  msgstr "Paraguay"
2302
 
2303
- #: admin/manage-fields.php:452
2304
- #: front-end/extra-fields/select-country/select-country.php:10
2305
  msgid "Peru"
2306
  msgstr "Peru"
2307
 
2308
- #: admin/manage-fields.php:453
2309
- #: front-end/extra-fields/select-country/select-country.php:10
2310
  msgid "Philippines"
2311
  msgstr "Philippines"
2312
 
2313
- #: admin/manage-fields.php:454
2314
- #: front-end/extra-fields/select-country/select-country.php:10
2315
  msgid "Pitcairn"
2316
  msgstr "Pitcairn"
2317
 
2318
- #: admin/manage-fields.php:455
2319
- #: front-end/extra-fields/select-country/select-country.php:10
2320
  msgid "Poland"
2321
  msgstr "Poland"
2322
 
2323
- #: admin/manage-fields.php:456
2324
- #: front-end/extra-fields/select-country/select-country.php:10
2325
  msgid "Portugal"
2326
  msgstr "Portugal"
2327
 
2328
- #: admin/manage-fields.php:457
2329
- #: front-end/extra-fields/select-country/select-country.php:10
2330
  msgid "Puerto Rico"
2331
  msgstr "Puerto Rico"
2332
 
2333
- #: admin/manage-fields.php:458
2334
- #: front-end/extra-fields/select-country/select-country.php:10
2335
  msgid "Qatar"
2336
  msgstr "Qatar"
2337
 
2338
- #: admin/manage-fields.php:459
2339
  msgid "Republic of the Congo"
2340
  msgstr "Republic of the Congo"
2341
 
2342
- #: admin/manage-fields.php:460
2343
- #: front-end/extra-fields/select-country/select-country.php:10
2344
  msgid "Reunion"
2345
  msgstr "Reunion"
2346
 
2347
- #: admin/manage-fields.php:461
2348
- #: front-end/extra-fields/select-country/select-country.php:10
2349
  msgid "Romania"
2350
  msgstr "Romania"
2351
 
2352
- #: admin/manage-fields.php:462
2353
  msgid "Russia"
2354
  msgstr "Russia"
2355
 
2356
- #: admin/manage-fields.php:463
2357
- #: front-end/extra-fields/select-country/select-country.php:10
2358
  msgid "Rwanda"
2359
  msgstr "Rwanda"
2360
 
2361
- #: admin/manage-fields.php:464
2362
- #: front-end/extra-fields/select-country/select-country.php:10
2363
  msgid "Saint Barthelemy"
2364
  msgstr "Saint Barthelemy"
2365
 
2366
- #: admin/manage-fields.php:465
2367
  msgid "Saint Helena"
2368
  msgstr "Saint Helena"
2369
 
2370
- #: admin/manage-fields.php:466
2371
- #: front-end/extra-fields/select-country/select-country.php:10
2372
  msgid "Saint Kitts and Nevis"
2373
  msgstr "Saint Kitts and Nevis"
2374
 
2375
- #: admin/manage-fields.php:467
2376
- #: front-end/extra-fields/select-country/select-country.php:10
2377
  msgid "Saint Lucia"
2378
  msgstr "Saint Lucia"
2379
 
2380
- #: admin/manage-fields.php:468
2381
  msgid "Saint Martin"
2382
  msgstr "Saint Martin"
2383
 
2384
- #: admin/manage-fields.php:469
2385
- #: front-end/extra-fields/select-country/select-country.php:10
2386
  msgid "Saint Pierre and Miquelon"
2387
  msgstr "Saint Pierre and Miquelon"
2388
 
2389
- #: admin/manage-fields.php:470
2390
- #: front-end/extra-fields/select-country/select-country.php:10
2391
  msgid "Saint Vincent and the Grenadines"
2392
  msgstr "Saint Vincent and the Grenadines"
2393
 
2394
- #: admin/manage-fields.php:471
2395
- #: front-end/extra-fields/select-country/select-country.php:10
2396
  msgid "Samoa"
2397
  msgstr "Samoa"
2398
 
2399
- #: admin/manage-fields.php:472
2400
- #: front-end/extra-fields/select-country/select-country.php:10
2401
  msgid "San Marino"
2402
  msgstr "San Marino"
2403
 
2404
- #: admin/manage-fields.php:473
2405
- #: front-end/extra-fields/select-country/select-country.php:10
2406
  msgid "Sao Tome and Principe"
2407
  msgstr "Sao Tome and Principe"
2408
 
2409
- #: admin/manage-fields.php:474
2410
- #: front-end/extra-fields/select-country/select-country.php:10
2411
  msgid "Saudi Arabia"
2412
  msgstr "Saudi Arabia"
2413
 
2414
- #: admin/manage-fields.php:475
2415
- #: front-end/extra-fields/select-country/select-country.php:10
2416
  msgid "Senegal"
2417
  msgstr "Senegal"
2418
 
2419
- #: admin/manage-fields.php:476
2420
- #: front-end/extra-fields/select-country/select-country.php:10
2421
  msgid "Serbia"
2422
  msgstr "Serbia"
2423
 
2424
- #: admin/manage-fields.php:477
2425
- #: front-end/extra-fields/select-country/select-country.php:10
2426
  msgid "Seychelles"
2427
  msgstr "Seychelles"
2428
 
2429
- #: admin/manage-fields.php:478
2430
- #: front-end/extra-fields/select-country/select-country.php:10
2431
  msgid "Sierra Leone"
2432
  msgstr "Sierra Leone"
2433
 
2434
- #: admin/manage-fields.php:479
2435
- #: front-end/extra-fields/select-country/select-country.php:10
2436
  msgid "Singapore"
2437
  msgstr "Singapore"
2438
 
2439
- #: admin/manage-fields.php:480
2440
  msgid "Sint Maarten"
2441
  msgstr "Sint Maarten"
2442
 
2443
- #: admin/manage-fields.php:481
2444
- #: front-end/extra-fields/select-country/select-country.php:10
2445
  msgid "Slovakia"
2446
  msgstr "Slovakia"
2447
 
2448
- #: admin/manage-fields.php:482
2449
- #: front-end/extra-fields/select-country/select-country.php:10
2450
  msgid "Slovenia"
2451
  msgstr "Slovenia"
2452
 
2453
- #: admin/manage-fields.php:483
2454
- #: front-end/extra-fields/select-country/select-country.php:10
2455
  msgid "Solomon Islands"
2456
  msgstr "Solomon Islands"
2457
 
2458
- #: admin/manage-fields.php:484
2459
- #: front-end/extra-fields/select-country/select-country.php:10
2460
  msgid "Somalia"
2461
  msgstr "Somalia"
2462
 
2463
- #: admin/manage-fields.php:485
2464
- #: front-end/extra-fields/select-country/select-country.php:10
2465
  msgid "South Africa"
2466
  msgstr "South Africa"
2467
 
2468
- #: admin/manage-fields.php:486
2469
- #: front-end/extra-fields/select-country/select-country.php:10
2470
  msgid "South Georgia and the South Sandwich Islands"
2471
  msgstr "South Georgia and the South Sandwich Islands"
2472
 
2473
- #: admin/manage-fields.php:487
2474
  msgid "South Korea"
2475
  msgstr "South Korea"
2476
 
2477
- #: admin/manage-fields.php:488
2478
- #: front-end/extra-fields/select-country/select-country.php:10
2479
  msgid "South Sudan"
2480
  msgstr "South Sudan"
2481
 
2482
- #: admin/manage-fields.php:489
2483
- #: front-end/extra-fields/select-country/select-country.php:10
2484
  msgid "Spain"
2485
  msgstr "Spain"
2486
 
2487
- #: admin/manage-fields.php:490
2488
- #: front-end/extra-fields/select-country/select-country.php:10
2489
  msgid "Sri Lanka"
2490
  msgstr "Sri Lanka"
2491
 
2492
- #: admin/manage-fields.php:491
2493
- #: front-end/extra-fields/select-country/select-country.php:10
2494
  msgid "Sudan"
2495
  msgstr "Sudan"
2496
 
2497
- #: admin/manage-fields.php:492
2498
- #: front-end/extra-fields/select-country/select-country.php:10
2499
  msgid "Suriname"
2500
  msgstr "Suriname"
2501
 
2502
- #: admin/manage-fields.php:493
2503
- #: front-end/extra-fields/select-country/select-country.php:10
2504
  msgid "Svalbard and Jan Mayen"
2505
  msgstr "Svalbard and Jan Mayen"
2506
 
2507
- #: admin/manage-fields.php:494
2508
- #: front-end/extra-fields/select-country/select-country.php:10
2509
  msgid "Swaziland"
2510
  msgstr "Swaziland"
2511
 
2512
- #: admin/manage-fields.php:495
2513
- #: front-end/extra-fields/select-country/select-country.php:10
2514
  msgid "Sweden"
2515
  msgstr "Sweden"
2516
 
2517
- #: admin/manage-fields.php:496
2518
- #: front-end/extra-fields/select-country/select-country.php:10
2519
  msgid "Switzerland"
2520
  msgstr "Switzerland"
2521
 
2522
- #: admin/manage-fields.php:497
2523
  msgid "Syria"
2524
  msgstr "Syria"
2525
 
2526
- #: admin/manage-fields.php:498
2527
  msgid "Taiwan"
2528
  msgstr "Taiwan"
2529
 
2530
- #: admin/manage-fields.php:499
2531
- #: front-end/extra-fields/select-country/select-country.php:10
2532
  msgid "Tajikistan"
2533
  msgstr "Tajikistan"
2534
 
2535
- #: admin/manage-fields.php:500
2536
  msgid "Tanzania"
2537
  msgstr "Tanzania"
2538
 
2539
- #: admin/manage-fields.php:501
2540
- #: front-end/extra-fields/select-country/select-country.php:10
2541
  msgid "Thailand"
2542
  msgstr "Thailand"
2543
 
2544
- #: admin/manage-fields.php:502
2545
- #: front-end/extra-fields/select-country/select-country.php:10
2546
  msgid "Togo"
2547
  msgstr "Togo"
2548
 
2549
- #: admin/manage-fields.php:503
2550
- #: front-end/extra-fields/select-country/select-country.php:10
2551
  msgid "Tokelau"
2552
  msgstr "Tokelau"
2553
 
2554
- #: admin/manage-fields.php:504
2555
- #: front-end/extra-fields/select-country/select-country.php:10
2556
  msgid "Tonga"
2557
  msgstr "Tonga"
2558
 
2559
- #: admin/manage-fields.php:505
2560
- #: front-end/extra-fields/select-country/select-country.php:10
2561
  msgid "Trinidad and Tobago"
2562
  msgstr "Trinidad and Tobago"
2563
 
2564
- #: admin/manage-fields.php:506
2565
- #: front-end/extra-fields/select-country/select-country.php:10
2566
  msgid "Tunisia"
2567
  msgstr "Tunisia"
2568
 
2569
- #: admin/manage-fields.php:507
2570
- #: front-end/extra-fields/select-country/select-country.php:10
2571
  msgid "Turkey"
2572
  msgstr "Turkey"
2573
 
2574
- #: admin/manage-fields.php:508
2575
- #: front-end/extra-fields/select-country/select-country.php:10
2576
  msgid "Turkmenistan"
2577
  msgstr "Turkmenistan"
2578
 
2579
- #: admin/manage-fields.php:509
2580
- #: front-end/extra-fields/select-country/select-country.php:10
2581
  msgid "Turks and Caicos Islands"
2582
  msgstr "Turks and Caicos Islands"
2583
 
2584
- #: admin/manage-fields.php:510
2585
- #: front-end/extra-fields/select-country/select-country.php:10
2586
  msgid "Tuvalu"
2587
  msgstr "Tuvalu"
2588
 
2589
- #: admin/manage-fields.php:511
2590
  msgid "U.S. Virgin Islands"
2591
  msgstr "U.S. Virgin Islands"
2592
 
2593
- #: admin/manage-fields.php:512
2594
- #: front-end/extra-fields/select-country/select-country.php:10
2595
  msgid "Uganda"
2596
  msgstr "Uganda"
2597
 
2598
- #: admin/manage-fields.php:513
2599
- #: front-end/extra-fields/select-country/select-country.php:10
2600
  msgid "Ukraine"
2601
  msgstr "Ukraine"
2602
 
2603
- #: admin/manage-fields.php:514
2604
- #: front-end/extra-fields/select-country/select-country.php:10
2605
  msgid "United Arab Emirates"
2606
  msgstr "United Arab Emirates"
2607
 
2608
- #: admin/manage-fields.php:515
2609
- #: front-end/extra-fields/select-country/select-country.php:10
2610
  msgid "United Kingdom"
2611
  msgstr "United Kingdom"
2612
 
2613
- #: admin/manage-fields.php:516
2614
- #: front-end/extra-fields/select-country/select-country.php:10
2615
  msgid "United States"
2616
  msgstr "United States"
2617
 
2618
- #: admin/manage-fields.php:517
2619
- #: front-end/extra-fields/select-country/select-country.php:10
2620
  msgid "United States Minor Outlying Islands"
2621
  msgstr "United States Minor Outlying Islands"
2622
 
2623
- #: admin/manage-fields.php:518
2624
- #: front-end/extra-fields/select-country/select-country.php:10
2625
  msgid "Uruguay"
2626
  msgstr "Uruguay"
2627
 
2628
- #: admin/manage-fields.php:519
2629
- #: front-end/extra-fields/select-country/select-country.php:10
2630
  msgid "Uzbekistan"
2631
  msgstr "Uzbekistan"
2632
 
2633
- #: admin/manage-fields.php:520
2634
- #: front-end/extra-fields/select-country/select-country.php:10
2635
  msgid "Vanuatu"
2636
  msgstr "Vanuatu"
2637
 
2638
- #: admin/manage-fields.php:521
2639
  msgid "Vatican"
2640
  msgstr "Vatican"
2641
 
2642
- #: admin/manage-fields.php:522
2643
  msgid "Venezuela"
2644
  msgstr "Venezuela"
2645
 
2646
- #: admin/manage-fields.php:523
2647
  msgid "Vietnam"
2648
  msgstr "Vietnam"
2649
 
2650
- #: admin/manage-fields.php:524
2651
- #: front-end/extra-fields/select-country/select-country.php:10
2652
  msgid "Wallis and Futuna"
2653
  msgstr "Wallis and Futuna"
2654
 
2655
- #: admin/manage-fields.php:525
2656
- #: front-end/extra-fields/select-country/select-country.php:10
2657
  msgid "Western Sahara"
2658
  msgstr "Western Sahara"
2659
 
2660
- #: admin/manage-fields.php:526
2661
- #: front-end/extra-fields/select-country/select-country.php:10
2662
  msgid "Yemen"
2663
  msgstr "Yemen"
2664
 
2665
- #: admin/manage-fields.php:527
2666
- #: front-end/extra-fields/select-country/select-country.php:10
2667
  msgid "Zambia"
2668
  msgstr "Zambia"
2669
 
2670
- #: admin/manage-fields.php:528
2671
- #: front-end/extra-fields/select-country/select-country.php:10
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
- #: admin/manage-fields.php:1216
2676
  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."
2677
  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."
2678
 
2679
- #: assets/misc/plugin-compatibilities.php:237
2680
  msgid "Your account has to be confirmed by an administrator before you can log in."
2681
  msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie sich einloggen können."
2682
 
2683
- #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Ihr Benutzerkonto wurde erfolgreich angelegt!"
2686
 
2687
- #: features/functions.php:678
2688
- #: front-end/extra-fields/recaptcha/recaptcha.php:374
2689
- #: front-end/extra-fields/recaptcha/recaptcha.php:379
2690
- #: front-end/extra-fields/recaptcha/recaptcha.php:421
2691
- #: front-end/extra-fields/recaptcha/recaptcha.php:458
2692
  msgid "Please enter a (valid) reCAPTCHA value"
2693
  msgstr "Bitte geben Sie das reCAPTCHA (korrekt) ein."
2694
 
2695
- #: front-end/extra-fields/recaptcha/recaptcha.php:421
2696
  msgid "Click the BACK button on your browser, and try again."
2697
  msgstr "Bitte klicken Sie den \"Zurück\"-Button in Ihrem Browser und versuchen Sie es erneut."
2698
 
2699
- #: front-end/extra-fields/upload/upload_helper_functions.php:78
2700
- #: front-end/extra-fields/upload/upload_helper_functions.php:87
2701
  msgid "Sorry, you cannot upload this file type for this field."
2702
  msgstr "Dieser Dateityp ist für dieses Feld nicht erlaubt."
2703
 
2704
- #: front-end/extra-fields/upload/upload_helper_functions.php:94
2705
  msgid "An error occurred, please try again later."
2706
  msgstr "Es ist ein Fehler aufgetreten, bitte versuchen Sie es später noch einmal."
2707
 
2708
- #: modules/user-listing/userlisting.php:282
2709
  msgid "More"
2710
  msgstr "Mehr"
2711
 
2712
- #: modules/user-listing/userlisting.php:376
2713
  msgid "You do not have permission to view this user list."
2714
  msgstr "Sie haben keine Berechtigung, um diese Benutzerliste einzusehen."
2715
 
2716
- #: modules/user-listing/userlisting.php:389
2717
  msgid "You do not have the required user role to view this user list."
2718
  msgstr "Sie haben nicht die notwendige Benutzerrolle, um diese Benutzerliste einzusehen."
2719
 
2720
- #: modules/user-listing/userlisting.php:2186
2721
  msgid "Ascending"
2722
  msgstr "Aufsteigend"
2723
 
2724
- #: modules/user-listing/userlisting.php:2187
2725
  msgid "Descending"
2726
  msgstr "Absteigend"
2727
 
2728
- #: admin/add-ons.php:148 admin/add-ons.php:248
2729
- #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213
 
 
2730
  msgid "Download Now"
2731
  msgstr "Jetzt herunterladen"
2732
 
2733
- #: admin/admin-functions.php:200
2734
  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. "
2735
  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."
2736
 
2737
- #: admin/manage-fields.php:80
2738
  msgid "Choose one of the supported field types"
2739
  msgstr "Wähle eins von den unterstützten Feldtypen."
2740
 
2741
- #: admin/manage-fields.php:82
2742
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2743
  msgstr "Extra Feldtypen stehen in der <a href=\"%s\">Hobbyist oder PRO Version</a> zur Verfügung."
2744
 
2745
- #: admin/manage-fields.php:129
2746
  msgid "Site Key"
2747
  msgstr "Seitenschlüssel"
2748
 
2749
- #: admin/manage-fields.php:129
2750
  msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2751
  msgstr "Der Seitenschlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2752
 
2753
- #: admin/manage-fields.php:130
2754
  msgid "Secret Key"
2755
  msgstr "Geheimer Schlüssel"
2756
 
2757
- #: admin/manage-fields.php:130
2758
  msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2759
  msgstr "Der geheime Schlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2760
 
2761
- #: admin/manage-fields.php:1020
2762
  msgid "You must enter the site key\n"
2763
  msgstr "Sie müssen den Seiten Schlüssel eingeben\n"
2764
 
2765
- #: admin/manage-fields.php:1022
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Sie müssen den geheimen Schlüssel eingeben\n"
2768
 
2769
- #: admin/add-ons.php:10 admin/add-ons.php:32
 
2770
  msgid "Add-Ons"
2771
  msgstr "Add-Ons"
2772
 
2773
- #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231
2774
- #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114
2775
- #: admin/pms-cross-promotion.php:193
 
 
 
2776
  msgid "Activate"
2777
  msgstr "Aktivieren"
2778
 
2779
- #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80
 
2780
  msgid "Downloading and installing..."
2781
  msgstr "Downloaden und installieren..."
2782
 
2783
- #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81
 
2784
  msgid "Installation complete"
2785
  msgstr "Installation abgeschlossen"
2786
 
2787
- #: admin/add-ons.php:39
2788
  msgid "Add-On is Active"
2789
  msgstr "Add-On ist aktiv"
2790
 
2791
- #: admin/add-ons.php:40
2792
  msgid "Add-On has been activated"
2793
  msgstr "Add-On wurde aktiviert"
2794
 
2795
- #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85
 
2796
  msgid "Retry Install"
2797
  msgstr "Installation erneut versuchen"
2798
 
2799
- #: admin/add-ons.php:43 admin/add-ons.php:140
 
2800
  msgid "Add-On is <strong>active</strong>"
2801
  msgstr "Add-On ist <strong>aktiv</strong>"
2802
 
2803
- #: admin/add-ons.php:44 admin/add-ons.php:138
 
2804
  msgid "Add-On is <strong>inactive</strong>"
2805
  msgstr "Add-On ist <strong>inaktiv</strong>"
2806
 
2807
- #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235
2808
- #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118
2809
- #: admin/pms-cross-promotion.php:197
 
 
 
2810
  msgid "Deactivate"
2811
  msgstr "Deaktivieren"
2812
 
2813
- #: admin/add-ons.php:47
2814
  msgid "Add-On has been deactivated."
2815
  msgstr "Add-On wurde deaktiviert."
2816
 
2817
- #: admin/add-ons.php:59
2818
  msgid "Something went wrong, we could not connect to the server. Please try again later."
2819
  msgstr "Etwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut."
2820
 
2821
- #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216
 
2822
  msgid "Install Now"
2823
  msgstr "Jetzt installieren"
2824
 
2825
- #: admin/add-ons.php:153 admin/add-ons.php:251
2826
- #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220
 
 
2827
  msgid "Compatible with your version of Profile Builder."
2828
  msgstr "Kompatibel mit deiner Version von Profile Builder."
2829
 
2830
- #: admin/add-ons.php:162
2831
  msgid "Upgrade Profile Builder"
2832
  msgstr "Profile Builder upgraden"
2833
 
2834
- #: admin/add-ons.php:163
2835
  msgid "Not compatible with Profile Builder"
2836
  msgstr "Nicht kompatibel mit Profile Builder"
2837
 
2838
- #: admin/add-ons.php:171
2839
  msgid "Not compatible with your version of Profile Builder."
2840
  msgstr "Nicht kompatibel mit deiner Version von Profile Builder."
2841
 
2842
- #: admin/add-ons.php:172
2843
  msgid "Minimum required Profile Builder version:"
2844
  msgstr "Minimal benötigte Version von Profile Builder:"
2845
 
2846
- #: admin/add-ons.php:177
2847
  msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
2848
  msgstr "Add-On konnte nicht installiert werden. Erneut versuchen oder <a href=\"%s\" target=\"_blank\">manuell installieren</a>."
2849
 
2850
- #: front-end/default-fields/email/email.php:51
2851
  msgid "You must enter a valid email address."
2852
  msgstr "Sie müssen eine gültige E-Mail Adresse angeben."
2853
 
2854
- #: front-end/default-fields/username/username.php:52
2855
- #: front-end/default-fields/username/username.php:60
2856
  msgid "This username is invalid because it uses illegal characters."
2857
  msgstr "Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält."
2858
 
2859
- #: front-end/default-fields/username/username.php:52
2860
- #: front-end/default-fields/username/username.php:60
2861
  msgid "Please enter a valid username."
2862
  msgstr "Bitte gebe einen gültigen Benutzernamen ein."
2863
 
2864
- #: front-end/extra-fields/user-role/user-role.php:72
2865
- #: front-end/extra-fields/user-role/user-role.php:85
2866
  msgid "Only administrators can see this field on edit profile forms."
2867
  msgstr "Nur Administratoren können dieses Feld beim editieren von Profilformularen sehen."
2868
 
2869
- #: front-end/extra-fields/user-role/user-role.php:81
2870
  msgid "As an administrator you cannot change your role."
2871
  msgstr "Als Administrator kannst du deine Berechtigungen nicht ändern."
2872
 
2873
- #: modules/email-customizer/admin-email-customizer.php:117
2874
  msgid ""
2875
  "\n"
2876
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
@@ -2882,23 +3107,23 @@ msgstr ""
2882
  "\n"
2883
  "\n"
2884
 
2885
- #: modules/email-customizer/admin-email-customizer.php:141
2886
  msgid "Admin Notification for User Password Reset"
2887
  msgstr "Admin Notiz für das Zurücksetzen eines Passwortes von einem Benutzer"
2888
 
2889
- #: modules/email-customizer/email-customizer.php:46
2890
  msgid "Reset Key"
2891
  msgstr "Zurücksetzungs-Key"
2892
 
2893
- #: modules/email-customizer/email-customizer.php:47
2894
  msgid "Reset Url"
2895
  msgstr "Zurücksetzungs-URL"
2896
 
2897
- #: modules/email-customizer/email-customizer.php:48
2898
  msgid "Reset Link"
2899
  msgstr "Zurücksetzungs-Link"
2900
 
2901
- #: modules/email-customizer/user-email-customizer.php:204
2902
  msgid ""
2903
  "\n"
2904
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
@@ -2908,1768 +3133,1841 @@ msgid ""
2908
  "{{{reset_link}}}</p>\n"
2909
  msgstr ""
2910
 
2911
- #: modules/email-customizer/user-email-customizer.php:218
2912
  msgid "[{{site_name}}] Password Reset"
2913
  msgstr "[{{site_name}}] Passwortzurücksetzung"
2914
 
2915
- #: modules/email-customizer/user-email-customizer.php:229
2916
  msgid "Password Reset Email"
2917
  msgstr "E-Mail für die Passwortzurücksetzung"
2918
 
2919
- #: modules/email-customizer/user-email-customizer.php:235
2920
  msgid ""
2921
  "\n"
2922
  "<p>You have successfully reset your password to: {{password}}</p>\n"
2923
  msgstr "<p>Du hast dein Passwort erfolgreich zurückgesetzt: {{password}}</p>"
2924
 
2925
- #: modules/email-customizer/user-email-customizer.php:245
2926
  msgid "[{{site_name}}] Password Reset Successfully"
2927
  msgstr "[{{site_name}}] Passwortzurücksetzung erfolgreich"
2928
 
2929
- #: modules/email-customizer/user-email-customizer.php:256
2930
  msgid "Password Reset Success Email"
2931
  msgstr "Passwort zurücksetzen erfolgreich Email"
2932
 
2933
- #: modules/user-listing/userlisting.php:159
2934
  msgid "User Nicename"
2935
  msgstr "Benutzername"
2936
 
2937
- #: modules/user-listing/userlisting.php:499
 
 
2938
  msgid "None"
2939
  msgstr "Nichts"
2940
 
2941
- #: admin/admin-functions.php:132
2942
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
2943
  msgstr "<strong>FEHLER</strong>: Das Passwort muss mindestens %s Zeichen lang sein"
2944
 
2945
- #: admin/admin-functions.php:148
2946
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2947
  msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
2948
 
2949
- #: admin/general-settings.php:163
2950
  msgid "Username and Email"
2951
  msgstr "Benutzername und E-Mail"
2952
 
2953
- #: admin/general-settings.php:168
2954
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
2955
  msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."
2956
 
2957
- #: admin/general-settings.php:169
2958
  msgid "\"Username\" - users can Log In only with Username."
2959
  msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden"
2960
 
2961
- #: admin/general-settings.php:170
2962
  msgid "\"Email\" - users can Log In only with Email."
2963
  msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."
2964
 
2965
- #: admin/manage-fields.php:122
2966
  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 (.*)"
2967
  msgstr ""
2968
  "Gib die Datei-Erweiterung(en) ein, die du für den Upload erlauben möchtest.<br/>\n"
2969
  "z.B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)"
2970
 
2971
- #: admin/manage-fields.php:123
2972
  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 (.*)"
2973
  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: (.*)"
2974
 
2975
- #: admin/manage-fields.php:133
2976
  msgid "User Roles"
2977
  msgstr "Benutzerrollen"
2978
 
2979
- #: admin/manage-fields.php:133
2980
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
2981
  msgstr "Wähle, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum Neusortieren)"
2982
 
2983
- #: admin/manage-fields.php:134
2984
  msgid "User Roles Order"
2985
  msgstr "Benutzerrollen Sortierung"
2986
 
2987
- #: admin/manage-fields.php:134
2988
  msgid "Save the user role order from the user roles checkboxes"
2989
  msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen"
2990
 
2991
- #: admin/manage-fields.php:1125
2992
  msgid "Please select at least one user role\n"
2993
  msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
2994
 
2995
- #: admin/register-version.php:22
2996
  msgid "Profile Builder Register"
2997
  msgstr "Profile Builder Registrierung"
2998
 
2999
- #: admin/register-version.php:81
3000
  msgid "The serial number is about to expire soon!"
3001
  msgstr "Die Seriennummer wird bald ablaufen!"
3002
 
3003
- #: admin/register-version.php:81
3004
  msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3005
  msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$s."
3006
 
3007
- #: admin/register-version.php:83
3008
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3009
  msgstr "Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
3010
 
3011
- #: assets/lib/wck-api/wordpress-creation-kit.php:334
3012
  msgid "Add Entry"
3013
  msgstr "Eintrag hinzufügen"
3014
 
3015
- #: features/email-confirmation/class-email-confirmation.php:91
3016
  msgid "show"
3017
  msgstr "anzeigen"
3018
 
3019
- #: features/functions.php:736
3020
  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"
3021
  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"
3022
 
3023
- #: front-end/class-formbuilder.php:643
3024
  msgid "User to edit:"
3025
  msgstr "Benutzer editieren"
3026
 
3027
- #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
 
3028
  msgid "The password must have the minimum length of %s characters"
3029
  msgstr "Das Passwort muss mindestes %s Zeichen haben"
3030
 
3031
- #: front-end/default-fields/password/password.php:50 front-end/recover.php:258
 
3032
  msgid "The password must have a minimum strength of %s"
3033
  msgstr "Das Passwort muss eine Mindeststärke von %s haben"
3034
 
3035
- #: front-end/extra-fields/user-role/user-role.php:118
3036
  msgid "You cannot register this user role"
3037
  msgstr "Sie können diese Benutzerrolle nicht registrieren"
3038
 
3039
- #: front-end/login.php:153
3040
  msgid "username or email"
3041
  msgstr "Benutzername oder E-Mail-Adresse"
3042
 
3043
- #: front-end/login.php:222
3044
  msgid "Username or Email"
3045
  msgstr "Benutzername oder E-Mail-Adresse"
3046
 
3047
- #: front-end/logout.php:15
3048
  msgid "You are currently logged in as %s. "
3049
  msgstr "Du bist eingeloggt als %s."
3050
 
3051
- #: front-end/logout.php:15
3052
  msgid "Log out &raquo;"
3053
  msgstr "Ausloggen &raquo;"
3054
 
3055
- #: modules/custom-redirects/custom_redirects_admin.php:92
3056
- #: modules/email-customizer/email-customizer.php:31
3057
  msgid "User Role"
3058
  msgstr "Benutzerrolle"
3059
 
3060
- #: modules/user-listing/userlisting.php:2100
3061
  msgid "View all extra shortcode parameters"
3062
  msgstr "Alle zusätzlichen Shortcode-Parameter anzeigen"
3063
 
3064
- #: modules/user-listing/userlisting.php:2114
3065
  msgid "displays only the users that you specified the user_id for"
3066
  msgstr "Nur die Benutzer anzeigen, denen du die user_id vergeben hast"
3067
 
3068
- #: modules/user-listing/userlisting.php:2120
3069
  msgid "displays all users except the ones you specified the user_id for"
3070
  msgstr "Zeigt alle Benutzer an, außer diejenigen, denen du eine user_id gegeben hast."
3071
 
3072
- #: features/functions.php:566
3073
  msgid "Minimum length of %d characters"
3074
  msgstr "Mindestlänge: %d Zeichen"
3075
 
3076
- #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138
 
3077
  msgid "This message is only visible by administrators"
3078
  msgstr "Diese Nachricht ist nur für Administratoren sichtbar"
3079
 
3080
- #: modules/user-listing/userlisting.php:413
3081
  msgid "User not found"
3082
  msgstr "Der Benutzer wurde nicht gefunden."
3083
 
3084
- #: modules/email-customizer/admin-email-customizer.php:38
3085
- #: modules/email-customizer/user-email-customizer.php:38
3086
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3087
  msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
3088
 
3089
- #: admin/admin-bar.php:48
3090
  msgid "Choose which user roles view the admin bar in the front-end of the website."
3091
  msgstr "Wähle, welche Benutzerrollen du in der Admin Bar im Front-End der Website sehen möchtest."
3092
 
3093
- #: admin/manage-fields.php:127
3094
  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"
3095
  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"
3096
 
3097
- #: admin/manage-fields.php:1052
3098
  msgid "The meta-name cannot be empty\n"
3099
  msgstr "Der Meta-Name darf nicht leer sein\n"
3100
 
3101
- #: admin/register-version.php:69
3102
  msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3103
  msgstr "Du hast eine Kopie von %s erworben. Du solltest dir die Zeit nehmen, um deine Seriennummer zu registrieren."
3104
 
3105
- #: admin/register-version.php:243
3106
  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>"
3107
  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>"
3108
 
3109
- #: assets/lib/wck-api/fields/country select.php:14
3110
- #: assets/lib/wck-api/fields/cpt select.php:17
3111
- #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3112
- #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3113
- #: front-end/extra-fields/select-cpt/select-cpt.php:60
 
3114
  msgid "...Choose"
3115
  msgstr "...wähle"
3116
 
3117
- #: features/class-list-table.php:526 features/class-list-table.php:942
 
3118
  msgid "1 item"
3119
- msgid_plural "%s items"
3120
- msgstr[0] "1 Artikel"
3121
- msgstr[1] ""
3122
 
3123
- #: features/functions.php:552
3124
  msgid "Very Weak"
3125
  msgstr "sehr schwach"
3126
 
3127
- #: features/functions.php:640
3128
  msgid "This field is required"
3129
  msgstr "Dieses Feld ist erforderlich"
3130
 
3131
- #: features/functions.php:704
3132
  msgid "Cancel"
3133
  msgstr "Abbrechen"
3134
 
3135
- #: features/functions.php:740
3136
  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"
3137
  msgstr ""
3138
  "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"
3139
  "Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sentlassen%4$s"
3140
 
3141
- #: front-end/login.php:144
3142
  msgid "Invalid username."
3143
  msgstr "Ungültiger Benutzername."
3144
 
3145
- #: front-end/login.php:149 front-end/login.php:153
 
3146
  msgid "username"
3147
  msgstr "Benutzername"
3148
 
3149
- #: front-end/login.php:149
3150
  msgid "email"
3151
  msgstr "E-Mail-Adresse"
3152
 
3153
- #: front-end/login.php:256
3154
  msgid "Lost your password?"
3155
  msgstr "Passwort vergessen?"
3156
 
3157
- #: index.php:34
3158
  msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3159
  msgstr "ist ebenfalls aktiviert. Du musst es vor der Aktivierung dieser Version des Plugins deaktivieren."
3160
 
3161
- #: modules/email-customizer/admin-email-customizer.php:54
3162
- #: modules/email-customizer/user-email-customizer.php:54
3163
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3164
  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."
3165
 
3166
- #: features/email-confirmation/email-confirmation.php:573
3167
- #: features/email-confirmation/email-confirmation.php:582
3168
- #: modules/email-customizer/email-customizer.php:487
3169
- #: modules/email-customizer/email-customizer.php:494
3170
- #: modules/email-customizer/email-customizer.php:508
3171
  msgid "Your selected password at signup"
3172
  msgstr "Das von Ihnen gewählte Anmeldepasswort"
3173
 
3174
- #: modules/email-customizer/user-email-customizer.php:38
3175
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3176
  msgstr "Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite \"Admin-E-Mail Anpassungen\" angezeigt."
3177
 
3178
- #: modules/multiple-forms/edit-profile-forms.php:274
3179
  msgid "This form is empty."
3180
  msgstr "Dieses Formular ist leer."
3181
 
3182
- #: modules/multiple-forms/multiple-forms.php:406
3183
  msgid "Delete all items"
3184
  msgstr "Lösche alle Einträge"
3185
 
3186
- #: modules/multiple-forms/multiple-forms.php:406
3187
  msgid "Delete all"
3188
  msgstr "alles löschen"
3189
 
3190
- #: modules/user-listing/userlisting.php:1592
3191
  msgid "Choose..."
3192
  msgstr "Wähle..."
3193
 
3194
- #: modules/user-listing/userlisting.php:2196
3195
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3196
  msgstr "Bestimme die Anzahl der Benutzer, die pro Seite auf der Benutzerliste angezeigt werden sollen."
3197
 
3198
- #: admin/admin-bar.php:10
3199
  msgid "Show/Hide the Admin Bar on the Front-End"
3200
  msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
3201
 
3202
- #: admin/admin-bar.php:10 admin/admin-bar.php:47
 
3203
  msgid "Admin Bar Settings"
3204
  msgstr "Admin Bar Einstellungen"
3205
 
3206
- #: admin/admin-bar.php:57
3207
  msgid "User-Role"
3208
  msgstr "Benutzerrolle"
3209
 
3210
- #: admin/admin-bar.php:58
3211
  msgid "Visibility"
3212
  msgstr "Sichtbarkeit"
3213
 
3214
- #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3215
- #: modules/multiple-forms/register-forms.php:230
 
3216
  msgid "Default"
3217
  msgstr "Default"
3218
 
3219
- #: admin/admin-bar.php:74
3220
  msgid "Show"
3221
  msgstr "Anzeigen"
3222
 
3223
- #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537
 
3224
  msgid "Hide"
3225
  msgstr "Verbergen"
3226
 
3227
- #: admin/admin-bar.php:86 admin/general-settings.php:208
3228
- #: admin/register-version.php:95 features/functions.php:697
3229
- #: modules/modules.php:127
 
 
 
3230
  msgid "Save Changes"
3231
  msgstr "Änderungen speichern"
3232
 
3233
- #: admin/admin-functions.php:37
3234
  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 )"
3235
  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)"
3236
 
3237
- #: admin/admin-functions.php:37 admin/general-settings.php:10
3238
- #: admin/general-settings.php:38
 
3239
  msgid "General Settings"
3240
  msgstr "Allgemeine Einstellungen"
3241
 
3242
- #: admin/admin-functions.php:137 admin/general-settings.php:194
 
3243
  msgid "Very weak"
3244
  msgstr "sehr unsicher"
3245
 
3246
- #: admin/admin-functions.php:137 admin/general-settings.php:195
3247
- #: features/functions.php:552
 
3248
  msgid "Weak"
3249
  msgstr "unsicher"
3250
 
3251
- #: admin/admin-functions.php:137 admin/general-settings.php:196
3252
- #: features/functions.php:552
 
3253
  msgid "Medium"
3254
  msgstr "geht so"
3255
 
3256
- #: admin/admin-functions.php:137 admin/general-settings.php:197
3257
- #: features/functions.php:552
 
3258
  msgid "Strong"
3259
  msgstr "sicher"
3260
 
3261
- #: admin/admin-functions.php:187
3262
  msgid "Add Field"
3263
  msgstr "Feld hinzufügen"
3264
 
3265
- #: admin/admin-functions.php:189
3266
- #: modules/class-mustache-templates/class-mustache-templates.php:390
3267
  msgid "Save Settings"
3268
  msgstr "Einstellungen speichern"
3269
 
3270
- #: admin/basic-info.php:10
3271
  msgid "Basic Information"
3272
  msgstr "Grundlegende Informationen"
3273
 
3274
- #: admin/basic-info.php:29
3275
  msgid "Version %s"
3276
  msgstr "Version %s"
3277
 
3278
- #: admin/basic-info.php:30
3279
  msgid "<strong>Profile Builder </strong>"
3280
  msgstr "<strong>Profil Builder</strong>"
3281
 
3282
- #: admin/basic-info.php:31
3283
  msgid "The best way to add front-end registration, edit profile and login forms."
3284
  msgstr "Der beste Weg, um Front-End-Registrierung hinzuzufügen ist die Profil und Login-Formulare zu bearbeiten."
3285
 
3286
- #: admin/basic-info.php:33
3287
  msgid "For Modern User Interaction"
3288
  msgstr "Für die moderne Benutzerinteraktion"
3289
 
3290
- #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
 
 
3291
  msgid "Login"
3292
  msgstr "Login"
3293
 
3294
- #: admin/basic-info.php:40
3295
  msgid "Registration"
3296
  msgstr "Registrierung"
3297
 
3298
- #: admin/basic-info.php:44
3299
  msgid "Edit Profile"
3300
  msgstr "Profil bearbeiten"
3301
 
3302
- #: admin/basic-info.php:51
3303
  msgid "Extra Features"
3304
  msgstr "Extra-Features"
3305
 
3306
- #: admin/basic-info.php:52
3307
  msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3308
  msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
3309
 
3310
- #: admin/basic-info.php:53
3311
  msgid "Enable extra features"
3312
  msgstr "Zusätzliche Features aktivieren"
3313
 
3314
- #: admin/basic-info.php:57
3315
  msgid "Recover Password"
3316
  msgstr "Passwort wiederherstellen"
3317
 
3318
- #: admin/basic-info.php:61
3319
  msgid "Admin Approval (*)"
3320
  msgstr "Admin-Zulassung (*)"
3321
 
3322
- #: admin/basic-info.php:62
3323
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3324
  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."
3325
 
3326
- #: admin/basic-info.php:65
3327
  msgid "Email Confirmation"
3328
  msgstr "E-Mail-Bestätigung"
3329
 
3330
- #: admin/basic-info.php:66
3331
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3332
  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."
3333
 
3334
- #: admin/basic-info.php:69
3335
  msgid "Minimum Password Length and Strength Meter"
3336
  msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät"
3337
 
3338
- #: admin/basic-info.php:70
3339
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3340
  msgstr "Beseitige schwache Kennwörter insgesamt, indem du eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke aktivierst."
3341
 
3342
- #: admin/basic-info.php:73
3343
  msgid "Login with Email or Username"
3344
  msgstr "Login mit E-Mail oder Benutzername"
3345
 
3346
- #: admin/basic-info.php:74
3347
  msgid "Allow users to log in with their email or username when accessing your site."
3348
  msgstr "Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername anzumelden, wenn diese auf deine Seite zugreifen möchten. "
3349
 
3350
- #: admin/basic-info.php:87
3351
  msgid "Customize Your Forms The Way You Want (*)"
3352
  msgstr "Passen Sie die Formulare wie Sie wollen an (*)"
3353
 
3354
- #: admin/basic-info.php:88
3355
  msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3356
  msgstr "Mit zusätzlichen Profil-Felder kannst du genau die Anmeldeformulare erstellen, die dein Projekt benötigt."
3357
 
3358
- #: admin/basic-info.php:90
3359
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3360
  msgstr "Zusätzliche Profil-Felder erhälst du mit den Hobbyist oder PRO Versionen. "
3361
 
3362
- #: admin/basic-info.php:92
3363
  msgid "Get started with extra fields"
3364
  msgstr "Erste Schritte mit extra Felder"
3365
 
3366
- #: admin/basic-info.php:95
3367
  msgid "Avatar Upload"
3368
  msgstr "Profilbild hochladen"
3369
 
3370
- #: admin/basic-info.php:96
3371
  msgid "Generic Uploads"
3372
  msgstr "Generische Uploads"
3373
 
3374
- #: admin/basic-info.php:97
3375
  msgid "Agree To Terms Checkbox"
3376
  msgstr "AGB-Checkbox"
3377
 
3378
- #: admin/basic-info.php:98
3379
  msgid "Datepicker"
3380
  msgstr "Datepicker"
3381
 
3382
- #: admin/basic-info.php:101
3383
  msgid "reCAPTCHA"
3384
  msgstr "reCAPTCHA"
3385
 
3386
- #: admin/basic-info.php:102
3387
  msgid "Country Select"
3388
  msgstr "Land auswählen"
3389
 
3390
- #: admin/basic-info.php:104
3391
  msgid "Timezone Select"
3392
  msgstr "Zeitzone auswählen"
3393
 
3394
- #: admin/basic-info.php:108
3395
  msgid "Input / Hidden Input"
3396
  msgstr "Eingabe / versteckte Eingabe"
3397
 
3398
- #: admin/basic-info.php:110
3399
  msgid "Checkbox"
3400
  msgstr "Checkbox"
3401
 
3402
- #: admin/basic-info.php:111
3403
  msgid "Select"
3404
  msgstr "Auswahl"
3405
 
3406
- #: admin/basic-info.php:112
3407
  msgid "Radio Buttons"
3408
  msgstr "Optionsfelder"
3409
 
3410
- #: admin/basic-info.php:113
3411
  msgid "Textarea"
3412
  msgstr "Text-bereich"
3413
 
3414
- #: admin/basic-info.php:125
3415
  msgid "Powerful Modules (**)"
3416
  msgstr "Leistungsstarke Module (*)"
3417
 
3418
- #: admin/basic-info.php:126
3419
  msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3420
  msgstr "Alles, was du benötigst, um deine Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar."
3421
 
3422
- #: admin/basic-info.php:128
3423
  msgid "Enable your modules"
3424
  msgstr "Aktiviere deine Module"
3425
 
3426
- #: admin/basic-info.php:131
3427
  msgid "Find out more about PRO Modules"
3428
  msgstr "Erfahre mehr über die PRO-Module"
3429
 
3430
- #: admin/basic-info.php:136 modules/modules.php:89
3431
- #: modules/user-listing/userlisting.php:11
3432
- #: modules/user-listing/userlisting.php:12
3433
- #: modules/user-listing/userlisting.php:17
3434
- #: modules/user-listing/userlisting.php:23
 
3435
  msgid "User Listing"
3436
  msgstr "Benutzer-Liste"
3437
 
3438
- #: admin/basic-info.php:138
3439
  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."
3440
  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."
3441
 
3442
- #: admin/basic-info.php:144
3443
  msgid "Email Customizer"
3444
  msgstr "E-Mail Anpassungen"
3445
 
3446
- #: admin/basic-info.php:145
3447
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3448
  msgstr "Personalisiere alle E-Mails die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung."
3449
 
3450
- #: admin/basic-info.php:148
3451
- #: modules/custom-redirects/custom_redirects_admin.php:32
3452
- #: modules/custom-redirects/custom_redirects_admin.php:33
3453
- #: modules/modules.php:110
3454
  msgid "Custom Redirects"
3455
  msgstr "Benutzerdefinierte Umleitungen"
3456
 
3457
- #: admin/basic-info.php:149
3458
  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."
3459
  msgstr "Sperre deine Benutzer aus dem WordPress-Dashboard aus und leite sie nach dem Login oder nach der Registrierung auf die Startseite weiter."
3460
 
3461
- #: admin/basic-info.php:154 modules/modules.php:75
 
3462
  msgid "Multiple Registration Forms"
3463
  msgstr "Mehrere Anmeldeformulare"
3464
 
3465
- #: admin/basic-info.php:155
3466
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3467
  msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern."
3468
 
3469
- #: admin/basic-info.php:158 modules/modules.php:82
 
3470
  msgid "Multiple Edit-profile Forms"
3471
  msgstr "Mehrere Profilbearbeitungs-Formulare"
3472
 
3473
- #: admin/basic-info.php:159
3474
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3475
  msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
3476
 
3477
- #: admin/basic-info.php:187
3478
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3479
  msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
3480
 
3481
- #: admin/basic-info.php:188
3482
  msgid "** only available in the %1$sPro version%2$s."
3483
  msgstr "** nur in der %1$sPro Version%2$s verfügbar."
3484
 
3485
- #: admin/general-settings.php:42
3486
  msgid "Load Profile Builder's own CSS file in the front-end:"
3487
  msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch"
3488
 
3489
- #: admin/general-settings.php:45 admin/general-settings.php:58
3490
- #: admin/general-settings.php:107
3491
- #: modules/multiple-forms/edit-profile-forms.php:206
3492
- #: modules/multiple-forms/register-forms.php:229
3493
- #: modules/multiple-forms/register-forms.php:230
3494
- #: modules/user-listing/userlisting.php:2201
 
 
3495
  msgid "Yes"
3496
  msgstr "Ja"
3497
 
3498
- #: admin/general-settings.php:47
3499
  msgid "You can find the default file here: %1$s"
3500
  msgstr "Sie finden die Standard-Datei hier:%1$s"
3501
 
3502
- #: admin/general-settings.php:54
3503
  msgid "\"Email Confirmation\" Activated:"
3504
  msgstr "\"E-Mail-Bestätigung\" aktiviert:"
3505
 
3506
- #: admin/general-settings.php:59 admin/general-settings.php:108
3507
- #: modules/multiple-forms/edit-profile-forms.php:206
3508
- #: modules/multiple-forms/register-forms.php:229
3509
- #: modules/multiple-forms/register-forms.php:230
 
 
3510
  msgid "No"
3511
  msgstr "Nein"
3512
 
3513
- #: admin/general-settings.php:64
3514
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3515
  msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
3516
 
3517
- #: admin/general-settings.php:72
3518
  msgid "\"Email Confirmation\" Landing Page:"
3519
  msgstr "\"E-Mail-Bestätigung\" Landeseite:"
3520
 
3521
- #: admin/general-settings.php:77
3522
  msgid "Existing Pages"
3523
  msgstr "Vorhandene Seiten"
3524
 
3525
- #: admin/general-settings.php:92
3526
  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."
3527
  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."
3528
 
3529
- #: admin/general-settings.php:103
3530
  msgid "\"Admin Approval\" Activated:"
3531
  msgstr "\"Admin Genehmigung\" aktiviert:"
3532
 
3533
- #: admin/general-settings.php:111
3534
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3535
  msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
3536
 
3537
- #: admin/general-settings.php:149
3538
  msgid "\"Admin Approval\" Feature:"
3539
  msgstr "\"Admin Genehmigung\" Feature:"
3540
 
3541
- #: admin/general-settings.php:152
3542
  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."
3543
  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."
3544
 
3545
- #: admin/general-settings.php:159
3546
  msgid "Allow Users to Log in With:"
3547
  msgstr "Benutzerberechtigungen zum Einloggen mit:"
3548
 
3549
- #: admin/general-settings.php:164 admin/manage-fields.php:198
3550
- #: features/admin-approval/class-admin-approval.php:166
3551
- #: features/email-confirmation/class-email-confirmation.php:167
3552
- #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3553
- #: modules/custom-redirects/custom_redirects_admin.php:56
3554
- #: modules/email-customizer/email-customizer.php:28
3555
- #: modules/user-listing/userlisting.php:102
3556
- #: modules/user-listing/userlisting.php:277
3557
- #: modules/user-listing/userlisting.php:730
3558
- #: modules/user-listing/userlisting.php:2152
 
 
 
3559
  msgid "Username"
3560
  msgstr "Benutzername"
3561
 
3562
- #: admin/general-settings.php:165 front-end/login.php:215
3563
- #: modules/email-customizer/email-customizer.php:29
3564
- #: modules/user-listing/userlisting.php:736
3565
- #: modules/user-listing/userlisting.php:2153
 
3566
  msgid "Email"
3567
  msgstr "E-Mail"
3568
 
3569
- #: admin/general-settings.php:177
3570
  msgid "Minimum Password Length:"
3571
  msgstr "Minimale Kennwortlänge:"
3572
 
3573
- #: admin/general-settings.php:182
3574
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3575
  msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze"
3576
 
3577
- #: admin/general-settings.php:189
3578
  msgid "Minimum Password Strength:"
3579
  msgstr "Minimale Passwortstärke:"
3580
 
3581
- #: admin/general-settings.php:193
3582
  msgid "Disabled"
3583
  msgstr "Deaktiviert"
3584
 
3585
- #: admin/manage-fields.php:12
3586
  msgid "Manage Fields"
3587
  msgstr "Felder verwalten"
3588
 
3589
- #: admin/manage-fields.php:13
3590
  msgid "Manage Default and Extra Fields"
3591
  msgstr "Verwalten von Standard- und Extra Felder"
3592
 
3593
- #: admin/manage-fields.php:116
3594
  msgid "Field Title"
3595
  msgstr "Feldtitel"
3596
 
3597
- #: admin/manage-fields.php:116
3598
  msgid "Title of the field"
3599
  msgstr "Titel des Feldes"
3600
 
3601
- #: admin/manage-fields.php:117
3602
- #: modules/multiple-forms/edit-profile-forms.php:245
3603
- #: modules/multiple-forms/register-forms.php:266
3604
  msgid "Field"
3605
  msgstr "Feld"
3606
 
3607
- #: admin/manage-fields.php:118
3608
  msgid "Meta-name"
3609
  msgstr "Meta-name "
3610
 
3611
- #: admin/manage-fields.php:119
3612
- #: modules/custom-redirects/custom_redirects_admin.php:65
3613
- #: modules/custom-redirects/custom_redirects_admin.php:95
3614
- #: modules/custom-redirects/custom_redirects_admin.php:114
3615
- #: modules/custom-redirects/custom_redirects_admin.php:139
3616
- #: modules/multiple-forms/edit-profile-forms.php:246
3617
- #: modules/multiple-forms/register-forms.php:267
3618
  msgid "ID"
3619
  msgstr "ID"
3620
 
3621
- #: admin/manage-fields.php:119
3622
- #: modules/multiple-forms/edit-profile-forms.php:246
3623
- #: modules/multiple-forms/register-forms.php:267
3624
  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"
3625
  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"
3626
 
3627
- #: admin/manage-fields.php:120
3628
  msgid "Description"
3629
  msgstr "Beschreibung"
3630
 
3631
- #: admin/manage-fields.php:120
3632
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3633
  msgstr "Geben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können <br/> Optional"
3634
 
3635
- #: admin/manage-fields.php:121
3636
  msgid "Row Count"
3637
  msgstr "Zeilenanzahl"
3638
 
3639
- #: admin/manage-fields.php:121
3640
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3641
  msgstr "Geben Sie die Anzahl der Zeilen für ein Text-Feld ein <br/> Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt."
3642
 
3643
- #: admin/manage-fields.php:122
3644
  msgid "Allowed Image Extensions"
3645
  msgstr "Erlaubte Bild-Extensions"
3646
 
3647
- #: admin/manage-fields.php:123
3648
  msgid "Allowed Upload Extensions"
3649
  msgstr "Zulässige Dateierweiterungen beim Hochladen"
3650
 
3651
- #: admin/manage-fields.php:124
3652
  msgid "Avatar Size"
3653
  msgstr "Profilbild-Größe"
3654
 
3655
- #: admin/manage-fields.php:124
3656
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3657
  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"
3658
 
3659
- #: admin/manage-fields.php:125
3660
  msgid "Date-format"
3661
  msgstr "Datum-Format"
3662
 
3663
- #: admin/manage-fields.php:126
3664
  msgid "Terms of Agreement"
3665
  msgstr "Nutzungsbedingungen"
3666
 
3667
- #: admin/manage-fields.php:126
3668
  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;"
3669
  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;"
3670
 
3671
- #: admin/manage-fields.php:127
3672
  msgid "Options"
3673
  msgstr "Optionen"
3674
 
3675
- #: admin/manage-fields.php:128
3676
  msgid "Labels"
3677
  msgstr "Beschriftung "
3678
 
3679
- #: admin/manage-fields.php:128
3680
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
3681
  msgstr "Geben Sie eine durch Kommas getrennte Liste der Beschriftungen ein.<br/>Sie ist für den Benutzer sichtbar."
3682
 
3683
- #: admin/manage-fields.php:135
3684
  msgid "Default Value"
3685
  msgstr "Standardwert"
3686
 
3687
- #: admin/manage-fields.php:135
3688
  msgid "Default value of the field"
3689
  msgstr "Standardwert des Feldes"
3690
 
3691
- #: admin/manage-fields.php:136 admin/manage-fields.php:138
3692
- #: admin/manage-fields.php:139 admin/manage-fields.php:140
 
 
3693
  msgid "Default Option"
3694
  msgstr "Standardoption"
3695
 
3696
- #: admin/manage-fields.php:136
3697
  msgid "Specify the option which should be selected by default"
3698
  msgstr "Geben Sie die Option ein, die standardmäßig ausgewählt sein soll."
3699
 
3700
- #: admin/manage-fields.php:137
3701
  msgid "Default Option(s)"
3702
  msgstr "Standard-Option(en)"
3703
 
3704
- #: admin/manage-fields.php:137
3705
  msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3706
  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."
3707
 
3708
- #: admin/manage-fields.php:151
3709
  msgid "Default Content"
3710
  msgstr "Standard-Inhalt"
3711
 
3712
- #: admin/manage-fields.php:151
3713
  msgid "Default value of the textarea"
3714
  msgstr "Standardwert der Textfeld-Komponente"
3715
 
3716
- #: admin/manage-fields.php:158
 
3717
  msgid "Required"
3718
  msgstr "Erforderlich"
3719
 
3720
- #: admin/manage-fields.php:158
3721
  msgid "Whether the field is required or not"
3722
  msgstr "Ob das Feld erforderlich ist oder nicht"
3723
 
3724
- #: admin/manage-fields.php:159
3725
  msgid "Overwrite Existing"
3726
  msgstr "Existierende überschreiben"
3727
 
3728
- #: admin/manage-fields.php:159
3729
  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"
3730
  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!"
3731
 
3732
- #: admin/manage-fields.php:165
3733
  msgid "Field Properties"
3734
  msgstr "Feld-Eigenschaften"
3735
 
3736
- #: admin/manage-fields.php:178
3737
  msgid "Registration & Edit Profile"
3738
  msgstr "Registrierung & Profil-Bearbeitung"
3739
 
3740
- #: admin/manage-fields.php:197
3741
  msgid "Name"
3742
  msgstr "Name"
3743
 
3744
- #: admin/manage-fields.php:198
3745
  msgid "Usernames cannot be changed."
3746
  msgstr "Benutzernamen können nicht geändert werden."
3747
 
3748
- #: admin/manage-fields.php:199
 
 
3749
  msgid "First Name"
3750
  msgstr "Vorname"
3751
 
3752
- #: admin/manage-fields.php:200
 
 
3753
  msgid "Last Name"
3754
  msgstr "Nachname"
3755
 
3756
- #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769
3757
- #: modules/user-listing/userlisting.php:2160
 
3758
  msgid "Nickname"
3759
  msgstr "Spitzname"
3760
 
3761
- #: admin/manage-fields.php:202
3762
  msgid "Display name publicly as"
3763
  msgstr "Name öffentlich anzeigen als"
3764
 
3765
- #: admin/manage-fields.php:203
3766
  msgid "Contact Info"
3767
  msgstr "Kontaktdaten"
3768
 
3769
- #: admin/manage-fields.php:204
3770
- #: features/admin-approval/class-admin-approval.php:169
3771
- #: features/email-confirmation/class-email-confirmation.php:168
3772
- #: modules/user-listing/userlisting.php:108
 
3773
  msgid "E-mail"
3774
  msgstr "E-Mail"
3775
 
3776
- #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32
3777
- #: modules/user-listing/userlisting.php:111
3778
- #: modules/user-listing/userlisting.php:751
3779
- #: modules/user-listing/userlisting.php:2154
 
3780
  msgid "Website"
3781
  msgstr "Webseite"
3782
 
3783
- #: admin/manage-fields.php:209
3784
  msgid "AIM"
3785
  msgstr "AIM"
3786
 
3787
- #: admin/manage-fields.php:210
3788
  msgid "Yahoo IM"
3789
  msgstr "Yahoo IM"
3790
 
3791
- #: admin/manage-fields.php:211
3792
  msgid "Jabber / Google Talk"
3793
  msgstr "Jabber / Google Talk"
3794
 
3795
- #: admin/manage-fields.php:214
3796
  msgid "About Yourself"
3797
  msgstr "Über Dich"
3798
 
3799
- #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114
3800
- #: modules/user-listing/userlisting.php:754
3801
- #: modules/user-listing/userlisting.php:2155
 
3802
  msgid "Biographical Info"
3803
  msgstr "Lebenslauf"
3804
 
3805
- #: admin/manage-fields.php:215
3806
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
3807
  msgstr "Fülle ein paar biographische Informationen in deinem Profil aus. Diese können auch öffentlich angezeigt werden."
3808
 
3809
- #: admin/manage-fields.php:216 front-end/recover.php:73
3810
- #: modules/email-customizer/email-customizer.php:30
 
3811
  msgid "Password"
3812
  msgstr "Kennwort"
3813
 
3814
- #: admin/manage-fields.php:216
3815
  msgid "Type your password."
3816
  msgstr "Bitte gib dein Passwort ein."
3817
 
3818
- #: admin/manage-fields.php:217 front-end/recover.php:74
 
3819
  msgid "Repeat Password"
3820
  msgstr "Kennwort wiederholen"
3821
 
3822
- #: admin/manage-fields.php:217
3823
  msgid "Type your password again. "
3824
  msgstr "Bitte geben Sie Ihr Kennwort erneut ein."
3825
 
3826
- #: admin/manage-fields.php:977 admin/manage-fields.php:1134
 
3827
  msgid "You must select a field\n"
3828
  msgstr "Sie müssen ein Feld auswählen.\n"
3829
 
3830
- #: admin/manage-fields.php:987
3831
  msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
3832
  msgstr "Bitte wählen Sie ein anderes Feld aus. Dieses ist bereits im Formular vorhanden (muss einzigartig sein)."
3833
 
3834
- #: admin/manage-fields.php:998
3835
  msgid "The entered avatar size is not between 20 and 200\n"
3836
  msgstr "Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200\n"
3837
 
3838
- #: admin/manage-fields.php:1001
3839
  msgid "The entered avatar size is not numerical\n"
3840
  msgstr "Die eingegebenen Profilbild-Größe ist nicht numerisch\n"
3841
 
3842
- #: admin/manage-fields.php:1009
3843
  msgid "The entered row number is not numerical\n"
3844
  msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
3845
 
3846
- #: admin/manage-fields.php:1012
3847
  msgid "You must enter a value for the row number\n"
3848
  msgstr "Sie müssen die Zeilennummer angeben.\n"
3849
 
3850
- #: admin/manage-fields.php:1033
3851
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3852
  msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
3853
 
3854
- #: admin/manage-fields.php:1036
3855
  msgid "You must enter a value for the date-format\n"
3856
  msgstr "Sie müssen das Datumsformat angeben.\n"
3857
 
3858
- #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3859
- #: admin/manage-fields.php:1083
 
3860
  msgid "That meta-name is already in use\n"
3861
  msgstr "Dieser Meta-Name wird bereits verwendet\n"
3862
 
3863
- #: admin/manage-fields.php:1114
3864
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3865
  msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
3866
 
3867
- #: admin/manage-fields.php:1118
3868
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3869
  msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
3870
 
3871
- #: admin/manage-fields.php:1141
3872
  msgid "That field is already added in this form\n"
3873
  msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
3874
 
3875
- #: admin/manage-fields.php:1190
3876
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3877
  msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
3878
 
3879
- #: admin/manage-fields.php:1190
3880
- #: assets/lib/wck-api/wordpress-creation-kit.php:438
3881
- #: assets/lib/wck-api/wordpress-creation-kit.php:535
3882
- #: features/admin-approval/class-admin-approval.php:108
3883
- #: features/functions.php:718 features/functions.php:725
3884
- #: modules/custom-redirects/custom_redirects_admin.php:179
3885
- #: modules/custom-redirects/custom_redirects_admin.php:193
3886
- #: modules/custom-redirects/custom_redirects_admin.php:207
3887
- #: modules/custom-redirects/custom_redirects_admin.php:221
3888
- #: modules/multiple-forms/multiple-forms.php:406
 
3889
  msgid "Edit"
3890
  msgstr "Bearbeiten"
3891
 
3892
- #: admin/manage-fields.php:1190
3893
- #: assets/lib/wck-api/wordpress-creation-kit.php:438
3894
- #: assets/lib/wck-api/wordpress-creation-kit.php:536
3895
- #: features/admin-approval/class-admin-approval.php:113
3896
- #: features/admin-approval/class-admin-approval.php:224
3897
- #: features/email-confirmation/class-email-confirmation.php:120
3898
- #: features/email-confirmation/class-email-confirmation.php:217
3899
- #: features/functions.php:711 features/functions.php:725
3900
- #: modules/custom-redirects/custom_redirects_admin.php:179
3901
- #: modules/custom-redirects/custom_redirects_admin.php:193
3902
- #: modules/custom-redirects/custom_redirects_admin.php:207
3903
- #: modules/custom-redirects/custom_redirects_admin.php:221
 
3904
  msgid "Delete"
3905
  msgstr "Löschen"
3906
 
3907
- #: admin/manage-fields.php:1205
3908
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3909
  msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben möchten:"
3910
 
3911
- #: admin/register-version.php:14
3912
  msgid "Register Your Version"
3913
  msgstr "Registrieren Sie Ihre Version"
3914
 
3915
- #: admin/register-version.php:14
3916
  msgid "Register Version"
3917
  msgstr "Version registrieren"
3918
 
3919
- #: admin/register-version.php:70
3920
  msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3921
  msgstr "Wenn Sie diese Version vom Profile Builder registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support."
3922
 
3923
- #: admin/register-version.php:72
3924
  msgid " Serial Number:"
3925
  msgstr "Seriennummer:"
3926
 
3927
- #: admin/register-version.php:77
3928
  msgid "The serial number was successfully validated!"
3929
  msgstr "Die Seriennummer wurde erfolgreich überprüft!"
3930
 
3931
- #: admin/register-version.php:79
3932
  msgid "The serial number entered couldn't be validated!"
3933
  msgstr "Die eingegebene Seriennummer konnte nicht überprüft werden!"
3934
 
3935
- #: admin/register-version.php:83
3936
  msgid "The serial number couldn't be validated because it expired!"
3937
  msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!"
3938
 
3939
- #: admin/register-version.php:85
3940
  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!"
3941
  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!"
3942
 
3943
- #: admin/register-version.php:87
3944
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3945
  msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) "
3946
 
3947
- #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
 
3948
  msgid "Content"
3949
  msgstr "Inhalt"
3950
 
3951
- #: assets/lib/wck-api/wordpress-creation-kit.php:535
3952
  msgid "Edit this item"
3953
  msgstr "Dieses Element bearbeiten"
3954
 
3955
- #: assets/lib/wck-api/wordpress-creation-kit.php:536
3956
  msgid "Delete this item"
3957
  msgstr "Dieses Element löschen"
3958
 
3959
- #: assets/lib/wck-api/wordpress-creation-kit.php:705
3960
  msgid "Please enter a value for the required field "
3961
  msgstr "Bitte gib einen Wert für das erforderliche Feld ein"
3962
 
3963
- #: front-end/extra-fields/upload/upload.php:122
 
3964
  msgid "Select File"
3965
  msgstr "Datei auswählen"
3966
 
3967
- #: assets/lib/wck-api/fields/upload.php:43
3968
- #: front-end/extra-fields/upload/upload.php:112
 
3969
  msgid "Remove"
3970
  msgstr "Löschen"
3971
 
3972
- #: assets/lib/wck-api/fields/nested repeater.php:8
3973
  msgid "You can add the information for the %s after you add a entry"
3974
  msgstr "Du kannst die Informationen für \"%s\" hinzufügen, nachdem du einen Eintrag hinzugefügt hast"
3975
 
3976
- #: assets/lib/wck-api/fields/upload.php:75
3977
- #: front-end/extra-fields/upload/upload.php:128
 
3978
  msgid "Upload "
3979
  msgstr "Hochladen"
3980
 
3981
- #: features/class-list-table.php:184
3982
  msgid "No items found."
3983
  msgstr "Keine Einträge wurden gefunden."
3984
 
3985
- #: features/class-list-table.php:308
3986
  msgid "Bulk Actions"
3987
  msgstr "Bulk.Aktionen"
3988
 
3989
- #: features/class-list-table.php:318
3990
  msgid "Apply"
3991
  msgstr "Anwenden"
3992
 
3993
- #: features/class-list-table.php:402
3994
  msgid "Show all dates"
3995
  msgstr "Alle Termine anzeigen"
3996
 
3997
- #: features/class-list-table.php:415
3998
  msgid "%1$s %2$d"
3999
  msgstr "%1$s %2$d "
4000
 
4001
- #: features/class-list-table.php:431
4002
  msgid "List View"
4003
  msgstr "Listenansicht"
4004
 
4005
- #: features/class-list-table.php:432
4006
  msgid "Excerpt View"
4007
  msgstr "Excerpt-Anzeige"
4008
 
4009
- #: features/class-list-table.php:458
4010
  msgid "%s pending"
4011
  msgstr "%s ausstehend"
4012
 
4013
- #: features/class-list-table.php:566
4014
  msgid "%1$s of %2$s"
4015
  msgstr "%1$s von %2$s"
4016
 
4017
- #: features/class-list-table.php:713
4018
  msgid "Select All"
4019
  msgstr "Alle auswählen"
4020
 
4021
- #: features/functions.php:526
4022
  msgid "Strength indicator"
4023
  msgstr "Stärkeanzeige"
4024
 
4025
- #: features/admin-approval/admin-approval.php:14
4026
- #: features/admin-approval/class-admin-approval.php:453
4027
  msgid "Admin Approval"
4028
  msgstr "Admin-Bestätigung"
4029
 
4030
- #: features/admin-approval/admin-approval.php:28
4031
- #: features/email-confirmation/email-confirmation.php:58
4032
  msgid "Do you want to"
4033
  msgstr "Möchtest du"
4034
 
4035
- #: features/admin-approval/admin-approval.php:51
4036
  msgid "Your session has expired! Please refresh the page and try again"
4037
  msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4038
 
4039
- #: features/admin-approval/admin-approval.php:64
4040
  msgid "User successfully approved!"
4041
  msgstr "Benutzer erfolgreich genehmigt!"
4042
 
4043
- #: features/admin-approval/admin-approval.php:74
4044
  msgid "User successfully unapproved!"
4045
  msgstr "Benutzer erfolgreich abgelehnt!"
4046
 
4047
- #: features/admin-approval/admin-approval.php:80
4048
  msgid "User successfully deleted!"
4049
  msgstr "Benutzer erfolgreich gelöscht!"
4050
 
4051
- #: features/admin-approval/admin-approval.php:85
4052
- #: features/admin-approval/admin-approval.php:129
4053
- #: features/email-confirmation/email-confirmation.php:132
4054
  msgid "You either don't have permission for that action or there was an error!"
4055
  msgstr "Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!"
4056
 
4057
- #: features/admin-approval/admin-approval.php:96
4058
  msgid "Your session has expired! Please refresh the page and try again."
4059
  msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4060
 
4061
- #: features/admin-approval/admin-approval.php:108
4062
  msgid "Users successfully approved!"
4063
  msgstr "Benutzer wurden erfolgreich genehmigt!"
4064
 
4065
- #: features/admin-approval/admin-approval.php:117
4066
  msgid "Users successfully unapproved!"
4067
  msgstr "Benutzer wurden erfolgreich verwehrt!"
4068
 
4069
- #: features/admin-approval/admin-approval.php:125
4070
  msgid "Users successfully deleted!"
4071
  msgstr "Benutzer wurden erfolgreich gelöscht!"
4072
 
4073
- #: features/admin-approval/admin-approval.php:145
4074
  msgid "Your account on %1$s has been approved!"
4075
  msgstr "Ihr Benutzerkonto auf %1$s wurde genehmigt!"
4076
 
4077
- #: features/admin-approval/admin-approval.php:146
4078
- #: features/admin-approval/admin-approval.php:149
4079
  msgid "approved"
4080
  msgstr "genehmigt"
4081
 
4082
- #: features/admin-approval/admin-approval.php:148
4083
  msgid "An administrator has just approved your account on %1$s (%2$s)."
4084
  msgstr "Ein Administrator hat gerade Ihr Konto auf %1$s (%2$s) genehmigt."
4085
 
4086
- #: features/admin-approval/admin-approval.php:153
4087
  msgid "Your account on %1$s has been unapproved!"
4088
  msgstr "Ihr Benutzerkonto auf %1$s wurde nicht genehmigt!"
4089
 
4090
- #: features/admin-approval/admin-approval.php:154
4091
- #: features/admin-approval/admin-approval.php:157
4092
  msgid "unapproved"
4093
  msgstr "abgelehnt"
4094
 
4095
- #: features/admin-approval/admin-approval.php:156
4096
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4097
  msgstr "Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. "
4098
 
4099
- #: features/admin-approval/admin-approval.php:175
4100
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4101
  msgstr "<strong>Fehler</strong>: Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie sich anmelden können. "
4102
 
4103
- #: features/admin-approval/admin-approval.php:187
4104
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4105
  msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie die \"Kennwort Wiederherstellung\"-Funktion verwenden können."
4106
 
4107
- #: features/admin-approval/class-admin-approval.php:113
4108
  msgid "delete this user?"
4109
  msgstr "Möchtest du diesen Benutzer löschen?"
4110
 
4111
- #: features/admin-approval/class-admin-approval.php:116
4112
  msgid "unapprove this user?"
4113
  msgstr "Benutzer ablehnen?"
4114
 
4115
- #: features/admin-approval/class-admin-approval.php:116
4116
- #: features/admin-approval/class-admin-approval.php:223
4117
  msgid "Unapprove"
4118
  msgstr "ablehnen"
4119
 
4120
- #: features/admin-approval/class-admin-approval.php:118
4121
  msgid "approve this user?"
4122
  msgstr "Möchtest du diesen Benutzer genehmigen?"
4123
 
4124
- #: features/admin-approval/class-admin-approval.php:118
4125
- #: features/admin-approval/class-admin-approval.php:222
4126
  msgid "Approve"
4127
  msgstr "Genehmigen"
4128
 
4129
- #: features/admin-approval/class-admin-approval.php:167
4130
- #: modules/user-listing/userlisting.php:278
4131
- #: modules/user-listing/userlisting.php:742
4132
- #: modules/user-listing/userlisting.php:2157
4133
  msgid "Firstname"
4134
  msgstr "Vorname"
4135
 
4136
- #: features/admin-approval/class-admin-approval.php:168
4137
- #: modules/user-listing/userlisting.php:745
4138
- #: modules/user-listing/userlisting.php:2158
4139
  msgid "Lastname"
4140
  msgstr "Nachname"
4141
 
4142
- #: features/admin-approval/class-admin-approval.php:170
4143
- #: modules/user-listing/userlisting.php:149
4144
- #: modules/user-listing/userlisting.php:279
4145
- #: modules/user-listing/userlisting.php:772
4146
- #: modules/user-listing/userlisting.php:2162
4147
  msgid "Role"
4148
  msgstr "Rolle"
4149
 
4150
- #: features/admin-approval/class-admin-approval.php:171
4151
- #: features/email-confirmation/class-email-confirmation.php:169
4152
  msgid "Registered"
4153
  msgstr "Angemeldet"
4154
 
4155
- #: features/admin-approval/class-admin-approval.php:172
4156
  msgid "User-status"
4157
  msgstr "Benutzer-Status"
4158
 
4159
- #: features/admin-approval/class-admin-approval.php:252
4160
  msgid "Do you want to bulk approve the selected users?"
4161
  msgstr "Möchtest du alle ausgewählten Benutzer genehmigen?"
4162
 
4163
- #: features/admin-approval/class-admin-approval.php:260
4164
  msgid "Do you want to bulk unapprove the selected users?"
4165
  msgstr "Möchtest du alle ausgewählten Benutzer verwehren?"
4166
 
4167
- #: features/admin-approval/class-admin-approval.php:266
4168
  msgid "Do you want to bulk delete the selected users?"
4169
  msgstr "Möchtest du alle ausgewählten Benutzer löschen?"
4170
 
4171
- #: features/admin-approval/class-admin-approval.php:274
4172
- #: features/email-confirmation/class-email-confirmation.php:278
4173
  msgid "Sorry, but you don't have permission to do that!"
4174
  msgstr "Tut uns leid aber du hast keine Berechtigung dazu!"
4175
 
4176
- #: features/admin-approval/class-admin-approval.php:339
4177
  msgid "Approved"
4178
  msgstr "Genehmigt"
4179
 
4180
- #: features/admin-approval/class-admin-approval.php:341
4181
  msgid "Unapproved"
4182
  msgstr "Verwehrt"
4183
 
4184
- #: features/admin-approval/class-admin-approval.php:456
4185
- #: features/email-confirmation/class-email-confirmation.php:454
4186
  msgid "All Users"
4187
  msgstr "Alle Benutzer"
4188
 
4189
- #: features/email-confirmation/class-email-confirmation.php:120
4190
  msgid "delete this user from the _signups table?"
4191
  msgstr "Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?"
4192
 
4193
- #: features/email-confirmation/class-email-confirmation.php:121
4194
  msgid "confirm this email yourself?"
4195
  msgstr "Bestätige diese E-Mail selbst?"
4196
 
4197
- #: features/email-confirmation/class-email-confirmation.php:121
4198
- #: features/email-confirmation/class-email-confirmation.php:218
4199
  msgid "Confirm Email"
4200
  msgstr "E-Mail bestätigen"
4201
 
4202
- #: features/email-confirmation/class-email-confirmation.php:122
4203
  msgid "resend the activation link?"
4204
  msgstr "Aktivierungslink erneut senden?"
4205
 
4206
- #: features/email-confirmation/class-email-confirmation.php:122
4207
- #: features/email-confirmation/class-email-confirmation.php:219
4208
  msgid "Resend Activation Email"
4209
  msgstr "Aktivierungs-E-Mail erneut senden"
4210
 
4211
- #: features/email-confirmation/class-email-confirmation.php:249
4212
  msgid "%s couldn't be deleted"
4213
  msgstr "%s konnte nicht gelöscht werden"
4214
 
4215
- #: features/email-confirmation/class-email-confirmation.php:253
4216
  msgid "All users have been successfully deleted"
4217
  msgstr "Alle Benutzer wurden erfolgreich gelöscht"
4218
 
4219
- #: features/email-confirmation/class-email-confirmation.php:263
4220
  msgid "The selected users have been activated"
4221
  msgstr "Die ausgewählten Benutzer wurden aktiviert"
4222
 
4223
- #: features/email-confirmation/class-email-confirmation.php:274
4224
  msgid "The selected users have had their activation emails resent"
4225
  msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
4226
 
4227
- #: features/email-confirmation/class-email-confirmation.php:451
4228
- #: features/email-confirmation/email-confirmation.php:47
4229
  msgid "Users with Unconfirmed Email Address"
4230
  msgstr "Benutzer mit unbestätigter E-Mail-Adresse"
4231
 
4232
- #: features/email-confirmation/email-confirmation.php:107
4233
  msgid "There was an error performing that action!"
4234
  msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
4235
 
4236
- #: features/email-confirmation/email-confirmation.php:115
4237
  msgid "The selected user couldn't be deleted"
4238
  msgstr "Der ausgewählte Benutzer konnte nicht gelöscht werden"
4239
 
4240
- #: features/email-confirmation/email-confirmation.php:126
4241
  msgid "Email notification resent to user"
4242
  msgstr "Die E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt."
4243
 
4244
- #: features/email-confirmation/email-confirmation.php:397
4245
  msgid "[%1$s] Activate %2$s"
4246
  msgstr "[%1$s] Aktivieren %2$s"
4247
 
4248
- #: features/email-confirmation/email-confirmation.php:441
4249
- #: front-end/register.php:71
4250
  msgid "Could not create user!"
4251
  msgstr "Benutzer konnte nicht erstellt werden!"
4252
 
4253
- #: features/email-confirmation/email-confirmation.php:444
4254
  msgid "That username is already activated!"
4255
  msgstr "Dieser Benutzername ist bereits aktiviert worden!"
4256
 
4257
- #: features/email-confirmation/email-confirmation.php:467
4258
  msgid "There was an error while trying to activate the user"
4259
  msgstr "Es ist ein Fehler aufgetreten, beim Versuch, den Benutzer zu aktivieren."
4260
 
4261
- #: features/email-confirmation/email-confirmation.php:515
4262
- #: modules/email-customizer/admin-email-customizer.php:73
4263
  msgid "A new subscriber has (been) registered!"
4264
  msgstr "Ein neuer Benutzer ist (wurde) registriert!"
4265
 
4266
- #: features/email-confirmation/email-confirmation.php:518
4267
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4268
  msgstr "Neuer Abonnent auf %1$s. <br/> <br/>Benutzername:%2$s <br/> E-Mail: %3$s <br/>"
4269
 
4270
- #: features/email-confirmation/email-confirmation.php:633
4271
  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!"
4272
  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!"
4273
 
4274
- #: features/email-confirmation/email-confirmation.php:569
4275
  msgid "[%1$s] Your new account information"
4276
  msgstr "[%1$s] Ihre neuen Kontodaten"
4277
 
4278
- #: features/email-confirmation/email-confirmation.php:580
4279
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4280
  msgstr "Willkommen bei %1$s! <br/> <br/> <br/>Ihr Benutzername ist: %2$s und das Kennwort: %3$s"
4281
 
4282
- #: features/email-confirmation/email-confirmation.php:641
4283
- #: front-end/register.php:125
4284
  msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4285
  msgstr "Bevor du auf dein Konto zugreifen kannst, muss es von einem Administrator genehmigt werden. Du wirst per E-Mail darüber benachrichtigt."
4286
 
4287
- #: features/login-widget/login-widget.php:10
4288
  msgid "This login widget lets you add a login form in the sidebar."
4289
  msgstr "Mit diesem Login-Widget kannst du ein Anmeldeformular in der Sidebar hinzufügen."
4290
 
4291
- #: features/login-widget/login-widget.php:15
4292
  msgid "Profile Builder Login Widget"
4293
  msgstr "Profile Builder Login Widget"
4294
 
4295
- #: front-end/class-formbuilder.php:399 front-end/login.php:250
 
 
4296
  msgid "Register"
4297
  msgstr "Registrieren"
4298
 
4299
- #: features/login-widget/login-widget.php:63
4300
  msgid "Title:"
4301
  msgstr "Titel:"
4302
 
4303
- #: features/login-widget/login-widget.php:68
4304
  msgid "After login redirect URL (optional):"
4305
  msgstr "Weiterleitungs-URL nach dem Login (optional):"
4306
 
4307
- #: features/login-widget/login-widget.php:73
4308
  msgid "Register page URL (optional):"
4309
  msgstr "Registrierunggseite-URL (optional):"
4310
 
4311
- #: features/login-widget/login-widget.php:78
4312
  msgid "Password Recovery page URL (optional):"
4313
  msgstr "Kennwort Wiederherstellungs-URL (optional):"
4314
 
4315
- #: features/upgrades/upgrades-functions.php:91
4316
- #: features/upgrades/upgrades-functions.php:134
4317
  msgid "The usernames cannot be changed."
4318
  msgstr "Benutzernamen können nicht geändert werden."
4319
 
4320
- #: front-end/class-formbuilder.php:125
4321
  msgid "Only an administrator can add new users."
4322
  msgstr "Nur ein Administrator kann neue Benutzer hinzufügen."
4323
 
4324
- #: front-end/class-formbuilder.php:135
4325
  msgid "Users can register themselves or you can manually create users here."
4326
  msgstr "Benutzer können sich selbst anmelden, oder du kannst Benutzer von Hand hier erstellen."
4327
 
4328
- #: front-end/class-formbuilder.php:138
4329
  msgid "Users cannot currently register themselves, but you can manually create users here."
4330
  msgstr "Benutzer können sich derzeit selbst nicht registrieren, aber du kannst Benutzer hier manuell erstellen."
4331
 
4332
- #: front-end/class-formbuilder.php:158
4333
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4334
  msgstr "Du bist derzeit als %1s angemeldet. Du brauchst kein weiteres Konto. %2s"
4335
 
4336
- #: front-end/class-formbuilder.php:158
4337
  msgid "Log out of this account."
4338
  msgstr "Aus diesem Konto ausloggen."
4339
 
4340
- #: front-end/class-formbuilder.php:158
4341
  msgid "Logout"
4342
  msgstr "Ausloggen"
4343
 
4344
- #: front-end/class-formbuilder.php:164
4345
  msgid "You must be logged in to edit your profile."
4346
  msgstr "Sie müssen angemeldet sein, um Ihr Profil zu bearbeiten."
4347
 
4348
- #: features/functions.php:994
4349
  msgid "here"
4350
  msgstr "hier"
4351
 
4352
- #: features/functions.php:995
4353
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4354
  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"
4355
 
4356
- #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
 
4357
  msgid "The account %1s has been successfully created!"
4358
  msgstr "Das Konto %1s wurde erfolgreich erstellt!"
4359
 
4360
- #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
 
4361
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4362
  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."
4363
 
4364
- #: front-end/class-formbuilder.php:308
4365
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4366
  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."
4367
 
4368
- #: front-end/class-formbuilder.php:331
4369
  msgid "Your profile has been successfully updated!"
4370
  msgstr "Ihr Profil wurde aktualisiert!"
4371
 
4372
- #: front-end/class-formbuilder.php:342
4373
  msgid "There was an error in the submitted form"
4374
  msgstr "Bitte alle erforderlichen Felder korrekt ausfüllen!"
4375
 
4376
- #: front-end/class-formbuilder.php:399
4377
  msgid "Add User"
4378
  msgstr "Benutzer hinzufügen"
4379
 
4380
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
 
4381
  msgid "Update"
4382
  msgstr "Aktualisieren"
4383
 
4384
- #: front-end/class-formbuilder.php:465
4385
  msgid "Send these credentials via email."
4386
  msgstr "Senden Sie mir diese Anmeldeninformationen per E-Mail."
4387
 
4388
- #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137
4389
- #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17
4390
- #: front-end/recover.php:237
 
 
 
4391
  msgid "ERROR"
4392
  msgstr "FEHLER"
4393
 
4394
- #: front-end/login.php:137
4395
  msgid "The password you entered is incorrect."
4396
  msgstr "Das eingegebene Kennwort ist falsch."
4397
 
4398
- #: front-end/login.php:138 front-end/login.php:145
 
4399
  msgid "Password Lost and Found."
4400
  msgstr "Passwort-Fundgrube"
4401
 
4402
- #: front-end/login.php:138 front-end/login.php:145
 
4403
  msgid "Lost your password"
4404
  msgstr "Passwort vergessen"
4405
 
4406
- #: front-end/login.php:158
4407
  msgid "Both fields are empty."
4408
  msgstr "Beide Felder sind leer."
4409
 
4410
- #: front-end/login.php:296
4411
  msgid "You are currently logged in as %1$s. %2$s"
4412
  msgstr "Derzeit als %1$s angemeldet. %2$s "
4413
 
4414
- #: front-end/login.php:295 front-end/logout.php:25
 
4415
  msgid "Log out of this account"
4416
  msgstr "Aus diesem Konto ausloggen"
4417
 
4418
- #: front-end/login.php:295
4419
  msgid "Log out"
4420
  msgstr "Ausloggen"
4421
 
4422
- #: front-end/recover.php:17
4423
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4424
  msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie Ihr Kennwort zurücksetzen können."
4425
 
4426
- #: front-end/recover.php:94
4427
  msgid "Reset Password"
4428
  msgstr "Passwort zurücksetzen"
4429
 
4430
- #: front-end/recover.php:114
4431
  msgid "Please enter your username or email address."
4432
  msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail Adresse ein."
4433
 
4434
- #: front-end/recover.php:115
4435
  msgid "You will receive a link to create a new password via email."
4436
  msgstr "Sie werden per E-Mail einen Link erhalten, über den Sie ein neues Passwort vergeben können."
4437
 
4438
- #: front-end/recover.php:120
4439
  msgid "Username or E-mail"
4440
  msgstr "Benutzername oder E-Mail"
4441
 
4442
- #: front-end/recover.php:130
4443
  msgid "Get New Password"
4444
  msgstr "Neues Passwort anfordern"
4445
 
4446
- #: front-end/recover.php:177
4447
  msgid "The username entered wasn't found in the database!"
4448
  msgstr "Der eingegebene Benutzername existiert nicht!"
4449
 
4450
- #: front-end/recover.php:177
4451
  msgid "Please check that you entered the correct username."
4452
  msgstr "Bitte überprüfe, ob du den richtigen Benutzernamen eingegeben hast."
4453
 
4454
- #: front-end/recover.php:192
4455
  msgid "Check your e-mail for the confirmation link."
4456
  msgstr "Überprüfe dein E-Mail Postfach für den Bestätigungslink."
4457
 
4458
- #: front-end/recover.php:227
4459
  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"
4460
  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"
4461
 
4462
- #: front-end/recover.php:230
4463
  msgid "Password Reset from \"%1$s\""
4464
  msgstr "Zurücksetzen des Kennworts \"%1$s\""
4465
 
4466
- #: front-end/recover.php:237
4467
  msgid "There was an error while trying to send the activation link to %1$s!"
4468
  msgstr "Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!"
4469
 
4470
- #: front-end/recover.php:199
4471
  msgid "The email address entered wasn't found in the database!"
4472
  msgstr "Die eingegebene E-Mail-Adresse existiert nicht!"
4473
 
4474
- #: front-end/recover.php:199
4475
  msgid "Please check that you entered the correct email address."
4476
  msgstr "Bitte prüfe, ob du die richtige E-Mail Adresse angegeben hast."
4477
 
4478
- #: front-end/recover.php:265
4479
  msgid "Your password has been successfully changed!"
4480
  msgstr "Ihr Passwort wurde erfolgreich geändert!"
4481
 
4482
- #: front-end/recover.php:284
4483
  msgid "You have successfully reset your password to: %1$s"
4484
  msgstr "Ihr Kennwort wurde erfolgreich zurückgesetzt: %1$s"
4485
 
4486
- #: front-end/recover.php:287 front-end/recover.php:298
 
4487
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4488
  msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\""
4489
 
4490
- #: front-end/recover.php:295
4491
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4492
  msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>Ihr neues Passwort ist: %2$s"
4493
 
4494
- #: front-end/recover.php:312
4495
  msgid "The entered passwords don't match!"
4496
  msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
4497
 
4498
- #: front-end/recover.php:367
4499
  msgid "ERROR:"
4500
  msgstr "FEHLER:"
4501
 
4502
- #: front-end/recover.php:367
4503
  msgid "Invalid key!"
4504
  msgstr "Ungültiger Schlüssel!"
4505
 
4506
- #: front-end/register.php:56
4507
  msgid "Invalid activation key!"
4508
  msgstr "Ungültiger Aktivierungsschlüssel!"
4509
 
4510
- #: front-end/register.php:60
4511
  msgid "This username is now active!"
4512
  msgstr "Dieser Benutzername ist jetzt aktiv!"
4513
 
4514
- #: front-end/register.php:74
4515
  msgid "This username is already activated!"
4516
  msgstr "Dieser Benutzername ist bereits aktiviert!"
4517
 
4518
- #: front-end/register.php:124
4519
  msgid "Your email was successfully confirmed."
4520
  msgstr "Ihre E-Mail wurde erfolgreich bestätigt."
4521
 
4522
- #: front-end/register.php:153
4523
  msgid "There was an error while trying to activate the user."
4524
  msgstr "Ein Fehler ist aufgetreten, während versucht wurde, den Benutzer zu aktivieren."
4525
 
4526
- #: front-end/default-fields/email/email.php:47
 
4527
  msgid "The email you entered is not a valid email address."
4528
  msgstr "Die angegebene E-Mail Adresse wurde als ungültig eingestuft."
4529
 
4530
- #: front-end/default-fields/email/email.php:60
4531
- #: front-end/default-fields/email/email.php:67
4532
  msgid "This email is already reserved to be used soon."
4533
  msgstr "Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden."
4534
 
4535
- #: front-end/default-fields/email/email.php:60
4536
- #: front-end/default-fields/email/email.php:67
4537
- #: front-end/default-fields/email/email.php:77
4538
- #: front-end/default-fields/email/email.php:95
4539
- #: front-end/default-fields/username/username.php:49
4540
- #: front-end/default-fields/username/username.php:65
4541
  msgid "Please try a different one!"
4542
  msgstr "Bitte versuchen Sie es mit einer anderen!"
4543
 
4544
- #: front-end/default-fields/email/email.php:77
4545
- #: front-end/default-fields/email/email.php:95
4546
  msgid "This email is already in use."
4547
  msgstr "Diese E-Mail-Adresse ist bereits im Einsatz."
4548
 
4549
- #: front-end/default-fields/password-repeat/password-repeat.php:37
4550
- #: front-end/default-fields/password-repeat/password-repeat.php:41
4551
  msgid "The passwords do not match"
4552
  msgstr "Die Kennwörter stimmen nicht überein."
4553
 
4554
- #: front-end/default-fields/username/username.php:49
4555
  msgid "This username already exists."
4556
  msgstr "Dieser Benutzername ist bereits vorhanden."
4557
 
4558
- #: front-end/default-fields/username/username.php:65
4559
  msgid "This username is already reserved to be used soon."
4560
  msgstr "Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden."
4561
 
4562
- #: modules/user-listing/userlisting.php:276
4563
  msgid "Avatar"
4564
  msgstr "Profil-Bild"
4565
 
4566
- #: front-end/extra-fields/avatar/avatar.php:72
4567
- #: front-end/extra-fields/checkbox/checkbox.php:45
4568
- #: front-end/extra-fields/colorpicker/colorpicker.php:45
4569
- #: front-end/extra-fields/datepicker/datepicker.php:40
4570
- #: front-end/extra-fields/input-hidden/input-hidden.php:34
4571
- #: front-end/extra-fields/input/input.php:30
4572
- #: front-end/extra-fields/map/map.php:51
4573
- #: front-end/extra-fields/number/number.php:30
4574
- #: front-end/extra-fields/phone/phone.php:39
4575
- #: front-end/extra-fields/radio/radio.php:44
4576
- #: front-end/extra-fields/select-cpt/select-cpt.php:52
4577
- #: front-end/extra-fields/select-multiple/select-multiple.php:46
4578
- #: front-end/extra-fields/select-timezone/select-timezone.php:49
4579
- #: front-end/extra-fields/select/select.php:51
4580
- #: front-end/extra-fields/textarea/textarea.php:30
4581
- #: front-end/extra-fields/upload/upload.php:70
4582
- #: front-end/extra-fields/wysiwyg/wysiwyg.php:33
4583
  msgid "required"
4584
  msgstr "Erforderlich"
4585
 
4586
- #: front-end/extra-fields/recaptcha/recaptcha.php:48
4587
  msgid "To use reCAPTCHA you must get an API key from"
4588
  msgstr "Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier besorgen:"
4589
 
4590
- #: front-end/extra-fields/recaptcha/recaptcha.php:131
4591
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4592
  msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP eingeben um ReCAPTCHA zu benutzen!"
4593
 
4594
- #: front-end/extra-fields/recaptcha/recaptcha.php:192
4595
  msgid "To use reCAPTCHA you must get an API public key from:"
4596
  msgstr "Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:"
4597
 
4598
- #: modules/modules.php:11 modules/modules.php:58
 
4599
  msgid "Modules"
4600
  msgstr "Module"
4601
 
4602
- #: modules/modules.php:59
4603
  msgid "Here you can activate / deactivate available modules for Profile Builder."
4604
  msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
4605
 
4606
- #: modules/modules.php:69
4607
  msgid "Name/Description"
4608
  msgstr "Name/Beschreibung"
4609
 
4610
- #: modules/modules.php:70
4611
  msgid "Status"
4612
  msgstr "Status"
4613
 
4614
- #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4615
- #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4616
- #: modules/modules.php:119
 
 
 
 
4617
  msgid "Active"
4618
  msgstr "Aktiv"
4619
 
4620
- #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4621
- #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4622
- #: modules/modules.php:120
 
 
 
 
4623
  msgid "Inactive"
4624
  msgstr "inaktiv"
4625
 
4626
- #: modules/email-customizer/admin-email-customizer.php:11
4627
- #: modules/email-customizer/admin-email-customizer.php:12
4628
- #: modules/modules.php:96
4629
  msgid "Admin Email Customizer"
4630
  msgstr "Anpassen der Admin-E-Mails"
4631
 
4632
- #: modules/email-customizer/user-email-customizer.php:11
4633
- #: modules/email-customizer/user-email-customizer.php:12
4634
- #: modules/modules.php:103
4635
  msgid "User Email Customizer"
4636
  msgstr "Anpassen der Benutzer-E-Mails"
4637
 
4638
- #: assets/lib/wck-api/wordpress-creation-kit.php:334
4639
- #: modules/class-mustache-templates/class-mustache-templates.php:253
4640
  msgid "Save"
4641
  msgstr "Speichern"
4642
 
4643
- #: modules/multiple-forms/edit-profile-forms.php:206
4644
- #: modules/multiple-forms/register-forms.php:230
4645
  msgid "Redirect"
4646
  msgstr "Weiterleitung"
4647
 
4648
- #: modules/multiple-forms/edit-profile-forms.php:208
4649
- #: modules/multiple-forms/register-forms.php:232
4650
  msgid "URL"
4651
  msgstr "URL"
4652
 
4653
- #: modules/email-customizer/admin-email-customizer.php:38
4654
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4655
  msgstr "Diese Einstellungen werden auch auf der \"Benutzer E-Mail Kustomisierung\" Einstellungs-Seite beim Speichern repliziert."
4656
 
4657
- #: modules/email-customizer/admin-email-customizer.php:41
4658
- #: modules/email-customizer/user-email-customizer.php:41
4659
  msgid "From (name)"
4660
  msgstr "Von (Name)"
4661
 
4662
- #: modules/email-customizer/admin-email-customizer.php:49
4663
- #: modules/email-customizer/user-email-customizer.php:49
4664
  msgid "From (reply-to email)"
4665
  msgstr "Von (Antwort auf E-Mail)"
4666
 
4667
- #: modules/email-customizer/admin-email-customizer.php:57
4668
- #: modules/email-customizer/user-email-customizer.php:57
4669
  msgid "Common Settings"
4670
  msgstr "Allgemeine Einstellungen"
4671
 
4672
- #: modules/email-customizer/admin-email-customizer.php:60
4673
  msgid ""
4674
  "\n"
4675
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4681,25 +4979,25 @@ msgstr ""
4681
  "<p>Benutzername:{{username}}</p>\n"
4682
  "<p>E-mail:{{user_email}}</p>\n"
4683
 
4684
- #: modules/email-customizer/admin-email-customizer.php:69
4685
- #: modules/email-customizer/admin-email-customizer.php:99
4686
- #: modules/email-customizer/admin-email-customizer.php:126
4687
- #: modules/email-customizer/user-email-customizer.php:71
4688
- #: modules/email-customizer/user-email-customizer.php:99
4689
- #: modules/email-customizer/user-email-customizer.php:128
4690
- #: modules/email-customizer/user-email-customizer.php:155
4691
- #: modules/email-customizer/user-email-customizer.php:183
4692
- #: modules/email-customizer/user-email-customizer.php:214
4693
- #: modules/email-customizer/user-email-customizer.php:241
4694
- #: modules/email-customizer/user-email-customizer.php:274
4695
  msgid "Email Subject"
4696
  msgstr "E-Mail Betreff"
4697
 
4698
- #: modules/email-customizer/admin-email-customizer.php:84
4699
  msgid "Default Registration & Registration with Email Confirmation"
4700
  msgstr "Standard-Anmeldung & Anmeldung mit E-Mail-Bestätigung"
4701
 
4702
- #: modules/email-customizer/admin-email-customizer.php:87
4703
  msgid ""
4704
  "\n"
4705
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4714,50 +5012,50 @@ msgstr ""
4714
  "<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
4715
  "Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !</p>\n"
4716
 
4717
- #: modules/email-customizer/admin-email-customizer.php:114
4718
- #: modules/email-customizer/user-email-customizer.php:143
4719
  msgid "Registration with Admin Approval"
4720
  msgstr "Anmeldung über Admin-Freischaltung"
4721
 
4722
- #: modules/email-customizer/email-customizer.php:7
4723
  msgid "Available Tags"
4724
  msgstr "Verfügbare Tags"
4725
 
4726
- #: features/email-confirmation/class-email-confirmation.php:91
4727
- #: features/email-confirmation/class-email-confirmation.php:170
4728
  msgid "User Meta"
4729
  msgstr "Benutzer-Meta"
4730
 
4731
- #: modules/email-customizer/email-customizer.php:21
4732
  msgid "Site Url"
4733
  msgstr "Webseite-URL"
4734
 
4735
- #: modules/email-customizer/email-customizer.php:22
4736
  msgid "Site Name"
4737
  msgstr "Webseite Name"
4738
 
4739
- #: modules/email-customizer/email-customizer.php:25
4740
- #: modules/user-listing/userlisting.php:158
4741
  msgid "User Id"
4742
  msgstr "Benutzer-Id"
4743
 
4744
- #: modules/email-customizer/email-customizer.php:33
4745
  msgid "Reply To"
4746
  msgstr "Antworten auf"
4747
 
4748
- #: modules/email-customizer/email-customizer.php:40
4749
  msgid "Activation Key"
4750
  msgstr "Aktivierungsschlüssel"
4751
 
4752
- #: modules/email-customizer/email-customizer.php:41
4753
  msgid "Activation Url"
4754
  msgstr "Aktivierungs-Url"
4755
 
4756
- #: modules/email-customizer/email-customizer.php:42
4757
  msgid "Activation Link"
4758
  msgstr "Aktivierungs-Link"
4759
 
4760
- #: modules/email-customizer/user-email-customizer.php:64
4761
  msgid ""
4762
  "\n"
4763
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -4766,11 +5064,11 @@ msgstr ""
4766
  "\n"
4767
  "<h3>Willkommen bei {{Site_name}}!</h3> <p>Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}</p>\n"
4768
 
4769
- #: modules/email-customizer/user-email-customizer.php:85
4770
  msgid "Default Registration"
4771
  msgstr "Standard-Anmeldung"
4772
 
4773
- #: modules/email-customizer/user-email-customizer.php:91
4774
  msgid ""
4775
  "\n"
4776
  "<p>To activate your user, please click the following link:<br/>\n"
@@ -4782,15 +5080,15 @@ msgstr ""
4782
  "{{{activation_link}}}</p>\n"
4783
  "<p>Nach der Aktivierung erhälst du eine weitere E-Mail mit deinen Anmeldeinformationen.</p>\n"
4784
 
4785
- #: modules/email-customizer/user-email-customizer.php:103
4786
  msgid "[{{site_name}}] Activate {{username}}"
4787
  msgstr "[{{site_name}}] Aktivieren {{username}}"
4788
 
4789
- #: modules/email-customizer/user-email-customizer.php:114
4790
  msgid "Registration with Email Confirmation"
4791
  msgstr "Registrierung mit E-Mail-Bestätigung"
4792
 
4793
- #: modules/email-customizer/user-email-customizer.php:120
4794
  msgid ""
4795
  "\n"
4796
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -4802,11 +5100,11 @@ msgstr ""
4802
  "<p>Ihr Benutzername ist: {{username}} und das Kennwort: {{password}}</p>\n"
4803
  "<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"
4804
 
4805
- #: modules/email-customizer/user-email-customizer.php:132
4806
  msgid "A new account has been created for you on {{site_name}}"
4807
  msgstr "Ein neues Konto wurde für Sie auf {{Site_name}} erstellt"
4808
 
4809
- #: modules/email-customizer/user-email-customizer.php:148
4810
  msgid ""
4811
  "\n"
4812
  "<h3>Good News!</h3>\n"
@@ -4816,15 +5114,15 @@ msgstr ""
4816
  "<h3>Herzlich Willkommen!</h3>\n"
4817
  "<p>Der Administrator hat Ihr Konto freigeschaltet: {{username}} auf {{site_name}}.</p>\n"
4818
 
4819
- #: modules/email-customizer/user-email-customizer.php:159
4820
  msgid "Your account on {{site_name}} has been approved!"
4821
  msgstr "Ihr Benutzerkonto auf {{site_name}} wurde freigeschaltet!"
4822
 
4823
- #: modules/email-customizer/user-email-customizer.php:170
4824
  msgid "User Approval Notification"
4825
  msgstr "Benutzer Genehmigungsbenachrichtigung"
4826
 
4827
- #: modules/email-customizer/user-email-customizer.php:175
4828
  msgid ""
4829
  "\n"
4830
  "<h3>Hello,</h3>\n"
@@ -4834,463 +5132,463 @@ msgstr ""
4834
  "<h3>Lieber Benutzer,</h3>\n"
4835
  "<p>leider hat der Administrator Ihr Konto nicht freigeschaltet.</p>\n"
4836
 
4837
- #: modules/email-customizer/user-email-customizer.php:187
4838
  msgid "Your account on {{site_name}} has been unapproved!"
4839
  msgstr "Ihr Benutzerkonto auf {{site_name}} wurde nicht freigeschaltet!"
4840
 
4841
- #: modules/email-customizer/user-email-customizer.php:198
4842
  msgid "Unapproved User Notification"
4843
  msgstr "Nicht genehmigte Benutzerbenachrichtigung"
4844
 
4845
- #: modules/multiple-forms/edit-profile-forms.php:11
4846
- #: modules/multiple-forms/edit-profile-forms.php:12
4847
  msgid "Edit-profile Form"
4848
  msgstr "Profil-Bearbeiten Formular"
4849
 
4850
- #: modules/multiple-forms/edit-profile-forms.php:13
4851
- #: modules/multiple-forms/register-forms.php:13
4852
- #: modules/user-listing/userlisting.php:13
4853
  msgid "Add New"
4854
  msgstr "Neu hinzufügen"
4855
 
4856
- #: modules/multiple-forms/edit-profile-forms.php:14
4857
  msgid "Add new Edit-profile Form"
4858
  msgstr "Neues Profil-Bearbeiten Formular hinzufügen"
4859
 
4860
- #: modules/multiple-forms/edit-profile-forms.php:15
4861
  msgid "Edit the Edit-profile Forms"
4862
  msgstr "Profil-Bearbeiten Formular bearbeiten"
4863
 
4864
- #: modules/multiple-forms/edit-profile-forms.php:16
4865
  msgid "New Edit-profile Form"
4866
  msgstr "Neues Profil-Bearbeiten Formular"
4867
 
4868
- #: modules/multiple-forms/edit-profile-forms.php:17
4869
- #: modules/multiple-forms/edit-profile-forms.php:23
4870
  msgid "Edit-profile Forms"
4871
  msgstr "Profil-Bearbeiten Formular"
4872
 
4873
- #: modules/multiple-forms/edit-profile-forms.php:18
4874
  msgid "View the Edit-profile Form"
4875
  msgstr "Ansicht vom Profil-Bearbeiten Formular"
4876
 
4877
- #: modules/multiple-forms/edit-profile-forms.php:19
4878
  msgid "Search the Edit-profile Forms"
4879
  msgstr "Suchen Sie nach Profil Bearbeitungs-Formulare"
4880
 
4881
- #: modules/multiple-forms/edit-profile-forms.php:20
4882
  msgid "No Edit-profile Form found"
4883
  msgstr "Kein Profil Bearbeitungs-Formular wurde gefunden"
4884
 
4885
- #: modules/multiple-forms/edit-profile-forms.php:21
4886
  msgid "No Edit-profile Forms found in trash"
4887
  msgstr "Keine Profil-bearbeitungs Formulare wurden im Papierkorb gefunden"
4888
 
4889
- #: modules/multiple-forms/edit-profile-forms.php:135
4890
- #: modules/multiple-forms/register-forms.php:138
4891
- #: modules/user-listing/userlisting.php:2048
4892
  msgid "Shortcode"
4893
  msgstr "Shortcode"
4894
 
4895
- #: modules/multiple-forms/edit-profile-forms.php:155
4896
- #: modules/multiple-forms/register-forms.php:159
4897
- #: modules/user-listing/userlisting.php:2069
4898
  msgid "(no title)"
4899
  msgstr "(kein Titel)"
4900
 
4901
- #: modules/multiple-forms/edit-profile-forms.php:175
4902
- #: modules/multiple-forms/register-forms.php:178
4903
- #: modules/user-listing/userlisting.php:2089
4904
  msgid "The shortcode will be available after you publish this form."
4905
  msgstr "Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen."
4906
 
4907
- #: modules/multiple-forms/edit-profile-forms.php:177
4908
- #: modules/multiple-forms/register-forms.php:180
4909
- #: modules/user-listing/userlisting.php:2091
4910
  msgid "Use this shortcode on the page you want the form to be displayed:"
4911
  msgstr "Verwenden Sie diesen Shortcode auf der Seite, wo das Formular angezeigt werden soll."
4912
 
4913
- #: modules/multiple-forms/edit-profile-forms.php:181
4914
- #: modules/multiple-forms/register-forms.php:184
4915
- #: modules/user-listing/userlisting.php:2095
4916
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
4917
  msgstr "<span style=\"color:red;\">Hinweis:</span> die Änderung des Formulartitels ändert auch den Shortcode!"
4918
 
4919
- #: modules/multiple-forms/edit-profile-forms.php:187
4920
- #: modules/multiple-forms/register-forms.php:190
4921
- #: modules/user-listing/userlisting.php:2128
4922
  msgid "Form Shortcode"
4923
  msgstr "Formular-Shortcode"
4924
 
4925
- #: modules/multiple-forms/edit-profile-forms.php:206
4926
- #: modules/multiple-forms/register-forms.php:230
4927
  msgid "Whether to redirect the user to a specific page or not"
4928
  msgstr "Ob der Benutzer zu einer bestimmten Seite umgeleitet werden soll oder nicht"
4929
 
4930
- #: modules/multiple-forms/edit-profile-forms.php:207
4931
- #: modules/multiple-forms/register-forms.php:231
4932
  msgid "Display Messages"
4933
  msgstr "Meldungen anzeigen"
4934
 
4935
- #: modules/multiple-forms/edit-profile-forms.php:207
4936
- #: modules/multiple-forms/register-forms.php:231
4937
  msgid "Allowed time to display any success messages (in seconds)"
4938
  msgstr "Erlaubte Zeit (in Sekunden) um Erfolgsmeldungen anzuzeigen"
4939
 
4940
- #: modules/multiple-forms/edit-profile-forms.php:208
4941
  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"
4942
  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"
4943
 
4944
- #: modules/multiple-forms/edit-profile-forms.php:215
4945
  msgid "After Profile Update..."
4946
  msgstr "Nach Profil-Änderung..."
4947
 
4948
- #: modules/multiple-forms/edit-profile-forms.php:241
4949
- #: modules/multiple-forms/register-forms.php:262
4950
  msgid "Add New Field to the List"
4951
  msgstr "Neues Feld zur Liste hinzufügen"
4952
 
4953
- #: modules/multiple-forms/edit-profile-forms.php:245
4954
- #: modules/multiple-forms/register-forms.php:266
4955
  msgid "Choose one of the supported fields you manage <a href=\""
4956
  msgstr "Wählen Sie eines der unterstützten Felder, die Sie verwalten aus <a href=\""
4957
 
4958
- #: modules/multiple-forms/multiple-forms.php:406
4959
  msgid "<pre>Title (Type)</pre>"
4960
  msgstr "<pre>Titel (Type)</pre>"
4961
 
4962
- #: modules/multiple-forms/multiple-forms.php:222
4963
  msgid "You need to specify the title of the form before creating it"
4964
  msgstr "Sie müssen dem Formular einen Titel geben, bevor Sie es anlegen können."
4965
 
4966
- #: modules/multiple-forms/register-forms.php:11
4967
- #: modules/multiple-forms/register-forms.php:12
4968
  msgid "Registration Form"
4969
  msgstr "Registrierungsformular"
4970
 
4971
- #: modules/multiple-forms/register-forms.php:14
4972
  msgid "Add new Registration Form"
4973
  msgstr "Neues Registrierungsformular hinzufügen"
4974
 
4975
- #: modules/multiple-forms/register-forms.php:15
4976
  msgid "Edit the Registration Forms"
4977
  msgstr "Anmeldeformulare bearbeiten"
4978
 
4979
- #: modules/multiple-forms/register-forms.php:16
4980
  msgid "New Registration Form"
4981
  msgstr "Neues Registrierungsformular"
4982
 
4983
- #: modules/multiple-forms/register-forms.php:17
4984
- #: modules/multiple-forms/register-forms.php:23
4985
  msgid "Registration Forms"
4986
  msgstr "Registrierungsformulare"
4987
 
4988
- #: modules/multiple-forms/register-forms.php:18
4989
  msgid "View the Registration Form"
4990
  msgstr "Registrierungsformular ansehen"
4991
 
4992
- #: modules/multiple-forms/register-forms.php:19
4993
  msgid "Search the Registration Forms"
4994
  msgstr "Registrierungsformulare durchsuchen"
4995
 
4996
- #: modules/multiple-forms/register-forms.php:20
4997
  msgid "No Registration Form found"
4998
  msgstr "Kein Registrierungsformular gefunden"
4999
 
5000
- #: modules/multiple-forms/register-forms.php:21
5001
  msgid "No Registration Forms found in trash"
5002
  msgstr "Keine Registrierungsformulare wurden im Papierkorb gefunden"
5003
 
5004
- #: modules/multiple-forms/register-forms.php:219
5005
  msgid "Default Role"
5006
  msgstr "Standardrolle"
5007
 
5008
- #: modules/multiple-forms/register-forms.php:228
5009
  msgid "Set Role"
5010
  msgstr "Rolle einstellen"
5011
 
5012
- #: modules/multiple-forms/register-forms.php:228
5013
  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"
5014
  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. "
5015
 
5016
- #: modules/multiple-forms/register-forms.php:229
5017
  msgid "Automatically Log In"
5018
  msgstr "Automatisch einloggen"
5019
 
5020
- #: modules/multiple-forms/register-forms.php:229
5021
  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"
5022
  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."
5023
 
5024
- #: modules/multiple-forms/register-forms.php:232
5025
  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"
5026
  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"
5027
 
5028
- #: modules/multiple-forms/register-forms.php:238
5029
  msgid "After Registration..."
5030
  msgstr "Nach der Registrierung..."
5031
 
5032
- #: modules/user-listing/userlisting.php:1021
5033
- #: modules/user-listing/userlisting.php:1468
5034
- #: modules/user-listing/userlisting.php:1886
5035
- #: modules/user-listing/userlisting.php:2355
5036
  msgid "Search Users by All Fields"
5037
  msgstr "Suche Benutzer über alle Felder"
5038
 
5039
- #: modules/user-listing/userlisting.php:14
5040
  msgid "Add new User Listing"
5041
  msgstr "Neue Benutzerliste hinzufügen"
5042
 
5043
- #: modules/user-listing/userlisting.php:15
5044
  msgid "Edit the User Listing"
5045
  msgstr "Benutzerliste bearbeiten"
5046
 
5047
- #: modules/user-listing/userlisting.php:16
5048
  msgid "New User Listing"
5049
  msgstr "Neue Benutzerliste"
5050
 
5051
- #: modules/user-listing/userlisting.php:18
5052
  msgid "View the User Listing"
5053
  msgstr "Benutzerliste anzeigen"
5054
 
5055
- #: modules/user-listing/userlisting.php:19
5056
  msgid "Search the User Listing"
5057
  msgstr "Benutzerliste durchsuchen"
5058
 
5059
- #: modules/user-listing/userlisting.php:20
5060
  msgid "No User Listing found"
5061
  msgstr "Keine Benutzereinträge gefunden"
5062
 
5063
- #: modules/user-listing/userlisting.php:21
5064
  msgid "No User Listing found in trash"
5065
  msgstr "Keine Benutzerliste im Papierkorb gefunden"
5066
 
5067
- #: modules/user-listing/userlisting.php:105
5068
  msgid "Display name as"
5069
  msgstr "Name anzeigen als"
5070
 
5071
- #: modules/user-listing/userlisting.php:150
5072
- #: modules/user-listing/userlisting.php:2156
5073
  msgid "Registration Date"
5074
  msgstr "Registrierungsdatum"
5075
 
5076
- #: modules/user-listing/userlisting.php:151
5077
- #: modules/user-listing/userlisting.php:2161
5078
  msgid "Number of Posts"
5079
  msgstr "Beitragsanzahl"
5080
 
5081
- #: modules/user-listing/userlisting.php:155
5082
  msgid "More Info"
5083
  msgstr "Mehr Info"
5084
 
5085
- #: modules/user-listing/userlisting.php:156
5086
  msgid "More Info Url"
5087
  msgstr "Url für weitere Informationen"
5088
 
5089
- #: modules/user-listing/userlisting.php:157
5090
  msgid "Avatar or Gravatar"
5091
  msgstr "Profilbild oder Gravatar"
5092
 
5093
- #: modules/user-listing/userlisting.php:196
5094
- #: modules/user-listing/userlisting.php:227
5095
  msgid "Extra Functions"
5096
  msgstr "Zusatzfunktionen"
5097
 
5098
- #: modules/user-listing/userlisting.php:199
5099
  msgid "Pagination"
5100
  msgstr "Pagination"
5101
 
5102
- #: modules/user-listing/userlisting.php:200
5103
  msgid "Search all Fields"
5104
  msgstr "Alle Felder durchsuchen"
5105
 
5106
- #: modules/user-listing/userlisting.php:229
5107
  msgid "Go Back Link"
5108
  msgstr "\"Zurück\"-Link"
5109
 
5110
- #: modules/user-listing/userlisting.php:247
5111
  msgid "All-userlisting Template"
5112
  msgstr "Vorlage für globale Benutzerliste"
5113
 
5114
- #: modules/user-listing/userlisting.php:250
5115
  msgid "Single-userlisting Template"
5116
  msgstr "Vorlage für Einzelbenutzerliste"
5117
 
5118
- #: modules/user-listing/userlisting.php:733
5119
  msgid "First/Lastname"
5120
  msgstr "Vor- / Nachname"
5121
 
5122
- #: modules/user-listing/userlisting.php:281
5123
- #: modules/user-listing/userlisting.php:739
5124
  msgid "Sign-up Date"
5125
  msgstr "Anmeldungsdatum"
5126
 
5127
- #: modules/user-listing/userlisting.php:748
5128
- #: modules/user-listing/userlisting.php:2159
5129
  msgid "Display Name"
5130
  msgstr "Anzeigename"
5131
 
5132
- #: modules/user-listing/userlisting.php:280
5133
- #: modules/user-listing/userlisting.php:757
5134
  msgid "Posts"
5135
  msgstr "Beiträge"
5136
 
5137
- #: modules/user-listing/userlisting.php:760
5138
- #: modules/user-listing/userlisting.php:2166
5139
  msgid "Aim"
5140
  msgstr "Aim"
5141
 
5142
- #: modules/user-listing/userlisting.php:763
5143
- #: modules/user-listing/userlisting.php:2167
5144
  msgid "Yim"
5145
  msgstr "Yim"
5146
 
5147
- #: modules/user-listing/userlisting.php:766
5148
- #: modules/user-listing/userlisting.php:2168
5149
  msgid "Jabber"
5150
  msgstr "Jabber"
5151
 
5152
- #: modules/user-listing/userlisting.php:1273
5153
  msgid "Click here to see more information about this user"
5154
  msgstr "Klicke hier für weitere Informationen über diesen Benutzer"
5155
 
5156
- #: modules/user-listing/userlisting.php:1273
5157
  msgid "More..."
5158
  msgstr "Mehr..."
5159
 
5160
- #: modules/user-listing/userlisting.php:1276
5161
  msgid "Click here to see more information about this user."
5162
  msgstr "Klicke hier für weitere Informationen über diesen Benutzer "
5163
 
5164
- #: modules/user-listing/userlisting.php:1422
5165
- #: modules/user-listing/userlisting.php:1425
5166
  msgid "Click here to go back"
5167
  msgstr "Klicke hier, um zurück zu gehen"
5168
 
5169
- #: modules/user-listing/userlisting.php:1422
5170
  msgid "Back"
5171
  msgstr "Zurück"
5172
 
5173
- #: modules/user-listing/userlisting.php:1455
5174
  msgid "&laquo;&laquo; First"
5175
  msgstr "&laquo;&laquo; Anfang"
5176
 
5177
- #: modules/user-listing/userlisting.php:1456
5178
  msgid "&laquo; Prev"
5179
  msgstr "&laquo; Zurück"
5180
 
5181
- #: modules/user-listing/userlisting.php:1457
5182
  msgid "Next &raquo; "
5183
  msgstr "Nächste Seite &raquo; "
5184
 
5185
- #: modules/user-listing/userlisting.php:1458
5186
  msgid "Last &raquo;&raquo;"
5187
  msgstr "Ende &raquo;&raquo;"
5188
 
5189
- #: modules/user-listing/userlisting.php:1487
5190
  msgid "You don't have any pagination settings on this userlisting!"
5191
  msgstr "Sie haben keine Paginations-Einstellungen für diese Benutzerliste getätigt!"
5192
 
5193
- #: modules/user-listing/userlisting.php:1903
5194
  msgid "Search"
5195
  msgstr "Suchen"
5196
 
5197
- #: modules/user-listing/userlisting.php:1904
5198
  msgid "Clear Results"
5199
  msgstr "Ergebnisse löschen"
5200
 
5201
- #: modules/user-listing/userlisting.php:2098
5202
- #: modules/user-listing/userlisting.php:2102
5203
  msgid "Extra shortcode parameters"
5204
  msgstr "Zusätzliche Shortcode-Parameter"
5205
 
5206
- #: modules/user-listing/userlisting.php:2105
5207
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5208
  msgstr "Anzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld haben"
5209
 
5210
- #: modules/user-listing/userlisting.php:2106
5211
  msgid "Example:"
5212
  msgstr "Beispiel:"
5213
 
5214
- #: modules/user-listing/userlisting.php:2108
5215
  msgid "Remember though, that the field-value combination must exist in the database."
5216
  msgstr "Denken Sie daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss."
5217
 
5218
- #: modules/user-listing/userlisting.php:2183
5219
  msgid "Random (very slow on large databases > 10K user)"
5220
  msgstr "Random (sehr langsam auf große Datenbanken > 10K Benutzer)"
5221
 
5222
- #: modules/user-listing/userlisting.php:2195
5223
  msgid "Roles to Display"
5224
  msgstr "Rollen anzeigen"
5225
 
5226
- #: modules/user-listing/userlisting.php:2195
5227
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5228
  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"
5229
 
5230
- #: modules/user-listing/userlisting.php:2196
5231
  msgid "Number of Users/Page"
5232
  msgstr "Anzahl Benutzer/Seite"
5233
 
5234
- #: modules/user-listing/userlisting.php:2197
5235
  msgid "Default Sorting Criteria"
5236
  msgstr "Standard-Sortierkriterien"
5237
 
5238
- #: modules/user-listing/userlisting.php:2197
5239
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5240
  msgstr "Festlegen der Standard-Sortierungskriterien <br/> Sie können temporär für jede neue Sitzung geändert werden."
5241
 
5242
- #: modules/user-listing/userlisting.php:2198
5243
  msgid "Default Sorting Order"
5244
  msgstr "Standard-Sortierreihenfolge"
5245
 
5246
- #: modules/user-listing/userlisting.php:2198
5247
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5248
  msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
5249
 
5250
- #: modules/user-listing/userlisting.php:2199
5251
  msgid "Avatar Size (All-userlisting)"
5252
  msgstr "Profilbild-Größe (alle Benutzereinträge)"
5253
 
5254
- #: modules/user-listing/userlisting.php:2199
5255
  msgid "Set the avatar size on the all-userlisting only"
5256
  msgstr "Legen Sie die Profilbildgröße für alle Benutzer-Listen fest."
5257
 
5258
- #: modules/user-listing/userlisting.php:2200
5259
  msgid "Avatar Size (Single-userlisting)"
5260
  msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)"
5261
 
5262
- #: modules/user-listing/userlisting.php:2200
5263
  msgid "Set the avatar size on the single-userlisting only"
5264
  msgstr "Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)"
5265
 
5266
- #: modules/user-listing/userlisting.php:2201
5267
  msgid "Visible only to logged in users?"
5268
  msgstr "Nur für angemeldete Benutzer sichtbar?"
5269
 
5270
- #: modules/user-listing/userlisting.php:2201
5271
  msgid "The userlisting will only be visible only to the logged in users"
5272
  msgstr "Die Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein"
5273
 
5274
- #: modules/user-listing/userlisting.php:2202
5275
  msgid "Visible to following Roles"
5276
  msgstr "Für folgende Rollen sichtbar"
5277
 
5278
- #: modules/user-listing/userlisting.php:2202
5279
  msgid "The userlisting will only be visible to the following roles"
5280
  msgstr " Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein."
5281
 
5282
- #: modules/user-listing/userlisting.php:2208
5283
  msgid "Userlisting Settings"
5284
  msgstr "Einstellungen für Benutzerliste"
5285
 
5286
- #: modules/user-listing/userlisting.php:2331
5287
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5288
  msgstr "Sie müssen die Benutzerlisten-Funktion innerhalb des Tabs \"Module\" aktivieren!"
5289
 
5290
- #: modules/user-listing/userlisting.php:2331
5291
  msgid "You can find it in the Profile Builder menu."
5292
  msgstr "Sie finden es im Menü vom Profile Builder"
5293
 
5294
- #: modules/user-listing/userlisting.php:2494
5295
  msgid "No results found!"
5296
  msgstr "Es wurden keine Ergebnisse gefunden!"
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"
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"
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"
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"
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"
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"
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"
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"
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"
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"
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!"
translation/profile-builder-es_ES.mo CHANGED
Binary file
translation/profile-builder-es_ES.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-11-28 13:12:37+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,2890 +10,3117 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
- #: admin/manage-fields.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  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"
15
  msgstr ""
16
 
17
- #: modules/custom-redirects/custom_redirects_admin.php:244
18
  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."
19
  msgstr ""
20
 
21
- #: admin/manage-fields.php:1214
22
  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."
23
  msgstr ""
24
 
25
- #: modules/custom-redirects/custom_redirects_admin.php:240
26
  msgid "Multiple Registration and Edit Profile form settings Redirects"
27
  msgstr ""
28
 
29
- #: admin/register-version.php:251
30
  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>"
31
  msgstr ""
32
 
33
- #: admin/register-version.php:246
34
  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>"
35
  msgstr ""
36
 
37
- #: front-end/recover.php:151
38
  msgid "You are already logged in. You can change your password on the edit profile form."
39
  msgstr ""
40
 
41
- #: front-end/default-fields/blog-details/blog-details.php:70
42
  msgid "Your site url will look like this:<br>"
43
  msgstr ""
44
 
45
- #: features/functions.php:909
46
  msgid "<br><br>You can visit your site at "
47
- msgstr ""
48
 
49
- #: features/functions.php:896
50
  msgid "<br><br>Also, you will be able to visit your site at "
51
  msgstr ""
52
 
53
- #: front-end/default-fields/blog-details/blog-details.php:138
54
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
55
  msgstr ""
56
 
57
- #: front-end/default-fields/blog-details/blog-details.php:116
58
  msgid "Site Title"
59
- msgstr ""
60
 
61
- #: front-end/default-fields/blog-details/blog-details.php:93
62
  msgid "Site URL slug"
63
  msgstr ""
64
 
65
- #: front-end/default-fields/blog-details/blog-details.php:63
66
  msgid "Yes, I'd like to create a new site"
67
- msgstr ""
68
 
69
- #: modules/email-customizer/email-customizer.php:36
70
- #: modules/user-listing/userlisting.php:118
71
  msgid "Blog URL"
72
  msgstr ""
73
 
74
- #: admin/admin-functions.php:44
75
  msgid "Blog Details - only appears on the Registration page!"
76
  msgstr ""
77
 
78
- #: admin/manage-fields.php:219
79
  msgid "Blog Details"
80
  msgstr ""
81
 
82
- #: admin/pms-cross-promotion.php:239
83
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
84
  msgstr ""
85
 
86
- #: features/email-confirmation/email-confirmation.php:578
87
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
88
- msgstr ""
89
 
90
- #: modules/user-listing/userlisting.php:1303
91
  msgid "View Map"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgstr ""
93
 
94
- #: admin/add-ons.php:103
 
 
 
 
95
  msgid "Available in Hobbyist and Pro Versions"
96
  msgstr ""
97
 
98
- #: admin/add-ons.php:105
99
  msgid "Available in All Versions"
100
- msgstr ""
101
 
102
- #: admin/add-ons.php:148
103
  msgid "Learn More"
104
- msgstr ""
105
 
106
- #: admin/basic-info.php:99
107
  msgid "Timepicker"
108
  msgstr ""
109
 
110
- #: admin/basic-info.php:100
111
  msgid "Colorpicker"
112
  msgstr ""
113
 
114
- #: admin/basic-info.php:103
115
  msgid "Currency Select"
116
  msgstr ""
117
 
118
- #: admin/basic-info.php:109
119
  msgid "Number"
120
- msgstr ""
121
 
122
- #: admin/basic-info.php:114
123
  msgid "Validation"
124
- msgstr ""
125
 
126
- #: admin/basic-info.php:115
127
  msgid "Map"
128
- msgstr ""
129
 
130
- #: admin/basic-info.php:116
131
  msgid "HTML"
132
- msgstr ""
133
 
134
- #: admin/basic-info.php:162 modules/modules.php:117
 
135
  msgid "Repeater Fields"
136
- msgstr ""
137
 
138
- #: admin/basic-info.php:163
139
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
  msgstr ""
141
 
142
- #: admin/general-settings.php:62
143
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
  msgstr ""
145
 
146
- #: admin/manage-fields.php:118
147
  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"
148
  msgstr ""
149
 
150
- #: admin/manage-fields.php:141
151
  msgid "Show Currency Symbol"
152
  msgstr ""
153
 
154
- #: admin/manage-fields.php:141
155
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
156
  msgstr ""
157
 
158
- #: admin/manage-fields.php:142
159
  msgid "Show Post Type"
160
  msgstr ""
161
 
162
- #: admin/manage-fields.php:142
163
  msgid "Posts from what post type will be displayed in the select."
164
  msgstr ""
165
 
166
- #: admin/manage-fields.php:143
167
  msgid "Allowable Values"
168
  msgstr ""
169
 
170
- #: admin/manage-fields.php:143
171
  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."
172
  msgstr ""
173
 
174
- #: admin/manage-fields.php:144
175
  msgid "Error Message"
176
  msgstr ""
177
 
178
- #: admin/manage-fields.php:144
179
  msgid "Set a custom error message that will be displayed to the user."
180
  msgstr ""
181
 
182
- #: admin/manage-fields.php:145
183
  msgid "Time Format"
184
  msgstr ""
185
 
186
- #: admin/manage-fields.php:145
187
  msgid "Specify the time format."
188
  msgstr ""
189
 
190
- #: admin/manage-fields.php:146
191
  msgid "Google Maps API Key"
192
- msgstr ""
193
 
194
- #: admin/manage-fields.php:146
195
  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."
196
  msgstr ""
197
 
198
- #: admin/manage-fields.php:147
199
  msgid "Default Latitude"
200
  msgstr ""
201
 
202
- #: admin/manage-fields.php:147
203
  msgid "The latitude at which the map should be displayed when no pins are attached."
204
  msgstr ""
205
 
206
- #: admin/manage-fields.php:148
207
  msgid "Default Longitude"
208
  msgstr ""
209
 
210
- #: admin/manage-fields.php:148
211
  msgid "The longitude at which the map should be displayed when no pins are attached."
212
  msgstr ""
213
 
214
- #: admin/manage-fields.php:149
215
  msgid "Default Zoom Level"
216
  msgstr ""
217
 
218
- #: admin/manage-fields.php:149
219
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
220
  msgstr ""
221
 
222
- #: admin/manage-fields.php:150
223
  msgid "Map Height"
224
  msgstr ""
225
 
226
- #: admin/manage-fields.php:150
227
  msgid "The height of the map."
228
  msgstr ""
229
 
230
- #: admin/manage-fields.php:152
231
  msgid "HTML Content"
232
- msgstr ""
233
 
234
- #: admin/manage-fields.php:152
235
  msgid "Add your HTML (or text) content"
236
  msgstr ""
237
 
238
- #: admin/manage-fields.php:153
239
  msgid "Phone Format"
240
  msgstr ""
241
 
242
- #: admin/manage-fields.php:153
243
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
244
  msgstr ""
245
 
246
- #: admin/manage-fields.php:153
247
  msgid "Eg. (###) ###-####"
248
  msgstr ""
249
 
250
- #: admin/manage-fields.php:153
251
  msgid "Empty field won't check for correct phone number."
252
  msgstr ""
253
 
254
- #: admin/manage-fields.php:154
255
  msgid "Heading Tag"
256
  msgstr ""
257
 
258
- #: admin/manage-fields.php:154
259
  msgid "Change heading field size on front-end forms"
260
  msgstr ""
261
 
262
- #: admin/manage-fields.php:155
263
  msgid "Min Number Value"
264
- msgstr ""
265
 
266
- #: admin/manage-fields.php:155
267
  msgid "Min allowed number value (0 to allow only positive numbers)"
268
  msgstr ""
269
 
270
- #: admin/manage-fields.php:155
271
  msgid "Leave it empty for no min value"
272
- msgstr ""
273
 
274
- #: admin/manage-fields.php:156
275
  msgid "Max Number Value"
276
- msgstr ""
277
 
278
- #: admin/manage-fields.php:156
279
  msgid "Max allowed number value (0 to allow only negative numbers)"
280
- msgstr ""
281
 
282
- #: admin/manage-fields.php:156
283
  msgid "Leave it empty for no max value"
284
- msgstr ""
285
 
286
- #: admin/manage-fields.php:157
287
  msgid "Number Step Value"
288
  msgstr ""
289
 
290
- #: admin/manage-fields.php:157
291
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
292
  msgstr ""
293
 
294
- #: admin/manage-fields.php:157
295
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
296
  msgstr ""
297
 
298
- #: admin/manage-fields.php:157
299
  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)"
300
  msgstr ""
301
 
302
- #: admin/manage-fields.php:157
303
  msgid "Leave it empty for no restriction"
304
- msgstr ""
305
 
306
- #: admin/manage-fields.php:561
307
  msgid "Albania Lek"
308
  msgstr ""
309
 
310
- #: admin/manage-fields.php:562
311
  msgid "Afghanistan Afghani"
312
  msgstr ""
313
 
314
- #: admin/manage-fields.php:563
315
  msgid "Argentina Peso"
316
  msgstr ""
317
 
318
- #: admin/manage-fields.php:564
319
  msgid "Aruba Guilder"
320
  msgstr ""
321
 
322
- #: admin/manage-fields.php:565
323
  msgid "Australia Dollar"
324
  msgstr ""
325
 
326
- #: admin/manage-fields.php:566
327
  msgid "Azerbaijan New Manat"
328
  msgstr ""
329
 
330
- #: admin/manage-fields.php:567
331
  msgid "Bahamas Dollar"
332
  msgstr ""
333
 
334
- #: admin/manage-fields.php:568
335
  msgid "Barbados Dollar"
336
  msgstr ""
337
 
338
- #: admin/manage-fields.php:569
339
  msgid "Bangladeshi taka"
340
  msgstr ""
341
 
342
- #: admin/manage-fields.php:570
343
  msgid "Belarus Ruble"
344
  msgstr ""
345
 
346
- #: admin/manage-fields.php:571
347
  msgid "Belize Dollar"
348
  msgstr ""
349
 
350
- #: admin/manage-fields.php:572
351
  msgid "Bermuda Dollar"
352
  msgstr ""
353
 
354
- #: admin/manage-fields.php:573
355
  msgid "Bolivia Boliviano"
356
  msgstr ""
357
 
358
- #: admin/manage-fields.php:574
359
  msgid "Bosnia and Herzegovina Convertible Marka"
360
  msgstr ""
361
 
362
- #: admin/manage-fields.php:575
363
  msgid "Botswana Pula"
364
  msgstr ""
365
 
366
- #: admin/manage-fields.php:576
367
  msgid "Bulgaria Lev"
368
  msgstr ""
369
 
370
- #: admin/manage-fields.php:577
371
  msgid "Brazil Real"
372
  msgstr ""
373
 
374
- #: admin/manage-fields.php:578
375
  msgid "Brunei Darussalam Dollar"
376
  msgstr ""
377
 
378
- #: admin/manage-fields.php:579
379
  msgid "Cambodia Riel"
380
  msgstr ""
381
 
382
- #: admin/manage-fields.php:580
383
  msgid "Canada Dollar"
384
  msgstr ""
385
 
386
- #: admin/manage-fields.php:581
387
  msgid "Cayman Islands Dollar"
388
  msgstr ""
389
 
390
- #: admin/manage-fields.php:582
391
  msgid "Chile Peso"
392
  msgstr ""
393
 
394
- #: admin/manage-fields.php:583
395
  msgid "China Yuan Renminbi"
396
  msgstr ""
397
 
398
- #: admin/manage-fields.php:584
399
  msgid "Colombia Peso"
400
  msgstr ""
401
 
402
- #: admin/manage-fields.php:585
403
  msgid "Costa Rica Colon"
404
  msgstr ""
405
 
406
- #: admin/manage-fields.php:586
407
  msgid "Croatia Kuna"
408
  msgstr ""
409
 
410
- #: admin/manage-fields.php:587
411
  msgid "Cuba Peso"
412
  msgstr ""
413
 
414
- #: admin/manage-fields.php:588
415
  msgid "Czech Republic Koruna"
416
  msgstr ""
417
 
418
- #: admin/manage-fields.php:589
419
  msgid "Denmark Krone"
420
  msgstr ""
421
 
422
- #: admin/manage-fields.php:590
423
  msgid "Dominican Republic Peso"
424
  msgstr ""
425
 
426
- #: admin/manage-fields.php:591
427
  msgid "East Caribbean Dollar"
428
  msgstr ""
429
 
430
- #: admin/manage-fields.php:592
431
  msgid "Egypt Pound"
432
  msgstr ""
433
 
434
- #: admin/manage-fields.php:593
435
  msgid "El Salvador Colon"
436
  msgstr ""
437
 
438
- #: admin/manage-fields.php:594
439
  msgid "Estonia Kroon"
440
  msgstr ""
441
 
442
- #: admin/manage-fields.php:595
443
  msgid "Euro"
444
  msgstr ""
445
 
446
- #: admin/manage-fields.php:596
447
  msgid "Falkland Islands (Malvinas) Pound"
448
  msgstr ""
449
 
450
- #: admin/manage-fields.php:597
451
  msgid "Fiji Dollar"
452
  msgstr ""
453
 
454
- #: admin/manage-fields.php:598
455
  msgid "Ghana Cedis"
456
  msgstr ""
457
 
458
- #: admin/manage-fields.php:599
459
  msgid "Gibraltar Pound"
460
  msgstr ""
461
 
462
- #: admin/manage-fields.php:600
463
  msgid "Guatemala Quetzal"
464
  msgstr ""
465
 
466
- #: admin/manage-fields.php:601
467
  msgid "Guernsey Pound"
468
  msgstr ""
469
 
470
- #: admin/manage-fields.php:602
471
  msgid "Guyana Dollar"
472
  msgstr ""
473
 
474
- #: admin/manage-fields.php:603
475
  msgid "Honduras Lempira"
476
  msgstr ""
477
 
478
- #: admin/manage-fields.php:604
479
  msgid "Hong Kong Dollar"
480
  msgstr ""
481
 
482
- #: admin/manage-fields.php:605
483
  msgid "Hungary Forint"
484
  msgstr ""
485
 
486
- #: admin/manage-fields.php:606
487
  msgid "Iceland Krona"
488
  msgstr ""
489
 
490
- #: admin/manage-fields.php:607
491
  msgid "India Rupee"
492
  msgstr ""
493
 
494
- #: admin/manage-fields.php:608
495
  msgid "Indonesia Rupiah"
496
  msgstr ""
497
 
498
- #: admin/manage-fields.php:609
499
  msgid "Iran Rial"
500
  msgstr ""
501
 
502
- #: admin/manage-fields.php:610
503
  msgid "Isle of Man Pound"
504
  msgstr ""
505
 
506
- #: admin/manage-fields.php:611
507
  msgid "Israel Shekel"
508
  msgstr ""
509
 
510
- #: admin/manage-fields.php:612
511
  msgid "Jamaica Dollar"
512
  msgstr ""
513
 
514
- #: admin/manage-fields.php:613
515
  msgid "Japan Yen"
516
  msgstr ""
517
 
518
- #: admin/manage-fields.php:614
519
  msgid "Jersey Pound"
520
  msgstr ""
521
 
522
- #: admin/manage-fields.php:615
523
  msgid "Kazakhstan Tenge"
524
  msgstr ""
525
 
526
- #: admin/manage-fields.php:616
527
  msgid "Korea (North) Won"
528
  msgstr ""
529
 
530
- #: admin/manage-fields.php:617
531
  msgid "Korea (South) Won"
532
  msgstr ""
533
 
534
- #: admin/manage-fields.php:618
535
  msgid "Kyrgyzstan Som"
536
  msgstr ""
537
 
538
- #: admin/manage-fields.php:619
539
  msgid "Laos Kip"
540
  msgstr ""
541
 
542
- #: admin/manage-fields.php:620
543
  msgid "Latvia Lat"
544
  msgstr ""
545
 
546
- #: admin/manage-fields.php:621
547
  msgid "Lebanon Pound"
548
  msgstr ""
549
 
550
- #: admin/manage-fields.php:622
551
  msgid "Liberia Dollar"
552
  msgstr ""
553
 
554
- #: admin/manage-fields.php:623
555
  msgid "Lithuania Litas"
556
  msgstr ""
557
 
558
- #: admin/manage-fields.php:624
559
  msgid "Macedonia Denar"
560
  msgstr ""
561
 
562
- #: admin/manage-fields.php:625
563
  msgid "Malaysia Ringgit"
564
  msgstr ""
565
 
566
- #: admin/manage-fields.php:626
567
  msgid "Mauritius Rupee"
568
  msgstr ""
569
 
570
- #: admin/manage-fields.php:627
571
  msgid "Mexico Peso"
572
- msgstr ""
573
 
574
- #: admin/manage-fields.php:628
575
  msgid "Mongolia Tughrik"
576
  msgstr ""
577
 
578
- #: admin/manage-fields.php:629
579
  msgid "Mozambique Metical"
580
  msgstr ""
581
 
582
- #: admin/manage-fields.php:630
583
  msgid "Namibia Dollar"
584
  msgstr ""
585
 
586
- #: admin/manage-fields.php:631
587
  msgid "Nepal Rupee"
588
  msgstr ""
589
 
590
- #: admin/manage-fields.php:632
591
  msgid "Netherlands Antilles Guilder"
592
  msgstr ""
593
 
594
- #: admin/manage-fields.php:633
595
  msgid "New Zealand Dollar"
596
  msgstr ""
597
 
598
- #: admin/manage-fields.php:634
599
  msgid "Nicaragua Cordoba"
600
  msgstr ""
601
 
602
- #: admin/manage-fields.php:635
603
  msgid "Nigeria Naira"
604
  msgstr ""
605
 
606
- #: admin/manage-fields.php:636
607
  msgid "Norway Krone"
608
  msgstr ""
609
 
610
- #: admin/manage-fields.php:637
611
  msgid "Oman Rial"
612
  msgstr ""
613
 
614
- #: admin/manage-fields.php:638
615
  msgid "Pakistan Rupee"
616
  msgstr ""
617
 
618
- #: admin/manage-fields.php:639
619
  msgid "Panama Balboa"
620
  msgstr ""
621
 
622
- #: admin/manage-fields.php:640
623
  msgid "Paraguay Guarani"
624
  msgstr ""
625
 
626
- #: admin/manage-fields.php:641
627
  msgid "Peru Nuevo Sol"
628
  msgstr ""
629
 
630
- #: admin/manage-fields.php:642
631
  msgid "Philippines Peso"
632
  msgstr ""
633
 
634
- #: admin/manage-fields.php:643
635
  msgid "Poland Zloty"
636
  msgstr ""
637
 
638
- #: admin/manage-fields.php:644
639
  msgid "Qatar Riyal"
640
  msgstr ""
641
 
642
- #: admin/manage-fields.php:645
643
  msgid "Romania New Leu"
644
  msgstr ""
645
 
646
- #: admin/manage-fields.php:646
647
  msgid "Russia Ruble"
648
  msgstr ""
649
 
650
- #: admin/manage-fields.php:647
651
  msgid "Saint Helena Pound"
652
  msgstr ""
653
 
654
- #: admin/manage-fields.php:648
655
  msgid "Saudi Arabia Riyal"
656
  msgstr ""
657
 
658
- #: admin/manage-fields.php:649
659
  msgid "Serbia Dinar"
660
  msgstr ""
661
 
662
- #: admin/manage-fields.php:650
663
  msgid "Seychelles Rupee"
664
  msgstr ""
665
 
666
- #: admin/manage-fields.php:651
667
  msgid "Singapore Dollar"
668
  msgstr ""
669
 
670
- #: admin/manage-fields.php:652
671
  msgid "Solomon Islands Dollar"
672
  msgstr ""
673
 
674
- #: admin/manage-fields.php:653
675
  msgid "Somalia Shilling"
676
  msgstr ""
677
 
678
- #: admin/manage-fields.php:654
679
  msgid "South Africa Rand"
680
  msgstr ""
681
 
682
- #: admin/manage-fields.php:655
683
  msgid "Sri Lanka Rupee"
684
  msgstr ""
685
 
686
- #: admin/manage-fields.php:656
687
  msgid "Sweden Krona"
688
  msgstr ""
689
 
690
- #: admin/manage-fields.php:657
691
  msgid "Switzerland Franc"
692
  msgstr ""
693
 
694
- #: admin/manage-fields.php:658
695
  msgid "Suriname Dollar"
696
  msgstr ""
697
 
698
- #: admin/manage-fields.php:659
699
  msgid "Syria Pound"
700
  msgstr ""
701
 
702
- #: admin/manage-fields.php:660
703
  msgid "Taiwan New Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:661
707
  msgid "Thailand Baht"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:662
711
  msgid "Trinidad and Tobago Dollar"
712
  msgstr ""
713
 
714
- #: admin/manage-fields.php:663 admin/manage-fields.php:664
 
715
  msgid "Turkey Lira"
716
  msgstr ""
717
 
718
- #: admin/manage-fields.php:665
719
  msgid "Tuvalu Dollar"
720
  msgstr ""
721
 
722
- #: admin/manage-fields.php:666
723
  msgid "Ukraine Hryvna"
724
  msgstr ""
725
 
726
- #: admin/manage-fields.php:667
727
  msgid "United Kingdom Pound"
728
  msgstr ""
729
 
730
- #: admin/manage-fields.php:668
731
  msgid "Uganda Shilling"
732
  msgstr ""
733
 
734
- #: admin/manage-fields.php:669
735
  msgid "US Dollar"
736
  msgstr ""
737
 
738
- #: admin/manage-fields.php:670
739
  msgid "Uruguay Peso"
740
  msgstr ""
741
 
742
- #: admin/manage-fields.php:671
743
  msgid "Uzbekistan Som"
744
  msgstr ""
745
 
746
- #: admin/manage-fields.php:672
747
  msgid "Venezuela Bolivar"
748
  msgstr ""
749
 
750
- #: admin/manage-fields.php:673
751
  msgid "Viet Nam Dong"
752
  msgstr ""
753
 
754
- #: admin/manage-fields.php:674
755
  msgid "Yemen Rial"
756
  msgstr ""
757
 
758
- #: admin/manage-fields.php:675
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
- #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
- #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
- #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
  msgid "You are not allowed to do this."
772
- msgstr ""
773
 
774
- #: features/admin-approval/class-admin-approval.php:461
775
- #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
777
- msgstr ""
778
 
779
- #: features/conditional-fields/conditional-fields.php:78
780
  msgid "Conditional Logic"
781
  msgstr ""
782
 
783
- #: features/conditional-fields/conditional-fields.php:79
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
- #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
791
- #: features/functions.php:685
792
  msgid "Incorrect phone number"
793
- msgstr ""
794
 
795
- #: front-end/class-formbuilder.php:113
796
  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."
797
  msgstr ""
798
 
799
- #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69
 
800
  msgid "Please add the Google Maps API key for this field."
801
- msgstr ""
802
 
803
- #: front-end/extra-fields/map/map.php:134
804
  msgid "Something went wrong. Please try again."
805
- msgstr ""
806
 
807
- #: front-end/extra-fields/number/number.php:69
808
  msgid "Please enter numbers only"
809
- msgstr ""
810
 
811
- #: front-end/extra-fields/number/number.php:73
812
  msgid "Value must be a multiplier of %1$s"
813
  msgstr ""
814
 
815
- #: front-end/extra-fields/number/number.php:77
816
  msgid "Value must be greater than or equal to %1$s"
817
  msgstr ""
818
 
819
- #: front-end/extra-fields/number/number.php:81
820
  msgid "Value must be less than or equal to %1$s"
821
  msgstr ""
822
 
823
- #: front-end/extra-fields/phone/phone.php:22
824
  msgid "Required phone number format: "
825
  msgstr ""
826
 
827
- #: front-end/extra-fields/select-country/select-country.php:10
828
  msgid "Bolivia, __( Plurinational State of"
829
  msgstr ""
830
 
831
- #: front-end/extra-fields/select-country/select-country.php:10
832
  msgid "Bonaire, __( Sint Eustatius and Saba"
833
  msgstr ""
834
 
835
- #: front-end/extra-fields/select-country/select-country.php:10
836
  msgid "Brunei Darussalam"
837
  msgstr ""
838
 
839
- #: front-end/extra-fields/select-country/select-country.php:10
840
  msgid "Cabo Verde"
841
  msgstr ""
842
 
843
- #: front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Cocos (Keeling) Islands"
845
  msgstr ""
846
 
847
- #: front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Congo"
849
  msgstr ""
850
 
851
- #: front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Congo, __( the Democratic Republic of the"
853
  msgstr ""
854
 
855
- #: front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cote dIvoire"
857
  msgstr ""
858
 
859
- #: front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Falkland Islands (Malvinas)"
861
  msgstr ""
862
 
863
- #: front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Holy See (Vatican City State)"
865
  msgstr ""
866
 
867
- #: front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Iran, __( Islamic Republic of"
869
  msgstr ""
870
 
871
- #: front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Korea, __( Democratic Peoples Republic of"
873
  msgstr ""
874
 
875
- #: front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Korea, __( Republic of"
877
  msgstr ""
878
 
879
- #: front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Lao Peoples Democratic Republic"
881
  msgstr ""
882
 
883
- #: front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Macedonia, __( the former Yugoslav Republic of"
885
  msgstr ""
886
 
887
- #: front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Micronesia, __( Federated States of"
889
  msgstr ""
890
 
891
- #: front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Moldova, __( Republic of"
893
  msgstr ""
894
 
895
- #: front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Palestine, __( State of"
897
  msgstr ""
898
 
899
- #: front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Russian Federation"
901
  msgstr ""
902
 
903
- #: front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
905
  msgstr ""
906
 
907
- #: front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Saint Martin (French part)"
909
  msgstr ""
910
 
911
- #: front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Sint Maarten (Dutch part)"
913
  msgstr ""
914
 
915
- #: front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Syrian Arab Republic"
917
  msgstr ""
918
 
919
- #: front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Taiwan, __( Province of China"
921
  msgstr ""
922
 
923
- #: front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Tanzania, __( United Republic of"
925
  msgstr ""
926
 
927
- #: front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Timor-Leste"
929
  msgstr ""
930
 
931
- #: front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Venezuela, __( Bolivarian Republic of"
933
  msgstr ""
934
 
935
- #: front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Viet Nam"
937
  msgstr ""
938
 
939
- #: front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Virgin Islands, __( British"
941
  msgstr ""
942
 
943
- #: front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Virgin Islands, __( U.S."
945
  msgstr ""
946
 
947
- #: modules/email-customizer/email-customizer.php:11
948
- #: modules/user-listing/userlisting.php:186
949
  msgid "User Fields Tags"
950
  msgstr ""
951
 
952
- #: modules/email-customizer/email-customizer.php:479
953
  msgid "The users selected password at signup"
954
  msgstr ""
955
 
956
- #: modules/email-customizer/user-email-customizer.php:278
957
  msgid "[{{site_name}}] Notice of Email Change"
958
  msgstr ""
959
 
960
- #: modules/email-customizer/user-email-customizer.php:289
961
  msgid "Changed Email Address Notification"
962
  msgstr ""
963
 
964
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
965
  msgid "Limit"
966
  msgstr ""
967
 
968
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
969
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
970
  msgstr ""
971
 
972
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
973
  msgid "General Limit"
974
  msgstr ""
975
 
976
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
977
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
978
  msgstr ""
979
 
980
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
981
  msgid "Limit reached message"
982
  msgstr ""
983
 
984
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
985
  msgid "The maximum number of fields has been reached."
986
  msgstr ""
987
 
988
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
989
  msgid "The popup message to display when the limit of repeater groups is reached."
990
  msgstr ""
991
 
992
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
993
  msgid "Limit per Role"
994
  msgstr ""
995
 
996
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
997
  msgid "Leave 0 for unlimited."
998
  msgstr ""
999
 
1000
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
1001
  msgid "Repeated field group"
1002
  msgstr ""
1003
 
1004
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
1005
  msgid "Manage field or group of fields that will be repeatable."
1006
  msgstr ""
1007
 
1008
- #: modules/repeater-field/admin/repeater-manage-fields.php:259
1009
  msgid "Edit field group"
1010
  msgstr ""
1011
 
1012
- #: modules/repeater-field/admin/repeater-manage-fields.php:260
1013
  msgid "Repeatable fields saved!"
1014
  msgstr ""
1015
 
1016
- #: modules/repeater-field/admin/repeater-manage-fields.php:277
1017
- #: modules/repeater-field/admin/repeater-manage-fields.php:326
1018
  msgid "Please enter a unique field title.\n"
1019
  msgstr ""
1020
 
1021
- #: modules/repeater-field/repeater-field.php:258
1022
  msgid "Are you sure you want to delete this?"
1023
  msgstr ""
1024
 
1025
- #: modules/user-listing/userlisting.php:192
1026
  msgid "Sort Tags"
1027
  msgstr ""
1028
 
1029
- #: modules/user-listing/userlisting.php:201
1030
- #: modules/user-listing/userlisting.php:2237
1031
  msgid "Faceted Menus"
1032
  msgstr ""
1033
 
1034
- #: modules/user-listing/userlisting.php:202
1035
  msgid "User Count"
1036
  msgstr ""
1037
 
1038
- #: modules/user-listing/userlisting.php:1536
1039
  msgid "Show All"
1040
- msgstr ""
1041
 
1042
- #: modules/user-listing/userlisting.php:1668
1043
  msgid "No options available"
1044
- msgstr ""
1045
 
1046
- #: modules/user-listing/userlisting.php:1807
1047
  msgid "Remove All Filters"
1048
- msgstr ""
1049
 
1050
- #: modules/user-listing/userlisting.php:2227
1051
  msgid "Label"
1052
- msgstr ""
1053
 
1054
- #: modules/user-listing/userlisting.php:2227
1055
  msgid "Choose the facet name that appears on the frontend"
1056
  msgstr ""
1057
 
1058
- #: modules/user-listing/userlisting.php:2228
1059
  msgid "Facet Type"
1060
  msgstr ""
1061
 
1062
- #: modules/user-listing/userlisting.php:2228
1063
  msgid "Choose the facet menu type"
1064
  msgstr ""
1065
 
1066
- #: modules/user-listing/userlisting.php:2229
1067
  msgid "Facet Meta"
1068
  msgstr ""
1069
 
1070
- #: modules/user-listing/userlisting.php:2229
1071
  msgid "Choose the meta field for the facet menu"
1072
  msgstr ""
1073
 
1074
- #: modules/user-listing/userlisting.php:2230
1075
  msgid "Behaviour"
1076
- msgstr ""
1077
 
1078
- #: modules/user-listing/userlisting.php:2230
1079
  msgid "Narrow the results"
1080
  msgstr ""
1081
 
1082
- #: modules/user-listing/userlisting.php:2230
1083
  msgid "Expand the results"
1084
  msgstr ""
1085
 
1086
- #: modules/user-listing/userlisting.php:2230
1087
  msgid "Choose how multiple selections affect the results"
1088
  msgstr ""
1089
 
1090
- #: modules/user-listing/userlisting.php:2231
1091
  msgid "Visible choices"
1092
  msgstr ""
1093
 
1094
- #: modules/user-listing/userlisting.php:2231
1095
  msgid "Show a toggle link after this many choices. Leave blank for all"
1096
  msgstr ""
1097
 
1098
- #: modules/user-listing/userlisting.php:2254
1099
  msgid "Search Fields"
1100
  msgstr ""
1101
 
1102
- #: modules/user-listing/userlisting.php:2254
1103
  msgid "Choose the fields in which the Search Field will look in"
1104
  msgstr ""
1105
 
1106
- #: modules/user-listing/userlisting.php:2259
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
- #: admin/add-ons.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  msgid "Recommended Plugins"
1112
  msgstr "Plugins recomendados"
1113
 
1114
- #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
 
1115
  msgid "Free"
1116
  msgstr "Gratis"
1117
 
1118
- #: admin/add-ons.php:221
1119
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
  msgstr "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el contenido en tu sitio de afiliación"
1121
 
1122
- #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
 
1123
  msgid "More Details"
1124
  msgstr "Mas detalles"
1125
 
1126
- #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
- #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
 
 
1128
  msgid "Plugin is <strong>inactive</strong>"
1129
  msgstr "Plugin <strong>desactivado</strong>"
1130
 
1131
- #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87
1132
- #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204
 
 
1133
  msgid "Plugin is <strong>active</strong>"
1134
  msgstr "Plugin <strong>activado</strong>"
1135
 
1136
- #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146
 
1137
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1138
  msgstr "No se pudo instalar el plugin. Reintente o <a href=\"%s\" target=\"_blank\">instale manualmente</a>."
1139
 
1140
- #: admin/pms-cross-promotion.php:10
1141
  msgid "Paid Accounts"
1142
  msgstr "Cuentas de Pago"
1143
 
1144
- #: admin/pms-cross-promotion.php:33
1145
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
  msgstr "Paid Member Subscription - un plugin gratuito de WordPress"
1147
 
1148
- #: admin/pms-cross-promotion.php:37
1149
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
  msgstr "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de registro le permitirán a tus usuario registrarse en cuentas de paga."
1151
 
1152
- #: admin/pms-cross-promotion.php:40
1153
  msgid "Paid & Free Subscriptions"
1154
  msgstr "Suscripciones Gratuitas y de Pago."
1155
 
1156
- #: admin/pms-cross-promotion.php:41
1157
  msgid "Restrict Content"
1158
  msgstr "Contenido restringido"
1159
 
1160
- #: admin/pms-cross-promotion.php:42
1161
  msgid "Member Management"
1162
  msgstr "Gestion de Miembros"
1163
 
1164
- #: admin/pms-cross-promotion.php:43
1165
  msgid "Email Templates"
1166
  msgstr "Plantillas de Correo Electronico"
1167
 
1168
- #: admin/pms-cross-promotion.php:44
1169
  msgid "Account Management"
1170
  msgstr "Administrar cuenta"
1171
 
1172
- #: admin/pms-cross-promotion.php:45
1173
  msgid "Subscription Management"
1174
  msgstr "Administrar suscripción"
1175
 
1176
- #: admin/pms-cross-promotion.php:46
1177
  msgid "Payment Management"
1178
  msgstr "Administrar pago"
1179
 
1180
- #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "El plugin está activado"
1183
 
1184
- #: admin/pms-cross-promotion.php:84
1185
  msgid "Plugin has been activated"
1186
  msgstr "El plugin ha sido activado"
1187
 
1188
- #: admin/pms-cross-promotion.php:91
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "El plugin ha sido desactivado"
1191
 
1192
- #: admin/pms-cross-promotion.php:104
1193
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
  msgstr "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el contenido de su página web."
1195
 
1196
- #: admin/pms-cross-promotion.php:155
1197
  msgid "Step by Step Quick Setup"
1198
  msgstr "Configuración Rapida Paso a Paso"
1199
 
1200
- #: features/email-confirmation/email-confirmation.php:400
1201
  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."
1202
  msgstr "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
1203
 
1204
- #: modules/custom-redirects/custom_redirects_admin.php:45
1205
  msgid "After Login"
1206
  msgstr "Después de Iniciar sesión"
1207
 
1208
- #: modules/custom-redirects/custom_redirects_admin.php:46
1209
  msgid "After Logout"
1210
  msgstr "Después de Terminar sesión"
1211
 
1212
- #: modules/custom-redirects/custom_redirects_admin.php:47
1213
  msgid "After Registration"
1214
  msgstr "Después de Registrarse"
1215
 
1216
- #: modules/custom-redirects/custom_redirects_admin.php:48
1217
  msgid "After Edit Profile"
1218
  msgstr ""
1219
 
1220
- #: modules/custom-redirects/custom_redirects_admin.php:49
1221
  msgid "After Successful Email Confirmation"
1222
  msgstr ""
1223
 
1224
- #: modules/custom-redirects/custom_redirects_admin.php:50
1225
  msgid "After Successful Password Reset"
1226
  msgstr ""
1227
 
1228
- #: modules/custom-redirects/custom_redirects_admin.php:51
1229
  msgid "Dashboard (redirect users from accessing the dashboard)"
1230
  msgstr ""
1231
 
1232
- #: modules/custom-redirects/custom_redirects_admin.php:55
1233
  msgid "User ID"
1234
  msgstr "Identidicación del usuario"
1235
 
1236
- #: modules/custom-redirects/custom_redirects_admin.php:61
1237
  msgid "User ID or Username"
1238
  msgstr "ID o Nombre de Usuario"
1239
 
1240
- #: modules/custom-redirects/custom_redirects_admin.php:62
1241
  msgid "User ID / Username"
1242
  msgstr ""
1243
 
1244
- #: modules/custom-redirects/custom_redirects_admin.php:62
1245
  msgid "Please select and enter the ID or username of your user."
1246
  msgstr "Por favor elije e ingrese el ID o el nombre de usuario de su cuenta."
1247
 
1248
- #: modules/custom-redirects/custom_redirects_admin.php:63
1249
- #: modules/custom-redirects/custom_redirects_admin.php:93
1250
- #: modules/custom-redirects/custom_redirects_admin.php:112
1251
- #: modules/custom-redirects/custom_redirects_admin.php:131
1252
  msgid "Redirect Type"
1253
  msgstr ""
1254
 
1255
- #: modules/custom-redirects/custom_redirects_admin.php:64
1256
- #: modules/custom-redirects/custom_redirects_admin.php:94
1257
- #: modules/custom-redirects/custom_redirects_admin.php:113
1258
- #: modules/custom-redirects/custom_redirects_admin.php:138
1259
  msgid "Redirect URL"
1260
  msgstr ""
1261
 
1262
- #: modules/custom-redirects/custom_redirects_admin.php:64
1263
- #: modules/custom-redirects/custom_redirects_admin.php:94
1264
- #: modules/custom-redirects/custom_redirects_admin.php:113
1265
- #: modules/custom-redirects/custom_redirects_admin.php:138
1266
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1267
  msgstr ""
1268
 
1269
- #: modules/custom-redirects/custom_redirects_admin.php:71
1270
- #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1274
- #: modules/custom-redirects/custom_redirects_admin.php:84
1275
  msgid "... Choose"
1276
  msgstr ""
1277
 
1278
- #: modules/custom-redirects/custom_redirects_admin.php:92
1279
  msgid "Select a user role."
1280
- msgstr ""
1281
 
1282
- #: modules/custom-redirects/custom_redirects_admin.php:101
1283
- #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
- #: modules/custom-redirects/custom_redirects_admin.php:120
1288
- #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1292
- #: modules/custom-redirects/custom_redirects_admin.php:133
1293
  msgid "Login ( wp_login.php )"
1294
- msgstr ""
1295
 
1296
- #: modules/custom-redirects/custom_redirects_admin.php:134
1297
  msgid "Register ( wp-login.php?action=register )"
1298
- msgstr ""
1299
 
1300
- #: modules/custom-redirects/custom_redirects_admin.php:135
1301
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1302
- msgstr ""
1303
 
1304
- #: modules/custom-redirects/custom_redirects_admin.php:136
1305
  msgid "Author Archive ( http://sitename.com/author/admin )"
1306
- msgstr ""
1307
 
1308
- #: modules/custom-redirects/custom_redirects_admin.php:145
1309
  msgid "Redirect Default WordPress Forms and Pages"
1310
  msgstr ""
1311
 
1312
- #: modules/custom-redirects/custom_redirects_admin.php:157
1313
  msgid "How does this work?"
1314
  msgstr ""
1315
 
1316
- #: modules/custom-redirects/custom_redirects_admin.php:179
1317
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1318
  msgstr ""
1319
 
1320
- #: modules/custom-redirects/custom_redirects_admin.php:193
1321
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1322
  msgstr ""
1323
 
1324
- #: modules/custom-redirects/custom_redirects_admin.php:207
1325
- #: modules/custom-redirects/custom_redirects_admin.php:221
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
- #: modules/custom-redirects/custom_redirects_admin.php:236
1330
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
  msgstr ""
1332
 
1333
- #: modules/custom-redirects/custom_redirects_admin.php:238
1334
  msgid "Which redirect happens depends on the following priority:"
1335
  msgstr ""
1336
 
1337
- #: modules/custom-redirects/custom_redirects_admin.php:247
1338
  msgid "Redirect Default WordPress forms and pages"
1339
  msgstr ""
1340
 
1341
- #: modules/custom-redirects/custom_redirects_admin.php:248
1342
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
  msgstr ""
1344
 
1345
- #: modules/custom-redirects/custom_redirects_admin.php:250
1346
  msgid "Available tags for dynamic URLs"
1347
  msgstr ""
1348
 
1349
- #: modules/custom-redirects/custom_redirects_admin.php:251
1350
  msgid "You use the following tags in your URLs to redirect users to various pages."
1351
  msgstr ""
1352
 
1353
- #: modules/custom-redirects/custom_redirects_admin.php:253
1354
  msgid "generates a url of the current website homepage."
1355
  msgstr ""
1356
 
1357
- #: modules/custom-redirects/custom_redirects_admin.php:254
1358
  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"
1359
  msgstr ""
1360
 
1361
- #: modules/custom-redirects/custom_redirects_admin.php:255
1362
  msgid "the ID of the user"
1363
  msgstr ""
1364
 
1365
- #: modules/custom-redirects/custom_redirects_admin.php:256
1366
  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."
1367
  msgstr ""
1368
 
1369
- #: modules/custom-redirects/custom_redirects_admin.php:257
1370
  msgid "the URL of the previously visited page"
1371
  msgstr ""
1372
 
1373
- #: modules/custom-redirects/custom_redirects_admin.php:340
1374
- #: modules/custom-redirects/custom_redirects_admin.php:346
1375
- #: modules/custom-redirects/custom_redirects_admin.php:352
1376
  msgid "You can't add duplicate redirects!"
1377
  msgstr ""
1378
 
1379
- #: admin/admin-functions.php:41
1380
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1381
  msgstr ""
1382
 
1383
- #: admin/basic-info.php:37
1384
  msgid "Friction-less login using %s shortcode or a widget."
1385
  msgstr ""
1386
 
1387
- #: admin/basic-info.php:41
1388
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1389
  msgstr ""
1390
 
1391
- #: admin/basic-info.php:45
1392
  msgid "Straight forward edit profile forms using %s shortcode."
1393
  msgstr ""
1394
 
1395
- #: admin/basic-info.php:58
1396
  msgid "Allow users to recover their password in the front-end using the %s."
1397
  msgstr ""
1398
 
1399
- #: admin/basic-info.php:140
1400
  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."
1401
  msgstr ""
1402
 
1403
- #: admin/general-settings.php:118
1404
  msgid "\"Admin Approval\" on User Role:"
1405
  msgstr ""
1406
 
1407
- #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
1410
 
1411
- #: admin/manage-fields.php:131
1412
  msgid "Display on PB forms"
1413
  msgstr ""
1414
 
1415
- #: admin/manage-fields.php:131
1416
  msgid "PB Login"
1417
  msgstr ""
1418
 
1419
- #: admin/manage-fields.php:131
1420
  msgid "PB Register"
1421
  msgstr ""
1422
 
1423
- #: admin/manage-fields.php:131
1424
  msgid "PB Recover Password"
1425
  msgstr ""
1426
 
1427
- #: admin/manage-fields.php:131
1428
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1429
  msgstr ""
1430
 
1431
- #: admin/manage-fields.php:132
1432
  msgid "Display on default WP forms"
1433
  msgstr ""
1434
 
1435
- #: admin/manage-fields.php:132
1436
  msgid "Default WP Login"
1437
  msgstr ""
1438
 
1439
- #: admin/manage-fields.php:132
1440
  msgid "Default WP Register"
1441
  msgstr ""
1442
 
1443
- #: admin/manage-fields.php:132
1444
  msgid "Default WP Recover Password"
1445
  msgstr ""
1446
 
1447
- #: admin/manage-fields.php:132
1448
  msgid "Select on which default WP forms to display reCAPTCHA"
1449
  msgstr ""
1450
 
1451
- #: admin/manage-fields.php:138 admin/manage-fields.php:139
1452
- #: admin/manage-fields.php:140
 
1453
  msgid "Default option of the field"
1454
  msgstr ""
1455
 
1456
- #: admin/manage-fields.php:279
1457
- #: front-end/extra-fields/select-country/select-country.php:10
1458
  msgid "Afghanistan"
1459
  msgstr "Afghanistan"
1460
 
1461
- #: admin/manage-fields.php:280
1462
- #: front-end/extra-fields/select-country/select-country.php:10
1463
  msgid "Aland Islands"
1464
  msgstr "Aland Islands"
1465
 
1466
- #: admin/manage-fields.php:281
1467
- #: front-end/extra-fields/select-country/select-country.php:10
1468
  msgid "Albania"
1469
  msgstr "Albania"
1470
 
1471
- #: admin/manage-fields.php:282
1472
- #: front-end/extra-fields/select-country/select-country.php:10
1473
  msgid "Algeria"
1474
  msgstr "Algeria"
1475
 
1476
- #: admin/manage-fields.php:283
1477
- #: front-end/extra-fields/select-country/select-country.php:10
1478
  msgid "American Samoa"
1479
  msgstr "American Samoa"
1480
 
1481
- #: admin/manage-fields.php:284
1482
- #: front-end/extra-fields/select-country/select-country.php:10
1483
  msgid "Andorra"
1484
  msgstr "Andorra"
1485
 
1486
- #: admin/manage-fields.php:285
1487
- #: front-end/extra-fields/select-country/select-country.php:10
1488
  msgid "Angola"
1489
  msgstr "Angola"
1490
 
1491
- #: admin/manage-fields.php:286
1492
- #: front-end/extra-fields/select-country/select-country.php:10
1493
  msgid "Anguilla"
1494
  msgstr "Anguilla"
1495
 
1496
- #: admin/manage-fields.php:287
1497
- #: front-end/extra-fields/select-country/select-country.php:10
1498
  msgid "Antarctica"
1499
  msgstr "Antarctica"
1500
 
1501
- #: admin/manage-fields.php:288
1502
- #: front-end/extra-fields/select-country/select-country.php:10
1503
  msgid "Antigua and Barbuda"
1504
  msgstr "Antigua and Barbuda"
1505
 
1506
- #: admin/manage-fields.php:289
1507
- #: front-end/extra-fields/select-country/select-country.php:10
1508
  msgid "Argentina"
1509
  msgstr "Argentina"
1510
 
1511
- #: admin/manage-fields.php:290
1512
- #: front-end/extra-fields/select-country/select-country.php:10
1513
  msgid "Armenia"
1514
  msgstr "Armenia"
1515
 
1516
- #: admin/manage-fields.php:291
1517
- #: front-end/extra-fields/select-country/select-country.php:10
1518
  msgid "Aruba"
1519
  msgstr "Aruba"
1520
 
1521
- #: admin/manage-fields.php:292
1522
- #: front-end/extra-fields/select-country/select-country.php:10
1523
  msgid "Australia"
1524
  msgstr "Australia"
1525
 
1526
- #: admin/manage-fields.php:293
1527
- #: front-end/extra-fields/select-country/select-country.php:10
1528
  msgid "Austria"
1529
  msgstr "Austria"
1530
 
1531
- #: admin/manage-fields.php:294
1532
- #: front-end/extra-fields/select-country/select-country.php:10
1533
  msgid "Azerbaijan"
1534
  msgstr "Azerbaijan"
1535
 
1536
- #: admin/manage-fields.php:295
1537
- #: front-end/extra-fields/select-country/select-country.php:10
1538
  msgid "Bahamas"
1539
  msgstr "Bahamas"
1540
 
1541
- #: admin/manage-fields.php:296
1542
- #: front-end/extra-fields/select-country/select-country.php:10
1543
  msgid "Bahrain"
1544
  msgstr "Bahrain"
1545
 
1546
- #: admin/manage-fields.php:297
1547
- #: front-end/extra-fields/select-country/select-country.php:10
1548
  msgid "Bangladesh"
1549
  msgstr "Bangladesh"
1550
 
1551
- #: admin/manage-fields.php:298
1552
- #: front-end/extra-fields/select-country/select-country.php:10
1553
  msgid "Barbados"
1554
  msgstr "Barbados"
1555
 
1556
- #: admin/manage-fields.php:299
1557
- #: front-end/extra-fields/select-country/select-country.php:10
1558
  msgid "Belarus"
1559
  msgstr "Belarus"
1560
 
1561
- #: admin/manage-fields.php:300
1562
- #: front-end/extra-fields/select-country/select-country.php:10
1563
  msgid "Belgium"
1564
  msgstr "Belgium"
1565
 
1566
- #: admin/manage-fields.php:301
1567
- #: front-end/extra-fields/select-country/select-country.php:10
1568
  msgid "Belize"
1569
  msgstr "Belize"
1570
 
1571
- #: admin/manage-fields.php:302
1572
- #: front-end/extra-fields/select-country/select-country.php:10
1573
  msgid "Benin"
1574
  msgstr "Benin"
1575
 
1576
- #: admin/manage-fields.php:303
1577
- #: front-end/extra-fields/select-country/select-country.php:10
1578
  msgid "Bermuda"
1579
  msgstr "Bermuda"
1580
 
1581
- #: admin/manage-fields.php:304
1582
- #: front-end/extra-fields/select-country/select-country.php:10
1583
  msgid "Bhutan"
1584
  msgstr "Bhutan"
1585
 
1586
- #: admin/manage-fields.php:305
1587
  msgid "Bolivia"
1588
  msgstr "Bolivia"
1589
 
1590
- #: admin/manage-fields.php:306
1591
  msgid "Bonaire, Saint Eustatius and Saba"
1592
  msgstr "Bonaire, Saint Eustatius and Saba"
1593
 
1594
- #: admin/manage-fields.php:307
1595
- #: front-end/extra-fields/select-country/select-country.php:10
1596
  msgid "Bosnia and Herzegovina"
1597
  msgstr "Bosnia and Herzegovina"
1598
 
1599
- #: admin/manage-fields.php:308
1600
- #: front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Botswana"
1602
  msgstr "Botswana"
1603
 
1604
- #: admin/manage-fields.php:309
1605
- #: front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Bouvet Island"
1607
  msgstr "Bouvet Island"
1608
 
1609
- #: admin/manage-fields.php:310
1610
- #: front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "Brazil"
1612
  msgstr "Brazil"
1613
 
1614
- #: admin/manage-fields.php:311
1615
- #: front-end/extra-fields/select-country/select-country.php:10
1616
  msgid "British Indian Ocean Territory"
1617
  msgstr "British Indian Ocean Territory"
1618
 
1619
- #: admin/manage-fields.php:312
1620
  msgid "British Virgin Islands"
1621
  msgstr "British Virgin Islands"
1622
 
1623
- #: admin/manage-fields.php:313
1624
  msgid "Brunei"
1625
  msgstr "Brunei"
1626
 
1627
- #: admin/manage-fields.php:314
1628
- #: front-end/extra-fields/select-country/select-country.php:10
1629
  msgid "Bulgaria"
1630
  msgstr "Bulgaria"
1631
 
1632
- #: admin/manage-fields.php:315
1633
- #: front-end/extra-fields/select-country/select-country.php:10
1634
  msgid "Burkina Faso"
1635
  msgstr "Burkina Faso"
1636
 
1637
- #: admin/manage-fields.php:316
1638
- #: front-end/extra-fields/select-country/select-country.php:10
1639
  msgid "Burundi"
1640
  msgstr "Burundi"
1641
 
1642
- #: admin/manage-fields.php:317
1643
- #: front-end/extra-fields/select-country/select-country.php:10
1644
  msgid "Cambodia"
1645
  msgstr "Cambodia"
1646
 
1647
- #: admin/manage-fields.php:318
1648
- #: front-end/extra-fields/select-country/select-country.php:10
1649
  msgid "Cameroon"
1650
  msgstr "Cameroon"
1651
 
1652
- #: admin/manage-fields.php:319
1653
- #: front-end/extra-fields/select-country/select-country.php:10
1654
  msgid "Canada"
1655
  msgstr "Canada"
1656
 
1657
- #: admin/manage-fields.php:320
1658
  msgid "Cape Verde"
1659
  msgstr "Cape Verde"
1660
 
1661
- #: admin/manage-fields.php:321
1662
- #: front-end/extra-fields/select-country/select-country.php:10
1663
  msgid "Cayman Islands"
1664
  msgstr "Cayman Islands"
1665
 
1666
- #: admin/manage-fields.php:322
1667
- #: front-end/extra-fields/select-country/select-country.php:10
1668
  msgid "Central African Republic"
1669
  msgstr "Central African Republic"
1670
 
1671
- #: admin/manage-fields.php:323
1672
- #: front-end/extra-fields/select-country/select-country.php:10
1673
  msgid "Chad"
1674
  msgstr "Chad"
1675
 
1676
- #: admin/manage-fields.php:324
1677
- #: front-end/extra-fields/select-country/select-country.php:10
1678
  msgid "Chile"
1679
  msgstr "Chile"
1680
 
1681
- #: admin/manage-fields.php:325
1682
- #: front-end/extra-fields/select-country/select-country.php:10
1683
  msgid "China"
1684
  msgstr "China"
1685
 
1686
- #: admin/manage-fields.php:326
1687
- #: front-end/extra-fields/select-country/select-country.php:10
1688
  msgid "Christmas Island"
1689
  msgstr "Christmas Island"
1690
 
1691
- #: admin/manage-fields.php:327
1692
  msgid "Cocos Islands"
1693
  msgstr "Cocos Islands"
1694
 
1695
- #: admin/manage-fields.php:328
1696
- #: front-end/extra-fields/select-country/select-country.php:10
1697
  msgid "Colombia"
1698
  msgstr "Colombia"
1699
 
1700
- #: admin/manage-fields.php:329
1701
- #: front-end/extra-fields/select-country/select-country.php:10
1702
  msgid "Comoros"
1703
  msgstr "Comoros"
1704
 
1705
- #: admin/manage-fields.php:330
1706
- #: front-end/extra-fields/select-country/select-country.php:10
1707
  msgid "Cook Islands"
1708
  msgstr "Cook Islands"
1709
 
1710
- #: admin/manage-fields.php:331
1711
- #: front-end/extra-fields/select-country/select-country.php:10
1712
  msgid "Costa Rica"
1713
  msgstr "Costa Rica"
1714
 
1715
- #: admin/manage-fields.php:332
1716
- #: front-end/extra-fields/select-country/select-country.php:10
1717
  msgid "Croatia"
1718
  msgstr "Croatia"
1719
 
1720
- #: admin/manage-fields.php:333
1721
- #: front-end/extra-fields/select-country/select-country.php:10
1722
  msgid "Cuba"
1723
  msgstr "Cuba"
1724
 
1725
- #: admin/manage-fields.php:334
1726
- #: front-end/extra-fields/select-country/select-country.php:10
1727
  msgid "Curacao"
1728
  msgstr "Curacao"
1729
 
1730
- #: admin/manage-fields.php:335
1731
- #: front-end/extra-fields/select-country/select-country.php:10
1732
  msgid "Cyprus"
1733
  msgstr "Cyprus"
1734
 
1735
- #: admin/manage-fields.php:336
1736
- #: front-end/extra-fields/select-country/select-country.php:10
1737
  msgid "Czech Republic"
1738
  msgstr "Czech Republic"
1739
 
1740
- #: admin/manage-fields.php:337
1741
  msgid "Democratic Republic of the Congo"
1742
  msgstr "Democratic Republic of the Congo"
1743
 
1744
- #: admin/manage-fields.php:338
1745
- #: front-end/extra-fields/select-country/select-country.php:10
1746
  msgid "Denmark"
1747
  msgstr "Denmark"
1748
 
1749
- #: admin/manage-fields.php:339
1750
- #: front-end/extra-fields/select-country/select-country.php:10
1751
  msgid "Djibouti"
1752
  msgstr "Djibouti"
1753
 
1754
- #: admin/manage-fields.php:340
1755
- #: front-end/extra-fields/select-country/select-country.php:10
1756
  msgid "Dominica"
1757
  msgstr "Dominica"
1758
 
1759
- #: admin/manage-fields.php:341
1760
- #: front-end/extra-fields/select-country/select-country.php:10
1761
  msgid "Dominican Republic"
1762
  msgstr "Dominican Republic"
1763
 
1764
- #: admin/manage-fields.php:342
1765
  msgid "East Timor"
1766
  msgstr "East Timor"
1767
 
1768
- #: admin/manage-fields.php:343
1769
- #: front-end/extra-fields/select-country/select-country.php:10
1770
  msgid "Ecuador"
1771
  msgstr "Ecuador"
1772
 
1773
- #: admin/manage-fields.php:344
1774
- #: front-end/extra-fields/select-country/select-country.php:10
1775
  msgid "Egypt"
1776
  msgstr "Egypt"
1777
 
1778
- #: admin/manage-fields.php:345
1779
- #: front-end/extra-fields/select-country/select-country.php:10
1780
  msgid "El Salvador"
1781
  msgstr "El Salvador"
1782
 
1783
- #: admin/manage-fields.php:346
1784
- #: front-end/extra-fields/select-country/select-country.php:10
1785
  msgid "Equatorial Guinea"
1786
  msgstr "Equatorial Guinea"
1787
 
1788
- #: admin/manage-fields.php:347
1789
- #: front-end/extra-fields/select-country/select-country.php:10
1790
  msgid "Eritrea"
1791
  msgstr "Eritrea"
1792
 
1793
- #: admin/manage-fields.php:348
1794
- #: front-end/extra-fields/select-country/select-country.php:10
1795
  msgid "Estonia"
1796
  msgstr "Estonia"
1797
 
1798
- #: admin/manage-fields.php:349
1799
- #: front-end/extra-fields/select-country/select-country.php:10
1800
  msgid "Ethiopia"
1801
  msgstr "Ethiopia"
1802
 
1803
- #: admin/manage-fields.php:350
1804
  msgid "Falkland Islands"
1805
  msgstr "Falkland Islands"
1806
 
1807
- #: admin/manage-fields.php:351
1808
- #: front-end/extra-fields/select-country/select-country.php:10
1809
  msgid "Faroe Islands"
1810
  msgstr "Faroe Islands"
1811
 
1812
- #: admin/manage-fields.php:352
1813
- #: front-end/extra-fields/select-country/select-country.php:10
1814
  msgid "Fiji"
1815
  msgstr "Fiji"
1816
 
1817
- #: admin/manage-fields.php:353
1818
- #: front-end/extra-fields/select-country/select-country.php:10
1819
  msgid "Finland"
1820
  msgstr "Finland"
1821
 
1822
- #: admin/manage-fields.php:354
1823
- #: front-end/extra-fields/select-country/select-country.php:10
1824
  msgid "France"
1825
  msgstr "France"
1826
 
1827
- #: admin/manage-fields.php:355
1828
- #: front-end/extra-fields/select-country/select-country.php:10
1829
  msgid "French Guiana"
1830
  msgstr "French Guiana"
1831
 
1832
- #: admin/manage-fields.php:356
1833
- #: front-end/extra-fields/select-country/select-country.php:10
1834
  msgid "French Polynesia"
1835
  msgstr "French Polynesia"
1836
 
1837
- #: admin/manage-fields.php:357
1838
- #: front-end/extra-fields/select-country/select-country.php:10
1839
  msgid "French Southern Territories"
1840
  msgstr "French Southern Territories"
1841
 
1842
- #: admin/manage-fields.php:358
1843
- #: front-end/extra-fields/select-country/select-country.php:10
1844
  msgid "Gabon"
1845
  msgstr "Gabon"
1846
 
1847
- #: admin/manage-fields.php:359
1848
- #: front-end/extra-fields/select-country/select-country.php:10
1849
  msgid "Gambia"
1850
  msgstr "Gambia"
1851
 
1852
- #: admin/manage-fields.php:360
1853
- #: front-end/extra-fields/select-country/select-country.php:10
1854
  msgid "Georgia"
1855
  msgstr "Georgia"
1856
 
1857
- #: admin/manage-fields.php:361
1858
- #: front-end/extra-fields/select-country/select-country.php:10
1859
  msgid "Germany"
1860
  msgstr "Germany"
1861
 
1862
- #: admin/manage-fields.php:362
1863
- #: front-end/extra-fields/select-country/select-country.php:10
1864
  msgid "Ghana"
1865
  msgstr "Ghana"
1866
 
1867
- #: admin/manage-fields.php:363
1868
- #: front-end/extra-fields/select-country/select-country.php:10
1869
  msgid "Gibraltar"
1870
  msgstr "Gibraltar"
1871
 
1872
- #: admin/manage-fields.php:364
1873
- #: front-end/extra-fields/select-country/select-country.php:10
1874
  msgid "Greece"
1875
  msgstr "Greece"
1876
 
1877
- #: admin/manage-fields.php:365
1878
- #: front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Greenland"
1880
  msgstr "Greenland"
1881
 
1882
- #: admin/manage-fields.php:366
1883
- #: front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Grenada"
1885
  msgstr "Grenada"
1886
 
1887
- #: admin/manage-fields.php:367
1888
- #: front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Guadeloupe"
1890
  msgstr "Guadeloupe"
1891
 
1892
- #: admin/manage-fields.php:368
1893
- #: front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Guam"
1895
  msgstr "Guam"
1896
 
1897
- #: admin/manage-fields.php:369
1898
- #: front-end/extra-fields/select-country/select-country.php:10
1899
  msgid "Guatemala"
1900
  msgstr "Guatemala"
1901
 
1902
- #: admin/manage-fields.php:370
1903
- #: front-end/extra-fields/select-country/select-country.php:10
1904
  msgid "Guernsey"
1905
  msgstr "Guernsey"
1906
 
1907
- #: admin/manage-fields.php:371
1908
- #: front-end/extra-fields/select-country/select-country.php:10
1909
  msgid "Guinea"
1910
  msgstr "Guinea"
1911
 
1912
- #: admin/manage-fields.php:372
1913
- #: front-end/extra-fields/select-country/select-country.php:10
1914
  msgid "Guinea-Bissau"
1915
  msgstr "Guinea-Bissau"
1916
 
1917
- #: admin/manage-fields.php:373
1918
- #: front-end/extra-fields/select-country/select-country.php:10
1919
  msgid "Guyana"
1920
  msgstr "Guyana"
1921
 
1922
- #: admin/manage-fields.php:374
1923
- #: front-end/extra-fields/select-country/select-country.php:10
1924
  msgid "Haiti"
1925
  msgstr "Haiti"
1926
 
1927
- #: admin/manage-fields.php:375
1928
- #: front-end/extra-fields/select-country/select-country.php:10
1929
  msgid "Heard Island and McDonald Islands"
1930
  msgstr "Heard Island and McDonald Islands"
1931
 
1932
- #: admin/manage-fields.php:376
1933
- #: front-end/extra-fields/select-country/select-country.php:10
1934
  msgid "Honduras"
1935
  msgstr "Honduras"
1936
 
1937
- #: admin/manage-fields.php:377
1938
- #: front-end/extra-fields/select-country/select-country.php:10
1939
  msgid "Hong Kong"
1940
  msgstr "Hong Kong"
1941
 
1942
- #: admin/manage-fields.php:378
1943
- #: front-end/extra-fields/select-country/select-country.php:10
1944
  msgid "Hungary"
1945
  msgstr "Hungary"
1946
 
1947
- #: admin/manage-fields.php:379
1948
- #: front-end/extra-fields/select-country/select-country.php:10
1949
  msgid "Iceland"
1950
  msgstr "Iceland"
1951
 
1952
- #: admin/manage-fields.php:380
1953
- #: front-end/extra-fields/select-country/select-country.php:10
1954
  msgid "India"
1955
  msgstr "India"
1956
 
1957
- #: admin/manage-fields.php:381
1958
- #: front-end/extra-fields/select-country/select-country.php:10
1959
  msgid "Indonesia"
1960
  msgstr "Indonesia"
1961
 
1962
- #: admin/manage-fields.php:382
1963
  msgid "Iran"
1964
  msgstr "Iran"
1965
 
1966
- #: admin/manage-fields.php:383
1967
- #: front-end/extra-fields/select-country/select-country.php:10
1968
  msgid "Iraq"
1969
  msgstr "Iraq"
1970
 
1971
- #: admin/manage-fields.php:384
1972
- #: front-end/extra-fields/select-country/select-country.php:10
1973
  msgid "Ireland"
1974
  msgstr "Ireland"
1975
 
1976
- #: admin/manage-fields.php:385
1977
- #: front-end/extra-fields/select-country/select-country.php:10
1978
  msgid "Isle of Man"
1979
  msgstr "Isle of Man"
1980
 
1981
- #: admin/manage-fields.php:386
1982
- #: front-end/extra-fields/select-country/select-country.php:10
1983
  msgid "Israel"
1984
  msgstr "Israel"
1985
 
1986
- #: admin/manage-fields.php:387
1987
- #: front-end/extra-fields/select-country/select-country.php:10
1988
  msgid "Italy"
1989
  msgstr "Italy"
1990
 
1991
- #: admin/manage-fields.php:388
1992
  msgid "Ivory Coast"
1993
  msgstr "Ivory Coast"
1994
 
1995
- #: admin/manage-fields.php:389
1996
- #: front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Jamaica"
1998
  msgstr "Jamaica"
1999
 
2000
- #: admin/manage-fields.php:390
2001
- #: front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Japan"
2003
  msgstr "Japan"
2004
 
2005
- #: admin/manage-fields.php:391
2006
- #: front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Jersey"
2008
  msgstr "Jersey"
2009
 
2010
- #: admin/manage-fields.php:392
2011
- #: front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Jordan"
2013
  msgstr "Jordan"
2014
 
2015
- #: admin/manage-fields.php:393
2016
- #: front-end/extra-fields/select-country/select-country.php:10
2017
  msgid "Kazakhstan"
2018
  msgstr "Kazakhstan"
2019
 
2020
- #: admin/manage-fields.php:394
2021
- #: front-end/extra-fields/select-country/select-country.php:10
2022
  msgid "Kenya"
2023
  msgstr "Kenya"
2024
 
2025
- #: admin/manage-fields.php:395
2026
- #: front-end/extra-fields/select-country/select-country.php:10
2027
  msgid "Kiribati"
2028
  msgstr "Kiribati"
2029
 
2030
- #: admin/manage-fields.php:396
2031
  msgid "Kosovo"
2032
  msgstr "Kosovo"
2033
 
2034
- #: admin/manage-fields.php:397
2035
- #: front-end/extra-fields/select-country/select-country.php:10
2036
  msgid "Kuwait"
2037
  msgstr "Kuwait"
2038
 
2039
- #: admin/manage-fields.php:398
2040
- #: front-end/extra-fields/select-country/select-country.php:10
2041
  msgid "Kyrgyzstan"
2042
  msgstr "Kyrgyzstan"
2043
 
2044
- #: admin/manage-fields.php:399
2045
  msgid "Laos"
2046
  msgstr "Laos"
2047
 
2048
- #: admin/manage-fields.php:400
2049
- #: front-end/extra-fields/select-country/select-country.php:10
2050
  msgid "Latvia"
2051
  msgstr "Latvia"
2052
 
2053
- #: admin/manage-fields.php:401
2054
- #: front-end/extra-fields/select-country/select-country.php:10
2055
  msgid "Lebanon"
2056
  msgstr "Lebanon"
2057
 
2058
- #: admin/manage-fields.php:402
2059
- #: front-end/extra-fields/select-country/select-country.php:10
2060
  msgid "Lesotho"
2061
  msgstr "Lesotho"
2062
 
2063
- #: admin/manage-fields.php:403
2064
- #: front-end/extra-fields/select-country/select-country.php:10
2065
  msgid "Liberia"
2066
  msgstr "Liberia"
2067
 
2068
- #: admin/manage-fields.php:404
2069
- #: front-end/extra-fields/select-country/select-country.php:10
2070
  msgid "Libya"
2071
  msgstr "Libya"
2072
 
2073
- #: admin/manage-fields.php:405
2074
- #: front-end/extra-fields/select-country/select-country.php:10
2075
  msgid "Liechtenstein"
2076
  msgstr "Liechtenstein"
2077
 
2078
- #: admin/manage-fields.php:406
2079
- #: front-end/extra-fields/select-country/select-country.php:10
2080
  msgid "Lithuania"
2081
  msgstr "Lithuania"
2082
 
2083
- #: admin/manage-fields.php:407
2084
- #: front-end/extra-fields/select-country/select-country.php:10
2085
  msgid "Luxembourg"
2086
  msgstr "Luxembourg"
2087
 
2088
- #: admin/manage-fields.php:408
2089
- #: front-end/extra-fields/select-country/select-country.php:10
2090
  msgid "Macao"
2091
  msgstr "Macao"
2092
 
2093
- #: admin/manage-fields.php:409
2094
  msgid "Macedonia"
2095
  msgstr "Macedonia"
2096
 
2097
- #: admin/manage-fields.php:410
2098
- #: front-end/extra-fields/select-country/select-country.php:10
2099
  msgid "Madagascar"
2100
  msgstr "Madagascar"
2101
 
2102
- #: admin/manage-fields.php:411
2103
- #: front-end/extra-fields/select-country/select-country.php:10
2104
  msgid "Malawi"
2105
  msgstr "Malawi"
2106
 
2107
- #: admin/manage-fields.php:412
2108
- #: front-end/extra-fields/select-country/select-country.php:10
2109
  msgid "Malaysia"
2110
  msgstr "Malaysia"
2111
 
2112
- #: admin/manage-fields.php:413
2113
- #: front-end/extra-fields/select-country/select-country.php:10
2114
  msgid "Maldives"
2115
  msgstr "Maldives"
2116
 
2117
- #: admin/manage-fields.php:414
2118
- #: front-end/extra-fields/select-country/select-country.php:10
2119
  msgid "Mali"
2120
  msgstr "Mali"
2121
 
2122
- #: admin/manage-fields.php:415
2123
- #: front-end/extra-fields/select-country/select-country.php:10
2124
  msgid "Malta"
2125
  msgstr "Malta"
2126
 
2127
- #: admin/manage-fields.php:416
2128
- #: front-end/extra-fields/select-country/select-country.php:10
2129
  msgid "Marshall Islands"
2130
  msgstr "Marshall Islands"
2131
 
2132
- #: admin/manage-fields.php:417
2133
- #: front-end/extra-fields/select-country/select-country.php:10
2134
  msgid "Martinique"
2135
  msgstr "Martinique"
2136
 
2137
- #: admin/manage-fields.php:418
2138
- #: front-end/extra-fields/select-country/select-country.php:10
2139
  msgid "Mauritania"
2140
  msgstr "Mauritania"
2141
 
2142
- #: admin/manage-fields.php:419
2143
- #: front-end/extra-fields/select-country/select-country.php:10
2144
  msgid "Mauritius"
2145
  msgstr "Mauritius"
2146
 
2147
- #: admin/manage-fields.php:420
2148
- #: front-end/extra-fields/select-country/select-country.php:10
2149
  msgid "Mayotte"
2150
  msgstr "Mayotte"
2151
 
2152
- #: admin/manage-fields.php:421
2153
- #: front-end/extra-fields/select-country/select-country.php:10
2154
  msgid "Mexico"
2155
  msgstr "Mexico"
2156
 
2157
- #: admin/manage-fields.php:422
2158
  msgid "Micronesia"
2159
  msgstr "Micronesia"
2160
 
2161
- #: admin/manage-fields.php:423
2162
  msgid "Moldova"
2163
  msgstr "Moldova"
2164
 
2165
- #: admin/manage-fields.php:424
2166
- #: front-end/extra-fields/select-country/select-country.php:10
2167
  msgid "Monaco"
2168
  msgstr "Monaco"
2169
 
2170
- #: admin/manage-fields.php:425
2171
- #: front-end/extra-fields/select-country/select-country.php:10
2172
  msgid "Mongolia"
2173
  msgstr "Mongolia"
2174
 
2175
- #: admin/manage-fields.php:426
2176
- #: front-end/extra-fields/select-country/select-country.php:10
2177
  msgid "Montenegro"
2178
  msgstr "Montenegro"
2179
 
2180
- #: admin/manage-fields.php:427
2181
- #: front-end/extra-fields/select-country/select-country.php:10
2182
  msgid "Montserrat"
2183
  msgstr "Montserrat"
2184
 
2185
- #: admin/manage-fields.php:428
2186
- #: front-end/extra-fields/select-country/select-country.php:10
2187
  msgid "Morocco"
2188
  msgstr "Morocco"
2189
 
2190
- #: admin/manage-fields.php:429
2191
- #: front-end/extra-fields/select-country/select-country.php:10
2192
  msgid "Mozambique"
2193
  msgstr "Mozambique"
2194
 
2195
- #: admin/manage-fields.php:430
2196
- #: front-end/extra-fields/select-country/select-country.php:10
2197
  msgid "Myanmar"
2198
  msgstr "Myanmar"
2199
 
2200
- #: admin/manage-fields.php:431
2201
- #: front-end/extra-fields/select-country/select-country.php:10
2202
  msgid "Namibia"
2203
  msgstr "Namibia"
2204
 
2205
- #: admin/manage-fields.php:432
2206
- #: front-end/extra-fields/select-country/select-country.php:10
2207
  msgid "Nauru"
2208
  msgstr "Nauru"
2209
 
2210
- #: admin/manage-fields.php:433
2211
- #: front-end/extra-fields/select-country/select-country.php:10
2212
  msgid "Nepal"
2213
  msgstr "Nepal"
2214
 
2215
- #: admin/manage-fields.php:434
2216
- #: front-end/extra-fields/select-country/select-country.php:10
2217
  msgid "Netherlands"
2218
  msgstr "Netherlands"
2219
 
2220
- #: admin/manage-fields.php:435
2221
- #: front-end/extra-fields/select-country/select-country.php:10
2222
  msgid "New Caledonia"
2223
  msgstr "New Caledonia"
2224
 
2225
- #: admin/manage-fields.php:436
2226
- #: front-end/extra-fields/select-country/select-country.php:10
2227
  msgid "New Zealand"
2228
  msgstr "New Zealand"
2229
 
2230
- #: admin/manage-fields.php:437
2231
- #: front-end/extra-fields/select-country/select-country.php:10
2232
  msgid "Nicaragua"
2233
  msgstr "Nicaragua"
2234
 
2235
- #: admin/manage-fields.php:438
2236
- #: front-end/extra-fields/select-country/select-country.php:10
2237
  msgid "Niger"
2238
  msgstr "Niger"
2239
 
2240
- #: admin/manage-fields.php:439
2241
- #: front-end/extra-fields/select-country/select-country.php:10
2242
  msgid "Nigeria"
2243
  msgstr "Nigeria"
2244
 
2245
- #: admin/manage-fields.php:440
2246
- #: front-end/extra-fields/select-country/select-country.php:10
2247
  msgid "Niue"
2248
  msgstr "Niue"
2249
 
2250
- #: admin/manage-fields.php:441
2251
- #: front-end/extra-fields/select-country/select-country.php:10
2252
  msgid "Norfolk Island"
2253
  msgstr "Norfolk Island"
2254
 
2255
- #: admin/manage-fields.php:442
2256
  msgid "North Korea"
2257
  msgstr "North Korea"
2258
 
2259
- #: admin/manage-fields.php:443
2260
- #: front-end/extra-fields/select-country/select-country.php:10
2261
  msgid "Northern Mariana Islands"
2262
  msgstr "Northern Mariana Islands"
2263
 
2264
- #: admin/manage-fields.php:444
2265
- #: front-end/extra-fields/select-country/select-country.php:10
2266
  msgid "Norway"
2267
  msgstr "Norway"
2268
 
2269
- #: admin/manage-fields.php:445
2270
- #: front-end/extra-fields/select-country/select-country.php:10
2271
  msgid "Oman"
2272
  msgstr "Oman"
2273
 
2274
- #: admin/manage-fields.php:446
2275
- #: front-end/extra-fields/select-country/select-country.php:10
2276
  msgid "Pakistan"
2277
  msgstr "Pakistan"
2278
 
2279
- #: admin/manage-fields.php:447
2280
- #: front-end/extra-fields/select-country/select-country.php:10
2281
  msgid "Palau"
2282
  msgstr "Palau"
2283
 
2284
- #: admin/manage-fields.php:448
2285
  msgid "Palestinian Territory"
2286
  msgstr "Palestinian Territory"
2287
 
2288
- #: admin/manage-fields.php:449
2289
- #: front-end/extra-fields/select-country/select-country.php:10
2290
  msgid "Panama"
2291
  msgstr "Panama"
2292
 
2293
- #: admin/manage-fields.php:450
2294
- #: front-end/extra-fields/select-country/select-country.php:10
2295
  msgid "Papua New Guinea"
2296
  msgstr "Papua New Guinea"
2297
 
2298
- #: admin/manage-fields.php:451
2299
- #: front-end/extra-fields/select-country/select-country.php:10
2300
  msgid "Paraguay"
2301
  msgstr "Paraguay"
2302
 
2303
- #: admin/manage-fields.php:452
2304
- #: front-end/extra-fields/select-country/select-country.php:10
2305
  msgid "Peru"
2306
  msgstr "Peru"
2307
 
2308
- #: admin/manage-fields.php:453
2309
- #: front-end/extra-fields/select-country/select-country.php:10
2310
  msgid "Philippines"
2311
  msgstr "Philippines"
2312
 
2313
- #: admin/manage-fields.php:454
2314
- #: front-end/extra-fields/select-country/select-country.php:10
2315
  msgid "Pitcairn"
2316
  msgstr "Pitcairn"
2317
 
2318
- #: admin/manage-fields.php:455
2319
- #: front-end/extra-fields/select-country/select-country.php:10
2320
  msgid "Poland"
2321
  msgstr "Poland"
2322
 
2323
- #: admin/manage-fields.php:456
2324
- #: front-end/extra-fields/select-country/select-country.php:10
2325
  msgid "Portugal"
2326
  msgstr "Portugal"
2327
 
2328
- #: admin/manage-fields.php:457
2329
- #: front-end/extra-fields/select-country/select-country.php:10
2330
  msgid "Puerto Rico"
2331
  msgstr "Puerto Rico"
2332
 
2333
- #: admin/manage-fields.php:458
2334
- #: front-end/extra-fields/select-country/select-country.php:10
2335
  msgid "Qatar"
2336
  msgstr "Qatar"
2337
 
2338
- #: admin/manage-fields.php:459
2339
  msgid "Republic of the Congo"
2340
  msgstr "Republic of the Congo"
2341
 
2342
- #: admin/manage-fields.php:460
2343
- #: front-end/extra-fields/select-country/select-country.php:10
2344
  msgid "Reunion"
2345
  msgstr "Reunion"
2346
 
2347
- #: admin/manage-fields.php:461
2348
- #: front-end/extra-fields/select-country/select-country.php:10
2349
  msgid "Romania"
2350
  msgstr "Romania"
2351
 
2352
- #: admin/manage-fields.php:462
2353
  msgid "Russia"
2354
  msgstr "Russia"
2355
 
2356
- #: admin/manage-fields.php:463
2357
- #: front-end/extra-fields/select-country/select-country.php:10
2358
  msgid "Rwanda"
2359
  msgstr "Rwanda"
2360
 
2361
- #: admin/manage-fields.php:464
2362
- #: front-end/extra-fields/select-country/select-country.php:10
2363
  msgid "Saint Barthelemy"
2364
  msgstr "Saint Barthelemy"
2365
 
2366
- #: admin/manage-fields.php:465
2367
  msgid "Saint Helena"
2368
  msgstr "Saint Helena"
2369
 
2370
- #: admin/manage-fields.php:466
2371
- #: front-end/extra-fields/select-country/select-country.php:10
2372
  msgid "Saint Kitts and Nevis"
2373
  msgstr "Saint Kitts and Nevis"
2374
 
2375
- #: admin/manage-fields.php:467
2376
- #: front-end/extra-fields/select-country/select-country.php:10
2377
  msgid "Saint Lucia"
2378
  msgstr "Saint Lucia"
2379
 
2380
- #: admin/manage-fields.php:468
2381
  msgid "Saint Martin"
2382
  msgstr "Saint Martin"
2383
 
2384
- #: admin/manage-fields.php:469
2385
- #: front-end/extra-fields/select-country/select-country.php:10
2386
  msgid "Saint Pierre and Miquelon"
2387
  msgstr "Saint Pierre and Miquelon"
2388
 
2389
- #: admin/manage-fields.php:470
2390
- #: front-end/extra-fields/select-country/select-country.php:10
2391
  msgid "Saint Vincent and the Grenadines"
2392
  msgstr "Saint Vincent and the Grenadines"
2393
 
2394
- #: admin/manage-fields.php:471
2395
- #: front-end/extra-fields/select-country/select-country.php:10
2396
  msgid "Samoa"
2397
  msgstr "Samoa"
2398
 
2399
- #: admin/manage-fields.php:472
2400
- #: front-end/extra-fields/select-country/select-country.php:10
2401
  msgid "San Marino"
2402
  msgstr "San Marino"
2403
 
2404
- #: admin/manage-fields.php:473
2405
- #: front-end/extra-fields/select-country/select-country.php:10
2406
  msgid "Sao Tome and Principe"
2407
  msgstr "Sao Tome and Principe"
2408
 
2409
- #: admin/manage-fields.php:474
2410
- #: front-end/extra-fields/select-country/select-country.php:10
2411
  msgid "Saudi Arabia"
2412
  msgstr "Saudi Arabia"
2413
 
2414
- #: admin/manage-fields.php:475
2415
- #: front-end/extra-fields/select-country/select-country.php:10
2416
  msgid "Senegal"
2417
  msgstr "Senegal"
2418
 
2419
- #: admin/manage-fields.php:476
2420
- #: front-end/extra-fields/select-country/select-country.php:10
2421
  msgid "Serbia"
2422
  msgstr "Serbia"
2423
 
2424
- #: admin/manage-fields.php:477
2425
- #: front-end/extra-fields/select-country/select-country.php:10
2426
  msgid "Seychelles"
2427
  msgstr "Seychelles"
2428
 
2429
- #: admin/manage-fields.php:478
2430
- #: front-end/extra-fields/select-country/select-country.php:10
2431
  msgid "Sierra Leone"
2432
  msgstr "Sierra Leone"
2433
 
2434
- #: admin/manage-fields.php:479
2435
- #: front-end/extra-fields/select-country/select-country.php:10
2436
  msgid "Singapore"
2437
  msgstr "Singapore"
2438
 
2439
- #: admin/manage-fields.php:480
2440
  msgid "Sint Maarten"
2441
  msgstr "Sint Maarten"
2442
 
2443
- #: admin/manage-fields.php:481
2444
- #: front-end/extra-fields/select-country/select-country.php:10
2445
  msgid "Slovakia"
2446
  msgstr "Slovakia"
2447
 
2448
- #: admin/manage-fields.php:482
2449
- #: front-end/extra-fields/select-country/select-country.php:10
2450
  msgid "Slovenia"
2451
  msgstr "Slovenia"
2452
 
2453
- #: admin/manage-fields.php:483
2454
- #: front-end/extra-fields/select-country/select-country.php:10
2455
  msgid "Solomon Islands"
2456
  msgstr "Solomon Islands"
2457
 
2458
- #: admin/manage-fields.php:484
2459
- #: front-end/extra-fields/select-country/select-country.php:10
2460
  msgid "Somalia"
2461
  msgstr "Somalia"
2462
 
2463
- #: admin/manage-fields.php:485
2464
- #: front-end/extra-fields/select-country/select-country.php:10
2465
  msgid "South Africa"
2466
  msgstr "South Africa"
2467
 
2468
- #: admin/manage-fields.php:486
2469
- #: front-end/extra-fields/select-country/select-country.php:10
2470
  msgid "South Georgia and the South Sandwich Islands"
2471
  msgstr "South Georgia and the South Sandwich Islands"
2472
 
2473
- #: admin/manage-fields.php:487
2474
  msgid "South Korea"
2475
  msgstr "South Korea"
2476
 
2477
- #: admin/manage-fields.php:488
2478
- #: front-end/extra-fields/select-country/select-country.php:10
2479
  msgid "South Sudan"
2480
  msgstr "South Sudan"
2481
 
2482
- #: admin/manage-fields.php:489
2483
- #: front-end/extra-fields/select-country/select-country.php:10
2484
  msgid "Spain"
2485
  msgstr "Spain"
2486
 
2487
- #: admin/manage-fields.php:490
2488
- #: front-end/extra-fields/select-country/select-country.php:10
2489
  msgid "Sri Lanka"
2490
  msgstr "Sri Lanka"
2491
 
2492
- #: admin/manage-fields.php:491
2493
- #: front-end/extra-fields/select-country/select-country.php:10
2494
  msgid "Sudan"
2495
  msgstr "Sudan"
2496
 
2497
- #: admin/manage-fields.php:492
2498
- #: front-end/extra-fields/select-country/select-country.php:10
2499
  msgid "Suriname"
2500
  msgstr "Suriname"
2501
 
2502
- #: admin/manage-fields.php:493
2503
- #: front-end/extra-fields/select-country/select-country.php:10
2504
  msgid "Svalbard and Jan Mayen"
2505
  msgstr "Svalbard and Jan Mayen"
2506
 
2507
- #: admin/manage-fields.php:494
2508
- #: front-end/extra-fields/select-country/select-country.php:10
2509
  msgid "Swaziland"
2510
  msgstr "Swaziland"
2511
 
2512
- #: admin/manage-fields.php:495
2513
- #: front-end/extra-fields/select-country/select-country.php:10
2514
  msgid "Sweden"
2515
  msgstr "Sweden"
2516
 
2517
- #: admin/manage-fields.php:496
2518
- #: front-end/extra-fields/select-country/select-country.php:10
2519
  msgid "Switzerland"
2520
  msgstr "Switzerland"
2521
 
2522
- #: admin/manage-fields.php:497
2523
  msgid "Syria"
2524
  msgstr "Syria"
2525
 
2526
- #: admin/manage-fields.php:498
2527
  msgid "Taiwan"
2528
  msgstr "Taiwan"
2529
 
2530
- #: admin/manage-fields.php:499
2531
- #: front-end/extra-fields/select-country/select-country.php:10
2532
  msgid "Tajikistan"
2533
  msgstr "Tajikistan"
2534
 
2535
- #: admin/manage-fields.php:500
2536
  msgid "Tanzania"
2537
  msgstr "Tanzania"
2538
 
2539
- #: admin/manage-fields.php:501
2540
- #: front-end/extra-fields/select-country/select-country.php:10
2541
  msgid "Thailand"
2542
  msgstr "Thailand"
2543
 
2544
- #: admin/manage-fields.php:502
2545
- #: front-end/extra-fields/select-country/select-country.php:10
2546
  msgid "Togo"
2547
  msgstr "Togo"
2548
 
2549
- #: admin/manage-fields.php:503
2550
- #: front-end/extra-fields/select-country/select-country.php:10
2551
  msgid "Tokelau"
2552
  msgstr "Tokelau"
2553
 
2554
- #: admin/manage-fields.php:504
2555
- #: front-end/extra-fields/select-country/select-country.php:10
2556
  msgid "Tonga"
2557
  msgstr "Tonga"
2558
 
2559
- #: admin/manage-fields.php:505
2560
- #: front-end/extra-fields/select-country/select-country.php:10
2561
  msgid "Trinidad and Tobago"
2562
  msgstr "Trinidad and Tobago"
2563
 
2564
- #: admin/manage-fields.php:506
2565
- #: front-end/extra-fields/select-country/select-country.php:10
2566
  msgid "Tunisia"
2567
  msgstr "Tunisia"
2568
 
2569
- #: admin/manage-fields.php:507
2570
- #: front-end/extra-fields/select-country/select-country.php:10
2571
  msgid "Turkey"
2572
  msgstr "Turkey"
2573
 
2574
- #: admin/manage-fields.php:508
2575
- #: front-end/extra-fields/select-country/select-country.php:10
2576
  msgid "Turkmenistan"
2577
  msgstr "Turkmenistan"
2578
 
2579
- #: admin/manage-fields.php:509
2580
- #: front-end/extra-fields/select-country/select-country.php:10
2581
  msgid "Turks and Caicos Islands"
2582
  msgstr "Turks and Caicos Islands"
2583
 
2584
- #: admin/manage-fields.php:510
2585
- #: front-end/extra-fields/select-country/select-country.php:10
2586
  msgid "Tuvalu"
2587
  msgstr "Tuvalu"
2588
 
2589
- #: admin/manage-fields.php:511
2590
  msgid "U.S. Virgin Islands"
2591
  msgstr "U.S. Virgin Islands"
2592
 
2593
- #: admin/manage-fields.php:512
2594
- #: front-end/extra-fields/select-country/select-country.php:10
2595
  msgid "Uganda"
2596
  msgstr "Uganda"
2597
 
2598
- #: admin/manage-fields.php:513
2599
- #: front-end/extra-fields/select-country/select-country.php:10
2600
  msgid "Ukraine"
2601
  msgstr "Ukraine"
2602
 
2603
- #: admin/manage-fields.php:514
2604
- #: front-end/extra-fields/select-country/select-country.php:10
2605
  msgid "United Arab Emirates"
2606
  msgstr "United Arab Emirates"
2607
 
2608
- #: admin/manage-fields.php:515
2609
- #: front-end/extra-fields/select-country/select-country.php:10
2610
  msgid "United Kingdom"
2611
  msgstr "United Kingdom"
2612
 
2613
- #: admin/manage-fields.php:516
2614
- #: front-end/extra-fields/select-country/select-country.php:10
2615
  msgid "United States"
2616
  msgstr "United States"
2617
 
2618
- #: admin/manage-fields.php:517
2619
- #: front-end/extra-fields/select-country/select-country.php:10
2620
  msgid "United States Minor Outlying Islands"
2621
  msgstr "United States Minor Outlying Islands"
2622
 
2623
- #: admin/manage-fields.php:518
2624
- #: front-end/extra-fields/select-country/select-country.php:10
2625
  msgid "Uruguay"
2626
  msgstr "Uruguay"
2627
 
2628
- #: admin/manage-fields.php:519
2629
- #: front-end/extra-fields/select-country/select-country.php:10
2630
  msgid "Uzbekistan"
2631
  msgstr "Uzbekistan"
2632
 
2633
- #: admin/manage-fields.php:520
2634
- #: front-end/extra-fields/select-country/select-country.php:10
2635
  msgid "Vanuatu"
2636
  msgstr "Vanuatu"
2637
 
2638
- #: admin/manage-fields.php:521
2639
  msgid "Vatican"
2640
  msgstr "Vatican"
2641
 
2642
- #: admin/manage-fields.php:522
2643
  msgid "Venezuela"
2644
  msgstr "Venezuela"
2645
 
2646
- #: admin/manage-fields.php:523
2647
  msgid "Vietnam"
2648
  msgstr "Vietnam"
2649
 
2650
- #: admin/manage-fields.php:524
2651
- #: front-end/extra-fields/select-country/select-country.php:10
2652
  msgid "Wallis and Futuna"
2653
  msgstr "Wallis and Futuna"
2654
 
2655
- #: admin/manage-fields.php:525
2656
- #: front-end/extra-fields/select-country/select-country.php:10
2657
  msgid "Western Sahara"
2658
  msgstr "Western Sahara"
2659
 
2660
- #: admin/manage-fields.php:526
2661
- #: front-end/extra-fields/select-country/select-country.php:10
2662
  msgid "Yemen"
2663
  msgstr "Yemen"
2664
 
2665
- #: admin/manage-fields.php:527
2666
- #: front-end/extra-fields/select-country/select-country.php:10
2667
  msgid "Zambia"
2668
  msgstr "Zambia"
2669
 
2670
- #: admin/manage-fields.php:528
2671
- #: front-end/extra-fields/select-country/select-country.php:10
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
- #: admin/manage-fields.php:1216
2676
  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."
2677
  msgstr ""
2678
 
2679
- #: assets/misc/plugin-compatibilities.php:237
2680
  msgid "Your account has to be confirmed by an administrator before you can log in."
2681
  msgstr "Tu cuenta debe ser confirmada por un administrador antes de que puedas loggearte."
2682
 
2683
- #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "¡Tu cuenta ha sido creada exitosamente!"
2686
 
2687
- #: features/functions.php:678
2688
- #: front-end/extra-fields/recaptcha/recaptcha.php:374
2689
- #: front-end/extra-fields/recaptcha/recaptcha.php:379
2690
- #: front-end/extra-fields/recaptcha/recaptcha.php:421
2691
- #: front-end/extra-fields/recaptcha/recaptcha.php:458
2692
  msgid "Please enter a (valid) reCAPTCHA value"
2693
  msgstr ""
2694
 
2695
- #: front-end/extra-fields/recaptcha/recaptcha.php:421
2696
  msgid "Click the BACK button on your browser, and try again."
2697
  msgstr ""
2698
 
2699
- #: front-end/extra-fields/upload/upload_helper_functions.php:78
2700
- #: front-end/extra-fields/upload/upload_helper_functions.php:87
2701
  msgid "Sorry, you cannot upload this file type for this field."
2702
  msgstr ""
2703
 
2704
- #: front-end/extra-fields/upload/upload_helper_functions.php:94
2705
  msgid "An error occurred, please try again later."
2706
  msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde."
2707
 
2708
- #: modules/user-listing/userlisting.php:282
2709
  msgid "More"
2710
  msgstr "Más"
2711
 
2712
- #: modules/user-listing/userlisting.php:376
2713
  msgid "You do not have permission to view this user list."
2714
  msgstr ""
2715
 
2716
- #: modules/user-listing/userlisting.php:389
2717
  msgid "You do not have the required user role to view this user list."
2718
  msgstr ""
2719
 
2720
- #: modules/user-listing/userlisting.php:2186
2721
  msgid "Ascending"
2722
- msgstr ""
2723
 
2724
- #: modules/user-listing/userlisting.php:2187
2725
  msgid "Descending"
2726
- msgstr ""
2727
 
2728
- #: admin/add-ons.php:148 admin/add-ons.php:248
2729
- #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213
 
 
2730
  msgid "Download Now"
2731
  msgstr "Descargar"
2732
 
2733
- #: admin/admin-functions.php:200
2734
  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. "
2735
  msgstr ""
2736
 
2737
- #: admin/manage-fields.php:80
2738
  msgid "Choose one of the supported field types"
2739
  msgstr "Escoja uno de los campos disponibles"
2740
 
2741
- #: admin/manage-fields.php:82
2742
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2743
  msgstr ""
2744
 
2745
- #: admin/manage-fields.php:129
2746
  msgid "Site Key"
2747
  msgstr "Sitio clave"
2748
 
2749
- #: admin/manage-fields.php:129
2750
  msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2751
  msgstr ""
2752
 
2753
- #: admin/manage-fields.php:130
2754
  msgid "Secret Key"
2755
  msgstr "Clave secreta"
2756
 
2757
- #: admin/manage-fields.php:130
2758
  msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2759
  msgstr ""
2760
 
2761
- #: admin/manage-fields.php:1020
2762
  msgid "You must enter the site key\n"
2763
  msgstr "Debes ingresar la clave del sitio\n"
2764
 
2765
- #: admin/manage-fields.php:1022
2766
  msgid "You must enter the secret key\n"
2767
  msgstr ""
2768
 
2769
- #: admin/add-ons.php:10 admin/add-ons.php:32
 
2770
  msgid "Add-Ons"
2771
  msgstr "Add-Ons"
2772
 
2773
- #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231
2774
- #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114
2775
- #: admin/pms-cross-promotion.php:193
 
 
 
2776
  msgid "Activate"
2777
  msgstr "Activar"
2778
 
2779
- #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80
 
2780
  msgid "Downloading and installing..."
2781
  msgstr "Bajando e instalando..."
2782
 
2783
- #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81
 
2784
  msgid "Installation complete"
2785
  msgstr "Instalación completada"
2786
 
2787
- #: admin/add-ons.php:39
2788
  msgid "Add-On is Active"
2789
  msgstr "El Add-Ons está activado"
2790
 
2791
- #: admin/add-ons.php:40
2792
  msgid "Add-On has been activated"
2793
  msgstr "El Add-On ha sido activado"
2794
 
2795
- #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85
 
2796
  msgid "Retry Install"
2797
  msgstr "Reintentar Instalación"
2798
 
2799
- #: admin/add-ons.php:43 admin/add-ons.php:140
 
2800
  msgid "Add-On is <strong>active</strong>"
2801
  msgstr ""
2802
 
2803
- #: admin/add-ons.php:44 admin/add-ons.php:138
 
2804
  msgid "Add-On is <strong>inactive</strong>"
2805
  msgstr ""
2806
 
2807
- #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235
2808
- #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118
2809
- #: admin/pms-cross-promotion.php:197
 
 
 
2810
  msgid "Deactivate"
2811
- msgstr ""
2812
 
2813
- #: admin/add-ons.php:47
2814
  msgid "Add-On has been deactivated."
2815
  msgstr ""
2816
 
2817
- #: admin/add-ons.php:59
2818
  msgid "Something went wrong, we could not connect to the server. Please try again later."
2819
- msgstr ""
2820
 
2821
- #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216
 
2822
  msgid "Install Now"
2823
- msgstr ""
2824
 
2825
- #: admin/add-ons.php:153 admin/add-ons.php:251
2826
- #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220
 
 
2827
  msgid "Compatible with your version of Profile Builder."
2828
  msgstr ""
2829
 
2830
- #: admin/add-ons.php:162
2831
  msgid "Upgrade Profile Builder"
2832
  msgstr ""
2833
 
2834
- #: admin/add-ons.php:163
2835
  msgid "Not compatible with Profile Builder"
2836
  msgstr ""
2837
 
2838
- #: admin/add-ons.php:171
2839
  msgid "Not compatible with your version of Profile Builder."
2840
  msgstr ""
2841
 
2842
- #: admin/add-ons.php:172
2843
  msgid "Minimum required Profile Builder version:"
2844
  msgstr ""
2845
 
2846
- #: admin/add-ons.php:177
2847
  msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
2848
  msgstr ""
2849
 
2850
- #: front-end/default-fields/email/email.php:51
2851
  msgid "You must enter a valid email address."
2852
  msgstr "Debe ingresar una dirección válida de email"
2853
 
2854
- #: front-end/default-fields/username/username.php:52
2855
- #: front-end/default-fields/username/username.php:60
2856
  msgid "This username is invalid because it uses illegal characters."
2857
  msgstr ""
2858
 
2859
- #: front-end/default-fields/username/username.php:52
2860
- #: front-end/default-fields/username/username.php:60
2861
  msgid "Please enter a valid username."
2862
  msgstr "Por favor ingrese un nombre de usuario válido"
2863
 
2864
- #: front-end/extra-fields/user-role/user-role.php:72
2865
- #: front-end/extra-fields/user-role/user-role.php:85
2866
  msgid "Only administrators can see this field on edit profile forms."
2867
  msgstr "Sólo administradores pueden ver este campo en el editor de formularios de perfiles"
2868
 
2869
- #: front-end/extra-fields/user-role/user-role.php:81
2870
  msgid "As an administrator you cannot change your role."
2871
  msgstr "Como administrador, no puedes cambiar tu Rol"
2872
 
2873
- #: modules/email-customizer/admin-email-customizer.php:117
2874
  msgid ""
2875
  "\n"
2876
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
2877
  "<p>His/her new password is: {{password}}</p>\n"
2878
  msgstr ""
2879
 
2880
- #: modules/email-customizer/admin-email-customizer.php:141
2881
  msgid "Admin Notification for User Password Reset"
2882
  msgstr ""
2883
 
2884
- #: modules/email-customizer/email-customizer.php:46
2885
  msgid "Reset Key"
2886
  msgstr ""
2887
 
2888
- #: modules/email-customizer/email-customizer.php:47
2889
  msgid "Reset Url"
2890
  msgstr ""
2891
 
2892
- #: modules/email-customizer/email-customizer.php:48
2893
  msgid "Reset Link"
2894
  msgstr ""
2895
 
2896
- #: modules/email-customizer/user-email-customizer.php:204
2897
  msgid ""
2898
  "\n"
2899
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
@@ -2903,15 +3130,15 @@ msgid ""
2903
  "{{{reset_link}}}</p>\n"
2904
  msgstr ""
2905
 
2906
- #: modules/email-customizer/user-email-customizer.php:218
2907
  msgid "[{{site_name}}] Password Reset"
2908
  msgstr "[{{site_name}}] Restaurar Contraseña"
2909
 
2910
- #: modules/email-customizer/user-email-customizer.php:229
2911
  msgid "Password Reset Email"
2912
  msgstr "Restaurar Contraseña vía E-mail"
2913
 
2914
- #: modules/email-customizer/user-email-customizer.php:235
2915
  msgid ""
2916
  "\n"
2917
  "<p>You have successfully reset your password to: {{password}}</p>\n"
@@ -2919,1750 +3146,1823 @@ msgstr ""
2919
  "\n"
2920
  "<p>Tu contraseña ha sido exitosamente restaurada a: {{password}}</p>\n"
2921
 
2922
- #: modules/email-customizer/user-email-customizer.php:245
2923
  msgid "[{{site_name}}] Password Reset Successfully"
2924
  msgstr ""
2925
 
2926
- #: modules/email-customizer/user-email-customizer.php:256
2927
  msgid "Password Reset Success Email"
2928
  msgstr ""
2929
 
2930
- #: modules/user-listing/userlisting.php:159
2931
  msgid "User Nicename"
2932
  msgstr "Nicename del Usuario"
2933
 
2934
- #: modules/user-listing/userlisting.php:499
 
 
2935
  msgid "None"
2936
  msgstr "Ninguno"
2937
 
2938
- #: admin/admin-functions.php:132
2939
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
2940
  msgstr "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s caracteres"
2941
 
2942
- #: admin/admin-functions.php:148
2943
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2944
  msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
2945
 
2946
- #: admin/general-settings.php:163
2947
  msgid "Username and Email"
2948
  msgstr "Usuario o Email"
2949
 
2950
- #: admin/general-settings.php:168
2951
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
2952
  msgstr "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."
2953
 
2954
- #: admin/general-settings.php:169
2955
  msgid "\"Username\" - users can Log In only with Username."
2956
  msgstr "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de Usuario."
2957
 
2958
- #: admin/general-settings.php:170
2959
  msgid "\"Email\" - users can Log In only with Email."
2960
  msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
2961
 
2962
- #: admin/manage-fields.php:122
2963
  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 (.*)"
2964
  msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)"
2965
 
2966
- #: admin/manage-fields.php:123
2967
  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 (.*)"
2968
  msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto todas las extensiones de archivos permitidas por WordPress (.*)"
2969
 
2970
- #: admin/manage-fields.php:133
2971
  msgid "User Roles"
2972
  msgstr "Roles de Usuario"
2973
 
2974
- #: admin/manage-fields.php:133
2975
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
2976
  msgstr "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte para reorganizar)"
2977
 
2978
- #: admin/manage-fields.php:134
2979
  msgid "User Roles Order"
2980
  msgstr "Orden de Roles de Usuario"
2981
 
2982
- #: admin/manage-fields.php:134
2983
  msgid "Save the user role order from the user roles checkboxes"
2984
  msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
2985
 
2986
- #: admin/manage-fields.php:1125
2987
  msgid "Please select at least one user role\n"
2988
  msgstr "Por favor seleccione al menos un rol de usuario\n"
2989
 
2990
- #: admin/register-version.php:22
2991
  msgid "Profile Builder Register"
2992
  msgstr "Registro de Profile Builder"
2993
 
2994
- #: admin/register-version.php:81
2995
  msgid "The serial number is about to expire soon!"
2996
  msgstr "¡El número de serie está a punto de expirar!"
2997
 
2998
- #: admin/register-version.php:81
2999
  msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3000
  msgstr "Su número de serie está a punto de expirar, por favor %1$s Renueve Su Licencia%2$s."
3001
 
3002
- #: admin/register-version.php:83
3003
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3004
  msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
3005
 
3006
- #: assets/lib/wck-api/wordpress-creation-kit.php:334
3007
  msgid "Add Entry"
3008
  msgstr "Adicionar Entrada"
3009
 
3010
- #: features/email-confirmation/class-email-confirmation.php:91
3011
  msgid "show"
3012
  msgstr "mostrar"
3013
 
3014
- #: features/functions.php:736
3015
  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"
3016
  msgstr "Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
3017
 
3018
- #: front-end/class-formbuilder.php:643
3019
  msgid "User to edit:"
3020
  msgstr "Usuarios a editar:"
3021
 
3022
- #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
 
3023
  msgid "The password must have the minimum length of %s characters"
3024
  msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
3025
 
3026
- #: front-end/default-fields/password/password.php:50 front-end/recover.php:258
 
3027
  msgid "The password must have a minimum strength of %s"
3028
  msgstr "La contraseña tiene que tener una fortaleza mínima de %s"
3029
 
3030
- #: front-end/extra-fields/user-role/user-role.php:118
3031
  msgid "You cannot register this user role"
3032
  msgstr "Usted no puede registrar este rol de usuario"
3033
 
3034
- #: front-end/login.php:153
3035
  msgid "username or email"
3036
  msgstr "nombre de usuario o email"
3037
 
3038
- #: front-end/login.php:222
3039
  msgid "Username or Email"
3040
  msgstr "Usuario o Email"
3041
 
3042
- #: front-end/logout.php:15
3043
  msgid "You are currently logged in as %s. "
3044
  msgstr "Usted está autenticado actualmente como %s"
3045
 
3046
- #: front-end/logout.php:15
3047
  msgid "Log out &raquo;"
3048
  msgstr "Salir &raquo;"
3049
 
3050
- #: modules/custom-redirects/custom_redirects_admin.php:92
3051
- #: modules/email-customizer/email-customizer.php:31
3052
  msgid "User Role"
3053
  msgstr "Role del Usuario"
3054
 
3055
- #: modules/user-listing/userlisting.php:2100
3056
  msgid "View all extra shortcode parameters"
3057
  msgstr "Ver todos los parámetros de código corto adicionales"
3058
 
3059
- #: modules/user-listing/userlisting.php:2114
3060
  msgid "displays only the users that you specified the user_id for"
3061
  msgstr "muestra solamente los usuarios para los que usted ha especificado el user_id"
3062
 
3063
- #: modules/user-listing/userlisting.php:2120
3064
  msgid "displays all users except the ones you specified the user_id for"
3065
  msgstr "muestra todos los usuarios excepto aquellos para los que usted ha especificado el user_id"
3066
 
3067
- #: features/functions.php:566
3068
  msgid "Minimum length of %d characters"
3069
  msgstr "Mínimo de %d caracteres. "
3070
 
3071
- #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138
 
3072
  msgid "This message is only visible by administrators"
3073
  msgstr "Este mensaje está visible solamente por administradores"
3074
 
3075
- #: modules/user-listing/userlisting.php:413
3076
  msgid "User not found"
3077
  msgstr "Usuario no encontrado"
3078
 
3079
- #: modules/email-customizer/admin-email-customizer.php:38
3080
- #: modules/email-customizer/user-email-customizer.php:38
3081
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3082
  msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
3083
 
3084
- #: admin/admin-bar.php:48
3085
  msgid "Choose which user roles view the admin bar in the front-end of the website."
3086
  msgstr "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio web."
3087
 
3088
- #: admin/manage-fields.php:127
3089
  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"
3090
  msgstr "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofes"
3091
 
3092
- #: admin/manage-fields.php:1052
3093
  msgid "The meta-name cannot be empty\n"
3094
  msgstr "El meta-nombre no puede ser vacío\n"
3095
 
3096
- #: admin/register-version.php:69
3097
  msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3098
  msgstr "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y registrarlo con el número de serie que recibió"
3099
 
3100
- #: admin/register-version.php:243
3101
  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>"
3102
  msgstr "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s</p>"
3103
 
3104
- #: assets/lib/wck-api/fields/country select.php:14
3105
- #: assets/lib/wck-api/fields/cpt select.php:17
3106
- #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3107
- #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3108
- #: front-end/extra-fields/select-cpt/select-cpt.php:60
 
3109
  msgid "...Choose"
3110
  msgstr "...Escoger"
3111
 
3112
- #: features/class-list-table.php:526 features/class-list-table.php:942
 
3113
  msgid "1 item"
3114
- msgid_plural "%s items"
3115
- msgstr[0] "1 elemento"
3116
- msgstr[1] ""
3117
 
3118
- #: features/functions.php:552
3119
  msgid "Very Weak"
3120
  msgstr "Muy Débil"
3121
 
3122
- #: features/functions.php:640
3123
  msgid "This field is required"
3124
  msgstr "Campo requerido"
3125
 
3126
- #: features/functions.php:704
3127
  msgid "Cancel"
3128
  msgstr "Cancelar"
3129
 
3130
- #: features/functions.php:740
3131
  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"
3132
  msgstr "Para permitir a los usuarios registrarse para su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$s"
3133
 
3134
- #: front-end/login.php:144
3135
  msgid "Invalid username."
3136
  msgstr "Nombre de usuario inválido."
3137
 
3138
- #: front-end/login.php:149 front-end/login.php:153
 
3139
  msgid "username"
3140
  msgstr "nombre de usuario"
3141
 
3142
- #: front-end/login.php:149
3143
  msgid "email"
3144
  msgstr "email"
3145
 
3146
- #: front-end/login.php:256
3147
  msgid "Lost your password?"
3148
  msgstr "¿Perdió su contraseña?"
3149
 
3150
- #: index.php:34
3151
  msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3152
  msgstr "está también activado. Necesita desactivarlo antes de activar está versión del plugin."
3153
 
3154
- #: modules/email-customizer/admin-email-customizer.php:54
3155
- #: modules/email-customizer/user-email-customizer.php:54
3156
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3157
  msgstr "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que tiene por defecto el email del administrador"
3158
 
3159
- #: features/email-confirmation/email-confirmation.php:573
3160
- #: features/email-confirmation/email-confirmation.php:582
3161
- #: modules/email-customizer/email-customizer.php:487
3162
- #: modules/email-customizer/email-customizer.php:494
3163
- #: modules/email-customizer/email-customizer.php:508
3164
  msgid "Your selected password at signup"
3165
  msgstr "Su contraseña seleccionada al inscribirse"
3166
 
3167
- #: modules/email-customizer/user-email-customizer.php:38
3168
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3169
  msgstr "Estos ajustes también se replican en la página de ajustes de \"Personalizador de Email de Admin\" al salvar."
3170
 
3171
- #: modules/multiple-forms/edit-profile-forms.php:274
3172
  msgid "This form is empty."
3173
  msgstr "Esta forma está vacía."
3174
 
3175
- #: modules/multiple-forms/multiple-forms.php:406
3176
  msgid "Delete all items"
3177
  msgstr "Borrar todos los elementos"
3178
 
3179
- #: modules/multiple-forms/multiple-forms.php:406
3180
  msgid "Delete all"
3181
  msgstr "Borrar todo"
3182
 
3183
- #: modules/user-listing/userlisting.php:1592
3184
  msgid "Choose..."
3185
  msgstr "Escoger..."
3186
 
3187
- #: modules/user-listing/userlisting.php:2196
3188
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3189
  msgstr "Establecer el número de usuarios a mostrarse en cada parte paginada del all-userlisting"
3190
 
3191
- #: admin/admin-bar.php:10
3192
  msgid "Show/Hide the Admin Bar on the Front-End"
3193
  msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública"
3194
 
3195
- #: admin/admin-bar.php:10 admin/admin-bar.php:47
 
3196
  msgid "Admin Bar Settings"
3197
  msgstr "Ajustes de Admin Bar"
3198
 
3199
- #: admin/admin-bar.php:57
3200
  msgid "User-Role"
3201
  msgstr "Usuario-Rol"
3202
 
3203
- #: admin/admin-bar.php:58
3204
  msgid "Visibility"
3205
  msgstr "Visibilidad"
3206
 
3207
- #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3208
- #: modules/multiple-forms/register-forms.php:230
 
3209
  msgid "Default"
3210
  msgstr "Valor Por Defecto"
3211
 
3212
- #: admin/admin-bar.php:74
3213
  msgid "Show"
3214
  msgstr "Mostrar"
3215
 
3216
- #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537
 
3217
  msgid "Hide"
3218
  msgstr "Ocultar"
3219
 
3220
- #: admin/admin-bar.php:86 admin/general-settings.php:208
3221
- #: admin/register-version.php:95 features/functions.php:697
3222
- #: modules/modules.php:127
 
 
 
3223
  msgid "Save Changes"
3224
  msgstr "Salvar Cambios"
3225
 
3226
- #: admin/admin-functions.php:37
3227
  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 )"
3228
  msgstr "La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña \"%s\") "
3229
 
3230
- #: admin/admin-functions.php:37 admin/general-settings.php:10
3231
- #: admin/general-settings.php:38
 
3232
  msgid "General Settings"
3233
  msgstr "Ajustes Generales"
3234
 
3235
- #: admin/admin-functions.php:137 admin/general-settings.php:194
 
3236
  msgid "Very weak"
3237
  msgstr "Muy débil"
3238
 
3239
- #: admin/admin-functions.php:137 admin/general-settings.php:195
3240
- #: features/functions.php:552
 
3241
  msgid "Weak"
3242
  msgstr "Débil"
3243
 
3244
- #: admin/admin-functions.php:137 admin/general-settings.php:196
3245
- #: features/functions.php:552
 
3246
  msgid "Medium"
3247
  msgstr "Media"
3248
 
3249
- #: admin/admin-functions.php:137 admin/general-settings.php:197
3250
- #: features/functions.php:552
 
3251
  msgid "Strong"
3252
  msgstr "Fuerte"
3253
 
3254
- #: admin/admin-functions.php:187
3255
  msgid "Add Field"
3256
  msgstr "Adicionar Campo"
3257
 
3258
- #: admin/admin-functions.php:189
3259
- #: modules/class-mustache-templates/class-mustache-templates.php:390
3260
  msgid "Save Settings"
3261
  msgstr "Salvar Ajustes"
3262
 
3263
- #: admin/basic-info.php:10
3264
  msgid "Basic Information"
3265
  msgstr "Información Básica"
3266
 
3267
- #: admin/basic-info.php:29
3268
  msgid "Version %s"
3269
  msgstr "Versión %s"
3270
 
3271
- #: admin/basic-info.php:30
3272
  msgid "<strong>Profile Builder </strong>"
3273
  msgstr "<strong>Profile Builder </strong>"
3274
 
3275
- #: admin/basic-info.php:31
3276
  msgid "The best way to add front-end registration, edit profile and login forms."
3277
  msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
3278
 
3279
- #: admin/basic-info.php:33
3280
  msgid "For Modern User Interaction"
3281
  msgstr "Para la Interacción del Usuario Moderno"
3282
 
3283
- #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
 
 
3284
  msgid "Login"
3285
  msgstr "Autenticación"
3286
 
3287
- #: admin/basic-info.php:40
3288
  msgid "Registration"
3289
  msgstr "Registro"
3290
 
3291
- #: admin/basic-info.php:44
3292
  msgid "Edit Profile"
3293
  msgstr "Editar Perfil"
3294
 
3295
- #: admin/basic-info.php:51
3296
  msgid "Extra Features"
3297
  msgstr "Características extras."
3298
 
3299
- #: admin/basic-info.php:52
3300
  msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3301
  msgstr "Características que le dan más control sobre sus usuarios, incrementando la seguridad y ayudándolo a evitar los registros spams de usuarios."
3302
 
3303
- #: admin/basic-info.php:53
3304
  msgid "Enable extra features"
3305
  msgstr "Habilitar características extras"
3306
 
3307
- #: admin/basic-info.php:57
3308
  msgid "Recover Password"
3309
  msgstr "Recuperar contraseña"
3310
 
3311
- #: admin/basic-info.php:61
3312
  msgid "Admin Approval (*)"
3313
  msgstr "Aprobación del Admin (*)"
3314
 
3315
- #: admin/basic-info.php:62
3316
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3317
  msgstr "Usted decide quién es un usuario en su sitio web. Obtenga notificación via email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de WordPress."
3318
 
3319
- #: admin/basic-info.php:65
3320
  msgid "Email Confirmation"
3321
  msgstr "Confirmación de Email"
3322
 
3323
- #: admin/basic-info.php:66
3324
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3325
  msgstr "Esté seguro que los usuarios se autentican con emails genuinos. En el registro los usuarios recibirán una notificación para confirmar sus direcciones de email."
3326
 
3327
- #: admin/basic-info.php:69
3328
  msgid "Minimum Password Length and Strength Meter"
3329
  msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
3330
 
3331
- #: admin/basic-info.php:70
3332
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3333
  msgstr "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña."
3334
 
3335
- #: admin/basic-info.php:73
3336
  msgid "Login with Email or Username"
3337
  msgstr "Autenticación con Email o Nombre de Usuario"
3338
 
3339
- #: admin/basic-info.php:74
3340
  msgid "Allow users to log in with their email or username when accessing your site."
3341
  msgstr "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio."
3342
 
3343
- #: admin/basic-info.php:87
3344
  msgid "Customize Your Forms The Way You Want (*)"
3345
  msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
3346
 
3347
- #: admin/basic-info.php:88
3348
  msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3349
  msgstr "Con Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto."
3350
 
3351
- #: admin/basic-info.php:90
3352
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3353
  msgstr "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
3354
 
3355
- #: admin/basic-info.php:92
3356
  msgid "Get started with extra fields"
3357
  msgstr "Comience con los campos extras"
3358
 
3359
- #: admin/basic-info.php:95
3360
  msgid "Avatar Upload"
3361
  msgstr "Subida de Avatar"
3362
 
3363
- #: admin/basic-info.php:96
3364
  msgid "Generic Uploads"
3365
  msgstr "Subidas Genéricas"
3366
 
3367
- #: admin/basic-info.php:97
3368
  msgid "Agree To Terms Checkbox"
3369
  msgstr "Casilla de Aceptar los Términos"
3370
 
3371
- #: admin/basic-info.php:98
3372
  msgid "Datepicker"
3373
  msgstr "Selector de Fecha"
3374
 
3375
- #: admin/basic-info.php:101
3376
  msgid "reCAPTCHA"
3377
  msgstr "reCAPTCHA"
3378
 
3379
- #: admin/basic-info.php:102
3380
  msgid "Country Select"
3381
  msgstr "Selector de País"
3382
 
3383
- #: admin/basic-info.php:104
3384
  msgid "Timezone Select"
3385
  msgstr "Selector de Zona Horaria"
3386
 
3387
- #: admin/basic-info.php:108
3388
  msgid "Input / Hidden Input"
3389
  msgstr "Input / Input Oculto"
3390
 
3391
- #: admin/basic-info.php:110
3392
  msgid "Checkbox"
3393
  msgstr "Casilla"
3394
 
3395
- #: admin/basic-info.php:111
3396
  msgid "Select"
3397
  msgstr "Selector"
3398
 
3399
- #: admin/basic-info.php:112
3400
  msgid "Radio Buttons"
3401
  msgstr "Botones Redondos"
3402
 
3403
- #: admin/basic-info.php:113
3404
  msgid "Textarea"
3405
  msgstr "Área de Texto"
3406
 
3407
- #: admin/basic-info.php:125
3408
  msgid "Powerful Modules (**)"
3409
  msgstr "Módulos Potentes (**)"
3410
 
3411
- #: admin/basic-info.php:126
3412
  msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3413
  msgstr "Todo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. "
3414
 
3415
- #: admin/basic-info.php:128
3416
  msgid "Enable your modules"
3417
  msgstr "Habilitar sus módulos"
3418
 
3419
- #: admin/basic-info.php:131
3420
  msgid "Find out more about PRO Modules"
3421
  msgstr "Descubra más acerca de PRO Modules"
3422
 
3423
- #: admin/basic-info.php:136 modules/modules.php:89
3424
- #: modules/user-listing/userlisting.php:11
3425
- #: modules/user-listing/userlisting.php:12
3426
- #: modules/user-listing/userlisting.php:17
3427
- #: modules/user-listing/userlisting.php:23
 
3428
  msgid "User Listing"
3429
  msgstr "Listado de Usuario"
3430
 
3431
- #: admin/basic-info.php:138
3432
  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."
3433
  msgstr "Plantillas fácil de editar para listar sus usuarios del sitio web así como crear páginas de un usuario simple. Basado en código corto, ofrece muchas opciones para personalizar sus listados."
3434
 
3435
- #: admin/basic-info.php:144
3436
  msgid "Email Customizer"
3437
  msgstr "Personalizador de Email"
3438
 
3439
- #: admin/basic-info.php:145
3440
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3441
  msgstr "Personalice todos los emails enviados a sus usuarios o administradores. En el registro, la confirmación de email y la aprobación/desaprobación de admin."
3442
 
3443
- #: admin/basic-info.php:148
3444
- #: modules/custom-redirects/custom_redirects_admin.php:32
3445
- #: modules/custom-redirects/custom_redirects_admin.php:33
3446
- #: modules/modules.php:110
3447
  msgid "Custom Redirects"
3448
  msgstr "Redirecciones Personalizadas"
3449
 
3450
- #: admin/basic-info.php:149
3451
  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."
3452
  msgstr "Mantenga sus usuarios fuera del panel de control de WordPRess, redirecciónelos a la vista pública luego de la autenticación o registro, todo está a unos clics."
3453
 
3454
- #: admin/basic-info.php:154 modules/modules.php:75
 
3455
  msgid "Multiple Registration Forms"
3456
  msgstr "Formas de Registro Múltiple"
3457
 
3458
- #: admin/basic-info.php:155
3459
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3460
  msgstr "Establecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios."
3461
 
3462
- #: admin/basic-info.php:158 modules/modules.php:82
 
3463
  msgid "Multiple Edit-profile Forms"
3464
  msgstr "Formas de Edición de Múltiples Perfiles"
3465
 
3466
- #: admin/basic-info.php:159
3467
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3468
  msgstr "Permite a diferentes roles de usuario editar sus informaciones específicas. Establezca las formas de edición de múltiples perfiles con diferentes campos para ciertos roles de usuario."
3469
 
3470
- #: admin/basic-info.php:187
3471
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3472
  msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
3473
 
3474
- #: admin/basic-info.php:188
3475
  msgid "** only available in the %1$sPro version%2$s."
3476
  msgstr "* solamente disponible en la %1$sversión Pro%2$s."
3477
 
3478
- #: admin/general-settings.php:42
3479
  msgid "Load Profile Builder's own CSS file in the front-end:"
3480
  msgstr "El propio CSS de Load Profile Builder en la vista pública:"
3481
 
3482
- #: admin/general-settings.php:45 admin/general-settings.php:58
3483
- #: admin/general-settings.php:107
3484
- #: modules/multiple-forms/edit-profile-forms.php:206
3485
- #: modules/multiple-forms/register-forms.php:229
3486
- #: modules/multiple-forms/register-forms.php:230
3487
- #: modules/user-listing/userlisting.php:2201
 
 
3488
  msgid "Yes"
3489
  msgstr "Si"
3490
 
3491
- #: admin/general-settings.php:47
3492
  msgid "You can find the default file here: %1$s"
3493
  msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s"
3494
 
3495
- #: admin/general-settings.php:54
3496
  msgid "\"Email Confirmation\" Activated:"
3497
  msgstr "\"Confirmación de Email\" Activada:"
3498
 
3499
- #: admin/general-settings.php:59 admin/general-settings.php:108
3500
- #: modules/multiple-forms/edit-profile-forms.php:206
3501
- #: modules/multiple-forms/register-forms.php:229
3502
- #: modules/multiple-forms/register-forms.php:230
 
 
3503
  msgid "No"
3504
  msgstr "No"
3505
 
3506
- #: admin/general-settings.php:64
3507
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3508
  msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
3509
 
3510
- #: admin/general-settings.php:72
3511
  msgid "\"Email Confirmation\" Landing Page:"
3512
  msgstr "Página de llegada de \"Confirmación de Email\":"
3513
 
3514
- #: admin/general-settings.php:77
3515
  msgid "Existing Pages"
3516
  msgstr "Páginas Existentes"
3517
 
3518
- #: admin/general-settings.php:92
3519
  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."
3520
  msgstr "Especificar la página donde los usuarios serán redirigidos cuando se confirma la cuenta de email. Esta página puede ser diferente a la(s) página(s) de registro y puede ser cambiada en cualquier momento."
3521
 
3522
- #: admin/general-settings.php:103
3523
  msgid "\"Admin Approval\" Activated:"
3524
  msgstr "\"Aprobación del Admin\" Activada:"
3525
 
3526
- #: admin/general-settings.php:111
3527
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3528
  msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
3529
 
3530
- #: admin/general-settings.php:149
3531
  msgid "\"Admin Approval\" Feature:"
3532
  msgstr "Característica \"Aprobación del Admin\":"
3533
 
3534
- #: admin/general-settings.php:152
3535
  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."
3536
  msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s."
3537
 
3538
- #: admin/general-settings.php:159
3539
  msgid "Allow Users to Log in With:"
3540
  msgstr "Permitir a los Usuaios Autenticarse Con:"
3541
 
3542
- #: admin/general-settings.php:164 admin/manage-fields.php:198
3543
- #: features/admin-approval/class-admin-approval.php:166
3544
- #: features/email-confirmation/class-email-confirmation.php:167
3545
- #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3546
- #: modules/custom-redirects/custom_redirects_admin.php:56
3547
- #: modules/email-customizer/email-customizer.php:28
3548
- #: modules/user-listing/userlisting.php:102
3549
- #: modules/user-listing/userlisting.php:277
3550
- #: modules/user-listing/userlisting.php:730
3551
- #: modules/user-listing/userlisting.php:2152
 
 
 
3552
  msgid "Username"
3553
  msgstr "Nombre de Usuario"
3554
 
3555
- #: admin/general-settings.php:165 front-end/login.php:215
3556
- #: modules/email-customizer/email-customizer.php:29
3557
- #: modules/user-listing/userlisting.php:736
3558
- #: modules/user-listing/userlisting.php:2153
 
3559
  msgid "Email"
3560
  msgstr "Email"
3561
 
3562
- #: admin/general-settings.php:177
3563
  msgid "Minimum Password Length:"
3564
  msgstr "Tamaño Mínimo de Contraseña:"
3565
 
3566
- #: admin/general-settings.php:182
3567
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3568
  msgstr "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo."
3569
 
3570
- #: admin/general-settings.php:189
3571
  msgid "Minimum Password Strength:"
3572
  msgstr "Fortaleza Mínima de Contraseña:"
3573
 
3574
- #: admin/general-settings.php:193
3575
  msgid "Disabled"
3576
  msgstr "Deshabilitado"
3577
 
3578
- #: admin/manage-fields.php:12
3579
  msgid "Manage Fields"
3580
  msgstr "Gestionar Campos"
3581
 
3582
- #: admin/manage-fields.php:13
3583
  msgid "Manage Default and Extra Fields"
3584
  msgstr "Gestionar Campos Por Defecto y Adicionales"
3585
 
3586
- #: admin/manage-fields.php:116
3587
  msgid "Field Title"
3588
  msgstr "Título del Campo"
3589
 
3590
- #: admin/manage-fields.php:116
3591
  msgid "Title of the field"
3592
  msgstr "Título del Campo"
3593
 
3594
- #: admin/manage-fields.php:117
3595
- #: modules/multiple-forms/edit-profile-forms.php:245
3596
- #: modules/multiple-forms/register-forms.php:266
3597
  msgid "Field"
3598
  msgstr "Campo"
3599
 
3600
- #: admin/manage-fields.php:118
3601
  msgid "Meta-name"
3602
  msgstr "Meta-nombre"
3603
 
3604
- #: admin/manage-fields.php:119
3605
- #: modules/custom-redirects/custom_redirects_admin.php:65
3606
- #: modules/custom-redirects/custom_redirects_admin.php:95
3607
- #: modules/custom-redirects/custom_redirects_admin.php:114
3608
- #: modules/custom-redirects/custom_redirects_admin.php:139
3609
- #: modules/multiple-forms/edit-profile-forms.php:246
3610
- #: modules/multiple-forms/register-forms.php:267
3611
  msgid "ID"
3612
  msgstr "ID"
3613
 
3614
- #: admin/manage-fields.php:119
3615
- #: modules/multiple-forms/edit-profile-forms.php:246
3616
- #: modules/multiple-forms/register-forms.php:267
3617
  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"
3618
  msgstr "Un ID único y auto-generado para este campo particular<br/> Usted puede usar esto en conjunción con filtros para apuntar a este elemento si se necesita<br/>No puede ser editado"
3619
 
3620
- #: admin/manage-fields.php:120
3621
  msgid "Description"
3622
  msgstr "Descripción"
3623
 
3624
- #: admin/manage-fields.php:120
3625
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3626
  msgstr "Entre una descripción (detallada) de la opción para que los usuarios finales lean<br/>Opcional"
3627
 
3628
- #: admin/manage-fields.php:121
3629
  msgid "Row Count"
3630
  msgstr "Cantidad de Filas"
3631
 
3632
- #: admin/manage-fields.php:121
3633
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3634
  msgstr "Especificar el número de filas para un campo 'Textarea'<br/>"
3635
 
3636
- #: admin/manage-fields.php:122
3637
  msgid "Allowed Image Extensions"
3638
  msgstr "Extensiones de Imagen Permitidas"
3639
 
3640
- #: admin/manage-fields.php:123
3641
  msgid "Allowed Upload Extensions"
3642
  msgstr "Extensiones de Subida Permitidas"
3643
 
3644
- #: admin/manage-fields.php:124
3645
  msgid "Avatar Size"
3646
  msgstr "Tamaño del Avatar"
3647
 
3648
- #: admin/manage-fields.php:124
3649
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3650
  msgstr "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no se especifica, deja por defecto 100"
3651
 
3652
- #: admin/manage-fields.php:125
3653
  msgid "Date-format"
3654
  msgstr "Formato de fecha"
3655
 
3656
- #: admin/manage-fields.php:126
3657
  msgid "Terms of Agreement"
3658
  msgstr "Términos del Acuerdo"
3659
 
3660
- #: admin/manage-fields.php:126
3661
  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;"
3662
  msgstr "Entrar una descripción detallada de los términos del acuerdo para que el usuario lea.<br/> Los enlaces pueden ser insertados usando sintaxis HTML estándar:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3663
 
3664
- #: admin/manage-fields.php:127
3665
  msgid "Options"
3666
  msgstr "Opciones"
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:44:15+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\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 "<br><br>Puedes visitar tu sitio en"
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 "Título del sitio"
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 "Si, me gustaría crear un sitio nuevo"
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 "¡Bienvenido a %1$s!<br/><br/><br/>Tu nombre de usuarui es:%2$s"
105
 
106
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
  msgid "View Map"
108
+ msgstr "Ver mapa"
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 ""
195
 
196
+ #: profile-builder-2.0/admin/add-ons.php:105
197
  msgid "Available in All Versions"
198
+ msgstr "Disponible en todas las versiones"
199
 
200
+ #: profile-builder-2.0/admin/add-ons.php:148
201
  msgid "Learn More"
202
+ msgstr "Aprende más"
203
 
204
+ #: profile-builder-2.0/admin/basic-info.php:99
205
  msgid "Timepicker"
206
  msgstr ""
207
 
208
+ #: profile-builder-2.0/admin/basic-info.php:100
209
  msgid "Colorpicker"
210
  msgstr ""
211
 
212
+ #: profile-builder-2.0/admin/basic-info.php:103
213
  msgid "Currency Select"
214
  msgstr ""
215
 
216
+ #: profile-builder-2.0/admin/basic-info.php:109
217
  msgid "Number"
218
+ msgstr "Número"
219
 
220
+ #: profile-builder-2.0/admin/basic-info.php:114
221
  msgid "Validation"
222
+ msgstr "Validación"
223
 
224
+ #: profile-builder-2.0/admin/basic-info.php:115
225
  msgid "Map"
226
+ msgstr "Mapa"
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 "Campos repetitivos"
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 ""
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 ""
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 ""
264
 
265
+ #: profile-builder-2.0/admin/manage-fields.php:145
266
  msgid "Allowable Values"
267
  msgstr ""
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 ""
272
 
273
+ #: profile-builder-2.0/admin/manage-fields.php:146
274
  msgid "Error Message"
275
  msgstr ""
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 ""
280
 
281
+ #: profile-builder-2.0/admin/manage-fields.php:147
282
  msgid "Time Format"
283
  msgstr ""
284
 
285
+ #: profile-builder-2.0/admin/manage-fields.php:147
286
  msgid "Specify the time format."
287
  msgstr ""
288
 
289
+ #: profile-builder-2.0/admin/manage-fields.php:148
290
  msgid "Google Maps API Key"
291
+ msgstr "Clave de la API de Google Maps"
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 ""
296
 
297
+ #: profile-builder-2.0/admin/manage-fields.php:149
298
  msgid "Default Latitude"
299
  msgstr ""
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 ""
304
 
305
+ #: profile-builder-2.0/admin/manage-fields.php:150
306
  msgid "Default Longitude"
307
  msgstr ""
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 ""
312
 
313
+ #: profile-builder-2.0/admin/manage-fields.php:151
314
  msgid "Default Zoom Level"
315
  msgstr ""
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 "Contenido HTML"
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 ""
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 ""
344
 
345
+ #: profile-builder-2.0/admin/manage-fields.php:155
346
  msgid "Eg. (###) ###-####"
347
  msgstr ""
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 "Valor mínimo"
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 "Dejar vacío para ningún valor mínimo"
372
 
373
+ #: profile-builder-2.0/admin/manage-fields.php:158
374
  msgid "Max Number Value"
375
+ msgstr "Valor máximo"
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 "Valor máximo permitido (0 para permitir sólo números negativos)"
380
 
381
+ #: profile-builder-2.0/admin/manage-fields.php:158
382
  msgid "Leave it empty for no max value"
383
+ msgstr "Dejar vacío para ningún valor máximo"
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 "Déjalo vacío para ninguna restricción"
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 ""
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 ""
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 "Peso mexicano"
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 "No se te permite hacer esto."
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 "Buscar usuarios"
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 "Número de teléfono incorrecto"
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 "Añade la clave de la API de Google Maps para este campo."
903
 
904
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
  msgid "Something went wrong. Please try again."
906
+ msgstr "Algo salió mal. Por favor inténtalo de nuevo."
907
 
908
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
  msgid "Please enter numbers only"
910
+ msgstr "Por favor ingresa números solamente"
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 "Mostrar todos"
1142
 
1143
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
  msgid "No options available"
1145
+ msgstr "No hay opciones disponibles"
1146
 
1147
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
  msgid "Remove All Filters"
1149
+ msgstr "Quitar todos los filtros"
1150
 
1151
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
  msgid "Label"
1153
+ msgstr "Etiqueta"
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 "Comportamiento"
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 "Nombre de la empresa"
1215
+
1216
+ #: pb-add-on-woocommerce/billing-fields.php:9
1217
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1218
+ msgid "Address"
1219
+ msgstr "Dirección"
1220
+
1221
+ #: pb-add-on-woocommerce/billing-fields.php:5
1222
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1223
+ msgid "Country"
1224
+ msgstr "País"
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 "Ciudad"
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 "Estado / Región"
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 "Código Postal"
1240
+
1241
+ #: pb-add-on-woocommerce/billing-fields.php:14
1242
+ msgid "Email Address"
1243
+ msgstr "Correo electrónico"
1244
+
1245
+ #: pb-add-on-woocommerce/billing-fields.php:15
1246
+ msgid "Phone"
1247
+ msgstr "Teléfono"
1248
+
1249
+ #: pb-add-on-woocommerce/billing-fields.php:278
1250
+ msgid "Ship to a different address?"
1251
+ msgstr "¿Enviar a una dirección diferente?"
1252
+
1253
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
+ msgid "Billing Address"
1255
+ msgstr "Dirección de Facturación"
1256
+
1257
+ #: pb-add-on-woocommerce/index.php:169
1258
+ msgid "Displays customer billing fields in front-end. "
1259
+ msgstr "Mostrar campos de facturación del cliente en el front-end"
1260
+
1261
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
+ msgid "Shipping Address"
1263
+ msgstr "Dirección de envío"
1264
+
1265
+ #: pb-add-on-woocommerce/index.php:173
1266
+ msgid "Displays customer shipping fields in front-end. "
1267
+ msgstr "Mostrar campos de envío del cliente en el front-end"
1268
+
1269
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
+ msgid "Display on WooCommerce Checkout"
1271
+ msgstr "Mostrar en el Checkout de Woocommerce"
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 "Ya sea que el campo debe ser añadido a la forma de pago WooCommerce o no"
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 "WooCommerce necesita estar instalado y activado para que Profile Builder - WooCommerce Sync Add-on trabaje correctamente!"
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 Sync"
1285
+
1286
+ #: pb-add-on-woocommerce/woosync-page.php:76
1287
+ msgid "Choose Register form to display on My Account page:"
1288
+ msgstr "Seleccione el formulario de Registro a mostrar en la página \"Mi cuenta\""
1289
+
1290
+ #: pb-add-on-woocommerce/woosync-page.php:81
1291
+ msgid "Default Register"
1292
+ msgstr "Registro por defecto"
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 ""
1297
+ "Selecciona el formulario de Profile Builder para mostrar en la página \"Mi cuenta\" de WooCommerce.<br/>\n"
1298
+ "Esto también añadirá el formulario de Profile Builder Login a la página \"Mi cuenta\"."
1299
+
1300
+ #: pb-add-on-woocommerce/woosync-page.php:110
1301
+ msgid "Choose Edit Profile form to display on My Account page:"
1302
+ msgstr "Elige el formulario Editar Perfil para que aparezca en la pagina de Mi Cuenta:"
1303
+
1304
+ #: pb-add-on-woocommerce/woosync-page.php:115
1305
+ msgid "Default Edit Profile"
1306
+ msgstr "Perfil de Editar Predeterminado"
1307
+
1308
+ #: pb-add-on-woocommerce/woosync-page.php:137
1309
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1310
+ msgstr "Selecciona que formulario de Editar-perfil de Profile Builder para mostrar en la pagina Mi cuenta de WooComerce"
1311
+
1312
+ #: profile-builder-2.0/admin/add-ons.php:190
1313
  msgid "Recommended Plugins"
1314
  msgstr "Plugins recomendados"
1315
 
1316
+ #: profile-builder-2.0/admin/add-ons.php:219
1317
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1318
  msgid "Free"
1319
  msgstr "Gratis"
1320
 
1321
+ #: profile-builder-2.0/admin/add-ons.php:221
1322
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1323
  msgstr "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el contenido en tu sitio de afiliación"
1324
 
1325
+ #: profile-builder-2.0/admin/add-ons.php:222
1326
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1327
  msgid "More Details"
1328
  msgstr "Mas detalles"
1329
 
1330
+ #: profile-builder-2.0/admin/add-ons.php:240
1331
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1332
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1333
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1334
  msgid "Plugin is <strong>inactive</strong>"
1335
  msgstr "Plugin <strong>desactivado</strong>"
1336
 
1337
+ #: profile-builder-2.0/admin/add-ons.php:242
1338
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1339
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1340
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1341
  msgid "Plugin is <strong>active</strong>"
1342
  msgstr "Plugin <strong>activado</strong>"
1343
 
1344
+ #: profile-builder-2.0/admin/add-ons.php:256
1345
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1346
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1347
  msgstr "No se pudo instalar el plugin. Reintente o <a href=\"%s\" target=\"_blank\">instale manualmente</a>."
1348
 
1349
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1350
  msgid "Paid Accounts"
1351
  msgstr "Cuentas de Pago"
1352
 
1353
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1354
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1355
  msgstr "Paid Member Subscription - un plugin gratuito de WordPress"
1356
 
1357
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1358
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1359
  msgstr "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de registro le permitirán a tus usuario registrarse en cuentas de paga."
1360
 
1361
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1362
  msgid "Paid & Free Subscriptions"
1363
  msgstr "Suscripciones Gratuitas y de Pago."
1364
 
1365
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1366
  msgid "Restrict Content"
1367
  msgstr "Contenido restringido"
1368
 
1369
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1370
  msgid "Member Management"
1371
  msgstr "Gestion de Miembros"
1372
 
1373
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1374
  msgid "Email Templates"
1375
  msgstr "Plantillas de Correo Electronico"
1376
 
1377
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1378
  msgid "Account Management"
1379
  msgstr "Administrar cuenta"
1380
 
1381
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1382
  msgid "Subscription Management"
1383
  msgstr "Administrar suscripción"
1384
 
1385
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1386
  msgid "Payment Management"
1387
  msgstr "Administrar pago"
1388
 
1389
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1390
  msgid "Plugin is Active"
1391
  msgstr "El plugin está activado"
1392
 
1393
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1394
  msgid "Plugin has been activated"
1395
  msgstr "El plugin ha sido activado"
1396
 
1397
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1398
  msgid "Plugin has been deactivated."
1399
  msgstr "El plugin ha sido desactivado"
1400
 
1401
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1402
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1403
  msgstr "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el contenido de su página web."
1404
 
1405
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1406
  msgid "Step by Step Quick Setup"
1407
  msgstr "Configuración Rapida Paso a Paso"
1408
 
1409
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1410
  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."
1411
  msgstr "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
1412
 
1413
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1414
  msgid "After Login"
1415
  msgstr "Después de Iniciar sesión"
1416
 
1417
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1418
  msgid "After Logout"
1419
  msgstr "Después de Terminar sesión"
1420
 
1421
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1422
  msgid "After Registration"
1423
  msgstr "Después de Registrarse"
1424
 
1425
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1426
  msgid "After Edit Profile"
1427
  msgstr ""
1428
 
1429
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1430
  msgid "After Successful Email Confirmation"
1431
  msgstr ""
1432
 
1433
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1434
  msgid "After Successful Password Reset"
1435
  msgstr ""
1436
 
1437
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1438
  msgid "Dashboard (redirect users from accessing the dashboard)"
1439
  msgstr ""
1440
 
1441
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1442
  msgid "User ID"
1443
  msgstr "Identidicación del usuario"
1444
 
1445
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1446
  msgid "User ID or Username"
1447
  msgstr "ID o Nombre de Usuario"
1448
 
1449
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1450
  msgid "User ID / Username"
1451
  msgstr ""
1452
 
1453
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1454
  msgid "Please select and enter the ID or username of your user."
1455
  msgstr "Por favor elije e ingrese el ID o el nombre de usuario de su cuenta."
1456
 
1457
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1458
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1459
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1460
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1461
  msgid "Redirect Type"
1462
  msgstr ""
1463
 
1464
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1465
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1466
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1467
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1468
  msgid "Redirect URL"
1469
  msgstr ""
1470
 
1471
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1472
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1473
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1474
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1475
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1476
  msgstr ""
1477
 
1478
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1479
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1480
  msgid "Individual User Redirects"
1481
  msgstr ""
1482
 
1483
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1484
  msgid "... Choose"
1485
  msgstr ""
1486
 
1487
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1488
  msgid "Select a user role."
1489
+ msgstr "Selecciona un rol de usuario."
1490
 
1491
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1492
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1493
  msgid "User Role based Redirects"
1494
  msgstr ""
1495
 
1496
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1497
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1498
  msgid "Global Redirects"
1499
  msgstr ""
1500
 
1501
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1502
  msgid "Login ( wp_login.php )"
1503
+ msgstr "Iniciar sesión ( wp_login.php )"
1504
 
1505
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1506
  msgid "Register ( wp-login.php?action=register )"
1507
+ msgstr "Registrarse ( wp-login.php?action=register )"
1508
 
1509
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1510
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1511
+ msgstr "Perdí mi contraseña ( wp-login.php?action=lostpassword )"
1512
 
1513
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1514
  msgid "Author Archive ( http://sitename.com/author/admin )"
1515
+ msgstr "Archivos del autor ( http://sitename.com/author/admin )"
1516
 
1517
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1518
  msgid "Redirect Default WordPress Forms and Pages"
1519
  msgstr ""
1520
 
1521
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1522
  msgid "How does this work?"
1523
  msgstr ""
1524
 
1525
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1526
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1527
  msgstr ""
1528
 
1529
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1530
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1531
  msgstr ""
1532
 
1533
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1534
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1535
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1536
  msgstr ""
1537
 
1538
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1539
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1540
  msgstr ""
1541
 
1542
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1543
  msgid "Which redirect happens depends on the following priority:"
1544
  msgstr ""
1545
 
1546
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1547
  msgid "Redirect Default WordPress forms and pages"
1548
  msgstr ""
1549
 
1550
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1551
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1552
  msgstr ""
1553
 
1554
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1555
  msgid "Available tags for dynamic URLs"
1556
  msgstr ""
1557
 
1558
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1559
  msgid "You use the following tags in your URLs to redirect users to various pages."
1560
  msgstr ""
1561
 
1562
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1563
  msgid "generates a url of the current website homepage."
1564
  msgstr ""
1565
 
1566
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1567
  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"
1568
  msgstr ""
1569
 
1570
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1571
  msgid "the ID of the user"
1572
  msgstr ""
1573
 
1574
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1575
  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."
1576
  msgstr ""
1577
 
1578
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1579
  msgid "the URL of the previously visited page"
1580
  msgstr ""
1581
 
1582
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1583
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1584
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1585
  msgid "You can't add duplicate redirects!"
1586
  msgstr ""
1587
 
1588
+ #: profile-builder-2.0/admin/admin-functions.php:41
1589
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1590
  msgstr ""
1591
 
1592
+ #: profile-builder-2.0/admin/basic-info.php:37
1593
  msgid "Friction-less login using %s shortcode or a widget."
1594
  msgstr ""
1595
 
1596
+ #: profile-builder-2.0/admin/basic-info.php:41
1597
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1598
  msgstr ""
1599
 
1600
+ #: profile-builder-2.0/admin/basic-info.php:45
1601
  msgid "Straight forward edit profile forms using %s shortcode."
1602
  msgstr ""
1603
 
1604
+ #: profile-builder-2.0/admin/basic-info.php:58
1605
  msgid "Allow users to recover their password in the front-end using the %s."
1606
  msgstr ""
1607
 
1608
+ #: profile-builder-2.0/admin/basic-info.php:140
1609
  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."
1610
  msgstr ""
1611
 
1612
+ #: profile-builder-2.0/admin/general-settings.php:115
1613
  msgid "\"Admin Approval\" on User Role:"
1614
  msgstr ""
1615
 
1616
+ #: profile-builder-2.0/admin/general-settings.php:134
1617
  msgid "Select on what user roles to activate Admin Approval."
1618
  msgstr ""
1619
 
1620
+ #: profile-builder-2.0/admin/manage-fields.php:133
1621
  msgid "Display on PB forms"
1622
  msgstr ""
1623
 
1624
+ #: profile-builder-2.0/admin/manage-fields.php:133
1625
  msgid "PB Login"
1626
  msgstr ""
1627
 
1628
+ #: profile-builder-2.0/admin/manage-fields.php:133
1629
  msgid "PB Register"
1630
  msgstr ""
1631
 
1632
+ #: profile-builder-2.0/admin/manage-fields.php:133
1633
  msgid "PB Recover Password"
1634
  msgstr ""
1635
 
1636
+ #: profile-builder-2.0/admin/manage-fields.php:133
1637
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1638
  msgstr ""
1639
 
1640
+ #: profile-builder-2.0/admin/manage-fields.php:134
1641
  msgid "Display on default WP forms"
1642
  msgstr ""
1643
 
1644
+ #: profile-builder-2.0/admin/manage-fields.php:134
1645
  msgid "Default WP Login"
1646
  msgstr ""
1647
 
1648
+ #: profile-builder-2.0/admin/manage-fields.php:134
1649
  msgid "Default WP Register"
1650
  msgstr ""
1651
 
1652
+ #: profile-builder-2.0/admin/manage-fields.php:134
1653
  msgid "Default WP Recover Password"
1654
  msgstr ""
1655
 
1656
+ #: profile-builder-2.0/admin/manage-fields.php:134
1657
  msgid "Select on which default WP forms to display reCAPTCHA"
1658
  msgstr ""
1659
 
1660
+ #: profile-builder-2.0/admin/manage-fields.php:140
1661
+ #: profile-builder-2.0/admin/manage-fields.php:141
1662
+ #: profile-builder-2.0/admin/manage-fields.php:142
1663
  msgid "Default option of the field"
1664
  msgstr ""
1665
 
1666
+ #: profile-builder-2.0/admin/manage-fields.php:282
1667
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1668
  msgid "Afghanistan"
1669
  msgstr "Afghanistan"
1670
 
1671
+ #: profile-builder-2.0/admin/manage-fields.php:283
1672
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1673
  msgid "Aland Islands"
1674
  msgstr "Aland Islands"
1675
 
1676
+ #: profile-builder-2.0/admin/manage-fields.php:284
1677
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1678
  msgid "Albania"
1679
  msgstr "Albania"
1680
 
1681
+ #: profile-builder-2.0/admin/manage-fields.php:285
1682
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1683
  msgid "Algeria"
1684
  msgstr "Algeria"
1685
 
1686
+ #: profile-builder-2.0/admin/manage-fields.php:286
1687
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1688
  msgid "American Samoa"
1689
  msgstr "American Samoa"
1690
 
1691
+ #: profile-builder-2.0/admin/manage-fields.php:287
1692
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1693
  msgid "Andorra"
1694
  msgstr "Andorra"
1695
 
1696
+ #: profile-builder-2.0/admin/manage-fields.php:288
1697
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1698
  msgid "Angola"
1699
  msgstr "Angola"
1700
 
1701
+ #: profile-builder-2.0/admin/manage-fields.php:289
1702
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1703
  msgid "Anguilla"
1704
  msgstr "Anguilla"
1705
 
1706
+ #: profile-builder-2.0/admin/manage-fields.php:290
1707
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1708
  msgid "Antarctica"
1709
  msgstr "Antarctica"
1710
 
1711
+ #: profile-builder-2.0/admin/manage-fields.php:291
1712
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1713
  msgid "Antigua and Barbuda"
1714
  msgstr "Antigua and Barbuda"
1715
 
1716
+ #: profile-builder-2.0/admin/manage-fields.php:292
1717
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1718
  msgid "Argentina"
1719
  msgstr "Argentina"
1720
 
1721
+ #: profile-builder-2.0/admin/manage-fields.php:293
1722
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1723
  msgid "Armenia"
1724
  msgstr "Armenia"
1725
 
1726
+ #: profile-builder-2.0/admin/manage-fields.php:294
1727
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1728
  msgid "Aruba"
1729
  msgstr "Aruba"
1730
 
1731
+ #: profile-builder-2.0/admin/manage-fields.php:295
1732
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1733
  msgid "Australia"
1734
  msgstr "Australia"
1735
 
1736
+ #: profile-builder-2.0/admin/manage-fields.php:296
1737
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1738
  msgid "Austria"
1739
  msgstr "Austria"
1740
 
1741
+ #: profile-builder-2.0/admin/manage-fields.php:297
1742
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1743
  msgid "Azerbaijan"
1744
  msgstr "Azerbaijan"
1745
 
1746
+ #: profile-builder-2.0/admin/manage-fields.php:298
1747
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1748
  msgid "Bahamas"
1749
  msgstr "Bahamas"
1750
 
1751
+ #: profile-builder-2.0/admin/manage-fields.php:299
1752
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1753
  msgid "Bahrain"
1754
  msgstr "Bahrain"
1755
 
1756
+ #: profile-builder-2.0/admin/manage-fields.php:300
1757
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1758
  msgid "Bangladesh"
1759
  msgstr "Bangladesh"
1760
 
1761
+ #: profile-builder-2.0/admin/manage-fields.php:301
1762
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1763
  msgid "Barbados"
1764
  msgstr "Barbados"
1765
 
1766
+ #: profile-builder-2.0/admin/manage-fields.php:302
1767
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1768
  msgid "Belarus"
1769
  msgstr "Belarus"
1770
 
1771
+ #: profile-builder-2.0/admin/manage-fields.php:303
1772
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1773
  msgid "Belgium"
1774
  msgstr "Belgium"
1775
 
1776
+ #: profile-builder-2.0/admin/manage-fields.php:304
1777
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1778
  msgid "Belize"
1779
  msgstr "Belize"
1780
 
1781
+ #: profile-builder-2.0/admin/manage-fields.php:305
1782
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1783
  msgid "Benin"
1784
  msgstr "Benin"
1785
 
1786
+ #: profile-builder-2.0/admin/manage-fields.php:306
1787
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1788
  msgid "Bermuda"
1789
  msgstr "Bermuda"
1790
 
1791
+ #: profile-builder-2.0/admin/manage-fields.php:307
1792
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1793
  msgid "Bhutan"
1794
  msgstr "Bhutan"
1795
 
1796
+ #: profile-builder-2.0/admin/manage-fields.php:308
1797
  msgid "Bolivia"
1798
  msgstr "Bolivia"
1799
 
1800
+ #: profile-builder-2.0/admin/manage-fields.php:309
1801
  msgid "Bonaire, Saint Eustatius and Saba"
1802
  msgstr "Bonaire, Saint Eustatius and Saba"
1803
 
1804
+ #: profile-builder-2.0/admin/manage-fields.php:310
1805
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1806
  msgid "Bosnia and Herzegovina"
1807
  msgstr "Bosnia and Herzegovina"
1808
 
1809
+ #: profile-builder-2.0/admin/manage-fields.php:311
1810
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1811
  msgid "Botswana"
1812
  msgstr "Botswana"
1813
 
1814
+ #: profile-builder-2.0/admin/manage-fields.php:312
1815
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1816
  msgid "Bouvet Island"
1817
  msgstr "Bouvet Island"
1818
 
1819
+ #: profile-builder-2.0/admin/manage-fields.php:313
1820
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1821
  msgid "Brazil"
1822
  msgstr "Brazil"
1823
 
1824
+ #: profile-builder-2.0/admin/manage-fields.php:314
1825
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1826
  msgid "British Indian Ocean Territory"
1827
  msgstr "British Indian Ocean Territory"
1828
 
1829
+ #: profile-builder-2.0/admin/manage-fields.php:315
1830
  msgid "British Virgin Islands"
1831
  msgstr "British Virgin Islands"
1832
 
1833
+ #: profile-builder-2.0/admin/manage-fields.php:316
1834
  msgid "Brunei"
1835
  msgstr "Brunei"
1836
 
1837
+ #: profile-builder-2.0/admin/manage-fields.php:317
1838
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1839
  msgid "Bulgaria"
1840
  msgstr "Bulgaria"
1841
 
1842
+ #: profile-builder-2.0/admin/manage-fields.php:318
1843
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1844
  msgid "Burkina Faso"
1845
  msgstr "Burkina Faso"
1846
 
1847
+ #: profile-builder-2.0/admin/manage-fields.php:319
1848
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1849
  msgid "Burundi"
1850
  msgstr "Burundi"
1851
 
1852
+ #: profile-builder-2.0/admin/manage-fields.php:320
1853
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1854
  msgid "Cambodia"
1855
  msgstr "Cambodia"
1856
 
1857
+ #: profile-builder-2.0/admin/manage-fields.php:321
1858
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1859
  msgid "Cameroon"
1860
  msgstr "Cameroon"
1861
 
1862
+ #: profile-builder-2.0/admin/manage-fields.php:322
1863
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1864
  msgid "Canada"
1865
  msgstr "Canada"
1866
 
1867
+ #: profile-builder-2.0/admin/manage-fields.php:323
1868
  msgid "Cape Verde"
1869
  msgstr "Cape Verde"
1870
 
1871
+ #: profile-builder-2.0/admin/manage-fields.php:324
1872
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1873
  msgid "Cayman Islands"
1874
  msgstr "Cayman Islands"
1875
 
1876
+ #: profile-builder-2.0/admin/manage-fields.php:325
1877
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1878
  msgid "Central African Republic"
1879
  msgstr "Central African Republic"
1880
 
1881
+ #: profile-builder-2.0/admin/manage-fields.php:326
1882
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1883
  msgid "Chad"
1884
  msgstr "Chad"
1885
 
1886
+ #: profile-builder-2.0/admin/manage-fields.php:327
1887
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1888
  msgid "Chile"
1889
  msgstr "Chile"
1890
 
1891
+ #: profile-builder-2.0/admin/manage-fields.php:328
1892
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1893
  msgid "China"
1894
  msgstr "China"
1895
 
1896
+ #: profile-builder-2.0/admin/manage-fields.php:329
1897
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1898
  msgid "Christmas Island"
1899
  msgstr "Christmas Island"
1900
 
1901
+ #: profile-builder-2.0/admin/manage-fields.php:330
1902
  msgid "Cocos Islands"
1903
  msgstr "Cocos Islands"
1904
 
1905
+ #: profile-builder-2.0/admin/manage-fields.php:331
1906
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1907
  msgid "Colombia"
1908
  msgstr "Colombia"
1909
 
1910
+ #: profile-builder-2.0/admin/manage-fields.php:332
1911
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1912
  msgid "Comoros"
1913
  msgstr "Comoros"
1914
 
1915
+ #: profile-builder-2.0/admin/manage-fields.php:333
1916
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1917
  msgid "Cook Islands"
1918
  msgstr "Cook Islands"
1919
 
1920
+ #: profile-builder-2.0/admin/manage-fields.php:334
1921
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1922
  msgid "Costa Rica"
1923
  msgstr "Costa Rica"
1924
 
1925
+ #: profile-builder-2.0/admin/manage-fields.php:335
1926
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1927
  msgid "Croatia"
1928
  msgstr "Croatia"
1929
 
1930
+ #: profile-builder-2.0/admin/manage-fields.php:336
1931
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1932
  msgid "Cuba"
1933
  msgstr "Cuba"
1934
 
1935
+ #: profile-builder-2.0/admin/manage-fields.php:337
1936
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1937
  msgid "Curacao"
1938
  msgstr "Curacao"
1939
 
1940
+ #: profile-builder-2.0/admin/manage-fields.php:338
1941
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1942
  msgid "Cyprus"
1943
  msgstr "Cyprus"
1944
 
1945
+ #: profile-builder-2.0/admin/manage-fields.php:339
1946
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1947
  msgid "Czech Republic"
1948
  msgstr "Czech Republic"
1949
 
1950
+ #: profile-builder-2.0/admin/manage-fields.php:340
1951
  msgid "Democratic Republic of the Congo"
1952
  msgstr "Democratic Republic of the Congo"
1953
 
1954
+ #: profile-builder-2.0/admin/manage-fields.php:341
1955
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1956
  msgid "Denmark"
1957
  msgstr "Denmark"
1958
 
1959
+ #: profile-builder-2.0/admin/manage-fields.php:342
1960
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1961
  msgid "Djibouti"
1962
  msgstr "Djibouti"
1963
 
1964
+ #: profile-builder-2.0/admin/manage-fields.php:343
1965
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1966
  msgid "Dominica"
1967
  msgstr "Dominica"
1968
 
1969
+ #: profile-builder-2.0/admin/manage-fields.php:344
1970
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1971
  msgid "Dominican Republic"
1972
  msgstr "Dominican Republic"
1973
 
1974
+ #: profile-builder-2.0/admin/manage-fields.php:345
1975
  msgid "East Timor"
1976
  msgstr "East Timor"
1977
 
1978
+ #: profile-builder-2.0/admin/manage-fields.php:346
1979
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1980
  msgid "Ecuador"
1981
  msgstr "Ecuador"
1982
 
1983
+ #: profile-builder-2.0/admin/manage-fields.php:347
1984
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1985
  msgid "Egypt"
1986
  msgstr "Egypt"
1987
 
1988
+ #: profile-builder-2.0/admin/manage-fields.php:348
1989
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1990
  msgid "El Salvador"
1991
  msgstr "El Salvador"
1992
 
1993
+ #: profile-builder-2.0/admin/manage-fields.php:349
1994
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1995
  msgid "Equatorial Guinea"
1996
  msgstr "Equatorial Guinea"
1997
 
1998
+ #: profile-builder-2.0/admin/manage-fields.php:350
1999
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2000
  msgid "Eritrea"
2001
  msgstr "Eritrea"
2002
 
2003
+ #: profile-builder-2.0/admin/manage-fields.php:351
2004
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2005
  msgid "Estonia"
2006
  msgstr "Estonia"
2007
 
2008
+ #: profile-builder-2.0/admin/manage-fields.php:352
2009
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2010
  msgid "Ethiopia"
2011
  msgstr "Ethiopia"
2012
 
2013
+ #: profile-builder-2.0/admin/manage-fields.php:353
2014
  msgid "Falkland Islands"
2015
  msgstr "Falkland Islands"
2016
 
2017
+ #: profile-builder-2.0/admin/manage-fields.php:354
2018
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2019
  msgid "Faroe Islands"
2020
  msgstr "Faroe Islands"
2021
 
2022
+ #: profile-builder-2.0/admin/manage-fields.php:355
2023
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2024
  msgid "Fiji"
2025
  msgstr "Fiji"
2026
 
2027
+ #: profile-builder-2.0/admin/manage-fields.php:356
2028
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2029
  msgid "Finland"
2030
  msgstr "Finland"
2031
 
2032
+ #: profile-builder-2.0/admin/manage-fields.php:357
2033
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2034
  msgid "France"
2035
  msgstr "France"
2036
 
2037
+ #: profile-builder-2.0/admin/manage-fields.php:358
2038
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2039
  msgid "French Guiana"
2040
  msgstr "French Guiana"
2041
 
2042
+ #: profile-builder-2.0/admin/manage-fields.php:359
2043
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2044
  msgid "French Polynesia"
2045
  msgstr "French Polynesia"
2046
 
2047
+ #: profile-builder-2.0/admin/manage-fields.php:360
2048
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2049
  msgid "French Southern Territories"
2050
  msgstr "French Southern Territories"
2051
 
2052
+ #: profile-builder-2.0/admin/manage-fields.php:361
2053
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2054
  msgid "Gabon"
2055
  msgstr "Gabon"
2056
 
2057
+ #: profile-builder-2.0/admin/manage-fields.php:362
2058
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2059
  msgid "Gambia"
2060
  msgstr "Gambia"
2061
 
2062
+ #: profile-builder-2.0/admin/manage-fields.php:363
2063
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2064
  msgid "Georgia"
2065
  msgstr "Georgia"
2066
 
2067
+ #: profile-builder-2.0/admin/manage-fields.php:364
2068
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2069
  msgid "Germany"
2070
  msgstr "Germany"
2071
 
2072
+ #: profile-builder-2.0/admin/manage-fields.php:365
2073
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2074
  msgid "Ghana"
2075
  msgstr "Ghana"
2076
 
2077
+ #: profile-builder-2.0/admin/manage-fields.php:366
2078
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2079
  msgid "Gibraltar"
2080
  msgstr "Gibraltar"
2081
 
2082
+ #: profile-builder-2.0/admin/manage-fields.php:367
2083
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2084
  msgid "Greece"
2085
  msgstr "Greece"
2086
 
2087
+ #: profile-builder-2.0/admin/manage-fields.php:368
2088
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2089
  msgid "Greenland"
2090
  msgstr "Greenland"
2091
 
2092
+ #: profile-builder-2.0/admin/manage-fields.php:369
2093
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2094
  msgid "Grenada"
2095
  msgstr "Grenada"
2096
 
2097
+ #: profile-builder-2.0/admin/manage-fields.php:370
2098
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2099
  msgid "Guadeloupe"
2100
  msgstr "Guadeloupe"
2101
 
2102
+ #: profile-builder-2.0/admin/manage-fields.php:371
2103
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2104
  msgid "Guam"
2105
  msgstr "Guam"
2106
 
2107
+ #: profile-builder-2.0/admin/manage-fields.php:372
2108
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2109
  msgid "Guatemala"
2110
  msgstr "Guatemala"
2111
 
2112
+ #: profile-builder-2.0/admin/manage-fields.php:373
2113
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2114
  msgid "Guernsey"
2115
  msgstr "Guernsey"
2116
 
2117
+ #: profile-builder-2.0/admin/manage-fields.php:374
2118
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2119
  msgid "Guinea"
2120
  msgstr "Guinea"
2121
 
2122
+ #: profile-builder-2.0/admin/manage-fields.php:375
2123
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2124
  msgid "Guinea-Bissau"
2125
  msgstr "Guinea-Bissau"
2126
 
2127
+ #: profile-builder-2.0/admin/manage-fields.php:376
2128
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2129
  msgid "Guyana"
2130
  msgstr "Guyana"
2131
 
2132
+ #: profile-builder-2.0/admin/manage-fields.php:377
2133
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2134
  msgid "Haiti"
2135
  msgstr "Haiti"
2136
 
2137
+ #: profile-builder-2.0/admin/manage-fields.php:378
2138
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2139
  msgid "Heard Island and McDonald Islands"
2140
  msgstr "Heard Island and McDonald Islands"
2141
 
2142
+ #: profile-builder-2.0/admin/manage-fields.php:379
2143
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2144
  msgid "Honduras"
2145
  msgstr "Honduras"
2146
 
2147
+ #: profile-builder-2.0/admin/manage-fields.php:380
2148
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2149
  msgid "Hong Kong"
2150
  msgstr "Hong Kong"
2151
 
2152
+ #: profile-builder-2.0/admin/manage-fields.php:381
2153
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2154
  msgid "Hungary"
2155
  msgstr "Hungary"
2156
 
2157
+ #: profile-builder-2.0/admin/manage-fields.php:382
2158
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2159
  msgid "Iceland"
2160
  msgstr "Iceland"
2161
 
2162
+ #: profile-builder-2.0/admin/manage-fields.php:383
2163
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2164
  msgid "India"
2165
  msgstr "India"
2166
 
2167
+ #: profile-builder-2.0/admin/manage-fields.php:384
2168
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
  msgid "Indonesia"
2170
  msgstr "Indonesia"
2171
 
2172
+ #: profile-builder-2.0/admin/manage-fields.php:385
2173
  msgid "Iran"
2174
  msgstr "Iran"
2175
 
2176
+ #: profile-builder-2.0/admin/manage-fields.php:386
2177
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2178
  msgid "Iraq"
2179
  msgstr "Iraq"
2180
 
2181
+ #: profile-builder-2.0/admin/manage-fields.php:387
2182
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
  msgid "Ireland"
2184
  msgstr "Ireland"
2185
 
2186
+ #: profile-builder-2.0/admin/manage-fields.php:388
2187
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
  msgid "Isle of Man"
2189
  msgstr "Isle of Man"
2190
 
2191
+ #: profile-builder-2.0/admin/manage-fields.php:389
2192
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2193
  msgid "Israel"
2194
  msgstr "Israel"
2195
 
2196
+ #: profile-builder-2.0/admin/manage-fields.php:390
2197
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2198
  msgid "Italy"
2199
  msgstr "Italy"
2200
 
2201
+ #: profile-builder-2.0/admin/manage-fields.php:391
2202
  msgid "Ivory Coast"
2203
  msgstr "Ivory Coast"
2204
 
2205
+ #: profile-builder-2.0/admin/manage-fields.php:392
2206
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2207
  msgid "Jamaica"
2208
  msgstr "Jamaica"
2209
 
2210
+ #: profile-builder-2.0/admin/manage-fields.php:393
2211
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2212
  msgid "Japan"
2213
  msgstr "Japan"
2214
 
2215
+ #: profile-builder-2.0/admin/manage-fields.php:394
2216
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2217
  msgid "Jersey"
2218
  msgstr "Jersey"
2219
 
2220
+ #: profile-builder-2.0/admin/manage-fields.php:395
2221
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2222
  msgid "Jordan"
2223
  msgstr "Jordan"
2224
 
2225
+ #: profile-builder-2.0/admin/manage-fields.php:396
2226
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2227
  msgid "Kazakhstan"
2228
  msgstr "Kazakhstan"
2229
 
2230
+ #: profile-builder-2.0/admin/manage-fields.php:397
2231
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2232
  msgid "Kenya"
2233
  msgstr "Kenya"
2234
 
2235
+ #: profile-builder-2.0/admin/manage-fields.php:398
2236
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2237
  msgid "Kiribati"
2238
  msgstr "Kiribati"
2239
 
2240
+ #: profile-builder-2.0/admin/manage-fields.php:399
2241
  msgid "Kosovo"
2242
  msgstr "Kosovo"
2243
 
2244
+ #: profile-builder-2.0/admin/manage-fields.php:400
2245
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2246
  msgid "Kuwait"
2247
  msgstr "Kuwait"
2248
 
2249
+ #: profile-builder-2.0/admin/manage-fields.php:401
2250
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2251
  msgid "Kyrgyzstan"
2252
  msgstr "Kyrgyzstan"
2253
 
2254
+ #: profile-builder-2.0/admin/manage-fields.php:402
2255
  msgid "Laos"
2256
  msgstr "Laos"
2257
 
2258
+ #: profile-builder-2.0/admin/manage-fields.php:403
2259
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2260
  msgid "Latvia"
2261
  msgstr "Latvia"
2262
 
2263
+ #: profile-builder-2.0/admin/manage-fields.php:404
2264
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2265
  msgid "Lebanon"
2266
  msgstr "Lebanon"
2267
 
2268
+ #: profile-builder-2.0/admin/manage-fields.php:405
2269
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2270
  msgid "Lesotho"
2271
  msgstr "Lesotho"
2272
 
2273
+ #: profile-builder-2.0/admin/manage-fields.php:406
2274
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2275
  msgid "Liberia"
2276
  msgstr "Liberia"
2277
 
2278
+ #: profile-builder-2.0/admin/manage-fields.php:407
2279
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2280
  msgid "Libya"
2281
  msgstr "Libya"
2282
 
2283
+ #: profile-builder-2.0/admin/manage-fields.php:408
2284
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2285
  msgid "Liechtenstein"
2286
  msgstr "Liechtenstein"
2287
 
2288
+ #: profile-builder-2.0/admin/manage-fields.php:409
2289
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2290
  msgid "Lithuania"
2291
  msgstr "Lithuania"
2292
 
2293
+ #: profile-builder-2.0/admin/manage-fields.php:410
2294
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2295
  msgid "Luxembourg"
2296
  msgstr "Luxembourg"
2297
 
2298
+ #: profile-builder-2.0/admin/manage-fields.php:411
2299
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2300
  msgid "Macao"
2301
  msgstr "Macao"
2302
 
2303
+ #: profile-builder-2.0/admin/manage-fields.php:412
2304
  msgid "Macedonia"
2305
  msgstr "Macedonia"
2306
 
2307
+ #: profile-builder-2.0/admin/manage-fields.php:413
2308
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2309
  msgid "Madagascar"
2310
  msgstr "Madagascar"
2311
 
2312
+ #: profile-builder-2.0/admin/manage-fields.php:414
2313
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2314
  msgid "Malawi"
2315
  msgstr "Malawi"
2316
 
2317
+ #: profile-builder-2.0/admin/manage-fields.php:415
2318
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2319
  msgid "Malaysia"
2320
  msgstr "Malaysia"
2321
 
2322
+ #: profile-builder-2.0/admin/manage-fields.php:416
2323
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2324
  msgid "Maldives"
2325
  msgstr "Maldives"
2326
 
2327
+ #: profile-builder-2.0/admin/manage-fields.php:417
2328
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2329
  msgid "Mali"
2330
  msgstr "Mali"
2331
 
2332
+ #: profile-builder-2.0/admin/manage-fields.php:418
2333
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2334
  msgid "Malta"
2335
  msgstr "Malta"
2336
 
2337
+ #: profile-builder-2.0/admin/manage-fields.php:419
2338
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2339
  msgid "Marshall Islands"
2340
  msgstr "Marshall Islands"
2341
 
2342
+ #: profile-builder-2.0/admin/manage-fields.php:420
2343
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2344
  msgid "Martinique"
2345
  msgstr "Martinique"
2346
 
2347
+ #: profile-builder-2.0/admin/manage-fields.php:421
2348
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2349
  msgid "Mauritania"
2350
  msgstr "Mauritania"
2351
 
2352
+ #: profile-builder-2.0/admin/manage-fields.php:422
2353
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2354
  msgid "Mauritius"
2355
  msgstr "Mauritius"
2356
 
2357
+ #: profile-builder-2.0/admin/manage-fields.php:423
2358
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2359
  msgid "Mayotte"
2360
  msgstr "Mayotte"
2361
 
2362
+ #: profile-builder-2.0/admin/manage-fields.php:424
2363
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2364
  msgid "Mexico"
2365
  msgstr "Mexico"
2366
 
2367
+ #: profile-builder-2.0/admin/manage-fields.php:425
2368
  msgid "Micronesia"
2369
  msgstr "Micronesia"
2370
 
2371
+ #: profile-builder-2.0/admin/manage-fields.php:426
2372
  msgid "Moldova"
2373
  msgstr "Moldova"
2374
 
2375
+ #: profile-builder-2.0/admin/manage-fields.php:427
2376
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2377
  msgid "Monaco"
2378
  msgstr "Monaco"
2379
 
2380
+ #: profile-builder-2.0/admin/manage-fields.php:428
2381
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2382
  msgid "Mongolia"
2383
  msgstr "Mongolia"
2384
 
2385
+ #: profile-builder-2.0/admin/manage-fields.php:429
2386
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2387
  msgid "Montenegro"
2388
  msgstr "Montenegro"
2389
 
2390
+ #: profile-builder-2.0/admin/manage-fields.php:430
2391
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2392
  msgid "Montserrat"
2393
  msgstr "Montserrat"
2394
 
2395
+ #: profile-builder-2.0/admin/manage-fields.php:431
2396
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2397
  msgid "Morocco"
2398
  msgstr "Morocco"
2399
 
2400
+ #: profile-builder-2.0/admin/manage-fields.php:432
2401
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2402
  msgid "Mozambique"
2403
  msgstr "Mozambique"
2404
 
2405
+ #: profile-builder-2.0/admin/manage-fields.php:433
2406
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2407
  msgid "Myanmar"
2408
  msgstr "Myanmar"
2409
 
2410
+ #: profile-builder-2.0/admin/manage-fields.php:434
2411
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2412
  msgid "Namibia"
2413
  msgstr "Namibia"
2414
 
2415
+ #: profile-builder-2.0/admin/manage-fields.php:435
2416
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2417
  msgid "Nauru"
2418
  msgstr "Nauru"
2419
 
2420
+ #: profile-builder-2.0/admin/manage-fields.php:436
2421
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2422
  msgid "Nepal"
2423
  msgstr "Nepal"
2424
 
2425
+ #: profile-builder-2.0/admin/manage-fields.php:437
2426
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2427
  msgid "Netherlands"
2428
  msgstr "Netherlands"
2429
 
2430
+ #: profile-builder-2.0/admin/manage-fields.php:438
2431
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2432
  msgid "New Caledonia"
2433
  msgstr "New Caledonia"
2434
 
2435
+ #: profile-builder-2.0/admin/manage-fields.php:439
2436
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2437
  msgid "New Zealand"
2438
  msgstr "New Zealand"
2439
 
2440
+ #: profile-builder-2.0/admin/manage-fields.php:440
2441
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2442
  msgid "Nicaragua"
2443
  msgstr "Nicaragua"
2444
 
2445
+ #: profile-builder-2.0/admin/manage-fields.php:441
2446
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2447
  msgid "Niger"
2448
  msgstr "Niger"
2449
 
2450
+ #: profile-builder-2.0/admin/manage-fields.php:442
2451
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2452
  msgid "Nigeria"
2453
  msgstr "Nigeria"
2454
 
2455
+ #: profile-builder-2.0/admin/manage-fields.php:443
2456
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2457
  msgid "Niue"
2458
  msgstr "Niue"
2459
 
2460
+ #: profile-builder-2.0/admin/manage-fields.php:444
2461
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2462
  msgid "Norfolk Island"
2463
  msgstr "Norfolk Island"
2464
 
2465
+ #: profile-builder-2.0/admin/manage-fields.php:445
2466
  msgid "North Korea"
2467
  msgstr "North Korea"
2468
 
2469
+ #: profile-builder-2.0/admin/manage-fields.php:446
2470
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2471
  msgid "Northern Mariana Islands"
2472
  msgstr "Northern Mariana Islands"
2473
 
2474
+ #: profile-builder-2.0/admin/manage-fields.php:447
2475
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2476
  msgid "Norway"
2477
  msgstr "Norway"
2478
 
2479
+ #: profile-builder-2.0/admin/manage-fields.php:448
2480
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2481
  msgid "Oman"
2482
  msgstr "Oman"
2483
 
2484
+ #: profile-builder-2.0/admin/manage-fields.php:449
2485
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2486
  msgid "Pakistan"
2487
  msgstr "Pakistan"
2488
 
2489
+ #: profile-builder-2.0/admin/manage-fields.php:450
2490
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2491
  msgid "Palau"
2492
  msgstr "Palau"
2493
 
2494
+ #: profile-builder-2.0/admin/manage-fields.php:451
2495
  msgid "Palestinian Territory"
2496
  msgstr "Palestinian Territory"
2497
 
2498
+ #: profile-builder-2.0/admin/manage-fields.php:452
2499
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2500
  msgid "Panama"
2501
  msgstr "Panama"
2502
 
2503
+ #: profile-builder-2.0/admin/manage-fields.php:453
2504
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2505
  msgid "Papua New Guinea"
2506
  msgstr "Papua New Guinea"
2507
 
2508
+ #: profile-builder-2.0/admin/manage-fields.php:454
2509
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2510
  msgid "Paraguay"
2511
  msgstr "Paraguay"
2512
 
2513
+ #: profile-builder-2.0/admin/manage-fields.php:455
2514
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2515
  msgid "Peru"
2516
  msgstr "Peru"
2517
 
2518
+ #: profile-builder-2.0/admin/manage-fields.php:456
2519
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2520
  msgid "Philippines"
2521
  msgstr "Philippines"
2522
 
2523
+ #: profile-builder-2.0/admin/manage-fields.php:457
2524
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2525
  msgid "Pitcairn"
2526
  msgstr "Pitcairn"
2527
 
2528
+ #: profile-builder-2.0/admin/manage-fields.php:458
2529
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2530
  msgid "Poland"
2531
  msgstr "Poland"
2532
 
2533
+ #: profile-builder-2.0/admin/manage-fields.php:459
2534
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2535
  msgid "Portugal"
2536
  msgstr "Portugal"
2537
 
2538
+ #: profile-builder-2.0/admin/manage-fields.php:460
2539
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2540
  msgid "Puerto Rico"
2541
  msgstr "Puerto Rico"
2542
 
2543
+ #: profile-builder-2.0/admin/manage-fields.php:461
2544
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2545
  msgid "Qatar"
2546
  msgstr "Qatar"
2547
 
2548
+ #: profile-builder-2.0/admin/manage-fields.php:462
2549
  msgid "Republic of the Congo"
2550
  msgstr "Republic of the Congo"
2551
 
2552
+ #: profile-builder-2.0/admin/manage-fields.php:463
2553
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2554
  msgid "Reunion"
2555
  msgstr "Reunion"
2556
 
2557
+ #: profile-builder-2.0/admin/manage-fields.php:464
2558
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2559
  msgid "Romania"
2560
  msgstr "Romania"
2561
 
2562
+ #: profile-builder-2.0/admin/manage-fields.php:465
2563
  msgid "Russia"
2564
  msgstr "Russia"
2565
 
2566
+ #: profile-builder-2.0/admin/manage-fields.php:466
2567
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2568
  msgid "Rwanda"
2569
  msgstr "Rwanda"
2570
 
2571
+ #: profile-builder-2.0/admin/manage-fields.php:467
2572
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2573
  msgid "Saint Barthelemy"
2574
  msgstr "Saint Barthelemy"
2575
 
2576
+ #: profile-builder-2.0/admin/manage-fields.php:468
2577
  msgid "Saint Helena"
2578
  msgstr "Saint Helena"
2579
 
2580
+ #: profile-builder-2.0/admin/manage-fields.php:469
2581
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2582
  msgid "Saint Kitts and Nevis"
2583
  msgstr "Saint Kitts and Nevis"
2584
 
2585
+ #: profile-builder-2.0/admin/manage-fields.php:470
2586
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2587
  msgid "Saint Lucia"
2588
  msgstr "Saint Lucia"
2589
 
2590
+ #: profile-builder-2.0/admin/manage-fields.php:471
2591
  msgid "Saint Martin"
2592
  msgstr "Saint Martin"
2593
 
2594
+ #: profile-builder-2.0/admin/manage-fields.php:472
2595
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2596
  msgid "Saint Pierre and Miquelon"
2597
  msgstr "Saint Pierre and Miquelon"
2598
 
2599
+ #: profile-builder-2.0/admin/manage-fields.php:473
2600
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2601
  msgid "Saint Vincent and the Grenadines"
2602
  msgstr "Saint Vincent and the Grenadines"
2603
 
2604
+ #: profile-builder-2.0/admin/manage-fields.php:474
2605
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2606
  msgid "Samoa"
2607
  msgstr "Samoa"
2608
 
2609
+ #: profile-builder-2.0/admin/manage-fields.php:475
2610
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2611
  msgid "San Marino"
2612
  msgstr "San Marino"
2613
 
2614
+ #: profile-builder-2.0/admin/manage-fields.php:476
2615
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2616
  msgid "Sao Tome and Principe"
2617
  msgstr "Sao Tome and Principe"
2618
 
2619
+ #: profile-builder-2.0/admin/manage-fields.php:477
2620
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2621
  msgid "Saudi Arabia"
2622
  msgstr "Saudi Arabia"
2623
 
2624
+ #: profile-builder-2.0/admin/manage-fields.php:478
2625
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2626
  msgid "Senegal"
2627
  msgstr "Senegal"
2628
 
2629
+ #: profile-builder-2.0/admin/manage-fields.php:479
2630
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2631
  msgid "Serbia"
2632
  msgstr "Serbia"
2633
 
2634
+ #: profile-builder-2.0/admin/manage-fields.php:480
2635
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2636
  msgid "Seychelles"
2637
  msgstr "Seychelles"
2638
 
2639
+ #: profile-builder-2.0/admin/manage-fields.php:481
2640
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2641
  msgid "Sierra Leone"
2642
  msgstr "Sierra Leone"
2643
 
2644
+ #: profile-builder-2.0/admin/manage-fields.php:482
2645
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2646
  msgid "Singapore"
2647
  msgstr "Singapore"
2648
 
2649
+ #: profile-builder-2.0/admin/manage-fields.php:483
2650
  msgid "Sint Maarten"
2651
  msgstr "Sint Maarten"
2652
 
2653
+ #: profile-builder-2.0/admin/manage-fields.php:484
2654
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2655
  msgid "Slovakia"
2656
  msgstr "Slovakia"
2657
 
2658
+ #: profile-builder-2.0/admin/manage-fields.php:485
2659
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2660
  msgid "Slovenia"
2661
  msgstr "Slovenia"
2662
 
2663
+ #: profile-builder-2.0/admin/manage-fields.php:486
2664
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2665
  msgid "Solomon Islands"
2666
  msgstr "Solomon Islands"
2667
 
2668
+ #: profile-builder-2.0/admin/manage-fields.php:487
2669
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2670
  msgid "Somalia"
2671
  msgstr "Somalia"
2672
 
2673
+ #: profile-builder-2.0/admin/manage-fields.php:488
2674
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2675
  msgid "South Africa"
2676
  msgstr "South Africa"
2677
 
2678
+ #: profile-builder-2.0/admin/manage-fields.php:489
2679
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2680
  msgid "South Georgia and the South Sandwich Islands"
2681
  msgstr "South Georgia and the South Sandwich Islands"
2682
 
2683
+ #: profile-builder-2.0/admin/manage-fields.php:490
2684
  msgid "South Korea"
2685
  msgstr "South Korea"
2686
 
2687
+ #: profile-builder-2.0/admin/manage-fields.php:491
2688
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2689
  msgid "South Sudan"
2690
  msgstr "South Sudan"
2691
 
2692
+ #: profile-builder-2.0/admin/manage-fields.php:492
2693
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2694
  msgid "Spain"
2695
  msgstr "Spain"
2696
 
2697
+ #: profile-builder-2.0/admin/manage-fields.php:493
2698
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2699
  msgid "Sri Lanka"
2700
  msgstr "Sri Lanka"
2701
 
2702
+ #: profile-builder-2.0/admin/manage-fields.php:494
2703
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2704
  msgid "Sudan"
2705
  msgstr "Sudan"
2706
 
2707
+ #: profile-builder-2.0/admin/manage-fields.php:495
2708
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2709
  msgid "Suriname"
2710
  msgstr "Suriname"
2711
 
2712
+ #: profile-builder-2.0/admin/manage-fields.php:496
2713
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2714
  msgid "Svalbard and Jan Mayen"
2715
  msgstr "Svalbard and Jan Mayen"
2716
 
2717
+ #: profile-builder-2.0/admin/manage-fields.php:497
2718
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2719
  msgid "Swaziland"
2720
  msgstr "Swaziland"
2721
 
2722
+ #: profile-builder-2.0/admin/manage-fields.php:498
2723
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2724
  msgid "Sweden"
2725
  msgstr "Sweden"
2726
 
2727
+ #: profile-builder-2.0/admin/manage-fields.php:499
2728
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2729
  msgid "Switzerland"
2730
  msgstr "Switzerland"
2731
 
2732
+ #: profile-builder-2.0/admin/manage-fields.php:500
2733
  msgid "Syria"
2734
  msgstr "Syria"
2735
 
2736
+ #: profile-builder-2.0/admin/manage-fields.php:501
2737
  msgid "Taiwan"
2738
  msgstr "Taiwan"
2739
 
2740
+ #: profile-builder-2.0/admin/manage-fields.php:502
2741
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2742
  msgid "Tajikistan"
2743
  msgstr "Tajikistan"
2744
 
2745
+ #: profile-builder-2.0/admin/manage-fields.php:503
2746
  msgid "Tanzania"
2747
  msgstr "Tanzania"
2748
 
2749
+ #: profile-builder-2.0/admin/manage-fields.php:504
2750
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2751
  msgid "Thailand"
2752
  msgstr "Thailand"
2753
 
2754
+ #: profile-builder-2.0/admin/manage-fields.php:505
2755
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2756
  msgid "Togo"
2757
  msgstr "Togo"
2758
 
2759
+ #: profile-builder-2.0/admin/manage-fields.php:506
2760
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2761
  msgid "Tokelau"
2762
  msgstr "Tokelau"
2763
 
2764
+ #: profile-builder-2.0/admin/manage-fields.php:507
2765
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2766
  msgid "Tonga"
2767
  msgstr "Tonga"
2768
 
2769
+ #: profile-builder-2.0/admin/manage-fields.php:508
2770
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2771
  msgid "Trinidad and Tobago"
2772
  msgstr "Trinidad and Tobago"
2773
 
2774
+ #: profile-builder-2.0/admin/manage-fields.php:509
2775
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2776
  msgid "Tunisia"
2777
  msgstr "Tunisia"
2778
 
2779
+ #: profile-builder-2.0/admin/manage-fields.php:510
2780
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2781
  msgid "Turkey"
2782
  msgstr "Turkey"
2783
 
2784
+ #: profile-builder-2.0/admin/manage-fields.php:511
2785
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2786
  msgid "Turkmenistan"
2787
  msgstr "Turkmenistan"
2788
 
2789
+ #: profile-builder-2.0/admin/manage-fields.php:512
2790
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2791
  msgid "Turks and Caicos Islands"
2792
  msgstr "Turks and Caicos Islands"
2793
 
2794
+ #: profile-builder-2.0/admin/manage-fields.php:513
2795
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2796
  msgid "Tuvalu"
2797
  msgstr "Tuvalu"
2798
 
2799
+ #: profile-builder-2.0/admin/manage-fields.php:514
2800
  msgid "U.S. Virgin Islands"
2801
  msgstr "U.S. Virgin Islands"
2802
 
2803
+ #: profile-builder-2.0/admin/manage-fields.php:515
2804
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2805
  msgid "Uganda"
2806
  msgstr "Uganda"
2807
 
2808
+ #: profile-builder-2.0/admin/manage-fields.php:516
2809
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2810
  msgid "Ukraine"
2811
  msgstr "Ukraine"
2812
 
2813
+ #: profile-builder-2.0/admin/manage-fields.php:517
2814
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2815
  msgid "United Arab Emirates"
2816
  msgstr "United Arab Emirates"
2817
 
2818
+ #: profile-builder-2.0/admin/manage-fields.php:518
2819
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2820
  msgid "United Kingdom"
2821
  msgstr "United Kingdom"
2822
 
2823
+ #: profile-builder-2.0/admin/manage-fields.php:519
2824
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2825
  msgid "United States"
2826
  msgstr "United States"
2827
 
2828
+ #: profile-builder-2.0/admin/manage-fields.php:520
2829
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2830
  msgid "United States Minor Outlying Islands"
2831
  msgstr "United States Minor Outlying Islands"
2832
 
2833
+ #: profile-builder-2.0/admin/manage-fields.php:521
2834
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2835
  msgid "Uruguay"
2836
  msgstr "Uruguay"
2837
 
2838
+ #: profile-builder-2.0/admin/manage-fields.php:522
2839
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2840
  msgid "Uzbekistan"
2841
  msgstr "Uzbekistan"
2842
 
2843
+ #: profile-builder-2.0/admin/manage-fields.php:523
2844
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2845
  msgid "Vanuatu"
2846
  msgstr "Vanuatu"
2847
 
2848
+ #: profile-builder-2.0/admin/manage-fields.php:524
2849
  msgid "Vatican"
2850
  msgstr "Vatican"
2851
 
2852
+ #: profile-builder-2.0/admin/manage-fields.php:525
2853
  msgid "Venezuela"
2854
  msgstr "Venezuela"
2855
 
2856
+ #: profile-builder-2.0/admin/manage-fields.php:526
2857
  msgid "Vietnam"
2858
  msgstr "Vietnam"
2859
 
2860
+ #: profile-builder-2.0/admin/manage-fields.php:527
2861
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2862
  msgid "Wallis and Futuna"
2863
  msgstr "Wallis and Futuna"
2864
 
2865
+ #: profile-builder-2.0/admin/manage-fields.php:528
2866
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2867
  msgid "Western Sahara"
2868
  msgstr "Western Sahara"
2869
 
2870
+ #: profile-builder-2.0/admin/manage-fields.php:529
2871
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2872
  msgid "Yemen"
2873
  msgstr "Yemen"
2874
 
2875
+ #: profile-builder-2.0/admin/manage-fields.php:530
2876
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2877
  msgid "Zambia"
2878
  msgstr "Zambia"
2879
 
2880
+ #: profile-builder-2.0/admin/manage-fields.php:531
2881
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2882
  msgid "Zimbabwe"
2883
  msgstr "Zimbabwe"
2884
 
2885
+ #: profile-builder-2.0/admin/manage-fields.php:1219
2886
  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."
2887
  msgstr ""
2888
 
2889
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2890
  msgid "Your account has to be confirmed by an administrator before you can log in."
2891
  msgstr "Tu cuenta debe ser confirmada por un administrador antes de que puedas loggearte."
2892
 
2893
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2894
  msgid "Your account has been successfully created!"
2895
  msgstr "¡Tu cuenta ha sido creada exitosamente!"
2896
 
2897
+ #: profile-builder-2.0/features/functions.php:678
2898
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2899
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2900
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2901
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2902
  msgid "Please enter a (valid) reCAPTCHA value"
2903
  msgstr ""
2904
 
2905
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2906
  msgid "Click the BACK button on your browser, and try again."
2907
  msgstr ""
2908
 
2909
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2910
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2911
  msgid "Sorry, you cannot upload this file type for this field."
2912
  msgstr ""
2913
 
2914
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2915
  msgid "An error occurred, please try again later."
2916
  msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde."
2917
 
2918
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2919
  msgid "More"
2920
  msgstr "Más"
2921
 
2922
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2923
  msgid "You do not have permission to view this user list."
2924
  msgstr ""
2925
 
2926
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2927
  msgid "You do not have the required user role to view this user list."
2928
  msgstr ""
2929
 
2930
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2931
  msgid "Ascending"
2932
+ msgstr "Ascendente"
2933
 
2934
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2935
  msgid "Descending"
2936
+ msgstr "Descendente"
2937
 
2938
+ #: profile-builder-2.0/admin/add-ons.php:148
2939
+ #: profile-builder-2.0/admin/add-ons.php:248
2940
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2941
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2942
  msgid "Download Now"
2943
  msgstr "Descargar"
2944
 
2945
+ #: profile-builder-2.0/admin/admin-functions.php:200
2946
  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. "
2947
  msgstr ""
2948
 
2949
+ #: profile-builder-2.0/admin/manage-fields.php:82
2950
  msgid "Choose one of the supported field types"
2951
  msgstr "Escoja uno de los campos disponibles"
2952
 
2953
+ #: profile-builder-2.0/admin/manage-fields.php:84
2954
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2955
  msgstr ""
2956
 
2957
+ #: profile-builder-2.0/admin/manage-fields.php:131
2958
  msgid "Site Key"
2959
  msgstr "Sitio clave"
2960
 
2961
+ #: profile-builder-2.0/admin/manage-fields.php:131
2962
  msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2963
  msgstr ""
2964
 
2965
+ #: profile-builder-2.0/admin/manage-fields.php:132
2966
  msgid "Secret Key"
2967
  msgstr "Clave secreta"
2968
 
2969
+ #: profile-builder-2.0/admin/manage-fields.php:132
2970
  msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2971
  msgstr ""
2972
 
2973
+ #: profile-builder-2.0/admin/manage-fields.php:1023
2974
  msgid "You must enter the site key\n"
2975
  msgstr "Debes ingresar la clave del sitio\n"
2976
 
2977
+ #: profile-builder-2.0/admin/manage-fields.php:1025
2978
  msgid "You must enter the secret key\n"
2979
  msgstr ""
2980
 
2981
+ #: profile-builder-2.0/admin/add-ons.php:10
2982
+ #: profile-builder-2.0/admin/add-ons.php:32
2983
  msgid "Add-Ons"
2984
  msgstr "Add-Ons"
2985
 
2986
+ #: profile-builder-2.0/admin/add-ons.php:34
2987
+ #: profile-builder-2.0/admin/add-ons.php:129
2988
+ #: profile-builder-2.0/admin/add-ons.php:231
2989
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2990
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2991
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2992
  msgid "Activate"
2993
  msgstr "Activar"
2994
 
2995
+ #: profile-builder-2.0/admin/add-ons.php:36
2996
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2997
  msgid "Downloading and installing..."
2998
  msgstr "Bajando e instalando..."
2999
 
3000
+ #: profile-builder-2.0/admin/add-ons.php:37
3001
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3002
  msgid "Installation complete"
3003
  msgstr "Instalación completada"
3004
 
3005
+ #: profile-builder-2.0/admin/add-ons.php:39
3006
  msgid "Add-On is Active"
3007
  msgstr "El Add-Ons está activado"
3008
 
3009
+ #: profile-builder-2.0/admin/add-ons.php:40
3010
  msgid "Add-On has been activated"
3011
  msgstr "El Add-On ha sido activado"
3012
 
3013
+ #: profile-builder-2.0/admin/add-ons.php:41
3014
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3015
  msgid "Retry Install"
3016
  msgstr "Reintentar Instalación"
3017
 
3018
+ #: profile-builder-2.0/admin/add-ons.php:43
3019
+ #: profile-builder-2.0/admin/add-ons.php:140
3020
  msgid "Add-On is <strong>active</strong>"
3021
  msgstr ""
3022
 
3023
+ #: profile-builder-2.0/admin/add-ons.php:44
3024
+ #: profile-builder-2.0/admin/add-ons.php:138
3025
  msgid "Add-On is <strong>inactive</strong>"
3026
  msgstr ""
3027
 
3028
+ #: profile-builder-2.0/admin/add-ons.php:46
3029
+ #: profile-builder-2.0/admin/add-ons.php:133
3030
+ #: profile-builder-2.0/admin/add-ons.php:235
3031
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3032
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3033
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3034
  msgid "Deactivate"
3035
+ msgstr "Desactivar"
3036
 
3037
+ #: profile-builder-2.0/admin/add-ons.php:47
3038
  msgid "Add-On has been deactivated."
3039
  msgstr ""
3040
 
3041
+ #: profile-builder-2.0/admin/add-ons.php:59
3042
  msgid "Something went wrong, we could not connect to the server. Please try again later."
3043
+ msgstr "Algo salió mal, no pudimos conectarnos al servidor. Por favor inténtalo de nuevo."
3044
 
3045
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3046
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3047
  msgid "Install Now"
3048
+ msgstr "Instalar ahora"
3049
 
3050
+ #: profile-builder-2.0/admin/add-ons.php:153
3051
+ #: profile-builder-2.0/admin/add-ons.php:251
3052
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3053
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3054
  msgid "Compatible with your version of Profile Builder."
3055
  msgstr ""
3056
 
3057
+ #: profile-builder-2.0/admin/add-ons.php:162
3058
  msgid "Upgrade Profile Builder"
3059
  msgstr ""
3060
 
3061
+ #: profile-builder-2.0/admin/add-ons.php:163
3062
  msgid "Not compatible with Profile Builder"
3063
  msgstr ""
3064
 
3065
+ #: profile-builder-2.0/admin/add-ons.php:171
3066
  msgid "Not compatible with your version of Profile Builder."
3067
  msgstr ""
3068
 
3069
+ #: profile-builder-2.0/admin/add-ons.php:172
3070
  msgid "Minimum required Profile Builder version:"
3071
  msgstr ""
3072
 
3073
+ #: profile-builder-2.0/admin/add-ons.php:177
3074
  msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3075
  msgstr ""
3076
 
3077
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3078
  msgid "You must enter a valid email address."
3079
  msgstr "Debe ingresar una dirección válida de email"
3080
 
3081
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3082
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3083
  msgid "This username is invalid because it uses illegal characters."
3084
  msgstr ""
3085
 
3086
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3087
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3088
  msgid "Please enter a valid username."
3089
  msgstr "Por favor ingrese un nombre de usuario válido"
3090
 
3091
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3092
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3093
  msgid "Only administrators can see this field on edit profile forms."
3094
  msgstr "Sólo administradores pueden ver este campo en el editor de formularios de perfiles"
3095
 
3096
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3097
  msgid "As an administrator you cannot change your role."
3098
  msgstr "Como administrador, no puedes cambiar tu Rol"
3099
 
3100
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3101
  msgid ""
3102
  "\n"
3103
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3104
  "<p>His/her new password is: {{password}}</p>\n"
3105
  msgstr ""
3106
 
3107
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3108
  msgid "Admin Notification for User Password Reset"
3109
  msgstr ""
3110
 
3111
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3112
  msgid "Reset Key"
3113
  msgstr ""
3114
 
3115
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3116
  msgid "Reset Url"
3117
  msgstr ""
3118
 
3119
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3120
  msgid "Reset Link"
3121
  msgstr ""
3122
 
3123
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3124
  msgid ""
3125
  "\n"
3126
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3130
  "{{{reset_link}}}</p>\n"
3131
  msgstr ""
3132
 
3133
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3134
  msgid "[{{site_name}}] Password Reset"
3135
  msgstr "[{{site_name}}] Restaurar Contraseña"
3136
 
3137
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3138
  msgid "Password Reset Email"
3139
  msgstr "Restaurar Contraseña vía E-mail"
3140
 
3141
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3142
  msgid ""
3143
  "\n"
3144
  "<p>You have successfully reset your password to: {{password}}</p>\n"
3146
  "\n"
3147
  "<p>Tu contraseña ha sido exitosamente restaurada a: {{password}}</p>\n"
3148
 
3149
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3150
  msgid "[{{site_name}}] Password Reset Successfully"
3151
  msgstr ""
3152
 
3153
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3154
  msgid "Password Reset Success Email"
3155
  msgstr ""
3156
 
3157
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3158
  msgid "User Nicename"
3159
  msgstr "Nicename del Usuario"
3160
 
3161
+ #: pb-add-on-woocommerce/woosync-page.php:80
3162
+ #: pb-add-on-woocommerce/woosync-page.php:114
3163
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3164
  msgid "None"
3165
  msgstr "Ninguno"
3166
 
3167
+ #: profile-builder-2.0/admin/admin-functions.php:132
3168
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3169
  msgstr "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s caracteres"
3170
 
3171
+ #: profile-builder-2.0/admin/admin-functions.php:148
3172
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3173
  msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
3174
 
3175
+ #: profile-builder-2.0/admin/general-settings.php:179
3176
  msgid "Username and Email"
3177
  msgstr "Usuario o Email"
3178
 
3179
+ #: profile-builder-2.0/admin/general-settings.php:184
3180
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
3181
  msgstr "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."
3182
 
3183
+ #: profile-builder-2.0/admin/general-settings.php:185
3184
  msgid "\"Username\" - users can Log In only with Username."
3185
  msgstr "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de Usuario."
3186
 
3187
+ #: profile-builder-2.0/admin/general-settings.php:186
3188
  msgid "\"Email\" - users can Log In only with Email."
3189
  msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
3190
 
3191
+ #: profile-builder-2.0/admin/manage-fields.php:124
3192
  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 (.*)"
3193
  msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)"
3194
 
3195
+ #: profile-builder-2.0/admin/manage-fields.php:125
3196
  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 (.*)"
3197
  msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto todas las extensiones de archivos permitidas por WordPress (.*)"
3198
 
3199
+ #: profile-builder-2.0/admin/manage-fields.php:135
3200
  msgid "User Roles"
3201
  msgstr "Roles de Usuario"
3202
 
3203
+ #: profile-builder-2.0/admin/manage-fields.php:135
3204
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3205
  msgstr "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte para reorganizar)"
3206
 
3207
+ #: profile-builder-2.0/admin/manage-fields.php:136
3208
  msgid "User Roles Order"
3209
  msgstr "Orden de Roles de Usuario"
3210
 
3211
+ #: profile-builder-2.0/admin/manage-fields.php:136
3212
  msgid "Save the user role order from the user roles checkboxes"
3213
  msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
3214
 
3215
+ #: profile-builder-2.0/admin/manage-fields.php:1128
3216
  msgid "Please select at least one user role\n"
3217
  msgstr "Por favor seleccione al menos un rol de usuario\n"
3218
 
3219
+ #: profile-builder-2.0/admin/register-version.php:22
3220
  msgid "Profile Builder Register"
3221
  msgstr "Registro de Profile Builder"
3222
 
3223
+ #: profile-builder-2.0/admin/register-version.php:81
3224
  msgid "The serial number is about to expire soon!"
3225
  msgstr "¡El número de serie está a punto de expirar!"
3226
 
3227
+ #: profile-builder-2.0/admin/register-version.php:81
3228
  msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3229
  msgstr "Su número de serie está a punto de expirar, por favor %1$s Renueve Su Licencia%2$s."
3230
 
3231
+ #: profile-builder-2.0/admin/register-version.php:83
3232
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3233
  msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
3234
 
3235
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3236
  msgid "Add Entry"
3237
  msgstr "Adicionar Entrada"
3238
 
3239
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3240
  msgid "show"
3241
  msgstr "mostrar"
3242
 
3243
+ #: profile-builder-2.0/features/functions.php:736
3244
  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"
3245
  msgstr "Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
3246
 
3247
+ #: profile-builder-2.0/front-end/class-formbuilder.php:659
3248
  msgid "User to edit:"
3249
  msgstr "Usuarios a editar:"
3250
 
3251
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3252
+ #: profile-builder-2.0/front-end/recover.php:262
3253
  msgid "The password must have the minimum length of %s characters"
3254
  msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
3255
 
3256
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3257
+ #: profile-builder-2.0/front-end/recover.php:266
3258
  msgid "The password must have a minimum strength of %s"
3259
  msgstr "La contraseña tiene que tener una fortaleza mínima de %s"
3260
 
3261
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3262
  msgid "You cannot register this user role"
3263
  msgstr "Usted no puede registrar este rol de usuario"
3264
 
3265
+ #: profile-builder-2.0/front-end/login.php:153
3266
  msgid "username or email"
3267
  msgstr "nombre de usuario o email"
3268
 
3269
+ #: profile-builder-2.0/front-end/login.php:222
3270
  msgid "Username or Email"
3271
  msgstr "Usuario o Email"
3272
 
3273
+ #: profile-builder-2.0/front-end/logout.php:15
3274
  msgid "You are currently logged in as %s. "
3275
  msgstr "Usted está autenticado actualmente como %s"
3276
 
3277
+ #: profile-builder-2.0/front-end/logout.php:15
3278
  msgid "Log out &raquo;"
3279
  msgstr "Salir &raquo;"
3280
 
3281
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3282
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3283
  msgid "User Role"
3284
  msgstr "Role del Usuario"
3285
 
3286
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3287
  msgid "View all extra shortcode parameters"
3288
  msgstr "Ver todos los parámetros de código corto adicionales"
3289
 
3290
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3291
  msgid "displays only the users that you specified the user_id for"
3292
  msgstr "muestra solamente los usuarios para los que usted ha especificado el user_id"
3293
 
3294
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3295
  msgid "displays all users except the ones you specified the user_id for"
3296
  msgstr "muestra todos los usuarios excepto aquellos para los que usted ha especificado el user_id"
3297
 
3298
+ #: profile-builder-2.0/features/functions.php:566
3299
  msgid "Minimum length of %d characters"
3300
  msgstr "Mínimo de %d caracteres. "
3301
 
3302
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
3303
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
3304
  msgid "This message is only visible by administrators"
3305
  msgstr "Este mensaje está visible solamente por administradores"
3306
 
3307
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3308
  msgid "User not found"
3309
  msgstr "Usuario no encontrado"
3310
 
3311
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3312
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3313
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3314
  msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
3315
 
3316
+ #: profile-builder-2.0/admin/admin-bar.php:48
3317
  msgid "Choose which user roles view the admin bar in the front-end of the website."
3318
  msgstr "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio web."
3319
 
3320
+ #: profile-builder-2.0/admin/manage-fields.php:129
3321
  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"
3322
  msgstr "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofes"
3323
 
3324
+ #: profile-builder-2.0/admin/manage-fields.php:1055
3325
  msgid "The meta-name cannot be empty\n"
3326
  msgstr "El meta-nombre no puede ser vacío\n"
3327
 
3328
+ #: profile-builder-2.0/admin/register-version.php:69
3329
  msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3330
  msgstr "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y registrarlo con el número de serie que recibió"
3331
 
3332
+ #: profile-builder-2.0/admin/register-version.php:243
3333
  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>"
3334
  msgstr "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s</p>"
3335
 
3336
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3337
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3338
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3339
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3340
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3341
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3342
  msgid "...Choose"
3343
  msgstr "...Escoger"
3344
 
3345
+ #: profile-builder-2.0/features/class-list-table.php:526
3346
+ #: profile-builder-2.0/features/class-list-table.php:942
3347
  msgid "1 item"
3348
+ msgstr "1 elemento"
 
 
3349
 
3350
+ #: profile-builder-2.0/features/functions.php:552
3351
  msgid "Very Weak"
3352
  msgstr "Muy Débil"
3353
 
3354
+ #: profile-builder-2.0/features/functions.php:640
3355
  msgid "This field is required"
3356
  msgstr "Campo requerido"
3357
 
3358
+ #: profile-builder-2.0/features/functions.php:704
3359
  msgid "Cancel"
3360
  msgstr "Cancelar"
3361
 
3362
+ #: profile-builder-2.0/features/functions.php:740
3363
  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"
3364
  msgstr "Para permitir a los usuarios registrarse para su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$s"
3365
 
3366
+ #: profile-builder-2.0/front-end/login.php:144
3367
  msgid "Invalid username."
3368
  msgstr "Nombre de usuario inválido."
3369
 
3370
+ #: profile-builder-2.0/front-end/login.php:149
3371
+ #: profile-builder-2.0/front-end/login.php:153
3372
  msgid "username"
3373
  msgstr "nombre de usuario"
3374
 
3375
+ #: profile-builder-2.0/front-end/login.php:149
3376
  msgid "email"
3377
  msgstr "email"
3378
 
3379
+ #: profile-builder-2.0/front-end/login.php:256
3380
  msgid "Lost your password?"
3381
  msgstr "¿Perdió su contraseña?"
3382
 
3383
+ #: profile-builder-2.0/index.php:34
3384
  msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3385
  msgstr "está también activado. Necesita desactivarlo antes de activar está versión del plugin."
3386
 
3387
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3388
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3389
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3390
  msgstr "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que tiene por defecto el email del administrador"
3391
 
3392
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3393
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3394
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3395
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3396
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3397
  msgid "Your selected password at signup"
3398
  msgstr "Su contraseña seleccionada al inscribirse"
3399
 
3400
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3401
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3402
  msgstr "Estos ajustes también se replican en la página de ajustes de \"Personalizador de Email de Admin\" al salvar."
3403
 
3404
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3405
  msgid "This form is empty."
3406
  msgstr "Esta forma está vacía."
3407
 
3408
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3409
  msgid "Delete all items"
3410
  msgstr "Borrar todos los elementos"
3411
 
3412
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3413
  msgid "Delete all"
3414
  msgstr "Borrar todo"
3415
 
3416
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3417
  msgid "Choose..."
3418
  msgstr "Escoger..."
3419
 
3420
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3421
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3422
  msgstr "Establecer el número de usuarios a mostrarse en cada parte paginada del all-userlisting"
3423
 
3424
+ #: profile-builder-2.0/admin/admin-bar.php:10
3425
  msgid "Show/Hide the Admin Bar on the Front-End"
3426
  msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública"
3427
 
3428
+ #: profile-builder-2.0/admin/admin-bar.php:10
3429
+ #: profile-builder-2.0/admin/admin-bar.php:47
3430
  msgid "Admin Bar Settings"
3431
  msgstr "Ajustes de Admin Bar"
3432
 
3433
+ #: profile-builder-2.0/admin/admin-bar.php:57
3434
  msgid "User-Role"
3435
  msgstr "Usuario-Rol"
3436
 
3437
+ #: profile-builder-2.0/admin/admin-bar.php:58
3438
  msgid "Visibility"
3439
  msgstr "Visibilidad"
3440
 
3441
+ #: profile-builder-2.0/admin/admin-bar.php:73
3442
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3443
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3444
  msgid "Default"
3445
  msgstr "Valor Por Defecto"
3446
 
3447
+ #: profile-builder-2.0/admin/admin-bar.php:74
3448
  msgid "Show"
3449
  msgstr "Mostrar"
3450
 
3451
+ #: profile-builder-2.0/admin/admin-bar.php:75
3452
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3453
  msgid "Hide"
3454
  msgstr "Ocultar"
3455
 
3456
+ #: pb-add-on-woocommerce/woosync-page.php:147
3457
+ #: profile-builder-2.0/admin/admin-bar.php:86
3458
+ #: profile-builder-2.0/admin/general-settings.php:224
3459
+ #: profile-builder-2.0/admin/register-version.php:95
3460
+ #: profile-builder-2.0/features/functions.php:697
3461
+ #: profile-builder-2.0/modules/modules.php:127
3462
  msgid "Save Changes"
3463
  msgstr "Salvar Cambios"
3464
 
3465
+ #: profile-builder-2.0/admin/admin-functions.php:37
3466
  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 )"
3467
  msgstr "La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña \"%s\") "
3468
 
3469
+ #: profile-builder-2.0/admin/admin-functions.php:37
3470
+ #: profile-builder-2.0/admin/general-settings.php:10
3471
+ #: profile-builder-2.0/admin/general-settings.php:35
3472
  msgid "General Settings"
3473
  msgstr "Ajustes Generales"
3474
 
3475
+ #: profile-builder-2.0/admin/admin-functions.php:137
3476
+ #: profile-builder-2.0/admin/general-settings.php:210
3477
  msgid "Very weak"
3478
  msgstr "Muy débil"
3479
 
3480
+ #: profile-builder-2.0/admin/admin-functions.php:137
3481
+ #: profile-builder-2.0/admin/general-settings.php:211
3482
+ #: profile-builder-2.0/features/functions.php:552
3483
  msgid "Weak"
3484
  msgstr "Débil"
3485
 
3486
+ #: profile-builder-2.0/admin/admin-functions.php:137
3487
+ #: profile-builder-2.0/admin/general-settings.php:212
3488
+ #: profile-builder-2.0/features/functions.php:552
3489
  msgid "Medium"
3490
  msgstr "Media"
3491
 
3492
+ #: profile-builder-2.0/admin/admin-functions.php:137
3493
+ #: profile-builder-2.0/admin/general-settings.php:213
3494
+ #: profile-builder-2.0/features/functions.php:552
3495
  msgid "Strong"
3496
  msgstr "Fuerte"
3497
 
3498
+ #: profile-builder-2.0/admin/admin-functions.php:187
3499
  msgid "Add Field"
3500
  msgstr "Adicionar Campo"
3501
 
3502
+ #: profile-builder-2.0/admin/admin-functions.php:189
3503
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3504
  msgid "Save Settings"
3505
  msgstr "Salvar Ajustes"
3506
 
3507
+ #: profile-builder-2.0/admin/basic-info.php:10
3508
  msgid "Basic Information"
3509
  msgstr "Información Básica"
3510
 
3511
+ #: profile-builder-2.0/admin/basic-info.php:29
3512
  msgid "Version %s"
3513
  msgstr "Versión %s"
3514
 
3515
+ #: profile-builder-2.0/admin/basic-info.php:30
3516
  msgid "<strong>Profile Builder </strong>"
3517
  msgstr "<strong>Profile Builder </strong>"
3518
 
3519
+ #: profile-builder-2.0/admin/basic-info.php:31
3520
  msgid "The best way to add front-end registration, edit profile and login forms."
3521
  msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
3522
 
3523
+ #: profile-builder-2.0/admin/basic-info.php:33
3524
  msgid "For Modern User Interaction"
3525
  msgstr "Para la Interacción del Usuario Moderno"
3526
 
3527
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3528
+ #: profile-builder-2.0/admin/basic-info.php:36
3529
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3530
  msgid "Login"
3531
  msgstr "Autenticación"
3532
 
3533
+ #: profile-builder-2.0/admin/basic-info.php:40
3534
  msgid "Registration"
3535
  msgstr "Registro"
3536
 
3537
+ #: profile-builder-2.0/admin/basic-info.php:44
3538
  msgid "Edit Profile"
3539
  msgstr "Editar Perfil"
3540
 
3541
+ #: profile-builder-2.0/admin/basic-info.php:51
3542
  msgid "Extra Features"
3543
  msgstr "Características extras."
3544
 
3545
+ #: profile-builder-2.0/admin/basic-info.php:52
3546
  msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3547
  msgstr "Características que le dan más control sobre sus usuarios, incrementando la seguridad y ayudándolo a evitar los registros spams de usuarios."
3548
 
3549
+ #: profile-builder-2.0/admin/basic-info.php:53
3550
  msgid "Enable extra features"
3551
  msgstr "Habilitar características extras"
3552
 
3553
+ #: profile-builder-2.0/admin/basic-info.php:57
3554
  msgid "Recover Password"
3555
  msgstr "Recuperar contraseña"
3556
 
3557
+ #: profile-builder-2.0/admin/basic-info.php:61
3558
  msgid "Admin Approval (*)"
3559
  msgstr "Aprobación del Admin (*)"
3560
 
3561
+ #: profile-builder-2.0/admin/basic-info.php:62
3562
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3563
  msgstr "Usted decide quién es un usuario en su sitio web. Obtenga notificación via email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de WordPress."
3564
 
3565
+ #: profile-builder-2.0/admin/basic-info.php:65
3566
  msgid "Email Confirmation"
3567
  msgstr "Confirmación de Email"
3568
 
3569
+ #: profile-builder-2.0/admin/basic-info.php:66
3570
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3571
  msgstr "Esté seguro que los usuarios se autentican con emails genuinos. En el registro los usuarios recibirán una notificación para confirmar sus direcciones de email."
3572
 
3573
+ #: profile-builder-2.0/admin/basic-info.php:69
3574
  msgid "Minimum Password Length and Strength Meter"
3575
  msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
3576
 
3577
+ #: profile-builder-2.0/admin/basic-info.php:70
3578
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3579
  msgstr "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña."
3580
 
3581
+ #: profile-builder-2.0/admin/basic-info.php:73
3582
  msgid "Login with Email or Username"
3583
  msgstr "Autenticación con Email o Nombre de Usuario"
3584
 
3585
+ #: profile-builder-2.0/admin/basic-info.php:74
3586
  msgid "Allow users to log in with their email or username when accessing your site."
3587
  msgstr "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio."
3588
 
3589
+ #: profile-builder-2.0/admin/basic-info.php:87
3590
  msgid "Customize Your Forms The Way You Want (*)"
3591
  msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
3592
 
3593
+ #: profile-builder-2.0/admin/basic-info.php:88
3594
  msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3595
  msgstr "Con Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto."
3596
 
3597
+ #: profile-builder-2.0/admin/basic-info.php:90
3598
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3599
  msgstr "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
3600
 
3601
+ #: profile-builder-2.0/admin/basic-info.php:92
3602
  msgid "Get started with extra fields"
3603
  msgstr "Comience con los campos extras"
3604
 
3605
+ #: profile-builder-2.0/admin/basic-info.php:95
3606
  msgid "Avatar Upload"
3607
  msgstr "Subida de Avatar"
3608
 
3609
+ #: profile-builder-2.0/admin/basic-info.php:96
3610
  msgid "Generic Uploads"
3611
  msgstr "Subidas Genéricas"
3612
 
3613
+ #: profile-builder-2.0/admin/basic-info.php:97
3614
  msgid "Agree To Terms Checkbox"
3615
  msgstr "Casilla de Aceptar los Términos"
3616
 
3617
+ #: profile-builder-2.0/admin/basic-info.php:98
3618
  msgid "Datepicker"
3619
  msgstr "Selector de Fecha"
3620
 
3621
+ #: profile-builder-2.0/admin/basic-info.php:101
3622
  msgid "reCAPTCHA"
3623
  msgstr "reCAPTCHA"
3624
 
3625
+ #: profile-builder-2.0/admin/basic-info.php:102
3626
  msgid "Country Select"
3627
  msgstr "Selector de País"
3628
 
3629
+ #: profile-builder-2.0/admin/basic-info.php:104
3630
  msgid "Timezone Select"
3631
  msgstr "Selector de Zona Horaria"
3632
 
3633
+ #: profile-builder-2.0/admin/basic-info.php:108
3634
  msgid "Input / Hidden Input"
3635
  msgstr "Input / Input Oculto"
3636
 
3637
+ #: profile-builder-2.0/admin/basic-info.php:110
3638
  msgid "Checkbox"
3639
  msgstr "Casilla"
3640
 
3641
+ #: profile-builder-2.0/admin/basic-info.php:111
3642
  msgid "Select"
3643
  msgstr "Selector"
3644
 
3645
+ #: profile-builder-2.0/admin/basic-info.php:112
3646
  msgid "Radio Buttons"
3647
  msgstr "Botones Redondos"
3648
 
3649
+ #: profile-builder-2.0/admin/basic-info.php:113
3650
  msgid "Textarea"
3651
  msgstr "Área de Texto"
3652
 
3653
+ #: profile-builder-2.0/admin/basic-info.php:125
3654
  msgid "Powerful Modules (**)"
3655
  msgstr "Módulos Potentes (**)"
3656
 
3657
+ #: profile-builder-2.0/admin/basic-info.php:126
3658
  msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3659
  msgstr "Todo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. "
3660
 
3661
+ #: profile-builder-2.0/admin/basic-info.php:128
3662
  msgid "Enable your modules"
3663
  msgstr "Habilitar sus módulos"
3664
 
3665
+ #: profile-builder-2.0/admin/basic-info.php:131
3666
  msgid "Find out more about PRO Modules"
3667
  msgstr "Descubra más acerca de PRO Modules"
3668
 
3669
+ #: profile-builder-2.0/admin/basic-info.php:136
3670
+ #: profile-builder-2.0/modules/modules.php:89
3671
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3672
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3673
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3674
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3675
  msgid "User Listing"
3676
  msgstr "Listado de Usuario"
3677
 
3678
+ #: profile-builder-2.0/admin/basic-info.php:138
3679
  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."
3680
  msgstr "Plantillas fácil de editar para listar sus usuarios del sitio web así como crear páginas de un usuario simple. Basado en código corto, ofrece muchas opciones para personalizar sus listados."
3681
 
3682
+ #: profile-builder-2.0/admin/basic-info.php:144
3683
  msgid "Email Customizer"
3684
  msgstr "Personalizador de Email"
3685
 
3686
+ #: profile-builder-2.0/admin/basic-info.php:145
3687
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3688
  msgstr "Personalice todos los emails enviados a sus usuarios o administradores. En el registro, la confirmación de email y la aprobación/desaprobación de admin."
3689
 
3690
+ #: profile-builder-2.0/admin/basic-info.php:148
3691
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3692
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3693
+ #: profile-builder-2.0/modules/modules.php:110
3694
  msgid "Custom Redirects"
3695
  msgstr "Redirecciones Personalizadas"
3696
 
3697
+ #: profile-builder-2.0/admin/basic-info.php:149
3698
  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."
3699
  msgstr "Mantenga sus usuarios fuera del panel de control de WordPRess, redirecciónelos a la vista pública luego de la autenticación o registro, todo está a unos clics."
3700
 
3701
+ #: profile-builder-2.0/admin/basic-info.php:154
3702
+ #: profile-builder-2.0/modules/modules.php:75
3703
  msgid "Multiple Registration Forms"
3704
  msgstr "Formas de Registro Múltiple"
3705
 
3706
+ #: profile-builder-2.0/admin/basic-info.php:155
3707
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3708
  msgstr "Establecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios."
3709
 
3710
+ #: profile-builder-2.0/admin/basic-info.php:158
3711
+ #: profile-builder-2.0/modules/modules.php:82
3712
  msgid "Multiple Edit-profile Forms"
3713
  msgstr "Formas de Edición de Múltiples Perfiles"
3714
 
3715
+ #: profile-builder-2.0/admin/basic-info.php:159
3716
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3717
  msgstr "Permite a diferentes roles de usuario editar sus informaciones específicas. Establezca las formas de edición de múltiples perfiles con diferentes campos para ciertos roles de usuario."
3718
 
3719
+ #: profile-builder-2.0/admin/basic-info.php:187
3720
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3721
  msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
3722
 
3723
+ #: profile-builder-2.0/admin/basic-info.php:188
3724
  msgid "** only available in the %1$sPro version%2$s."
3725
  msgstr "* solamente disponible en la %1$sversión Pro%2$s."
3726
 
3727
+ #: profile-builder-2.0/admin/general-settings.php:39
3728
  msgid "Load Profile Builder's own CSS file in the front-end:"
3729
  msgstr "El propio CSS de Load Profile Builder en la vista pública:"
3730
 
3731
+ #: profile-builder-2.0/admin/general-settings.php:42
3732
+ #: profile-builder-2.0/admin/general-settings.php:55
3733
+ #: profile-builder-2.0/admin/general-settings.php:104
3734
+ #: profile-builder-2.0/admin/general-settings.php:151
3735
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3736
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3737
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3738
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3739
  msgid "Yes"
3740
  msgstr "Si"
3741
 
3742
+ #: profile-builder-2.0/admin/general-settings.php:44
3743
  msgid "You can find the default file here: %1$s"
3744
  msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s"
3745
 
3746
+ #: profile-builder-2.0/admin/general-settings.php:51
3747
  msgid "\"Email Confirmation\" Activated:"
3748
  msgstr "\"Confirmación de Email\" Activada:"
3749
 
3750
+ #: profile-builder-2.0/admin/general-settings.php:56
3751
+ #: profile-builder-2.0/admin/general-settings.php:105
3752
+ #: profile-builder-2.0/admin/general-settings.php:150
3753
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3754
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3755
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3756
  msgid "No"
3757
  msgstr "No"
3758
 
3759
+ #: profile-builder-2.0/admin/general-settings.php:61
3760
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3761
  msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
3762
 
3763
+ #: profile-builder-2.0/admin/general-settings.php:69
3764
  msgid "\"Email Confirmation\" Landing Page:"
3765
  msgstr "Página de llegada de \"Confirmación de Email\":"
3766
 
3767
+ #: profile-builder-2.0/admin/general-settings.php:74
3768
  msgid "Existing Pages"
3769
  msgstr "Páginas Existentes"
3770
 
3771
+ #: profile-builder-2.0/admin/general-settings.php:89
3772
  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."
3773
  msgstr "Especificar la página donde los usuarios serán redirigidos cuando se confirma la cuenta de email. Esta página puede ser diferente a la(s) página(s) de registro y puede ser cambiada en cualquier momento."
3774
 
3775
+ #: profile-builder-2.0/admin/general-settings.php:100
3776
  msgid "\"Admin Approval\" Activated:"
3777
  msgstr "\"Aprobación del Admin\" Activada:"
3778
 
3779
+ #: profile-builder-2.0/admin/general-settings.php:108
3780
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3781
  msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
3782
 
3783
+ #: profile-builder-2.0/admin/general-settings.php:165
3784
  msgid "\"Admin Approval\" Feature:"
3785
  msgstr "Característica \"Aprobación del Admin\":"
3786
 
3787
+ #: profile-builder-2.0/admin/general-settings.php:168
3788
  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."
3789
  msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s."
3790
 
3791
+ #: profile-builder-2.0/admin/general-settings.php:175
3792
  msgid "Allow Users to Log in With:"
3793
  msgstr "Permitir a los Usuaios Autenticarse Con:"
3794
 
3795
+ #: profile-builder-2.0/admin/general-settings.php:180
3796
+ #: profile-builder-2.0/admin/manage-fields.php:201
3797
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3798
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3799
+ #: profile-builder-2.0/front-end/login.php:85
3800
+ #: profile-builder-2.0/front-end/login.php:99
3801
+ #: profile-builder-2.0/front-end/login.php:218
3802
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3803
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3804
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3805
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3806
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3807
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3808
  msgid "Username"
3809
  msgstr "Nombre de Usuario"
3810
 
3811
+ #: profile-builder-2.0/admin/general-settings.php:181
3812
+ #: profile-builder-2.0/front-end/login.php:215
3813
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3814
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3815
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3816
  msgid "Email"
3817
  msgstr "Email"
3818
 
3819
+ #: profile-builder-2.0/admin/general-settings.php:193
3820
  msgid "Minimum Password Length:"
3821
  msgstr "Tamaño Mínimo de Contraseña:"
3822
 
3823
+ #: profile-builder-2.0/admin/general-settings.php:198
3824
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3825
  msgstr "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo."
3826
 
3827
+ #: profile-builder-2.0/admin/general-settings.php:205
3828
  msgid "Minimum Password Strength:"
3829
  msgstr "Fortaleza Mínima de Contraseña:"
3830
 
3831
+ #: profile-builder-2.0/admin/general-settings.php:209
3832
  msgid "Disabled"
3833
  msgstr "Deshabilitado"
3834
 
3835
+ #: profile-builder-2.0/admin/manage-fields.php:12
3836
  msgid "Manage Fields"
3837
  msgstr "Gestionar Campos"
3838
 
3839
+ #: profile-builder-2.0/admin/manage-fields.php:13
3840
  msgid "Manage Default and Extra Fields"
3841
  msgstr "Gestionar Campos Por Defecto y Adicionales"
3842
 
3843
+ #: profile-builder-2.0/admin/manage-fields.php:118
3844
  msgid "Field Title"
3845
  msgstr "Título del Campo"
3846
 
3847
+ #: profile-builder-2.0/admin/manage-fields.php:118
3848
  msgid "Title of the field"
3849
  msgstr "Título del Campo"
3850
 
3851
+ #: profile-builder-2.0/admin/manage-fields.php:119
3852
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3853
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3854
  msgid "Field"
3855
  msgstr "Campo"
3856
 
3857
+ #: profile-builder-2.0/admin/manage-fields.php:120
3858
  msgid "Meta-name"
3859
  msgstr "Meta-nombre"
3860
 
3861
+ #: profile-builder-2.0/admin/manage-fields.php:121
3862
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3863
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3864
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3865
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3866
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3867
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3868
  msgid "ID"
3869
  msgstr "ID"
3870
 
3871
+ #: profile-builder-2.0/admin/manage-fields.php:121
3872
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3873
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3874
  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"
3875
  msgstr "Un ID único y auto-generado para este campo particular<br/> Usted puede usar esto en conjunción con filtros para apuntar a este elemento si se necesita<br/>No puede ser editado"
3876
 
3877
+ #: profile-builder-2.0/admin/manage-fields.php:122
3878
  msgid "Description"
3879
  msgstr "Descripción"
3880
 
3881
+ #: profile-builder-2.0/admin/manage-fields.php:122
3882
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3883
  msgstr "Entre una descripción (detallada) de la opción para que los usuarios finales lean<br/>Opcional"
3884
 
3885
+ #: profile-builder-2.0/admin/manage-fields.php:123
3886
  msgid "Row Count"
3887
  msgstr "Cantidad de Filas"
3888
 
3889
+ #: profile-builder-2.0/admin/manage-fields.php:123
3890
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3891
  msgstr "Especificar el número de filas para un campo 'Textarea'<br/>"
3892
 
3893
+ #: profile-builder-2.0/admin/manage-fields.php:124
3894
  msgid "Allowed Image Extensions"
3895
  msgstr "Extensiones de Imagen Permitidas"
3896
 
3897
+ #: profile-builder-2.0/admin/manage-fields.php:125
3898
  msgid "Allowed Upload Extensions"
3899
  msgstr "Extensiones de Subida Permitidas"
3900
 
3901
+ #: profile-builder-2.0/admin/manage-fields.php:126
3902
  msgid "Avatar Size"
3903
  msgstr "Tamaño del Avatar"
3904
 
3905
+ #: profile-builder-2.0/admin/manage-fields.php:126
3906
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3907
  msgstr "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no se especifica, deja por defecto 100"
3908
 
3909
+ #: profile-builder-2.0/admin/manage-fields.php:127
3910
  msgid "Date-format"
3911
  msgstr "Formato de fecha"
3912
 
3913
+ #: profile-builder-2.0/admin/manage-fields.php:128
3914
  msgid "Terms of Agreement"
3915
  msgstr "Términos del Acuerdo"
3916
 
3917
+ #: profile-builder-2.0/admin/manage-fields.php:128
3918
  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;"
3919
  msgstr "Entrar una descripción detallada de los términos del acuerdo para que el usuario lea.<br/> Los enlaces pueden ser insertados usando sintaxis HTML estándar:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3920
 
3921
+ #: profile-builder-2.0/admin/manage-fields.php:129
3922
  msgid "Options"
3923
  msgstr "Opciones"