User registration & user profile – Profile Builder - Version 3.4.8

Version Description

  • Feature: Add a visibility toggle to Profile Builder password fields. Similar to WordPress default form functionality
  • Fix: Issue with Labels Edit showing the incorrect original string in the back-end
  • Fix: Improved sanitization on the Toolbox settings page
  • Misc: Usermeta shortcodes now supports the ID key which will return the currently logged in users ID
  • Misc: Added a language field that can be used to store the selected website language at the time of registration
Download this release

Release Info

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

Code changes from version 3.4.7 to 3.4.8

admin/advanced-settings/advanced-settings.php CHANGED
@@ -154,6 +154,7 @@ if( !class_exists('WPPB_toolbox') ){
154
 
155
 
156
  public function sanitize_forms_settings( $settings ) {
 
157
  if( !empty( $settings['restricted-email-domains-data'] ) ){
158
  foreach( $settings['restricted-email-domains-data'] as $key => $email )
159
  $settings['restricted-email-domains-data'][$key] = strtolower( $email );
@@ -190,11 +191,21 @@ if( !class_exists('WPPB_toolbox') ){
190
  }
191
  }
192
 
193
- if( empty( $settings['admin-emails'] ) ) {
194
- $settings['admin-emails'] = sanitize_email( get_option('admin_email') );
 
 
 
195
  }
196
 
 
 
 
 
 
 
197
  return $settings;
 
198
  }
199
 
200
  private function setup_functions() {
154
 
155
 
156
  public function sanitize_forms_settings( $settings ) {
157
+
158
  if( !empty( $settings['restricted-email-domains-data'] ) ){
159
  foreach( $settings['restricted-email-domains-data'] as $key => $email )
160
  $settings['restricted-email-domains-data'][$key] = strtolower( $email );
191
  }
192
  }
193
 
194
+ if( isset( $settings['redirect-delay-timer'] ) ){
195
+ $settings['redirect-delay-timer'] = (int)$settings['redirect-delay-timer'];
196
+
197
+ if( empty( $settings['redirect-delay-timer'] ) )
198
+ $settings['redirect-delay-timer'] = 3;
199
  }
200
 
201
+ if( isset( $settings['modify-permalinks-single'] ) )
202
+ $settings['modify-permalinks-single'] = sanitize_text_field( $settings['modify-permalinks-single'] );
203
+
204
+ if( empty( $settings['admin-emails'] ) )
205
+ $settings['admin-emails'] = sanitize_email( get_option('admin_email') );
206
+
207
  return $settings;
208
+
209
  }
210
 
211
  private function setup_functions() {
admin/advanced-settings/includes/fields/send-credentials-text.php CHANGED
@@ -9,5 +9,5 @@ function wppb_toolbox_send_credentials_checkbox_text($requestdata, $form) {
9
  $text = wppb_toolbox_get_settings( 'fields', 'send-credentials-text' );
10
 
11
  return '<li class="wppb-form-field wppb-send-credentials-checkbox"><label for="send_credentials_via_email"><input id="send_credentials_via_email" type="checkbox" name="send_credentials_via_email" value="sending"'.( ( isset( $request_data['send_credentials_via_email'] ) && ( $request_data['send_credentials_via_email'] == 'sending' ) ) ? ' checked' : '' ).'/>'.
12
- __( $text, 'profile-builder').'</label></li>';
13
  }
9
  $text = wppb_toolbox_get_settings( 'fields', 'send-credentials-text' );
10
 
11
  return '<li class="wppb-form-field wppb-send-credentials-checkbox"><label for="send_credentials_via_email"><input id="send_credentials_via_email" type="checkbox" name="send_credentials_via_email" value="sending"'.( ( isset( $request_data['send_credentials_via_email'] ) && ( $request_data['send_credentials_via_email'] == 'sending' ) ) ? ' checked' : '' ).'/>'.
12
+ esc_html( $text ).'</label></li>';
13
  }
admin/advanced-settings/includes/shortcodes/usermeta.php CHANGED
@@ -27,9 +27,14 @@ function wppb_toolbox_usermeta_handler( $atts, $content=null){
27
 
28
  if ( !array_key_exists( 'key', $atts ) ) return;
29
 
30
- if( $atts['key'] == 'avatar'){
31
  return $atts['pre'] . get_avatar( $user->ID, $atts['size']) . $atts['post'] ;
32
  }
 
 
 
 
 
33
  if ( $user->has_prop( $atts['key'] ) ){
34
  if ($atts['wpautop'] == 'on'){
35
  $value = wpautop( $user->get( $atts['key'] ) );
27
 
28
  if ( !array_key_exists( 'key', $atts ) ) return;
29
 
30
+ if( $atts['key'] == 'avatar' ){
31
  return $atts['pre'] . get_avatar( $user->ID, $atts['size']) . $atts['post'] ;
32
  }
33
+
34
+ if( $atts['key'] === 'id' ){
35
+ $atts['key'] = 'ID';
36
+ }
37
+
38
  if ( $user->has_prop( $atts['key'] ) ){
39
  if ($atts['wpautop'] == 'on'){
40
  $value = wpautop( $user->get( $atts['key'] ) );
admin/advanced-settings/includes/userlisting/search-placeholder-text.php CHANGED
@@ -6,6 +6,6 @@ function wppb_toolbox_userlisting_search_placeholder_text( $default ) {
6
  if ( $text == false )
7
  return $default;
8
 
9
- return $text;
10
  }
11
  add_filter('wppb_userlisting_search_field_text', 'wppb_toolbox_userlisting_search_placeholder_text', 20 );
6
  if ( $text == false )
7
  return $default;
8
 
9
+ return esc_html( $text );
10
  }
11
  add_filter('wppb_userlisting_search_field_text', 'wppb_toolbox_userlisting_search_placeholder_text', 20 );
admin/manage-fields.php CHANGED
@@ -87,6 +87,7 @@ function wppb_populate_manage_fields(){
87
  $manage_field_types['optgroups']['standard']['options'][] = 'Input';
88
  $manage_field_types['optgroups']['standard']['options'][] = 'Number';
89
  $manage_field_types['optgroups']['standard']['options'][] = 'Input (Hidden)';
 
90
  $manage_field_types['optgroups']['standard']['options'][] = 'Textarea';
91
  $manage_field_types['optgroups']['standard']['options'][] = 'WYSIWYG';
92
  $manage_field_types['optgroups']['standard']['options'][] = 'Select';
@@ -1743,4 +1744,3 @@ if ( ! function_exists( 'wppb_filter_map_bubble_fields' ) ) {
1743
  }
1744
  }
1745
  add_filter( 'wppb_map_bubble_fields', 'wppb_filter_map_bubble_fields' );
1746
-
87
  $manage_field_types['optgroups']['standard']['options'][] = 'Input';
88
  $manage_field_types['optgroups']['standard']['options'][] = 'Number';
89
  $manage_field_types['optgroups']['standard']['options'][] = 'Input (Hidden)';
90
+ $manage_field_types['optgroups']['standard']['options'][] = 'Language';
91
  $manage_field_types['optgroups']['standard']['options'][] = 'Textarea';
92
  $manage_field_types['optgroups']['standard']['options'][] = 'WYSIWYG';
93
  $manage_field_types['optgroups']['standard']['options'][] = 'Select';
1744
  }
1745
  }
1746
  add_filter( 'wppb_map_bubble_fields', 'wppb_filter_map_bubble_fields' );
 
assets/css/style-front-end.css CHANGED
@@ -178,6 +178,12 @@
178
  margin-left: 0;
179
  }
180
 
 
 
 
 
 
 
181
  .wppb-form-field label,
182
  #wppb-login-wrap .login-username label,
183
  #wppb-login-wrap .login-password label{
@@ -861,6 +867,20 @@ li.wppb-facet-search{
861
  border-color: #8dff1c;
862
  }
863
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
864
  /**************************************************/
865
  /* Profile Builder Subscription Plans Field
866
  /**************************************************/
178
  margin-left: 0;
179
  }
180
 
181
+ .wppb-form-field.wppb-default-password,
182
+ .wppb-form-field.wppb-default-repeat-password,
183
+ #wppb-login-wrap .login-password {
184
+ position: relative;
185
+ }
186
+
187
  .wppb-form-field label,
188
  #wppb-login-wrap .login-username label,
189
  #wppb-login-wrap .login-password label{
867
  border-color: #8dff1c;
868
  }
869
 
870
+ /*--------------------------------------------------------------
871
+ 7.0 Show/Hide Password
872
+ --------------------------------------------------------------*/
873
+ .wppb-form-field.wppb-default-password button.wppb-toggle-pw,
874
+ .wppb-form-field.wppb-default-repeat-password button.wppb-toggle-pw,
875
+ #wppb-login-wrap .login-password button.wppb-toggle-pw {
876
+ position: absolute;
877
+ right: 0px;
878
+ top: 8px;
879
+ background: transparent;
880
+ border: 1px solid transparent;
881
+ box-shadow: none;
882
+ }
883
+
884
  /**************************************************/
885
  /* Profile Builder Subscription Plans Field
886
  /**************************************************/
assets/images/eye-off-outline.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M2,5.27L3.28,4L20,20.72L18.73,22L15.65,18.92C14.5,19.3 13.28,19.5 12,19.5C7,19.5 2.73,16.39 1,12C1.69,10.24 2.79,8.69 4.19,7.46L2,5.27M12,9A3,3 0 0,1 15,12C15,12.35 14.94,12.69 14.83,13L11,9.17C11.31,9.06 11.65,9 12,9M12,4.5C17,4.5 21.27,7.61 23,12C22.18,14.08 20.79,15.88 19,17.19L17.58,15.76C18.94,14.82 20.06,13.54 20.82,12C19.17,8.64 15.76,6.5 12,6.5C10.91,6.5 9.84,6.68 8.84,7L7.3,5.47C8.74,4.85 10.33,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C12.69,17.5 13.37,17.43 14,17.29L11.72,15C10.29,14.85 9.15,13.71 9,12.28L5.6,8.87C4.61,9.72 3.78,10.78 3.18,12Z" /></svg>
assets/images/eye-outline.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9M12,4.5C17,4.5 21.27,7.61 23,12C21.27,16.39 17,19.5 12,19.5C7,19.5 2.73,16.39 1,12C2.73,7.61 7,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C15.76,17.5 19.17,15.36 20.82,12C19.17,8.64 15.76,6.5 12,6.5C8.24,6.5 4.83,8.64 3.18,12Z" /></svg>
assets/js/jquery-manage-fields-live-change.js CHANGED
@@ -296,6 +296,14 @@ var fields = {
296
  '.row-overwrite-existing'
297
  ]
298
  },
 
 
 
 
 
 
 
 
299
 
300
  'Textarea': { 'show_rows' : [
301
  '.row-field-title',
296
  '.row-overwrite-existing'
297
  ]
298
  },
299
+ 'Language': { 'show_rows' : [
300
+ '.row-field-title',
301
+ '.row-meta-name',
302
+ '.row-description',
303
+ '.row-default-value',
304
+ '.row-overwrite-existing'
305
+ ]
306
+ },
307
 
308
  'Textarea': { 'show_rows' : [
309
  '.row-field-title',
assets/lib/wck-api/wordpress-creation-kit.php CHANGED
@@ -498,7 +498,11 @@ class Wordpress_Creation_Kit_PB{
498
  } elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
499
  $display_value = implode( ', ', $value );
500
  } elseif ( $details['type'] == 'select' || $details['type'] === 'select-2' ){
501
- $display_value = '<pre>' . __(self::wck_get_entry_field_select( $value, $details ), 'profilebuilder') . '</pre>';
 
 
 
 
502
  } else {
503
  $display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
504
  }
498
  } elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
499
  $display_value = implode( ', ', $value );
500
  } elseif ( $details['type'] == 'select' || $details['type'] === 'select-2' ){
501
+ if ( $details['slug'] === 'pble-label' ){
502
+ $display_value = '<pre>' . self::wck_get_entry_field_select( $value, $details ) . '</pre>';
503
+ } else {
504
+ $display_value = '<pre>' . __(self::wck_get_entry_field_select( $value, $details ), 'profilebuilder') . '</pre>';
505
+ }
506
  } else {
507
  $display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
508
  }
features/functions.php CHANGED
@@ -796,7 +796,7 @@ function wppb_password_strength_description() {
796
  }
797
 
798
  /**
799
- * Include password strength check scripts on frontend where we have shortoces present
800
  */
801
  add_action( 'wp_footer', 'wppb_enqueue_password_strength_check' );
802
  function wppb_enqueue_password_strength_check() {
@@ -860,6 +860,62 @@ function wppb_password_strength_check(){
860
  }
861
  }
862
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
863
  /**
864
  * Create functions for repeating error messages in front-end forms
865
  */
796
  }
797
 
798
  /**
799
+ * Include password strength check scripts on frontend where we have shortcodes present
800
  */
801
  add_action( 'wp_footer', 'wppb_enqueue_password_strength_check' );
802
  function wppb_enqueue_password_strength_check() {
860
  }
861
  }
862
  }
863
+
864
+ /**
865
+ * Include toggle password visibility script on frontend where we have shortcodes present
866
+ */
867
+ function wppb_password_visibility_toggle_html(){
868
+ if( apply_filters( 'wppb_show_password_visibility_toggle', true ) ){
869
+ return '
870
+ <button type="button" class="wppb-toggle-pw wppb-show-pw hide-if-no-js" data-toggle="0" aria-label="Show password" tabindex="-1">
871
+ <span class="wppb-img-pw" aria-hidden="true">
872
+ <img src="'.WPPB_PLUGIN_URL.'/assets/images/eye-outline.svg"/>
873
+ </span>
874
+ </button>';
875
+ }
876
+ return '';
877
+ }
878
+
879
+ /**
880
+ * Include toggle password visibility script on frontend where we have shortcodes present
881
+ */
882
+ add_action( 'wp_footer', 'wppb_enqueue_password_visibility_toggle' );
883
+ function wppb_enqueue_password_visibility_toggle() {
884
+ global $wppb_shortcode_on_front;
885
+ if( $wppb_shortcode_on_front && apply_filters( 'wppb_show_password_visibility_toggle', true ) ){
886
+ ?>
887
+ <script type="text/javascript">
888
+ jQuery( document ).ready( function() {
889
+ jQuery( "button.wppb-toggle-pw" ).on( "click", wppb_password_visibility_toggle );
890
+ });
891
+ function wppb_password_visibility_toggle() {
892
+ var target_form_id = "#" + jQuery(this).closest('form').attr("id") + " ";
893
+
894
+ var password_inputs = [ ".login-password input#user_pass", "input#passw1", "input#passw2" ]
895
+
896
+ for ( var password_input of password_inputs ){
897
+ var input = jQuery( target_form_id + password_input );
898
+ var button = jQuery( target_form_id + "button.wppb-toggle-pw" );
899
+ var icon = jQuery( target_form_id + "button.wppb-toggle-pw img" );
900
+
901
+ if ( input.length ) {
902
+ if ("password" === input.attr("type")) {
903
+ input.attr("type", "text");
904
+ button.toggleClass("wppb-show-pw").toggleClass("wppb-hide-pw");
905
+ icon.attr("src", "<?php echo WPPB_PLUGIN_URL; ?>/assets/images/eye-off-outline.svg");
906
+ } else {
907
+ input.attr("type", "password");
908
+ button.toggleClass("wppb-show-pw").toggleClass("wppb-hide-pw");
909
+ icon.attr("src", "<?php echo WPPB_PLUGIN_URL; ?>/assets/images/eye-outline.svg");
910
+ }
911
+ }
912
+ }
913
+ }
914
+ </script>
915
+ <?php
916
+ }
917
+ }
918
+
919
  /**
920
  * Create functions for repeating error messages in front-end forms
921
  */
front-end/default-fields/password-repeat/password-repeat.php CHANGED
@@ -17,6 +17,10 @@ function wppb_password_repeat_handler( $output, $form_location, $field, $user_id
17
  $output = '
18
  <label for="passw2">' . $item_title.$error_mark . '</label>
19
  <input class="text-input '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="passw2" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70, $field ) .'" type="password" id="passw2" value="" autocomplete="off" '. $extra_attr .'/>';
 
 
 
 
20
  if( !empty( $item_description ) )
21
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
22
  }
17
  $output = '
18
  <label for="passw2">' . $item_title.$error_mark . '</label>
19
  <input class="text-input '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="passw2" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70, $field ) .'" type="password" id="passw2" value="" autocomplete="off" '. $extra_attr .'/>';
20
+
21
+ /* add the HTML for the visibility toggle */
22
+ $output .= wppb_password_visibility_toggle_html();
23
+
24
  if( !empty( $item_description ) )
25
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
26
  }
front-end/default-fields/password/password.php CHANGED
@@ -20,6 +20,9 @@ function wppb_password_handler( $output, $form_location, $field, $user_id, $fiel
20
  <label for="passw1">' . $item_title.$error_mark . '</label>
21
  <input class="text-input '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="passw1" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70, $field ) .'" type="password" id="passw1" value="" autocomplete="off" '. $extra_attr .'/>';
22
 
 
 
 
23
  if( ! empty( $item_description ) )
24
  $output .= '<span class="wppb-description-delimiter">'. $item_description .' '. wppb_password_length_text() .' '. wppb_password_strength_description() .'</span>';
25
  else
20
  <label for="passw1">' . $item_title.$error_mark . '</label>
21
  <input class="text-input '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="passw1" maxlength="'. apply_filters( 'wppb_maximum_character_length', 70, $field ) .'" type="password" id="passw1" value="" autocomplete="off" '. $extra_attr .'/>';
22
 
23
+ /* add the HTML for the visibility toggle */
24
+ $output .= wppb_password_visibility_toggle_html();
25
+
26
  if( ! empty( $item_description ) )
27
  $output .= '<span class="wppb-description-delimiter">'. $item_description .' '. wppb_password_length_text() .' '. wppb_password_strength_description() .'</span>';
28
  else
front-end/login.php CHANGED
@@ -159,7 +159,12 @@ function wppb_login_form( $args = array() ) {
159
  </p>
160
  <p class="login-password">
161
  <label for="' . esc_attr( $args['id_password'] ) . '">' . esc_html( $args['label_password'] ) . '</label>
162
- <input type="password" name="pwd" id="' . esc_attr( $args['id_password'] ) . '" class="input" value="" size="20" />
 
 
 
 
 
163
  </p>
164
  ' . $login_form_middle . '
165
  ' . ( $args['remember'] ? '<p class="login-remember"><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /><label for="' . esc_attr( $args['id_remember'] ) . '">' . esc_html( $args['label_remember'] ) . '</label></p>' : '' ) . '
159
  </p>
160
  <p class="login-password">
161
  <label for="' . esc_attr( $args['id_password'] ) . '">' . esc_html( $args['label_password'] ) . '</label>
162
+ <input type="password" name="pwd" id="' . esc_attr( $args['id_password'] ) . '" class="input" value="" size="20" />';
163
+
164
+ /* add the HTML for the visibility toggle */
165
+ $form .= wppb_password_visibility_toggle_html();
166
+
167
+ $form .='
168
  </p>
169
  ' . $login_form_middle . '
170
  ' . ( $args['remember'] ? '<p class="login-remember"><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /><label for="' . esc_attr( $args['id_remember'] ) . '">' . esc_html( $args['label_remember'] ) . '</label></p>' : '' ) . '
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 choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 3.4.7
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -70,7 +70,7 @@ function wppb_free_plugin_init() {
70
  *
71
  *
72
  */
73
- define('PROFILE_BUILDER_VERSION', '3.4.7' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
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 choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 3.4.8
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.4.8' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.7
7
- Stable tag: 3.4.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -169,6 +169,13 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
169
  15. Edit or Add New User Role
170
 
171
  == Changelog ==
 
 
 
 
 
 
 
172
  = 3.4.7 =
173
  * Fix: Default placeholder for URL field so it can be replaced using the general filter
174
  * Fix: HTML for the Login form Remember Me checkbox. Improved CSS
4
  Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.7
7
+ Stable tag: 3.4.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
169
  15. Edit or Add New User Role
170
 
171
  == Changelog ==
172
+ = 3.4.8 =
173
+ * Feature: Add a visibility toggle to Profile Builder password fields. Similar to WordPress default form functionality
174
+ * Fix: Issue with Labels Edit showing the incorrect original string in the back-end
175
+ * Fix: Improved sanitization on the Toolbox settings page
176
+ * Misc: Usermeta shortcodes now supports the `ID` key which will return the currently logged in users ID
177
+ * Misc: Added a language field that can be used to store the selected website language at the time of registration
178
+
179
  = 3.4.7 =
180
  * Fix: Default placeholder for URL field so it can be replaced using the general filter
181
  * Fix: HTML for the Login form Remember Me checkbox. Improved CSS
translation/profile-builder.catalog.php CHANGED
@@ -7,6 +7,10 @@
7
  <?php __("Choose Edit Profile form to display under bbPress Profile Edit tab:", "profile-builder"); ?>
8
  <?php __("Default Edit Profile", "profile-builder"); ?>
9
  <?php __("Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab.", "profile-builder"); ?>
 
 
 
 
10
  <?php __("bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!", "profile-builder"); ?>
11
  <?php __("Forum Role", "profile-builder"); ?>
12
  <?php __("Topics Started", "profile-builder"); ?>
@@ -170,8 +174,6 @@
170
  <?php __("Settings", "profile-builder"); ?>
171
  <?php __("Help", "profile-builder"); ?>
172
  <?php __("Display Social Connect buttons:", "profile-builder"); ?>
173
- <?php __("Yes", "profile-builder"); ?>
174
- <?php __("No", "profile-builder"); ?>
175
  <?php __("You have successfully unlinked %% from your account.", "profile-builder"); ?>
176
  <?php __("An account with this email address already exists.<br> Do you want to connect it?", "profile-builder"); ?>
177
  <?php __("Please enter your website account password", "profile-builder"); ?>
7
  <?php __("Choose Edit Profile form to display under bbPress Profile Edit tab:", "profile-builder"); ?>
8
  <?php __("Default Edit Profile", "profile-builder"); ?>
9
  <?php __("Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab.", "profile-builder"); ?>
10
+ <?php __("Replace bbPress Login form:", "profile-builder"); ?>
11
+ <?php __("No", "profile-builder"); ?>
12
+ <?php __("Yes", "profile-builder"); ?>
13
+ <?php __("Select \"Yes\" to replace the default bbPress Login form with the Profile Builder Login form.", "profile-builder"); ?>
14
  <?php __("bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!", "profile-builder"); ?>
15
  <?php __("Forum Role", "profile-builder"); ?>
16
  <?php __("Topics Started", "profile-builder"); ?>
174
  <?php __("Settings", "profile-builder"); ?>
175
  <?php __("Help", "profile-builder"); ?>
176
  <?php __("Display Social Connect buttons:", "profile-builder"); ?>
 
 
177
  <?php __("You have successfully unlinked %% from your account.", "profile-builder"); ?>
178
  <?php __("An account with this email address already exists.<br> Do you want to connect it?", "profile-builder"); ?>
179
  <?php __("Please enter your website account password", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -45,19 +45,35 @@ msgstr ""
45
  msgid "Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab."
46
  msgstr ""
47
 
48
- #: ../pb-add-on-bbpress/index.php:308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  msgid "bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!"
50
  msgstr ""
51
 
52
- #: ../pb-add-on-bbpress/index.php:168, ../pb-add-on-bbpress/index.php:183
53
  msgid "Forum Role"
54
  msgstr ""
55
 
56
- #: ../pb-add-on-bbpress/index.php:169, ../pb-add-on-bbpress/index.php:163, ../pb-add-on-bbpress/index.php:184, ../pb-add-on-bbpress/index.php:234
57
  msgid "Topics Started"
58
  msgstr ""
59
 
60
- #: ../pb-add-on-bbpress/index.php:170, ../pb-add-on-bbpress/index.php:164, ../pb-add-on-bbpress/index.php:185, ../pb-add-on-bbpress/index.php:236
61
  msgid "Replies Created"
62
  msgstr ""
63
 
@@ -209,7 +225,7 @@ msgstr ""
209
  msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
210
  msgstr ""
211
 
212
- #: ../pb-add-on-buddypress/index.php:511, admin/manage-fields.php:329
213
  msgid "Name"
214
  msgstr ""
215
 
@@ -233,7 +249,7 @@ msgstr ""
233
  msgid "Display name:"
234
  msgstr ""
235
 
236
- #: ../pb-add-on-buddypress/index.php:534, admin/manage-fields.php:335
237
  msgid "Contact Info"
238
  msgstr ""
239
 
@@ -241,7 +257,7 @@ msgstr ""
241
  msgid "Website:"
242
  msgstr ""
243
 
244
- #: ../pb-add-on-buddypress/index.php:541, admin/manage-fields.php:346
245
  msgid "About Yourself"
246
  msgstr ""
247
 
@@ -361,7 +377,7 @@ msgstr ""
361
  msgid "Edit Profile"
362
  msgstr ""
363
 
364
- #: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:454, front-end/login.php:451, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
365
  msgid "Register"
366
  msgstr ""
367
 
@@ -461,7 +477,7 @@ msgstr ""
461
  msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
462
  msgstr ""
463
 
464
- #: ../pb-add-on-multi-step-forms/index.php:102, ../pb-add-on-multi-step-forms/index.php:525
465
  msgid "Step"
466
  msgstr ""
467
 
@@ -477,7 +493,7 @@ msgstr ""
477
  msgid "Publish the form to edit tabs title."
478
  msgstr ""
479
 
480
- #: ../pb-add-on-multi-step-forms/index.php:106, ../pb-add-on-multi-step-forms/index.php:215
481
  msgid "Publish the form before adding Break Points!"
482
  msgstr ""
483
 
@@ -485,59 +501,59 @@ msgstr ""
485
  msgid "Request in process, please wait a few seconds before a new one!"
486
  msgstr ""
487
 
488
- #: ../pb-add-on-multi-step-forms/index.php:143
489
  msgid "Multi-Step Forms"
490
  msgstr ""
491
 
492
- #: ../pb-add-on-multi-step-forms/index.php:220
493
  msgid "To enable MSF you must add Break Points."
494
  msgstr ""
495
 
496
- #: ../pb-add-on-multi-step-forms/index.php:221, ../pb-add-on-multi-step-forms/index.php:196
497
  msgid "Pagination and Tabs:"
498
  msgstr ""
499
 
500
- #: ../pb-add-on-multi-step-forms/index.php:222, ../pb-add-on-multi-step-forms/index.php:197
501
  msgid "Enable Pagination"
502
  msgstr ""
503
 
504
- #: ../pb-add-on-multi-step-forms/index.php:223, ../pb-add-on-multi-step-forms/index.php:198
505
  msgid "Enable Tabs"
506
  msgstr ""
507
 
508
- #: ../pb-add-on-multi-step-forms/index.php:223, ../pb-add-on-multi-step-forms/index.php:198
509
  msgid "Edit Tabs Title"
510
  msgstr ""
511
 
512
- #: ../pb-add-on-multi-step-forms/index.php:187
513
  msgid "Multi-Step Forms options updated."
514
  msgstr ""
515
 
516
- #: ../pb-add-on-multi-step-forms/index.php:192
517
  msgid "Enable on:"
518
  msgstr ""
519
 
520
- #: ../pb-add-on-multi-step-forms/index.php:193
521
  msgid "PB Default Register Form"
522
  msgstr ""
523
 
524
- #: ../pb-add-on-multi-step-forms/index.php:194
525
  msgid "PB Default Edit Profile Form"
526
  msgstr ""
527
 
528
- #: ../pb-add-on-multi-step-forms/index.php:195
529
  msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
530
  msgstr ""
531
 
532
- #: ../pb-add-on-multi-step-forms/index.php:200
533
  msgid "Update Multi-Step"
534
  msgstr ""
535
 
536
- #: ../pb-add-on-multi-step-forms/index.php:454
537
  msgid "Next"
538
  msgstr ""
539
 
540
- #: ../pb-add-on-multi-step-forms/index.php:455
541
  msgid "Previous"
542
  msgstr ""
543
 
@@ -697,14 +713,6 @@ msgstr ""
697
  msgid "Display Social Connect buttons:"
698
  msgstr ""
699
 
700
- #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/manage-fields.php:190, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2451, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-forms.php:340, admin/advanced-settings/includes/views/view-forms.php:360, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
701
- msgid "Yes"
702
- msgstr ""
703
-
704
- #: ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:266, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, features/content-restriction/content-restriction.php:88, admin/advanced-settings/includes/forms/placeholder-labels.php:136
705
- msgid "No"
706
- msgstr ""
707
-
708
  #: ../pb-add-on-social-connect/index.php:372
709
  msgid "You have successfully unlinked %% from your account."
710
  msgstr ""
@@ -749,7 +757,7 @@ msgstr ""
749
  msgid "You will be redirected in 5 seconds. If not, click %%."
750
  msgstr ""
751
 
752
- #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1266
753
  msgid "here"
754
  msgstr ""
755
 
@@ -817,11 +825,11 @@ msgstr ""
817
  msgid "Country"
818
  msgstr ""
819
 
820
- #: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:331, admin/advanced-settings/includes/views/view-fields.php:127
821
  msgid "First Name"
822
  msgstr ""
823
 
824
- #: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:332, admin/advanced-settings/includes/views/view-fields.php:133
825
  msgid "Last Name"
826
  msgstr ""
827
 
@@ -933,7 +941,7 @@ msgstr ""
933
  msgid "Field Name"
934
  msgstr ""
935
 
936
- #: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:248
937
  msgid "Required"
938
  msgstr ""
939
 
@@ -1038,11 +1046,11 @@ msgstr ""
1038
  msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
1039
  msgstr ""
1040
 
1041
- #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, assets/lib/wck-api/wordpress-creation-kit.php:544
1042
  msgid "Edit this item"
1043
  msgstr ""
1044
 
1045
- #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:955, assets/lib/wck-api/wordpress-creation-kit.php:406
1046
  msgid "Cancel"
1047
  msgstr ""
1048
 
@@ -2038,11 +2046,11 @@ msgstr ""
2038
  msgid "Username and Email"
2039
  msgstr ""
2040
 
2041
- #: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:418, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:328, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:2405, features/admin-approval/class-admin-approval.php:171, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2042
  msgid "Username"
2043
  msgstr ""
2044
 
2045
- #: admin/general-settings.php:297, front-end/login.php:415, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:834, add-ons/user-listing/userlisting.php:2406, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2046
  msgid "Email"
2047
  msgstr ""
2048
 
@@ -2082,2135 +2090,2135 @@ msgstr ""
2082
  msgid "Manage Form Fields"
2083
  msgstr ""
2084
 
2085
- #: admin/manage-fields.php:131
2086
  msgid "Choose one of the supported field types"
2087
  msgstr ""
2088
 
2089
- #: admin/manage-fields.php:133
2090
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2091
  msgstr ""
2092
 
2093
- #: admin/manage-fields.php:169
2094
  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 will only affect subsequent entries"
2095
  msgstr ""
2096
 
2097
- #: admin/manage-fields.php:166
2098
  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"
2099
  msgstr ""
2100
 
2101
- #: admin/manage-fields.php:183
2102
  msgid "Field Title"
2103
  msgstr ""
2104
 
2105
- #: admin/manage-fields.php:183
2106
  msgid "Title of the field"
2107
  msgstr ""
2108
 
2109
- #: admin/manage-fields.php:184, add-ons/multiple-forms/edit-profile-forms.php:245, add-ons/multiple-forms/register-forms.php:266
2110
  msgid "Field"
2111
  msgstr ""
2112
 
2113
- #: admin/manage-fields.php:185
2114
  msgid "Meta-name"
2115
  msgstr ""
2116
 
2117
- #: admin/manage-fields.php:186, add-ons/custom-redirects/custom_redirects_admin.php:69, add-ons/custom-redirects/custom_redirects_admin.php:99, add-ons/custom-redirects/custom_redirects_admin.php:118, add-ons/custom-redirects/custom_redirects_admin.php:143, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267
2118
  msgid "ID"
2119
  msgstr ""
2120
 
2121
- #: admin/manage-fields.php:186, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267
2122
  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"
2123
  msgstr ""
2124
 
2125
- #: admin/manage-fields.php:187
2126
  msgid "Description"
2127
  msgstr ""
2128
 
2129
- #: admin/manage-fields.php:187
2130
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2131
  msgstr ""
2132
 
2133
- #: admin/manage-fields.php:188
2134
  msgid "Row Count"
2135
  msgstr ""
2136
 
2137
- #: admin/manage-fields.php:188
2138
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2139
  msgstr ""
2140
 
2141
- #: admin/manage-fields.php:189
2142
  msgid "Allowed Image Extensions"
2143
  msgstr ""
2144
 
2145
- #: admin/manage-fields.php:189
2146
  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 (.*)"
2147
  msgstr ""
2148
 
2149
- #: admin/manage-fields.php:190
2150
  msgid "Use Simple Upload"
2151
  msgstr ""
2152
 
2153
- #: admin/manage-fields.php:190
2154
  msgid "Use a simple upload field instead of the WordPress upload"
2155
  msgstr ""
2156
 
2157
- #: admin/manage-fields.php:191
2158
  msgid "Allowed Upload Extensions"
2159
  msgstr ""
2160
 
2161
- #: admin/manage-fields.php:191
2162
  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 (.*)"
2163
  msgstr ""
2164
 
2165
- #: admin/manage-fields.php:192
2166
  msgid "Avatar Size"
2167
  msgstr ""
2168
 
2169
- #: admin/manage-fields.php:192
2170
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2171
  msgstr ""
2172
 
2173
- #: admin/manage-fields.php:193
2174
  msgid "Date-format"
2175
  msgstr ""
2176
 
2177
- #: admin/manage-fields.php:193
2178
  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, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy"
2179
  msgstr ""
2180
 
2181
- #: admin/manage-fields.php:194
2182
  msgid "Terms of Agreement"
2183
  msgstr ""
2184
 
2185
- #: admin/manage-fields.php:194
2186
  msgid "Enter a detailed description of the terms 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;"
2187
  msgstr ""
2188
 
2189
- #: admin/manage-fields.php:195
2190
  msgid "Options"
2191
  msgstr ""
2192
 
2193
- #: admin/manage-fields.php:195
2194
  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"
2195
  msgstr ""
2196
 
2197
- #: admin/manage-fields.php:196
2198
  msgid "Labels"
2199
  msgstr ""
2200
 
2201
- #: admin/manage-fields.php:196
2202
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
2203
  msgstr ""
2204
 
2205
- #: admin/manage-fields.php:197
2206
  msgid "reCAPTCHA Type"
2207
  msgstr ""
2208
 
2209
- #: admin/manage-fields.php:197
2210
  msgid "Choose the <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\">type of reCAPTCHA</a> you wish to add to this site.<br/>Please note that the Invisible reCAPTCHA is a type of reCAPTCHA v2."
2211
  msgstr ""
2212
 
2213
- #: admin/manage-fields.php:198
2214
  msgid "Site Key"
2215
  msgstr ""
2216
 
2217
- #: admin/manage-fields.php:198
2218
  msgid "The site key from Google, <a href=\"https://www.google.com/recaptcha/admin/create\" target=\"_blank\">https://www.google.com/recaptcha/admin/create</a>"
2219
  msgstr ""
2220
 
2221
- #: admin/manage-fields.php:199
2222
  msgid "Secret Key"
2223
  msgstr ""
2224
 
2225
- #: admin/manage-fields.php:199
2226
  msgid "The secret key from Google, <a href=\"https://www.google.com/recaptcha/admin/create\" target=\"_blank\">https://www.google.com/recaptcha/admin/create</a>"
2227
  msgstr ""
2228
 
2229
- #: admin/manage-fields.php:200
2230
  msgid "Display on PB forms"
2231
  msgstr ""
2232
 
2233
- #: admin/manage-fields.php:200
2234
  msgid "PB Login"
2235
  msgstr ""
2236
 
2237
- #: admin/manage-fields.php:200
2238
  msgid "PB Register"
2239
  msgstr ""
2240
 
2241
- #: admin/manage-fields.php:200
2242
  msgid "PB Recover Password"
2243
  msgstr ""
2244
 
2245
- #: admin/manage-fields.php:200
2246
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
2247
  msgstr ""
2248
 
2249
- #: admin/manage-fields.php:201
2250
  msgid "Display on default WP forms"
2251
  msgstr ""
2252
 
2253
- #: admin/manage-fields.php:201
2254
  msgid "Default WP Login"
2255
  msgstr ""
2256
 
2257
- #: admin/manage-fields.php:201
2258
  msgid "Default WP Register"
2259
  msgstr ""
2260
 
2261
- #: admin/manage-fields.php:201
2262
  msgid "Default WP Recover Password"
2263
  msgstr ""
2264
 
2265
- #: admin/manage-fields.php:201
2266
  msgid "Select on which default WP forms to display reCAPTCHA"
2267
  msgstr ""
2268
 
2269
- #: admin/manage-fields.php:202
2270
  msgid "User Roles"
2271
  msgstr ""
2272
 
2273
- #: admin/manage-fields.php:202
2274
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
2275
  msgstr ""
2276
 
2277
- #: admin/manage-fields.php:203
2278
  msgid "Display on Edit Profile"
2279
  msgstr ""
2280
 
2281
- #: admin/manage-fields.php:203
2282
  msgid "Check if you want the select user role field to appear on Edit Profile forms"
2283
  msgstr ""
2284
 
2285
- #: admin/manage-fields.php:204
2286
  msgid "User Roles Order"
2287
  msgstr ""
2288
 
2289
- #: admin/manage-fields.php:204
2290
  msgid "Save the user role order from the user roles checkboxes"
2291
  msgstr ""
2292
 
2293
- #: admin/manage-fields.php:205
2294
  msgid "Default Value"
2295
  msgstr ""
2296
 
2297
- #: admin/manage-fields.php:205
2298
  msgid "Default value of the field"
2299
  msgstr ""
2300
 
2301
- #: admin/manage-fields.php:206, admin/manage-fields.php:208, admin/manage-fields.php:209, admin/manage-fields.php:210
2302
  msgid "Default Option"
2303
  msgstr ""
2304
 
2305
- #: admin/manage-fields.php:206
2306
  msgid "Specify the option which should be selected by default"
2307
  msgstr ""
2308
 
2309
- #: admin/manage-fields.php:207
2310
  msgid "Default Option(s)"
2311
  msgstr ""
2312
 
2313
- #: admin/manage-fields.php:207
2314
  msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2315
  msgstr ""
2316
 
2317
- #: admin/manage-fields.php:208, admin/manage-fields.php:209, admin/manage-fields.php:210
2318
  msgid "Default option of the field"
2319
  msgstr ""
2320
 
2321
- #: admin/manage-fields.php:211
2322
  msgid "Show Currency Symbol"
2323
  msgstr ""
2324
 
2325
- #: admin/manage-fields.php:211
2326
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
2327
  msgstr ""
2328
 
2329
- #: admin/manage-fields.php:212
2330
  msgid "Show Post Type"
2331
  msgstr ""
2332
 
2333
- #: admin/manage-fields.php:212
2334
  msgid "Posts from what post type will be displayed in the select."
2335
  msgstr ""
2336
 
2337
- #: admin/manage-fields.php:213
2338
  msgid "Allowable Values"
2339
  msgstr ""
2340
 
2341
- #: admin/manage-fields.php:213
2342
  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."
2343
  msgstr ""
2344
 
2345
- #: admin/manage-fields.php:214
2346
  msgid "Error Message"
2347
  msgstr ""
2348
 
2349
- #: admin/manage-fields.php:214
2350
  msgid "Set a custom error message that will be displayed to the user."
2351
  msgstr ""
2352
 
2353
- #: admin/manage-fields.php:215
2354
  msgid "Time Format"
2355
  msgstr ""
2356
 
2357
- #: admin/manage-fields.php:215
2358
  msgid "Specify the time format."
2359
  msgstr ""
2360
 
2361
- #: admin/manage-fields.php:216
2362
  msgid "Google Maps API Key"
2363
  msgstr ""
2364
 
2365
- #: admin/manage-fields.php:216
2366
  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."
2367
  msgstr ""
2368
 
2369
- #: admin/manage-fields.php:221
2370
  msgid "Default Latitude"
2371
  msgstr ""
2372
 
2373
- #: admin/manage-fields.php:222
2374
  msgid "The latitude at which the map should be displayed when no pins are attached."
2375
  msgstr ""
2376
 
2377
- #: admin/manage-fields.php:228
2378
  msgid "Default Longitude"
2379
  msgstr ""
2380
 
2381
- #: admin/manage-fields.php:229
2382
  msgid "The longitude at which the map should be displayed when no pins are attached."
2383
  msgstr ""
2384
 
2385
- #: admin/manage-fields.php:235
2386
  msgid "Default Zoom Level"
2387
  msgstr ""
2388
 
2389
- #: admin/manage-fields.php:236
2390
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
2391
  msgstr ""
2392
 
2393
- #: admin/manage-fields.php:240
2394
  msgid "Map Height"
2395
  msgstr ""
2396
 
2397
- #: admin/manage-fields.php:240
2398
  msgid "The height of the map."
2399
  msgstr ""
2400
 
2401
- #: admin/manage-fields.php:241
2402
  msgid "Default Content"
2403
  msgstr ""
2404
 
2405
- #: admin/manage-fields.php:241
2406
  msgid "Default value of the textarea"
2407
  msgstr ""
2408
 
2409
- #: admin/manage-fields.php:242
2410
  msgid "HTML Content"
2411
  msgstr ""
2412
 
2413
- #: admin/manage-fields.php:242
2414
  msgid "Add your HTML (or text) content"
2415
  msgstr ""
2416
 
2417
- #: admin/manage-fields.php:243
2418
  msgid "Phone Format"
2419
  msgstr ""
2420
 
2421
- #: admin/manage-fields.php:243
2422
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
2423
  msgstr ""
2424
 
2425
- #: admin/manage-fields.php:243
2426
  msgid "Eg. (###) ###-####"
2427
  msgstr ""
2428
 
2429
- #: admin/manage-fields.php:243
2430
  msgid "Empty field won't check for correct phone number."
2431
  msgstr ""
2432
 
2433
- #: admin/manage-fields.php:244
2434
  msgid "Heading Tag"
2435
  msgstr ""
2436
 
2437
- #: admin/manage-fields.php:244
2438
  msgid "Change heading field size on front-end forms"
2439
  msgstr ""
2440
 
2441
- #: admin/manage-fields.php:245
2442
  msgid "Min Number Value"
2443
  msgstr ""
2444
 
2445
- #: admin/manage-fields.php:245
2446
  msgid "Min allowed number value (0 to allow only positive numbers)"
2447
  msgstr ""
2448
 
2449
- #: admin/manage-fields.php:245
2450
  msgid "Leave it empty for no min value"
2451
  msgstr ""
2452
 
2453
- #: admin/manage-fields.php:246
2454
  msgid "Max Number Value"
2455
  msgstr ""
2456
 
2457
- #: admin/manage-fields.php:246
2458
  msgid "Max allowed number value (0 to allow only negative numbers)"
2459
  msgstr ""
2460
 
2461
- #: admin/manage-fields.php:246
2462
  msgid "Leave it empty for no max value"
2463
  msgstr ""
2464
 
2465
- #: admin/manage-fields.php:247
2466
  msgid "Number Step Value"
2467
  msgstr ""
2468
 
2469
- #: admin/manage-fields.php:247
2470
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
2471
  msgstr ""
2472
 
2473
- #: admin/manage-fields.php:247
2474
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
2475
  msgstr ""
2476
 
2477
- #: admin/manage-fields.php:247
2478
  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)"
2479
  msgstr ""
2480
 
2481
- #: admin/manage-fields.php:247
2482
  msgid "Leave it empty for no restriction"
2483
  msgstr ""
2484
 
2485
- #: admin/manage-fields.php:248
2486
  msgid "Whether the field is required or not"
2487
  msgstr ""
2488
 
2489
- #: admin/manage-fields.php:249
2490
  msgid "Overwrite Existing"
2491
  msgstr ""
2492
 
2493
- #: admin/manage-fields.php:249
2494
  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"
2495
  msgstr ""
2496
 
2497
- #: admin/manage-fields.php:255
2498
  msgid "POIs Load Type"
2499
  msgstr ""
2500
 
2501
- #: admin/manage-fields.php:257
2502
  msgid "POIs of the listed users (as filtered & paginated)"
2503
  msgstr ""
2504
 
2505
- #: admin/manage-fields.php:258
2506
  msgid "POIs of all the users for the filter* (no pagination)"
2507
  msgstr ""
2508
 
2509
- #: admin/manage-fields.php:261
2510
  msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
2511
  msgstr ""
2512
 
2513
- #: admin/manage-fields.php:268
2514
  msgid "POI Bubble Info"
2515
  msgstr ""
2516
 
2517
- #: admin/manage-fields.php:271
2518
  msgid "Select the attributes to be listed inside the POI bubble."
2519
  msgstr ""
2520
 
2521
- #: admin/manage-fields.php:282
2522
  msgid "Number of Users per Map Iteration"
2523
  msgstr ""
2524
 
2525
- #: admin/manage-fields.php:283
2526
  msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
2527
  msgstr ""
2528
 
2529
- #: admin/manage-fields.php:288
2530
  msgid "Maximum Selections"
2531
  msgstr ""
2532
 
2533
- #: admin/manage-fields.php:288
2534
  msgid "Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected."
2535
  msgstr ""
2536
 
2537
- #: admin/manage-fields.php:289
2538
  msgid "User Inputted Options"
2539
  msgstr ""
2540
 
2541
- #: admin/manage-fields.php:289
2542
  msgid "Check this to allow users to create their own options beside the pre-existing ones."
2543
  msgstr ""
2544
 
2545
- #: admin/manage-fields.php:296
2546
  msgid "Form Field Properties"
2547
  msgstr ""
2548
 
2549
- #: admin/manage-fields.php:310
2550
  msgid "Registration & Edit Profile Forms"
2551
  msgstr ""
2552
 
2553
- #: admin/manage-fields.php:330
2554
  msgid "Usernames cannot be changed."
2555
  msgstr ""
2556
 
2557
- #: admin/manage-fields.php:333, add-ons/user-listing/userlisting.php:867, add-ons/user-listing/userlisting.php:2413
2558
  msgid "Nickname"
2559
  msgstr ""
2560
 
2561
- #: admin/manage-fields.php:334
2562
  msgid "Display name publicly as"
2563
  msgstr ""
2564
 
2565
- #: admin/manage-fields.php:336
2566
  msgid "E-mail"
2567
  msgstr ""
2568
 
2569
- #: admin/manage-fields.php:337, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:849, add-ons/user-listing/userlisting.php:2407
2570
  msgid "Website"
2571
  msgstr ""
2572
 
2573
- #: admin/manage-fields.php:341
2574
  msgid "AIM"
2575
  msgstr ""
2576
 
2577
- #: admin/manage-fields.php:342
2578
  msgid "Yahoo IM"
2579
  msgstr ""
2580
 
2581
- #: admin/manage-fields.php:343
2582
  msgid "Jabber / Google Talk"
2583
  msgstr ""
2584
 
2585
- #: admin/manage-fields.php:347, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:852, add-ons/user-listing/userlisting.php:2408
2586
  msgid "Biographical Info"
2587
  msgstr ""
2588
 
2589
- #: admin/manage-fields.php:347
2590
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2591
  msgstr ""
2592
 
2593
- #: admin/manage-fields.php:348, front-end/login.php:108, front-end/recover.php:72, add-ons/email-customizer/email-customizer.php:30
2594
  msgid "Password"
2595
  msgstr ""
2596
 
2597
- #: admin/manage-fields.php:348
2598
  msgid "Type your password."
2599
  msgstr ""
2600
 
2601
- #: admin/manage-fields.php:349, front-end/recover.php:73
2602
  msgid "Repeat Password"
2603
  msgstr ""
2604
 
2605
- #: admin/manage-fields.php:349
2606
  msgid "Type your password again. "
2607
  msgstr ""
2608
 
2609
- #: admin/manage-fields.php:351
2610
  msgid "Blog Details"
2611
  msgstr ""
2612
 
2613
- #: admin/manage-fields.php:410
2614
  msgid "Select a Country"
2615
  msgstr ""
2616
 
2617
- #: admin/manage-fields.php:411
2618
  msgid "Afghanistan"
2619
  msgstr ""
2620
 
2621
- #: admin/manage-fields.php:412
2622
  msgid "Aland Islands"
2623
  msgstr ""
2624
 
2625
- #: admin/manage-fields.php:413
2626
  msgid "Albania"
2627
  msgstr ""
2628
 
2629
- #: admin/manage-fields.php:414
2630
  msgid "Algeria"
2631
  msgstr ""
2632
 
2633
- #: admin/manage-fields.php:415
2634
  msgid "American Samoa"
2635
  msgstr ""
2636
 
2637
- #: admin/manage-fields.php:416
2638
  msgid "Andorra"
2639
  msgstr ""
2640
 
2641
- #: admin/manage-fields.php:417
2642
  msgid "Angola"
2643
  msgstr ""
2644
 
2645
- #: admin/manage-fields.php:418
2646
  msgid "Anguilla"
2647
  msgstr ""
2648
 
2649
- #: admin/manage-fields.php:419
2650
  msgid "Antarctica"
2651
  msgstr ""
2652
 
2653
- #: admin/manage-fields.php:420
2654
  msgid "Antigua and Barbuda"
2655
  msgstr ""
2656
 
2657
- #: admin/manage-fields.php:421
2658
  msgid "Argentina"
2659
  msgstr ""
2660
 
2661
- #: admin/manage-fields.php:422
2662
  msgid "Armenia"
2663
  msgstr ""
2664
 
2665
- #: admin/manage-fields.php:423
2666
  msgid "Aruba"
2667
  msgstr ""
2668
 
2669
- #: admin/manage-fields.php:424
2670
  msgid "Australia"
2671
  msgstr ""
2672
 
2673
- #: admin/manage-fields.php:425
2674
  msgid "Austria"
2675
  msgstr ""
2676
 
2677
- #: admin/manage-fields.php:426
2678
  msgid "Azerbaijan"
2679
  msgstr ""
2680
 
2681
- #: admin/manage-fields.php:427
2682
  msgid "Bahamas"
2683
  msgstr ""
2684
 
2685
- #: admin/manage-fields.php:428
2686
  msgid "Bahrain"
2687
  msgstr ""
2688
 
2689
- #: admin/manage-fields.php:429
2690
  msgid "Bangladesh"
2691
  msgstr ""
2692
 
2693
- #: admin/manage-fields.php:430
2694
  msgid "Barbados"
2695
  msgstr ""
2696
 
2697
- #: admin/manage-fields.php:431
2698
  msgid "Belarus"
2699
  msgstr ""
2700
 
2701
- #: admin/manage-fields.php:432
2702
  msgid "Belgium"
2703
  msgstr ""
2704
 
2705
- #: admin/manage-fields.php:433
2706
  msgid "Belize"
2707
  msgstr ""
2708
 
2709
- #: admin/manage-fields.php:434
2710
  msgid "Benin"
2711
  msgstr ""
2712
 
2713
- #: admin/manage-fields.php:435
2714
  msgid "Bermuda"
2715
  msgstr ""
2716
 
2717
- #: admin/manage-fields.php:436
2718
  msgid "Bhutan"
2719
  msgstr ""
2720
 
2721
- #: admin/manage-fields.php:437
2722
  msgid "Bolivia"
2723
  msgstr ""
2724
 
2725
- #: admin/manage-fields.php:438
2726
  msgid "Bonaire, Saint Eustatius and Saba"
2727
  msgstr ""
2728
 
2729
- #: admin/manage-fields.php:439
2730
  msgid "Bosnia and Herzegovina"
2731
  msgstr ""
2732
 
2733
- #: admin/manage-fields.php:440
2734
  msgid "Botswana"
2735
  msgstr ""
2736
 
2737
- #: admin/manage-fields.php:441
2738
  msgid "Bouvet Island"
2739
  msgstr ""
2740
 
2741
- #: admin/manage-fields.php:442
2742
  msgid "Brazil"
2743
  msgstr ""
2744
 
2745
- #: admin/manage-fields.php:443
2746
  msgid "British Indian Ocean Territory"
2747
  msgstr ""
2748
 
2749
- #: admin/manage-fields.php:444
2750
  msgid "British Virgin Islands"
2751
  msgstr ""
2752
 
2753
- #: admin/manage-fields.php:445
2754
  msgid "Brunei"
2755
  msgstr ""
2756
 
2757
- #: admin/manage-fields.php:446
2758
  msgid "Bulgaria"
2759
  msgstr ""
2760
 
2761
- #: admin/manage-fields.php:447
2762
  msgid "Burkina Faso"
2763
  msgstr ""
2764
 
2765
- #: admin/manage-fields.php:448
2766
  msgid "Burundi"
2767
  msgstr ""
2768
 
2769
- #: admin/manage-fields.php:449
2770
  msgid "Cambodia"
2771
  msgstr ""
2772
 
2773
- #: admin/manage-fields.php:450
2774
  msgid "Cameroon"
2775
  msgstr ""
2776
 
2777
- #: admin/manage-fields.php:451
2778
  msgid "Canada"
2779
  msgstr ""
2780
 
2781
- #: admin/manage-fields.php:452
2782
  msgid "Cape Verde"
2783
  msgstr ""
2784
 
2785
- #: admin/manage-fields.php:453
2786
  msgid "Cayman Islands"
2787
  msgstr ""
2788
 
2789
- #: admin/manage-fields.php:454
2790
  msgid "Central African Republic"
2791
  msgstr ""
2792
 
2793
- #: admin/manage-fields.php:455
2794
  msgid "Chad"
2795
  msgstr ""
2796
 
2797
- #: admin/manage-fields.php:456
2798
  msgid "Chile"
2799
  msgstr ""
2800
 
2801
- #: admin/manage-fields.php:457
2802
  msgid "China"
2803
  msgstr ""
2804
 
2805
- #: admin/manage-fields.php:458
2806
  msgid "Christmas Island"
2807
  msgstr ""
2808
 
2809
- #: admin/manage-fields.php:459
2810
  msgid "Cocos Islands"
2811
  msgstr ""
2812
 
2813
- #: admin/manage-fields.php:460
2814
  msgid "Colombia"
2815
  msgstr ""
2816
 
2817
- #: admin/manage-fields.php:461
2818
  msgid "Comoros"
2819
  msgstr ""
2820
 
2821
- #: admin/manage-fields.php:462
2822
  msgid "Cook Islands"
2823
  msgstr ""
2824
 
2825
- #: admin/manage-fields.php:463
2826
  msgid "Costa Rica"
2827
  msgstr ""
2828
 
2829
- #: admin/manage-fields.php:464
2830
  msgid "Croatia"
2831
  msgstr ""
2832
 
2833
- #: admin/manage-fields.php:465
2834
  msgid "Cuba"
2835
  msgstr ""
2836
 
2837
- #: admin/manage-fields.php:466
2838
  msgid "Curacao"
2839
  msgstr ""
2840
 
2841
- #: admin/manage-fields.php:467
2842
  msgid "Cyprus"
2843
  msgstr ""
2844
 
2845
- #: admin/manage-fields.php:468
2846
  msgid "Czech Republic"
2847
  msgstr ""
2848
 
2849
- #: admin/manage-fields.php:469
2850
  msgid "Democratic Republic of the Congo"
2851
  msgstr ""
2852
 
2853
- #: admin/manage-fields.php:470
2854
  msgid "Denmark"
2855
  msgstr ""
2856
 
2857
- #: admin/manage-fields.php:471
2858
  msgid "Djibouti"
2859
  msgstr ""
2860
 
2861
- #: admin/manage-fields.php:472
2862
  msgid "Dominica"
2863
  msgstr ""
2864
 
2865
- #: admin/manage-fields.php:473
2866
  msgid "Dominican Republic"
2867
  msgstr ""
2868
 
2869
- #: admin/manage-fields.php:474
2870
  msgid "East Timor"
2871
  msgstr ""
2872
 
2873
- #: admin/manage-fields.php:475
2874
  msgid "Ecuador"
2875
  msgstr ""
2876
 
2877
- #: admin/manage-fields.php:476
2878
  msgid "Egypt"
2879
  msgstr ""
2880
 
2881
- #: admin/manage-fields.php:477
2882
  msgid "El Salvador"
2883
  msgstr ""
2884
 
2885
- #: admin/manage-fields.php:478
2886
  msgid "Equatorial Guinea"
2887
  msgstr ""
2888
 
2889
- #: admin/manage-fields.php:479
2890
  msgid "Eritrea"
2891
  msgstr ""
2892
 
2893
- #: admin/manage-fields.php:480
2894
  msgid "Estonia"
2895
  msgstr ""
2896
 
2897
- #: admin/manage-fields.php:481
2898
  msgid "Ethiopia"
2899
  msgstr ""
2900
 
2901
- #: admin/manage-fields.php:482
2902
  msgid "Falkland Islands"
2903
  msgstr ""
2904
 
2905
- #: admin/manage-fields.php:483
2906
  msgid "Faroe Islands"
2907
  msgstr ""
2908
 
2909
- #: admin/manage-fields.php:484
2910
  msgid "Fiji"
2911
  msgstr ""
2912
 
2913
- #: admin/manage-fields.php:485
2914
  msgid "Finland"
2915
  msgstr ""
2916
 
2917
- #: admin/manage-fields.php:486
2918
  msgid "France"
2919
  msgstr ""
2920
 
2921
- #: admin/manage-fields.php:487
2922
  msgid "French Guiana"
2923
  msgstr ""
2924
 
2925
- #: admin/manage-fields.php:488
2926
  msgid "French Polynesia"
2927
  msgstr ""
2928
 
2929
- #: admin/manage-fields.php:489
2930
  msgid "French Southern Territories"
2931
  msgstr ""
2932
 
2933
- #: admin/manage-fields.php:490
2934
  msgid "Gabon"
2935
  msgstr ""
2936
 
2937
- #: admin/manage-fields.php:491
2938
  msgid "Gambia"
2939
  msgstr ""
2940
 
2941
- #: admin/manage-fields.php:492
2942
  msgid "Georgia"
2943
  msgstr ""
2944
 
2945
- #: admin/manage-fields.php:493
2946
  msgid "Germany"
2947
  msgstr ""
2948
 
2949
- #: admin/manage-fields.php:494
2950
  msgid "Ghana"
2951
  msgstr ""
2952
 
2953
- #: admin/manage-fields.php:495
2954
  msgid "Gibraltar"
2955
  msgstr ""
2956
 
2957
- #: admin/manage-fields.php:496
2958
  msgid "Greece"
2959
  msgstr ""
2960
 
2961
- #: admin/manage-fields.php:497
2962
  msgid "Greenland"
2963
  msgstr ""
2964
 
2965
- #: admin/manage-fields.php:498
2966
  msgid "Grenada"
2967
  msgstr ""
2968
 
2969
- #: admin/manage-fields.php:499
2970
  msgid "Guadeloupe"
2971
  msgstr ""
2972
 
2973
- #: admin/manage-fields.php:500
2974
  msgid "Guam"
2975
  msgstr ""
2976
 
2977
- #: admin/manage-fields.php:501
2978
  msgid "Guatemala"
2979
  msgstr ""
2980
 
2981
- #: admin/manage-fields.php:502
2982
  msgid "Guernsey"
2983
  msgstr ""
2984
 
2985
- #: admin/manage-fields.php:503
2986
  msgid "Guinea"
2987
  msgstr ""
2988
 
2989
- #: admin/manage-fields.php:504
2990
  msgid "Guinea-Bissau"
2991
  msgstr ""
2992
 
2993
- #: admin/manage-fields.php:505
2994
  msgid "Guyana"
2995
  msgstr ""
2996
 
2997
- #: admin/manage-fields.php:506
2998
  msgid "Haiti"
2999
  msgstr ""
3000
 
3001
- #: admin/manage-fields.php:507
3002
  msgid "Heard Island and McDonald Islands"
3003
  msgstr ""
3004
 
3005
- #: admin/manage-fields.php:508
3006
  msgid "Honduras"
3007
  msgstr ""
3008
 
3009
- #: admin/manage-fields.php:509
3010
  msgid "Hong Kong"
3011
  msgstr ""
3012
 
3013
- #: admin/manage-fields.php:510
3014
  msgid "Hungary"
3015
  msgstr ""
3016
 
3017
- #: admin/manage-fields.php:511
3018
  msgid "Iceland"
3019
  msgstr ""
3020
 
3021
- #: admin/manage-fields.php:512
3022
  msgid "India"
3023
  msgstr ""
3024
 
3025
- #: admin/manage-fields.php:513
3026
  msgid "Indonesia"
3027
  msgstr ""
3028
 
3029
- #: admin/manage-fields.php:514
3030
  msgid "Iran"
3031
  msgstr ""
3032
 
3033
- #: admin/manage-fields.php:515
3034
  msgid "Iraq"
3035
  msgstr ""
3036
 
3037
- #: admin/manage-fields.php:516
3038
  msgid "Ireland"
3039
  msgstr ""
3040
 
3041
- #: admin/manage-fields.php:517
3042
  msgid "Isle of Man"
3043
  msgstr ""
3044
 
3045
- #: admin/manage-fields.php:518
3046
  msgid "Israel"
3047
  msgstr ""
3048
 
3049
- #: admin/manage-fields.php:519
3050
  msgid "Italy"
3051
  msgstr ""
3052
 
3053
- #: admin/manage-fields.php:520
3054
  msgid "Ivory Coast"
3055
  msgstr ""
3056
 
3057
- #: admin/manage-fields.php:521
3058
  msgid "Jamaica"
3059
  msgstr ""
3060
 
3061
- #: admin/manage-fields.php:522
3062
  msgid "Japan"
3063
  msgstr ""
3064
 
3065
- #: admin/manage-fields.php:523
3066
  msgid "Jersey"
3067
  msgstr ""
3068
 
3069
- #: admin/manage-fields.php:524
3070
  msgid "Jordan"
3071
  msgstr ""
3072
 
3073
- #: admin/manage-fields.php:525
3074
  msgid "Kazakhstan"
3075
  msgstr ""
3076
 
3077
- #: admin/manage-fields.php:526
3078
  msgid "Kenya"
3079
  msgstr ""
3080
 
3081
- #: admin/manage-fields.php:527
3082
  msgid "Kiribati"
3083
  msgstr ""
3084
 
3085
- #: admin/manage-fields.php:528
3086
  msgid "Kosovo"
3087
  msgstr ""
3088
 
3089
- #: admin/manage-fields.php:529
3090
  msgid "Kuwait"
3091
  msgstr ""
3092
 
3093
- #: admin/manage-fields.php:530
3094
  msgid "Kyrgyzstan"
3095
  msgstr ""
3096
 
3097
- #: admin/manage-fields.php:531
3098
  msgid "Laos"
3099
  msgstr ""
3100
 
3101
- #: admin/manage-fields.php:532
3102
  msgid "Latvia"
3103
  msgstr ""
3104
 
3105
- #: admin/manage-fields.php:533
3106
  msgid "Lebanon"
3107
  msgstr ""
3108
 
3109
- #: admin/manage-fields.php:534
3110
  msgid "Lesotho"
3111
  msgstr ""
3112
 
3113
- #: admin/manage-fields.php:535
3114
  msgid "Liberia"
3115
  msgstr ""
3116
 
3117
- #: admin/manage-fields.php:536
3118
  msgid "Libya"
3119
  msgstr ""
3120
 
3121
- #: admin/manage-fields.php:537
3122
  msgid "Liechtenstein"
3123
  msgstr ""
3124
 
3125
- #: admin/manage-fields.php:538
3126
  msgid "Lithuania"
3127
  msgstr ""
3128
 
3129
- #: admin/manage-fields.php:539
3130
  msgid "Luxembourg"
3131
  msgstr ""
3132
 
3133
- #: admin/manage-fields.php:540
3134
  msgid "Macao"
3135
  msgstr ""
3136
 
3137
- #: admin/manage-fields.php:541
3138
  msgid "Macedonia"
3139
  msgstr ""
3140
 
3141
- #: admin/manage-fields.php:542
3142
  msgid "Madagascar"
3143
  msgstr ""
3144
 
3145
- #: admin/manage-fields.php:543
3146
  msgid "Malawi"
3147
  msgstr ""
3148
 
3149
- #: admin/manage-fields.php:544
3150
  msgid "Malaysia"
3151
  msgstr ""
3152
 
3153
- #: admin/manage-fields.php:545
3154
  msgid "Maldives"
3155
  msgstr ""
3156
 
3157
- #: admin/manage-fields.php:546
3158
  msgid "Mali"
3159
  msgstr ""
3160
 
3161
- #: admin/manage-fields.php:547
3162
  msgid "Malta"
3163
  msgstr ""
3164
 
3165
- #: admin/manage-fields.php:548
3166
  msgid "Marshall Islands"
3167
  msgstr ""
3168
 
3169
- #: admin/manage-fields.php:549
3170
  msgid "Martinique"
3171
  msgstr ""
3172
 
3173
- #: admin/manage-fields.php:550
3174
  msgid "Mauritania"
3175
  msgstr ""
3176
 
3177
- #: admin/manage-fields.php:551
3178
  msgid "Mauritius"
3179
  msgstr ""
3180
 
3181
- #: admin/manage-fields.php:552
3182
  msgid "Mayotte"
3183
  msgstr ""
3184
 
3185
- #: admin/manage-fields.php:553
3186
  msgid "Mexico"
3187
  msgstr ""
3188
 
3189
- #: admin/manage-fields.php:554
3190
  msgid "Micronesia"
3191
  msgstr ""
3192
 
3193
- #: admin/manage-fields.php:555
3194
  msgid "Moldova"
3195
  msgstr ""
3196
 
3197
- #: admin/manage-fields.php:556
3198
  msgid "Monaco"
3199
  msgstr ""
3200
 
3201
- #: admin/manage-fields.php:557
3202
  msgid "Mongolia"
3203
  msgstr ""
3204
 
3205
- #: admin/manage-fields.php:558
3206
  msgid "Montenegro"
3207
  msgstr ""
3208
 
3209
- #: admin/manage-fields.php:559
3210
  msgid "Montserrat"
3211
  msgstr ""
3212
 
3213
- #: admin/manage-fields.php:560
3214
  msgid "Morocco"
3215
  msgstr ""
3216
 
3217
- #: admin/manage-fields.php:561
3218
  msgid "Mozambique"
3219
  msgstr ""
3220
 
3221
- #: admin/manage-fields.php:562
3222
  msgid "Myanmar"
3223
  msgstr ""
3224
 
3225
- #: admin/manage-fields.php:563
3226
  msgid "Namibia"
3227
  msgstr ""
3228
 
3229
- #: admin/manage-fields.php:564
3230
  msgid "Nauru"
3231
  msgstr ""
3232
 
3233
- #: admin/manage-fields.php:565
3234
  msgid "Nepal"
3235
  msgstr ""
3236
 
3237
- #: admin/manage-fields.php:566
3238
  msgid "Netherlands"
3239
  msgstr ""
3240
 
3241
- #: admin/manage-fields.php:567
3242
  msgid "New Caledonia"
3243
  msgstr ""
3244
 
3245
- #: admin/manage-fields.php:568
3246
  msgid "New Zealand"
3247
  msgstr ""
3248
 
3249
- #: admin/manage-fields.php:569
3250
  msgid "Nicaragua"
3251
  msgstr ""
3252
 
3253
- #: admin/manage-fields.php:570
3254
  msgid "Niger"
3255
  msgstr ""
3256
 
3257
- #: admin/manage-fields.php:571
3258
  msgid "Nigeria"
3259
  msgstr ""
3260
 
3261
- #: admin/manage-fields.php:572
3262
  msgid "Niue"
3263
  msgstr ""
3264
 
3265
- #: admin/manage-fields.php:573
3266
  msgid "Norfolk Island"
3267
  msgstr ""
3268
 
3269
- #: admin/manage-fields.php:574
3270
  msgid "North Korea"
3271
  msgstr ""
3272
 
3273
- #: admin/manage-fields.php:575
3274
  msgid "Northern Mariana Islands"
3275
  msgstr ""
3276
 
3277
- #: admin/manage-fields.php:576
3278
  msgid "Norway"
3279
  msgstr ""
3280
 
3281
- #: admin/manage-fields.php:577
3282
  msgid "Oman"
3283
  msgstr ""
3284
 
3285
- #: admin/manage-fields.php:578
3286
  msgid "Pakistan"
3287
  msgstr ""
3288
 
3289
- #: admin/manage-fields.php:579
3290
  msgid "Palau"
3291
  msgstr ""
3292
 
3293
- #: admin/manage-fields.php:580
3294
  msgid "Palestinian Territory"
3295
  msgstr ""
3296
 
3297
- #: admin/manage-fields.php:581
3298
  msgid "Panama"
3299
  msgstr ""
3300
 
3301
- #: admin/manage-fields.php:582
3302
  msgid "Papua New Guinea"
3303
  msgstr ""
3304
 
3305
- #: admin/manage-fields.php:583
3306
  msgid "Paraguay"
3307
  msgstr ""
3308
 
3309
- #: admin/manage-fields.php:584
3310
  msgid "Peru"
3311
  msgstr ""
3312
 
3313
- #: admin/manage-fields.php:585
3314
  msgid "Philippines"
3315
  msgstr ""
3316
 
3317
- #: admin/manage-fields.php:586
3318
  msgid "Pitcairn"
3319
  msgstr ""
3320
 
3321
- #: admin/manage-fields.php:587
3322
  msgid "Poland"
3323
  msgstr ""
3324
 
3325
- #: admin/manage-fields.php:588
3326
  msgid "Portugal"
3327
  msgstr ""
3328
 
3329
- #: admin/manage-fields.php:589
3330
  msgid "Puerto Rico"
3331
  msgstr ""
3332
 
3333
- #: admin/manage-fields.php:590
3334
  msgid "Qatar"
3335
  msgstr ""
3336
 
3337
- #: admin/manage-fields.php:591
3338
  msgid "Republic of the Congo"
3339
  msgstr ""
3340
 
3341
- #: admin/manage-fields.php:592
3342
  msgid "Reunion"
3343
  msgstr ""
3344
 
3345
- #: admin/manage-fields.php:593
3346
  msgid "Romania"
3347
  msgstr ""
3348
 
3349
- #: admin/manage-fields.php:594
3350
  msgid "Russia"
3351
  msgstr ""
3352
 
3353
- #: admin/manage-fields.php:595
3354
  msgid "Rwanda"
3355
  msgstr ""
3356
 
3357
- #: admin/manage-fields.php:596
3358
  msgid "Saint Barthelemy"
3359
  msgstr ""
3360
 
3361
- #: admin/manage-fields.php:597
3362
  msgid "Saint Helena"
3363
  msgstr ""
3364
 
3365
- #: admin/manage-fields.php:598
3366
  msgid "Saint Kitts and Nevis"
3367
  msgstr ""
3368
 
3369
- #: admin/manage-fields.php:599
3370
  msgid "Saint Lucia"
3371
  msgstr ""
3372
 
3373
- #: admin/manage-fields.php:600
3374
  msgid "Saint Martin"
3375
  msgstr ""
3376
 
3377
- #: admin/manage-fields.php:601
3378
  msgid "Saint Pierre and Miquelon"
3379
  msgstr ""
3380
 
3381
- #: admin/manage-fields.php:602
3382
  msgid "Saint Vincent and the Grenadines"
3383
  msgstr ""
3384
 
3385
- #: admin/manage-fields.php:603
3386
  msgid "Samoa"
3387
  msgstr ""
3388
 
3389
- #: admin/manage-fields.php:604
3390
  msgid "San Marino"
3391
  msgstr ""
3392
 
3393
- #: admin/manage-fields.php:605
3394
  msgid "Sao Tome and Principe"
3395
  msgstr ""
3396
 
3397
- #: admin/manage-fields.php:606
3398
  msgid "Saudi Arabia"
3399
  msgstr ""
3400
 
3401
- #: admin/manage-fields.php:607
3402
  msgid "Senegal"
3403
  msgstr ""
3404
 
3405
- #: admin/manage-fields.php:608
3406
  msgid "Serbia"
3407
  msgstr ""
3408
 
3409
- #: admin/manage-fields.php:609
3410
  msgid "Seychelles"
3411
  msgstr ""
3412
 
3413
- #: admin/manage-fields.php:610
3414
  msgid "Sierra Leone"
3415
  msgstr ""
3416
 
3417
- #: admin/manage-fields.php:611
3418
  msgid "Singapore"
3419
  msgstr ""
3420
 
3421
- #: admin/manage-fields.php:612
3422
  msgid "Sint Maarten"
3423
  msgstr ""
3424
 
3425
- #: admin/manage-fields.php:613
3426
  msgid "Slovakia"
3427
  msgstr ""
3428
 
3429
- #: admin/manage-fields.php:614
3430
  msgid "Slovenia"
3431
  msgstr ""
3432
 
3433
- #: admin/manage-fields.php:615
3434
  msgid "Solomon Islands"
3435
  msgstr ""
3436
 
3437
- #: admin/manage-fields.php:616
3438
  msgid "Somalia"
3439
  msgstr ""
3440
 
3441
- #: admin/manage-fields.php:617
3442
  msgid "South Africa"
3443
  msgstr ""
3444
 
3445
- #: admin/manage-fields.php:618
3446
  msgid "South Georgia and the South Sandwich Islands"
3447
  msgstr ""
3448
 
3449
- #: admin/manage-fields.php:619
3450
  msgid "South Korea"
3451
  msgstr ""
3452
 
3453
- #: admin/manage-fields.php:620
3454
  msgid "South Sudan"
3455
  msgstr ""
3456
 
3457
- #: admin/manage-fields.php:621
3458
  msgid "Spain"
3459
  msgstr ""
3460
 
3461
- #: admin/manage-fields.php:622
3462
  msgid "Sri Lanka"
3463
  msgstr ""
3464
 
3465
- #: admin/manage-fields.php:623
3466
  msgid "Sudan"
3467
  msgstr ""
3468
 
3469
- #: admin/manage-fields.php:624
3470
  msgid "Suriname"
3471
  msgstr ""
3472
 
3473
- #: admin/manage-fields.php:625
3474
  msgid "Svalbard and Jan Mayen"
3475
  msgstr ""
3476
 
3477
- #: admin/manage-fields.php:626
3478
  msgid "Swaziland"
3479
  msgstr ""
3480
 
3481
- #: admin/manage-fields.php:627
3482
  msgid "Sweden"
3483
  msgstr ""
3484
 
3485
- #: admin/manage-fields.php:628
3486
  msgid "Switzerland"
3487
  msgstr ""
3488
 
3489
- #: admin/manage-fields.php:629
3490
  msgid "Syria"
3491
  msgstr ""
3492
 
3493
- #: admin/manage-fields.php:630
3494
  msgid "Taiwan"
3495
  msgstr ""
3496
 
3497
- #: admin/manage-fields.php:631
3498
  msgid "Tajikistan"
3499
  msgstr ""
3500
 
3501
- #: admin/manage-fields.php:632
3502
  msgid "Tanzania"
3503
  msgstr ""
3504
 
3505
- #: admin/manage-fields.php:633
3506
  msgid "Thailand"
3507
  msgstr ""
3508
 
3509
- #: admin/manage-fields.php:634
3510
  msgid "Togo"
3511
  msgstr ""
3512
 
3513
- #: admin/manage-fields.php:635
3514
  msgid "Tokelau"
3515
  msgstr ""
3516
 
3517
- #: admin/manage-fields.php:636
3518
  msgid "Tonga"
3519
  msgstr ""
3520
 
3521
- #: admin/manage-fields.php:637
3522
  msgid "Trinidad and Tobago"
3523
  msgstr ""
3524
 
3525
- #: admin/manage-fields.php:638
3526
  msgid "Tunisia"
3527
  msgstr ""
3528
 
3529
- #: admin/manage-fields.php:639
3530
  msgid "Turkey"
3531
  msgstr ""
3532
 
3533
- #: admin/manage-fields.php:640
3534
  msgid "Turkmenistan"
3535
  msgstr ""
3536
 
3537
- #: admin/manage-fields.php:641
3538
  msgid "Turks and Caicos Islands"
3539
  msgstr ""
3540
 
3541
- #: admin/manage-fields.php:642
3542
  msgid "Tuvalu"
3543
  msgstr ""
3544
 
3545
- #: admin/manage-fields.php:643
3546
  msgid "U.S. Virgin Islands"
3547
  msgstr ""
3548
 
3549
- #: admin/manage-fields.php:644
3550
  msgid "Uganda"
3551
  msgstr ""
3552
 
3553
- #: admin/manage-fields.php:645
3554
  msgid "Ukraine"
3555
  msgstr ""
3556
 
3557
- #: admin/manage-fields.php:646
3558
  msgid "United Arab Emirates"
3559
  msgstr ""
3560
 
3561
- #: admin/manage-fields.php:647
3562
  msgid "United Kingdom"
3563
  msgstr ""
3564
 
3565
- #: admin/manage-fields.php:648
3566
  msgid "United States"
3567
  msgstr ""
3568
 
3569
- #: admin/manage-fields.php:649
3570
  msgid "United States Minor Outlying Islands"
3571
  msgstr ""
3572
 
3573
- #: admin/manage-fields.php:650
3574
  msgid "Uruguay"
3575
  msgstr ""
3576
 
3577
- #: admin/manage-fields.php:651
3578
  msgid "Uzbekistan"
3579
  msgstr ""
3580
 
3581
- #: admin/manage-fields.php:652
3582
  msgid "Vanuatu"
3583
  msgstr ""
3584
 
3585
- #: admin/manage-fields.php:653
3586
  msgid "Vatican"
3587
  msgstr ""
3588
 
3589
- #: admin/manage-fields.php:654
3590
  msgid "Venezuela"
3591
  msgstr ""
3592
 
3593
- #: admin/manage-fields.php:655
3594
  msgid "Vietnam"
3595
  msgstr ""
3596
 
3597
- #: admin/manage-fields.php:656
3598
  msgid "Wallis and Futuna"
3599
  msgstr ""
3600
 
3601
- #: admin/manage-fields.php:657
3602
  msgid "Western Sahara"
3603
  msgstr ""
3604
 
3605
- #: admin/manage-fields.php:658
3606
  msgid "Yemen"
3607
  msgstr ""
3608
 
3609
- #: admin/manage-fields.php:659
3610
  msgid "Zambia"
3611
  msgstr ""
3612
 
3613
- #: admin/manage-fields.php:660
3614
  msgid "Zimbabwe"
3615
  msgstr ""
3616
 
3617
- #: admin/manage-fields.php:693
3618
  msgid "Albania Lek"
3619
  msgstr ""
3620
 
3621
- #: admin/manage-fields.php:694
3622
  msgid "Afghanistan Afghani"
3623
  msgstr ""
3624
 
3625
- #: admin/manage-fields.php:695
3626
  msgid "Argentina Peso"
3627
  msgstr ""
3628
 
3629
- #: admin/manage-fields.php:697
3630
  msgid "Australia Dollar"
3631
  msgstr ""
3632
 
3633
- #: admin/manage-fields.php:698
3634
  msgid "Azerbaijan New Manat"
3635
  msgstr ""
3636
 
3637
- #: admin/manage-fields.php:699
3638
  msgid "Bahamas Dollar"
3639
  msgstr ""
3640
 
3641
- #: admin/manage-fields.php:700
3642
  msgid "Barbados Dollar"
3643
  msgstr ""
3644
 
3645
- #: admin/manage-fields.php:701
3646
  msgid "Bangladeshi taka"
3647
  msgstr ""
3648
 
3649
- #: admin/manage-fields.php:702
3650
  msgid "Belarus Ruble"
3651
  msgstr ""
3652
 
3653
- #: admin/manage-fields.php:703
3654
  msgid "Belize Dollar"
3655
  msgstr ""
3656
 
3657
- #: admin/manage-fields.php:704
3658
  msgid "Bermuda Dollar"
3659
  msgstr ""
3660
 
3661
- #: admin/manage-fields.php:705
3662
  msgid "Bolivia Boliviano"
3663
  msgstr ""
3664
 
3665
- #: admin/manage-fields.php:706
3666
  msgid "Bosnia and Herzegovina Convertible Marka"
3667
  msgstr ""
3668
 
3669
- #: admin/manage-fields.php:707
3670
  msgid "Botswana Pula"
3671
  msgstr ""
3672
 
3673
- #: admin/manage-fields.php:708
3674
  msgid "Bulgaria Lev"
3675
  msgstr ""
3676
 
3677
- #: admin/manage-fields.php:709
3678
  msgid "Brazil Real"
3679
  msgstr ""
3680
 
3681
- #: admin/manage-fields.php:710
3682
  msgid "Brunei Darussalam Dollar"
3683
  msgstr ""
3684
 
3685
- #: admin/manage-fields.php:711
3686
  msgid "Cambodia Riel"
3687
  msgstr ""
3688
 
3689
- #: admin/manage-fields.php:712
3690
  msgid "Canada Dollar"
3691
  msgstr ""
3692
 
3693
- #: admin/manage-fields.php:713
3694
  msgid "Cayman Islands Dollar"
3695
  msgstr ""
3696
 
3697
- #: admin/manage-fields.php:714
3698
  msgid "Chile Peso"
3699
  msgstr ""
3700
 
3701
- #: admin/manage-fields.php:715
3702
  msgid "China Yuan Renminbi"
3703
  msgstr ""
3704
 
3705
- #: admin/manage-fields.php:716
3706
  msgid "Colombia Peso"
3707
  msgstr ""
3708
 
3709
- #: admin/manage-fields.php:717
3710
  msgid "Costa Rica Colon"
3711
  msgstr ""
3712
 
3713
- #: admin/manage-fields.php:718
3714
  msgid "Croatia Kuna"
3715
  msgstr ""
3716
 
3717
- #: admin/manage-fields.php:719
3718
  msgid "Cuba Peso"
3719
  msgstr ""
3720
 
3721
- #: admin/manage-fields.php:720
3722
  msgid "Czech Republic Koruna"
3723
  msgstr ""
3724
 
3725
- #: admin/manage-fields.php:721
3726
  msgid "Denmark Krone"
3727
  msgstr ""
3728
 
3729
- #: admin/manage-fields.php:722
3730
  msgid "Dominican Republic Peso"
3731
  msgstr ""
3732
 
3733
- #: admin/manage-fields.php:723
3734
  msgid "East Caribbean Dollar"
3735
  msgstr ""
3736
 
3737
- #: admin/manage-fields.php:724
3738
  msgid "Egypt Pound"
3739
  msgstr ""
3740
 
3741
- #: admin/manage-fields.php:725
3742
  msgid "El Salvador Colon"
3743
  msgstr ""
3744
 
3745
- #: admin/manage-fields.php:726
3746
  msgid "Estonia Kroon"
3747
  msgstr ""
3748
 
3749
- #: admin/manage-fields.php:727
3750
  msgid "Euro"
3751
  msgstr ""
3752
 
3753
- #: admin/manage-fields.php:728
3754
  msgid "Falkland Islands (Malvinas) Pound"
3755
  msgstr ""
3756
 
3757
- #: admin/manage-fields.php:729
3758
  msgid "Fiji Dollar"
3759
  msgstr ""
3760
 
3761
- #: admin/manage-fields.php:730
3762
  msgid "Ghana Cedis"
3763
  msgstr ""
3764
 
3765
- #: admin/manage-fields.php:731
3766
  msgid "Gibraltar Pound"
3767
  msgstr ""
3768
 
3769
- #: admin/manage-fields.php:732
3770
  msgid "Guatemala Quetzal"
3771
  msgstr ""
3772
 
3773
- #: admin/manage-fields.php:733
3774
  msgid "Guernsey Pound"
3775
  msgstr ""
3776
 
3777
- #: admin/manage-fields.php:734
3778
  msgid "Guyana Dollar"
3779
  msgstr ""
3780
 
3781
- #: admin/manage-fields.php:735
3782
  msgid "Honduras Lempira"
3783
  msgstr ""
3784
 
3785
- #: admin/manage-fields.php:736
3786
  msgid "Hong Kong Dollar"
3787
  msgstr ""
3788
 
3789
- #: admin/manage-fields.php:737
3790
  msgid "Hungary Forint"
3791
  msgstr ""
3792
 
3793
- #: admin/manage-fields.php:738
3794
  msgid "Iceland Krona"
3795
  msgstr ""
3796
 
3797
- #: admin/manage-fields.php:739
3798
  msgid "India Rupee"
3799
  msgstr ""
3800
 
3801
- #: admin/manage-fields.php:740
3802
  msgid "Indonesia Rupiah"
3803
  msgstr ""
3804
 
3805
- #: admin/manage-fields.php:741
3806
  msgid "Iran Rial"
3807
  msgstr ""
3808
 
3809
- #: admin/manage-fields.php:742
3810
  msgid "Isle of Man Pound"
3811
  msgstr ""
3812
 
3813
- #: admin/manage-fields.php:743
3814
  msgid "Israel Shekel"
3815
  msgstr ""
3816
 
3817
- #: admin/manage-fields.php:744
3818
  msgid "Jamaica Dollar"
3819
  msgstr ""
3820
 
3821
- #: admin/manage-fields.php:745
3822
  msgid "Japan Yen"
3823
  msgstr ""
3824
 
3825
- #: admin/manage-fields.php:746
3826
  msgid "Jersey Pound"
3827
  msgstr ""
3828
 
3829
- #: admin/manage-fields.php:747
3830
  msgid "Kazakhstan Tenge"
3831
  msgstr ""
3832
 
3833
- #: admin/manage-fields.php:748
3834
  msgid "Korea (North) Won"
3835
  msgstr ""
3836
 
3837
- #: admin/manage-fields.php:749
3838
  msgid "Korea (South) Won"
3839
  msgstr ""
3840
 
3841
- #: admin/manage-fields.php:750
3842
  msgid "Kyrgyzstan Som"
3843
  msgstr ""
3844
 
3845
- #: admin/manage-fields.php:751
3846
  msgid "Laos Kip"
3847
  msgstr ""
3848
 
3849
- #: admin/manage-fields.php:752
3850
  msgid "Latvia Lat"
3851
  msgstr ""
3852
 
3853
- #: admin/manage-fields.php:753
3854
  msgid "Lebanon Pound"
3855
  msgstr ""
3856
 
3857
- #: admin/manage-fields.php:754
3858
  msgid "Liberia Dollar"
3859
  msgstr ""
3860
 
3861
- #: admin/manage-fields.php:755
3862
  msgid "Lithuania Litas"
3863
  msgstr ""
3864
 
3865
- #: admin/manage-fields.php:756
3866
  msgid "Macedonia Denar"
3867
  msgstr ""
3868
 
3869
- #: admin/manage-fields.php:757
3870
  msgid "Malaysia Ringgit"
3871
  msgstr ""
3872
 
3873
- #: admin/manage-fields.php:758
3874
  msgid "Mauritius Rupee"
3875
  msgstr ""
3876
 
3877
- #: admin/manage-fields.php:759
3878
  msgid "Mexico Peso"
3879
  msgstr ""
3880
 
3881
- #: admin/manage-fields.php:760
3882
  msgid "Mongolia Tughrik"
3883
  msgstr ""
3884
 
3885
- #: admin/manage-fields.php:761
3886
  msgid "Mozambique Metical"
3887
  msgstr ""
3888
 
3889
- #: admin/manage-fields.php:762
3890
  msgid "Namibia Dollar"
3891
  msgstr ""
3892
 
3893
- #: admin/manage-fields.php:763
3894
  msgid "Nepal Rupee"
3895
  msgstr ""
3896
 
3897
- #: admin/manage-fields.php:764
3898
  msgid "Netherlands Antilles Guilder"
3899
  msgstr ""
3900
 
3901
- #: admin/manage-fields.php:765
3902
  msgid "New Zealand Dollar"
3903
  msgstr ""
3904
 
3905
- #: admin/manage-fields.php:766
3906
  msgid "Nicaragua Cordoba"
3907
  msgstr ""
3908
 
3909
- #: admin/manage-fields.php:767
3910
  msgid "Nigeria Naira"
3911
  msgstr ""
3912
 
3913
- #: admin/manage-fields.php:768
3914
  msgid "Norway Krone"
3915
  msgstr ""
3916
 
3917
- #: admin/manage-fields.php:769
3918
  msgid "Oman Rial"
3919
  msgstr ""
3920
 
3921
- #: admin/manage-fields.php:770
3922
  msgid "Pakistan Rupee"
3923
  msgstr ""
3924
 
3925
- #: admin/manage-fields.php:771
3926
  msgid "Panama Balboa"
3927
  msgstr ""
3928
 
3929
- #: admin/manage-fields.php:772
3930
  msgid "Paraguay Guarani"
3931
  msgstr ""
3932
 
3933
- #: admin/manage-fields.php:773
3934
  msgid "Peru Nuevo Sol"
3935
  msgstr ""
3936
 
3937
- #: admin/manage-fields.php:774
3938
  msgid "Philippines Peso"
3939
  msgstr ""
3940
 
3941
- #: admin/manage-fields.php:775
3942
  msgid "Poland Zloty"
3943
  msgstr ""
3944
 
3945
- #: admin/manage-fields.php:776
3946
  msgid "Qatar Riyal"
3947
  msgstr ""
3948
 
3949
- #: admin/manage-fields.php:777
3950
  msgid "Romania New Leu"
3951
  msgstr ""
3952
 
3953
- #: admin/manage-fields.php:778
3954
  msgid "Russia Ruble"
3955
  msgstr ""
3956
 
3957
- #: admin/manage-fields.php:779
3958
  msgid "Saint Helena Pound"
3959
  msgstr ""
3960
 
3961
- #: admin/manage-fields.php:780
3962
  msgid "Saudi Arabia Riyal"
3963
  msgstr ""
3964
 
3965
- #: admin/manage-fields.php:781
3966
  msgid "Serbia Dinar"
3967
  msgstr ""
3968
 
3969
- #: admin/manage-fields.php:782
3970
  msgid "Seychelles Rupee"
3971
  msgstr ""
3972
 
3973
- #: admin/manage-fields.php:783
3974
  msgid "Singapore Dollar"
3975
  msgstr ""
3976
 
3977
- #: admin/manage-fields.php:784
3978
  msgid "Solomon Islands Dollar"
3979
  msgstr ""
3980
 
3981
- #: admin/manage-fields.php:785
3982
  msgid "Somalia Shilling"
3983
  msgstr ""
3984
 
3985
- #: admin/manage-fields.php:786
3986
  msgid "South Africa Rand"
3987
  msgstr ""
3988
 
3989
- #: admin/manage-fields.php:787
3990
  msgid "Sri Lanka Rupee"
3991
  msgstr ""
3992
 
3993
- #: admin/manage-fields.php:788
3994
  msgid "Sweden Krona"
3995
  msgstr ""
3996
 
3997
- #: admin/manage-fields.php:789
3998
  msgid "Switzerland Franc"
3999
  msgstr ""
4000
 
4001
- #: admin/manage-fields.php:790
4002
  msgid "Suriname Dollar"
4003
  msgstr ""
4004
 
4005
- #: admin/manage-fields.php:791
4006
  msgid "Syria Pound"
4007
  msgstr ""
4008
 
4009
- #: admin/manage-fields.php:792
4010
  msgid "Taiwan New Dollar"
4011
  msgstr ""
4012
 
4013
- #: admin/manage-fields.php:793
4014
  msgid "Thailand Baht"
4015
  msgstr ""
4016
 
4017
- #: admin/manage-fields.php:794
4018
  msgid "Trinidad and Tobago Dollar"
4019
  msgstr ""
4020
 
4021
- #: admin/manage-fields.php:795, admin/manage-fields.php:796
4022
  msgid "Turkey Lira"
4023
  msgstr ""
4024
 
4025
- #: admin/manage-fields.php:797
4026
  msgid "Tuvalu Dollar"
4027
  msgstr ""
4028
 
4029
- #: admin/manage-fields.php:798
4030
  msgid "Ukraine Hryvna"
4031
  msgstr ""
4032
 
4033
- #: admin/manage-fields.php:799
4034
  msgid "United Kingdom Pound"
4035
  msgstr ""
4036
 
4037
- #: admin/manage-fields.php:800
4038
  msgid "Uganda Shilling"
4039
  msgstr ""
4040
 
4041
- #: admin/manage-fields.php:801
4042
  msgid "US Dollar"
4043
  msgstr ""
4044
 
4045
- #: admin/manage-fields.php:802
4046
  msgid "Uruguay Peso"
4047
  msgstr ""
4048
 
4049
- #: admin/manage-fields.php:803
4050
  msgid "Uzbekistan Som"
4051
  msgstr ""
4052
 
4053
- #: admin/manage-fields.php:804
4054
  msgid "Venezuela Bolivar"
4055
  msgstr ""
4056
 
4057
- #: admin/manage-fields.php:805
4058
  msgid "Viet Nam Dong"
4059
  msgstr ""
4060
 
4061
- #: admin/manage-fields.php:806
4062
  msgid "Yemen Rial"
4063
  msgstr ""
4064
 
4065
- #: admin/manage-fields.php:807
4066
  msgid "Zimbabwe Dollar"
4067
  msgstr ""
4068
 
4069
- #: admin/manage-fields.php:1307
4070
  msgid ""
4071
  "That field is already added in this form\n"
4072
  ""
4073
  msgstr ""
4074
 
4075
- #: admin/manage-fields.php:1300, admin/manage-fields.php:1114
4076
  msgid ""
4077
  "You must select a field\n"
4078
  ""
4079
  msgstr ""
4080
 
4081
- #: admin/manage-fields.php:1124
4082
  msgid ""
4083
  "Please choose a different field type as this one already exists in your form (must be unique)\n"
4084
  ""
4085
  msgstr ""
4086
 
4087
- #: admin/manage-fields.php:1138
4088
  msgid ""
4089
  "The entered avatar size is not numerical\n"
4090
  ""
4091
  msgstr ""
4092
 
4093
- #: admin/manage-fields.php:1135
4094
  msgid ""
4095
  "The entered avatar size is not between 20 and 200\n"
4096
  ""
4097
  msgstr ""
4098
 
4099
- #: admin/manage-fields.php:1149
4100
  msgid ""
4101
  "You must enter a value for the row number\n"
4102
  ""
4103
  msgstr ""
4104
 
4105
- #: admin/manage-fields.php:1146
4106
  msgid ""
4107
  "The entered row number is not numerical\n"
4108
  ""
4109
  msgstr ""
4110
 
4111
- #: admin/manage-fields.php:1157
4112
  msgid ""
4113
  "You must enter the site key\n"
4114
  ""
4115
  msgstr ""
4116
 
4117
- #: admin/manage-fields.php:1159
4118
  msgid ""
4119
  "You must enter the secret key\n"
4120
  ""
4121
  msgstr ""
4122
 
4123
- #: admin/manage-fields.php:1181
4124
  msgid ""
4125
  "The entered value for the Datepicker is not a valid date-format\n"
4126
  ""
4127
  msgstr ""
4128
 
4129
- #: admin/manage-fields.php:1167
4130
  msgid ""
4131
  "You must enter a value for the date-format\n"
4132
  ""
4133
  msgstr ""
4134
 
4135
- #: admin/manage-fields.php:1200
4136
  msgid ""
4137
  "The meta-name cannot be empty\n"
4138
  ""
4139
  msgstr ""
4140
 
4141
- #: admin/manage-fields.php:1205
4142
  msgid ""
4143
  "The meta-name cannot begin with a space\n"
4144
  ""
4145
  msgstr ""
4146
 
4147
- #: admin/manage-fields.php:1208
4148
  msgid ""
4149
  "The meta-name cannot end with a space\n"
4150
  ""
4151
  msgstr ""
4152
 
4153
- #: admin/manage-fields.php:1238, admin/manage-fields.php:1249
4154
  msgid ""
4155
  "That meta-name is already in use\n"
4156
  ""
4157
  msgstr ""
4158
 
4159
- #: admin/manage-fields.php:1230
4160
  msgid ""
4161
  "That meta-name can't be used, please choose another\n"
4162
  ""
4163
  msgstr ""
4164
 
4165
- #: admin/manage-fields.php:1260
4166
  msgid ""
4167
  "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
4168
  ""
4169
  msgstr ""
4170
 
4171
- #: admin/manage-fields.php:1284
4172
  msgid ""
4173
  "The following option did not coincide with the ones in the options list: %s\n"
4174
  ""
4175
  msgstr ""
4176
 
4177
- #: admin/manage-fields.php:1280
4178
  msgid ""
4179
  "The following option(s) did not coincide with the ones in the options list: %s\n"
4180
  ""
4181
  msgstr ""
4182
 
4183
- #: admin/manage-fields.php:1291
4184
  msgid ""
4185
  "Please select at least one user role\n"
4186
  ""
4187
  msgstr ""
4188
 
4189
- #: admin/manage-fields.php:1359
4190
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4191
  msgstr ""
4192
 
4193
- #: admin/manage-fields.php:1359, features/functions.php:969, features/functions.php:976, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
4194
  msgid "Edit"
4195
  msgstr ""
4196
 
4197
- #: admin/manage-fields.php:1359, features/functions.php:962, features/functions.php:976, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4198
  msgid "Delete"
4199
  msgstr ""
4200
 
4201
- #: admin/manage-fields.php:1374
4202
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4203
  msgstr ""
4204
 
4205
- #: admin/manage-fields.php:1385
4206
  msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on."
4207
  msgstr ""
4208
 
4209
- #: admin/manage-fields.php:1383
4210
  msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons."
4211
  msgstr ""
4212
 
4213
- #: admin/manage-fields.php:1484
4214
  msgid "Search Location"
4215
  msgstr ""
4216
 
@@ -4390,7 +4398,7 @@ msgstr ""
4390
  msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
4391
  msgstr ""
4392
 
4393
- #: admin/private-website.php:162, features/functions.php:948, features/content-restriction/content-restriction.php:162, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:101, admin/advanced-settings/includes/views/view-fields.php:293, admin/advanced-settings/includes/views/view-forms.php:376, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
4394
  msgid "Save Changes"
4395
  msgstr ""
4396
 
@@ -4514,43 +4522,43 @@ msgstr ""
4514
  msgid "Minimum length of %d characters."
4515
  msgstr ""
4516
 
4517
- #: features/functions.php:790, front-end/recover.php:370, front-end/default-fields/password/password.php:56
4518
  msgid "The password must have a minimum strength of %s"
4519
  msgstr ""
4520
 
4521
- #: features/functions.php:867
4522
  msgid "This field is required"
4523
  msgstr ""
4524
 
4525
- #: features/functions.php:905, front-end/default-fields/recaptcha/recaptcha.php:529, front-end/default-fields/recaptcha/recaptcha.php:520, front-end/default-fields/recaptcha/recaptcha.php:585, front-end/default-fields/recaptcha/recaptcha.php:633
4526
  msgid "Please enter a (valid) reCAPTCHA value"
4527
  msgstr ""
4528
 
4529
- #: features/functions.php:912
4530
  msgid "Incorrect phone number"
4531
  msgstr ""
4532
 
4533
- #: features/functions.php:976, assets/lib/wck-api/wordpress-creation-kit.php:447
4534
  msgid "Content"
4535
  msgstr ""
4536
 
4537
- #: features/functions.php:1164
4538
  msgid "<br><br>Also, you will be able to visit your site at "
4539
  msgstr ""
4540
 
4541
- #: features/functions.php:1177
4542
  msgid "<br><br>You can visit your site at "
4543
  msgstr ""
4544
 
4545
- #: features/functions.php:1267
4546
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4547
  msgstr ""
4548
 
4549
- #: features/functions.php:1421
4550
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4551
  msgstr ""
4552
 
4553
- #: features/functions.php:1462
4554
  msgid "You are not currently logged in."
4555
  msgstr ""
4556
 
@@ -4586,7 +4594,7 @@ msgstr ""
4586
  msgid "Only an administrator can add new users."
4587
  msgstr ""
4588
 
4589
- #: front-end/class-formbuilder.php:295, front-end/login.php:509
4590
  msgid "You are not allowed to do this."
4591
  msgstr ""
4592
 
@@ -4650,51 +4658,51 @@ msgstr ""
4650
  msgid "Log In"
4651
  msgstr ""
4652
 
4653
- #: front-end/login.php:318, front-end/login.php:339, front-end/recover.php:18, front-end/recover.php:321, front-end/extra-fields/extra-fields.php:93
4654
  msgid "ERROR"
4655
  msgstr ""
4656
 
4657
- #: front-end/login.php:321
4658
  msgid "The password you entered is incorrect."
4659
  msgstr ""
4660
 
4661
- #: front-end/login.php:330
4662
  msgid "Invalid username."
4663
  msgstr ""
4664
 
4665
- #: front-end/login.php:328
4666
  msgid "Invalid username or email."
4667
  msgstr ""
4668
 
4669
- #: front-end/login.php:326
4670
  msgid "Invalid email."
4671
  msgstr ""
4672
 
4673
- #: front-end/login.php:334
4674
  msgid "Password Lost and Found."
4675
  msgstr ""
4676
 
4677
- #: front-end/login.php:334, front-end/login.php:457
4678
  msgid "Lost your password?"
4679
  msgstr ""
4680
 
4681
- #: front-end/login.php:339
4682
  msgid "Both fields are empty."
4683
  msgstr ""
4684
 
4685
- #: front-end/login.php:496, front-end/logout.php:29
4686
  msgid "Log out of this account"
4687
  msgstr ""
4688
 
4689
- #: front-end/login.php:496, front-end/logout.php:16
4690
  msgid "Log out &raquo;"
4691
  msgstr ""
4692
 
4693
- #: front-end/login.php:497
4694
  msgid "You are currently logged in as %1$s. %2$s"
4695
  msgstr ""
4696
 
4697
- #: front-end/login.php:422, front-end/recover.php:123
4698
  msgid "Username or Email"
4699
  msgstr ""
4700
 
@@ -4762,7 +4770,7 @@ msgstr ""
4762
  msgid "The entered passwords don't match!"
4763
  msgstr ""
4764
 
4765
- #: front-end/recover.php:366, front-end/default-fields/password/password.php:52
4766
  msgid "The password must have the minimum length of %s characters"
4767
  msgstr ""
4768
 
@@ -5952,23 +5960,23 @@ msgstr ""
5952
  msgid "Your submission contains banned words."
5953
  msgstr ""
5954
 
5955
- #: admin/advanced-settings/advanced-settings.php:185
5956
  msgid "are"
5957
  msgstr ""
5958
 
5959
- #: admin/advanced-settings/advanced-settings.php:186
5960
  msgid "have"
5961
  msgstr ""
5962
 
5963
- #: admin/advanced-settings/advanced-settings.php:182
5964
  msgid "is"
5965
  msgstr ""
5966
 
5967
- #: admin/advanced-settings/advanced-settings.php:183
5968
  msgid "has"
5969
  msgstr ""
5970
 
5971
- #: admin/advanced-settings/advanced-settings.php:189
5972
  msgid "%1$s of the emails provided in the Admin Emails field %2$s invalid and %3$s been removed from the list"
5973
  msgstr ""
5974
 
@@ -6598,7 +6606,7 @@ msgid ""
6598
  ""
6599
  msgstr ""
6600
 
6601
- #: assets/lib/wck-api/wordpress-creation-kit.php:545
6602
  msgid "Delete this item"
6603
  msgstr ""
6604
 
@@ -6654,7 +6662,7 @@ msgstr ""
6654
  msgid "You did not type %s. Try again!"
6655
  msgstr ""
6656
 
6657
- #: front-end/default-fields/password-repeat/password-repeat.php:43, front-end/default-fields/password-repeat/password-repeat.php:39
6658
  msgid "The passwords do not match"
6659
  msgstr ""
6660
 
@@ -6706,7 +6714,7 @@ msgstr ""
6706
  msgid "Remove"
6707
  msgstr ""
6708
 
6709
- #: front-end/extra-fields/avatar/avatar.php:85, front-end/extra-fields/checkbox/checkbox.php:45, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/map/map.php:54, front-end/extra-fields/number/number.php:30, front-end/extra-fields/phone/phone.php:39, front-end/extra-fields/radio/radio.php:44, front-end/extra-fields/select/select.php:51, front-end/extra-fields/select-cpt/select-cpt.php:59, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/select2/select2-multiple.php:88, front-end/extra-fields/select2/select2.php:74, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:80, front-end/extra-fields/wysiwyg/wysiwyg.php:33
6710
  msgid "required"
6711
  msgstr ""
6712
 
45
  msgid "Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab."
46
  msgstr ""
47
 
48
+ #: ../pb-add-on-bbpress/bbpress-page.php:148
49
+ msgid "Replace bbPress Login form:"
50
+ msgstr ""
51
+
52
+ #: ../pb-add-on-bbpress/bbpress-page.php:152, ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:266, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, features/content-restriction/content-restriction.php:88, admin/advanced-settings/includes/forms/placeholder-labels.php:136
53
+ msgid "No"
54
+ msgstr ""
55
+
56
+ #: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/manage-fields.php:191, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2451, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-forms.php:340, admin/advanced-settings/includes/views/view-forms.php:360, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
57
+ msgid "Yes"
58
+ msgstr ""
59
+
60
+ #: ../pb-add-on-bbpress/bbpress-page.php:157
61
+ msgid "Select \"Yes\" to replace the default bbPress Login form with the Profile Builder Login form."
62
+ msgstr ""
63
+
64
+ #: ../pb-add-on-bbpress/index.php:321
65
  msgid "bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!"
66
  msgstr ""
67
 
68
+ #: ../pb-add-on-bbpress/index.php:181, ../pb-add-on-bbpress/index.php:196
69
  msgid "Forum Role"
70
  msgstr ""
71
 
72
+ #: ../pb-add-on-bbpress/index.php:182, ../pb-add-on-bbpress/index.php:176, ../pb-add-on-bbpress/index.php:197, ../pb-add-on-bbpress/index.php:247
73
  msgid "Topics Started"
74
  msgstr ""
75
 
76
+ #: ../pb-add-on-bbpress/index.php:183, ../pb-add-on-bbpress/index.php:177, ../pb-add-on-bbpress/index.php:198, ../pb-add-on-bbpress/index.php:249
77
  msgid "Replies Created"
78
  msgstr ""
79
 
225
  msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
226
  msgstr ""
227
 
228
+ #: ../pb-add-on-buddypress/index.php:511, admin/manage-fields.php:330
229
  msgid "Name"
230
  msgstr ""
231
 
249
  msgid "Display name:"
250
  msgstr ""
251
 
252
+ #: ../pb-add-on-buddypress/index.php:534, admin/manage-fields.php:336
253
  msgid "Contact Info"
254
  msgstr ""
255
 
257
  msgid "Website:"
258
  msgstr ""
259
 
260
+ #: ../pb-add-on-buddypress/index.php:541, admin/manage-fields.php:347
261
  msgid "About Yourself"
262
  msgstr ""
263
 
377
  msgid "Edit Profile"
378
  msgstr ""
379
 
380
+ #: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:454, front-end/login.php:456, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
381
  msgid "Register"
382
  msgstr ""
383
 
477
  msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
478
  msgstr ""
479
 
480
+ #: ../pb-add-on-multi-step-forms/index.php:102, ../pb-add-on-multi-step-forms/index.php:530
481
  msgid "Step"
482
  msgstr ""
483
 
493
  msgid "Publish the form to edit tabs title."
494
  msgstr ""
495
 
496
+ #: ../pb-add-on-multi-step-forms/index.php:106, ../pb-add-on-multi-step-forms/index.php:220
497
  msgid "Publish the form before adding Break Points!"
498
  msgstr ""
499
 
501
  msgid "Request in process, please wait a few seconds before a new one!"
502
  msgstr ""
503
 
504
+ #: ../pb-add-on-multi-step-forms/index.php:148
505
  msgid "Multi-Step Forms"
506
  msgstr ""
507
 
508
+ #: ../pb-add-on-multi-step-forms/index.php:225
509
  msgid "To enable MSF you must add Break Points."
510
  msgstr ""
511
 
512
+ #: ../pb-add-on-multi-step-forms/index.php:226, ../pb-add-on-multi-step-forms/index.php:201
513
  msgid "Pagination and Tabs:"
514
  msgstr ""
515
 
516
+ #: ../pb-add-on-multi-step-forms/index.php:227, ../pb-add-on-multi-step-forms/index.php:202
517
  msgid "Enable Pagination"
518
  msgstr ""
519
 
520
+ #: ../pb-add-on-multi-step-forms/index.php:228, ../pb-add-on-multi-step-forms/index.php:203
521
  msgid "Enable Tabs"
522
  msgstr ""
523
 
524
+ #: ../pb-add-on-multi-step-forms/index.php:228, ../pb-add-on-multi-step-forms/index.php:203
525
  msgid "Edit Tabs Title"
526
  msgstr ""
527
 
528
+ #: ../pb-add-on-multi-step-forms/index.php:192
529
  msgid "Multi-Step Forms options updated."
530
  msgstr ""
531
 
532
+ #: ../pb-add-on-multi-step-forms/index.php:197
533
  msgid "Enable on:"
534
  msgstr ""
535
 
536
+ #: ../pb-add-on-multi-step-forms/index.php:198
537
  msgid "PB Default Register Form"
538
  msgstr ""
539
 
540
+ #: ../pb-add-on-multi-step-forms/index.php:199
541
  msgid "PB Default Edit Profile Form"
542
  msgstr ""
543
 
544
+ #: ../pb-add-on-multi-step-forms/index.php:200
545
  msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
546
  msgstr ""
547
 
548
+ #: ../pb-add-on-multi-step-forms/index.php:205
549
  msgid "Update Multi-Step"
550
  msgstr ""
551
 
552
+ #: ../pb-add-on-multi-step-forms/index.php:459
553
  msgid "Next"
554
  msgstr ""
555
 
556
+ #: ../pb-add-on-multi-step-forms/index.php:460
557
  msgid "Previous"
558
  msgstr ""
559
 
713
  msgid "Display Social Connect buttons:"
714
  msgstr ""
715
 
 
 
 
 
 
 
 
 
716
  #: ../pb-add-on-social-connect/index.php:372
717
  msgid "You have successfully unlinked %% from your account."
718
  msgstr ""
757
  msgid "You will be redirected in 5 seconds. If not, click %%."
758
  msgstr ""
759
 
760
+ #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1322
761
  msgid "here"
762
  msgstr ""
763
 
825
  msgid "Country"
826
  msgstr ""
827
 
828
+ #: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:332, admin/advanced-settings/includes/views/view-fields.php:127
829
  msgid "First Name"
830
  msgstr ""
831
 
832
+ #: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:333, admin/advanced-settings/includes/views/view-fields.php:133
833
  msgid "Last Name"
834
  msgstr ""
835
 
941
  msgid "Field Name"
942
  msgstr ""
943
 
944
+ #: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:249
945
  msgid "Required"
946
  msgstr ""
947
 
1046
  msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
1047
  msgstr ""
1048
 
1049
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, assets/lib/wck-api/wordpress-creation-kit.php:548
1050
  msgid "Edit this item"
1051
  msgstr ""
1052
 
1053
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:1011, assets/lib/wck-api/wordpress-creation-kit.php:406
1054
  msgid "Cancel"
1055
  msgstr ""
1056
 
2046
  msgid "Username and Email"
2047
  msgstr ""
2048
 
2049
+ #: admin/general-settings.php:296, admin/manage-fields.php:331, front-end/login.php:260, front-end/login.php:274, front-end/login.php:423, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:328, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:2405, features/admin-approval/class-admin-approval.php:171, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2050
  msgid "Username"
2051
  msgstr ""
2052
 
2053
+ #: admin/general-settings.php:297, front-end/login.php:420, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:834, add-ons/user-listing/userlisting.php:2406, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2054
  msgid "Email"
2055
  msgstr ""
2056
 
2090
  msgid "Manage Form Fields"
2091
  msgstr ""
2092
 
2093
+ #: admin/manage-fields.php:132
2094
  msgid "Choose one of the supported field types"
2095
  msgstr ""
2096
 
2097
+ #: admin/manage-fields.php:134
2098
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2099
  msgstr ""
2100
 
2101
+ #: admin/manage-fields.php:170
2102
  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 will only affect subsequent entries"
2103
  msgstr ""
2104
 
2105
+ #: admin/manage-fields.php:167
2106
  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"
2107
  msgstr ""
2108
 
2109
+ #: admin/manage-fields.php:184
2110
  msgid "Field Title"
2111
  msgstr ""
2112
 
2113
+ #: admin/manage-fields.php:184
2114
  msgid "Title of the field"
2115
  msgstr ""
2116
 
2117
+ #: admin/manage-fields.php:185, add-ons/multiple-forms/edit-profile-forms.php:245, add-ons/multiple-forms/register-forms.php:266
2118
  msgid "Field"
2119
  msgstr ""
2120
 
2121
+ #: admin/manage-fields.php:186
2122
  msgid "Meta-name"
2123
  msgstr ""
2124
 
2125
+ #: admin/manage-fields.php:187, add-ons/custom-redirects/custom_redirects_admin.php:69, add-ons/custom-redirects/custom_redirects_admin.php:99, add-ons/custom-redirects/custom_redirects_admin.php:118, add-ons/custom-redirects/custom_redirects_admin.php:143, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267
2126
  msgid "ID"
2127
  msgstr ""
2128
 
2129
+ #: admin/manage-fields.php:187, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267
2130
  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"
2131
  msgstr ""
2132
 
2133
+ #: admin/manage-fields.php:188
2134
  msgid "Description"
2135
  msgstr ""
2136
 
2137
+ #: admin/manage-fields.php:188
2138
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2139
  msgstr ""
2140
 
2141
+ #: admin/manage-fields.php:189
2142
  msgid "Row Count"
2143
  msgstr ""
2144
 
2145
+ #: admin/manage-fields.php:189
2146
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2147
  msgstr ""
2148
 
2149
+ #: admin/manage-fields.php:190
2150
  msgid "Allowed Image Extensions"
2151
  msgstr ""
2152
 
2153
+ #: admin/manage-fields.php:190
2154
  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 (.*)"
2155
  msgstr ""
2156
 
2157
+ #: admin/manage-fields.php:191
2158
  msgid "Use Simple Upload"
2159
  msgstr ""
2160
 
2161
+ #: admin/manage-fields.php:191
2162
  msgid "Use a simple upload field instead of the WordPress upload"
2163
  msgstr ""
2164
 
2165
+ #: admin/manage-fields.php:192
2166
  msgid "Allowed Upload Extensions"
2167
  msgstr ""
2168
 
2169
+ #: admin/manage-fields.php:192
2170
  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 (.*)"
2171
  msgstr ""
2172
 
2173
+ #: admin/manage-fields.php:193
2174
  msgid "Avatar Size"
2175
  msgstr ""
2176
 
2177
+ #: admin/manage-fields.php:193
2178
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2179
  msgstr ""
2180
 
2181
+ #: admin/manage-fields.php:194
2182
  msgid "Date-format"
2183
  msgstr ""
2184
 
2185
+ #: admin/manage-fields.php:194
2186
  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, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy"
2187
  msgstr ""
2188
 
2189
+ #: admin/manage-fields.php:195
2190
  msgid "Terms of Agreement"
2191
  msgstr ""
2192
 
2193
+ #: admin/manage-fields.php:195
2194
  msgid "Enter a detailed description of the terms 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;"
2195
  msgstr ""
2196
 
2197
+ #: admin/manage-fields.php:196
2198
  msgid "Options"
2199
  msgstr ""
2200
 
2201
+ #: admin/manage-fields.php:196
2202
  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"
2203
  msgstr ""
2204
 
2205
+ #: admin/manage-fields.php:197
2206
  msgid "Labels"
2207
  msgstr ""
2208
 
2209
+ #: admin/manage-fields.php:197
2210
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
2211
  msgstr ""
2212
 
2213
+ #: admin/manage-fields.php:198
2214
  msgid "reCAPTCHA Type"
2215
  msgstr ""
2216
 
2217
+ #: admin/manage-fields.php:198
2218
  msgid "Choose the <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\">type of reCAPTCHA</a> you wish to add to this site.<br/>Please note that the Invisible reCAPTCHA is a type of reCAPTCHA v2."
2219
  msgstr ""
2220
 
2221
+ #: admin/manage-fields.php:199
2222
  msgid "Site Key"
2223
  msgstr ""
2224
 
2225
+ #: admin/manage-fields.php:199
2226
  msgid "The site key from Google, <a href=\"https://www.google.com/recaptcha/admin/create\" target=\"_blank\">https://www.google.com/recaptcha/admin/create</a>"
2227
  msgstr ""
2228
 
2229
+ #: admin/manage-fields.php:200
2230
  msgid "Secret Key"
2231
  msgstr ""
2232
 
2233
+ #: admin/manage-fields.php:200
2234
  msgid "The secret key from Google, <a href=\"https://www.google.com/recaptcha/admin/create\" target=\"_blank\">https://www.google.com/recaptcha/admin/create</a>"
2235
  msgstr ""
2236
 
2237
+ #: admin/manage-fields.php:201
2238
  msgid "Display on PB forms"
2239
  msgstr ""
2240
 
2241
+ #: admin/manage-fields.php:201
2242
  msgid "PB Login"
2243
  msgstr ""
2244
 
2245
+ #: admin/manage-fields.php:201
2246
  msgid "PB Register"
2247
  msgstr ""
2248
 
2249
+ #: admin/manage-fields.php:201
2250
  msgid "PB Recover Password"
2251
  msgstr ""
2252
 
2253
+ #: admin/manage-fields.php:201
2254
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
2255
  msgstr ""
2256
 
2257
+ #: admin/manage-fields.php:202
2258
  msgid "Display on default WP forms"
2259
  msgstr ""
2260
 
2261
+ #: admin/manage-fields.php:202
2262
  msgid "Default WP Login"
2263
  msgstr ""
2264
 
2265
+ #: admin/manage-fields.php:202
2266
  msgid "Default WP Register"
2267
  msgstr ""
2268
 
2269
+ #: admin/manage-fields.php:202
2270
  msgid "Default WP Recover Password"
2271
  msgstr ""
2272
 
2273
+ #: admin/manage-fields.php:202
2274
  msgid "Select on which default WP forms to display reCAPTCHA"
2275
  msgstr ""
2276
 
2277
+ #: admin/manage-fields.php:203
2278
  msgid "User Roles"
2279
  msgstr ""
2280
 
2281
+ #: admin/manage-fields.php:203
2282
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
2283
  msgstr ""
2284
 
2285
+ #: admin/manage-fields.php:204
2286
  msgid "Display on Edit Profile"
2287
  msgstr ""
2288
 
2289
+ #: admin/manage-fields.php:204
2290
  msgid "Check if you want the select user role field to appear on Edit Profile forms"
2291
  msgstr ""
2292
 
2293
+ #: admin/manage-fields.php:205
2294
  msgid "User Roles Order"
2295
  msgstr ""
2296
 
2297
+ #: admin/manage-fields.php:205
2298
  msgid "Save the user role order from the user roles checkboxes"
2299
  msgstr ""
2300
 
2301
+ #: admin/manage-fields.php:206
2302
  msgid "Default Value"
2303
  msgstr ""
2304
 
2305
+ #: admin/manage-fields.php:206
2306
  msgid "Default value of the field"
2307
  msgstr ""
2308
 
2309
+ #: admin/manage-fields.php:207, admin/manage-fields.php:209, admin/manage-fields.php:210, admin/manage-fields.php:211
2310
  msgid "Default Option"
2311
  msgstr ""
2312
 
2313
+ #: admin/manage-fields.php:207
2314
  msgid "Specify the option which should be selected by default"
2315
  msgstr ""
2316
 
2317
+ #: admin/manage-fields.php:208
2318
  msgid "Default Option(s)"
2319
  msgstr ""
2320
 
2321
+ #: admin/manage-fields.php:208
2322
  msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2323
  msgstr ""
2324
 
2325
+ #: admin/manage-fields.php:209, admin/manage-fields.php:210, admin/manage-fields.php:211
2326
  msgid "Default option of the field"
2327
  msgstr ""
2328
 
2329
+ #: admin/manage-fields.php:212
2330
  msgid "Show Currency Symbol"
2331
  msgstr ""
2332
 
2333
+ #: admin/manage-fields.php:212
2334
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
2335
  msgstr ""
2336
 
2337
+ #: admin/manage-fields.php:213
2338
  msgid "Show Post Type"
2339
  msgstr ""
2340
 
2341
+ #: admin/manage-fields.php:213
2342
  msgid "Posts from what post type will be displayed in the select."
2343
  msgstr ""
2344
 
2345
+ #: admin/manage-fields.php:214
2346
  msgid "Allowable Values"
2347
  msgstr ""
2348
 
2349
+ #: admin/manage-fields.php:214
2350
  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."
2351
  msgstr ""
2352
 
2353
+ #: admin/manage-fields.php:215
2354
  msgid "Error Message"
2355
  msgstr ""
2356
 
2357
+ #: admin/manage-fields.php:215
2358
  msgid "Set a custom error message that will be displayed to the user."
2359
  msgstr ""
2360
 
2361
+ #: admin/manage-fields.php:216
2362
  msgid "Time Format"
2363
  msgstr ""
2364
 
2365
+ #: admin/manage-fields.php:216
2366
  msgid "Specify the time format."
2367
  msgstr ""
2368
 
2369
+ #: admin/manage-fields.php:217
2370
  msgid "Google Maps API Key"
2371
  msgstr ""
2372
 
2373
+ #: admin/manage-fields.php:217
2374
  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."
2375
  msgstr ""
2376
 
2377
+ #: admin/manage-fields.php:222
2378
  msgid "Default Latitude"
2379
  msgstr ""
2380
 
2381
+ #: admin/manage-fields.php:223
2382
  msgid "The latitude at which the map should be displayed when no pins are attached."
2383
  msgstr ""
2384
 
2385
+ #: admin/manage-fields.php:229
2386
  msgid "Default Longitude"
2387
  msgstr ""
2388
 
2389
+ #: admin/manage-fields.php:230
2390
  msgid "The longitude at which the map should be displayed when no pins are attached."
2391
  msgstr ""
2392
 
2393
+ #: admin/manage-fields.php:236
2394
  msgid "Default Zoom Level"
2395
  msgstr ""
2396
 
2397
+ #: admin/manage-fields.php:237
2398
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
2399
  msgstr ""
2400
 
2401
+ #: admin/manage-fields.php:241
2402
  msgid "Map Height"
2403
  msgstr ""
2404
 
2405
+ #: admin/manage-fields.php:241
2406
  msgid "The height of the map."
2407
  msgstr ""
2408
 
2409
+ #: admin/manage-fields.php:242
2410
  msgid "Default Content"
2411
  msgstr ""
2412
 
2413
+ #: admin/manage-fields.php:242
2414
  msgid "Default value of the textarea"
2415
  msgstr ""
2416
 
2417
+ #: admin/manage-fields.php:243
2418
  msgid "HTML Content"
2419
  msgstr ""
2420
 
2421
+ #: admin/manage-fields.php:243
2422
  msgid "Add your HTML (or text) content"
2423
  msgstr ""
2424
 
2425
+ #: admin/manage-fields.php:244
2426
  msgid "Phone Format"
2427
  msgstr ""
2428
 
2429
+ #: admin/manage-fields.php:244
2430
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
2431
  msgstr ""
2432
 
2433
+ #: admin/manage-fields.php:244
2434
  msgid "Eg. (###) ###-####"
2435
  msgstr ""
2436
 
2437
+ #: admin/manage-fields.php:244
2438
  msgid "Empty field won't check for correct phone number."
2439
  msgstr ""
2440
 
2441
+ #: admin/manage-fields.php:245
2442
  msgid "Heading Tag"
2443
  msgstr ""
2444
 
2445
+ #: admin/manage-fields.php:245
2446
  msgid "Change heading field size on front-end forms"
2447
  msgstr ""
2448
 
2449
+ #: admin/manage-fields.php:246
2450
  msgid "Min Number Value"
2451
  msgstr ""
2452
 
2453
+ #: admin/manage-fields.php:246
2454
  msgid "Min allowed number value (0 to allow only positive numbers)"
2455
  msgstr ""
2456
 
2457
+ #: admin/manage-fields.php:246
2458
  msgid "Leave it empty for no min value"
2459
  msgstr ""
2460
 
2461
+ #: admin/manage-fields.php:247
2462
  msgid "Max Number Value"
2463
  msgstr ""
2464
 
2465
+ #: admin/manage-fields.php:247
2466
  msgid "Max allowed number value (0 to allow only negative numbers)"
2467
  msgstr ""
2468
 
2469
+ #: admin/manage-fields.php:247
2470
  msgid "Leave it empty for no max value"
2471
  msgstr ""
2472
 
2473
+ #: admin/manage-fields.php:248
2474
  msgid "Number Step Value"
2475
  msgstr ""
2476
 
2477
+ #: admin/manage-fields.php:248
2478
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
2479
  msgstr ""
2480
 
2481
+ #: admin/manage-fields.php:248
2482
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
2483
  msgstr ""
2484
 
2485
+ #: admin/manage-fields.php:248
2486
  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)"
2487
  msgstr ""
2488
 
2489
+ #: admin/manage-fields.php:248
2490
  msgid "Leave it empty for no restriction"
2491
  msgstr ""
2492
 
2493
+ #: admin/manage-fields.php:249
2494
  msgid "Whether the field is required or not"
2495
  msgstr ""
2496
 
2497
+ #: admin/manage-fields.php:250
2498
  msgid "Overwrite Existing"
2499
  msgstr ""
2500
 
2501
+ #: admin/manage-fields.php:250
2502
  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"
2503
  msgstr ""
2504
 
2505
+ #: admin/manage-fields.php:256
2506
  msgid "POIs Load Type"
2507
  msgstr ""
2508
 
2509
+ #: admin/manage-fields.php:258
2510
  msgid "POIs of the listed users (as filtered & paginated)"
2511
  msgstr ""
2512
 
2513
+ #: admin/manage-fields.php:259
2514
  msgid "POIs of all the users for the filter* (no pagination)"
2515
  msgstr ""
2516
 
2517
+ #: admin/manage-fields.php:262
2518
  msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
2519
  msgstr ""
2520
 
2521
+ #: admin/manage-fields.php:269
2522
  msgid "POI Bubble Info"
2523
  msgstr ""
2524
 
2525
+ #: admin/manage-fields.php:272
2526
  msgid "Select the attributes to be listed inside the POI bubble."
2527
  msgstr ""
2528
 
2529
+ #: admin/manage-fields.php:283
2530
  msgid "Number of Users per Map Iteration"
2531
  msgstr ""
2532
 
2533
+ #: admin/manage-fields.php:284
2534
  msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
2535
  msgstr ""
2536
 
2537
+ #: admin/manage-fields.php:289
2538
  msgid "Maximum Selections"
2539
  msgstr ""
2540
 
2541
+ #: admin/manage-fields.php:289
2542
  msgid "Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected."
2543
  msgstr ""
2544
 
2545
+ #: admin/manage-fields.php:290
2546
  msgid "User Inputted Options"
2547
  msgstr ""
2548
 
2549
+ #: admin/manage-fields.php:290
2550
  msgid "Check this to allow users to create their own options beside the pre-existing ones."
2551
  msgstr ""
2552
 
2553
+ #: admin/manage-fields.php:297
2554
  msgid "Form Field Properties"
2555
  msgstr ""
2556
 
2557
+ #: admin/manage-fields.php:311
2558
  msgid "Registration & Edit Profile Forms"
2559
  msgstr ""
2560
 
2561
+ #: admin/manage-fields.php:331
2562
  msgid "Usernames cannot be changed."
2563
  msgstr ""
2564
 
2565
+ #: admin/manage-fields.php:334, add-ons/user-listing/userlisting.php:867, add-ons/user-listing/userlisting.php:2413
2566
  msgid "Nickname"
2567
  msgstr ""
2568
 
2569
+ #: admin/manage-fields.php:335
2570
  msgid "Display name publicly as"
2571
  msgstr ""
2572
 
2573
+ #: admin/manage-fields.php:337
2574
  msgid "E-mail"
2575
  msgstr ""
2576
 
2577
+ #: admin/manage-fields.php:338, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:849, add-ons/user-listing/userlisting.php:2407
2578
  msgid "Website"
2579
  msgstr ""
2580
 
2581
+ #: admin/manage-fields.php:342
2582
  msgid "AIM"
2583
  msgstr ""
2584
 
2585
+ #: admin/manage-fields.php:343
2586
  msgid "Yahoo IM"
2587
  msgstr ""
2588
 
2589
+ #: admin/manage-fields.php:344
2590
  msgid "Jabber / Google Talk"
2591
  msgstr ""
2592
 
2593
+ #: admin/manage-fields.php:348, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:852, add-ons/user-listing/userlisting.php:2408
2594
  msgid "Biographical Info"
2595
  msgstr ""
2596
 
2597
+ #: admin/manage-fields.php:348
2598
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2599
  msgstr ""
2600
 
2601
+ #: admin/manage-fields.php:349, front-end/login.php:108, front-end/recover.php:72, add-ons/email-customizer/email-customizer.php:30
2602
  msgid "Password"
2603
  msgstr ""
2604
 
2605
+ #: admin/manage-fields.php:349
2606
  msgid "Type your password."
2607
  msgstr ""
2608
 
2609
+ #: admin/manage-fields.php:350, front-end/recover.php:73
2610
  msgid "Repeat Password"
2611
  msgstr ""
2612
 
2613
+ #: admin/manage-fields.php:350
2614
  msgid "Type your password again. "
2615
  msgstr ""
2616
 
2617
+ #: admin/manage-fields.php:352
2618
  msgid "Blog Details"
2619
  msgstr ""
2620
 
2621
+ #: admin/manage-fields.php:411
2622
  msgid "Select a Country"
2623
  msgstr ""
2624
 
2625
+ #: admin/manage-fields.php:412
2626
  msgid "Afghanistan"
2627
  msgstr ""
2628
 
2629
+ #: admin/manage-fields.php:413
2630
  msgid "Aland Islands"
2631
  msgstr ""
2632
 
2633
+ #: admin/manage-fields.php:414
2634
  msgid "Albania"
2635
  msgstr ""
2636
 
2637
+ #: admin/manage-fields.php:415
2638
  msgid "Algeria"
2639
  msgstr ""
2640
 
2641
+ #: admin/manage-fields.php:416
2642
  msgid "American Samoa"
2643
  msgstr ""
2644
 
2645
+ #: admin/manage-fields.php:417
2646
  msgid "Andorra"
2647
  msgstr ""
2648
 
2649
+ #: admin/manage-fields.php:418
2650
  msgid "Angola"
2651
  msgstr ""
2652
 
2653
+ #: admin/manage-fields.php:419
2654
  msgid "Anguilla"
2655
  msgstr ""
2656
 
2657
+ #: admin/manage-fields.php:420
2658
  msgid "Antarctica"
2659
  msgstr ""
2660
 
2661
+ #: admin/manage-fields.php:421
2662
  msgid "Antigua and Barbuda"
2663
  msgstr ""
2664
 
2665
+ #: admin/manage-fields.php:422
2666
  msgid "Argentina"
2667
  msgstr ""
2668
 
2669
+ #: admin/manage-fields.php:423
2670
  msgid "Armenia"
2671
  msgstr ""
2672
 
2673
+ #: admin/manage-fields.php:424
2674
  msgid "Aruba"
2675
  msgstr ""
2676
 
2677
+ #: admin/manage-fields.php:425
2678
  msgid "Australia"
2679
  msgstr ""
2680
 
2681
+ #: admin/manage-fields.php:426
2682
  msgid "Austria"
2683
  msgstr ""
2684
 
2685
+ #: admin/manage-fields.php:427
2686
  msgid "Azerbaijan"
2687
  msgstr ""
2688
 
2689
+ #: admin/manage-fields.php:428
2690
  msgid "Bahamas"
2691
  msgstr ""
2692
 
2693
+ #: admin/manage-fields.php:429
2694
  msgid "Bahrain"
2695
  msgstr ""
2696
 
2697
+ #: admin/manage-fields.php:430
2698
  msgid "Bangladesh"
2699
  msgstr ""
2700
 
2701
+ #: admin/manage-fields.php:431
2702
  msgid "Barbados"
2703
  msgstr ""
2704
 
2705
+ #: admin/manage-fields.php:432
2706
  msgid "Belarus"
2707
  msgstr ""
2708
 
2709
+ #: admin/manage-fields.php:433
2710
  msgid "Belgium"
2711
  msgstr ""
2712
 
2713
+ #: admin/manage-fields.php:434
2714
  msgid "Belize"
2715
  msgstr ""
2716
 
2717
+ #: admin/manage-fields.php:435
2718
  msgid "Benin"
2719
  msgstr ""
2720
 
2721
+ #: admin/manage-fields.php:436
2722
  msgid "Bermuda"
2723
  msgstr ""
2724
 
2725
+ #: admin/manage-fields.php:437
2726
  msgid "Bhutan"
2727
  msgstr ""
2728
 
2729
+ #: admin/manage-fields.php:438
2730
  msgid "Bolivia"
2731
  msgstr ""
2732
 
2733
+ #: admin/manage-fields.php:439
2734
  msgid "Bonaire, Saint Eustatius and Saba"
2735
  msgstr ""
2736
 
2737
+ #: admin/manage-fields.php:440
2738
  msgid "Bosnia and Herzegovina"
2739
  msgstr ""
2740
 
2741
+ #: admin/manage-fields.php:441
2742
  msgid "Botswana"
2743
  msgstr ""
2744
 
2745
+ #: admin/manage-fields.php:442
2746
  msgid "Bouvet Island"
2747
  msgstr ""
2748
 
2749
+ #: admin/manage-fields.php:443
2750
  msgid "Brazil"
2751
  msgstr ""
2752
 
2753
+ #: admin/manage-fields.php:444
2754
  msgid "British Indian Ocean Territory"
2755
  msgstr ""
2756
 
2757
+ #: admin/manage-fields.php:445
2758
  msgid "British Virgin Islands"
2759
  msgstr ""
2760
 
2761
+ #: admin/manage-fields.php:446
2762
  msgid "Brunei"
2763
  msgstr ""
2764
 
2765
+ #: admin/manage-fields.php:447
2766
  msgid "Bulgaria"
2767
  msgstr ""
2768
 
2769
+ #: admin/manage-fields.php:448
2770
  msgid "Burkina Faso"
2771
  msgstr ""
2772
 
2773
+ #: admin/manage-fields.php:449
2774
  msgid "Burundi"
2775
  msgstr ""
2776
 
2777
+ #: admin/manage-fields.php:450
2778
  msgid "Cambodia"
2779
  msgstr ""
2780
 
2781
+ #: admin/manage-fields.php:451
2782
  msgid "Cameroon"
2783
  msgstr ""
2784
 
2785
+ #: admin/manage-fields.php:452
2786
  msgid "Canada"
2787
  msgstr ""
2788
 
2789
+ #: admin/manage-fields.php:453
2790
  msgid "Cape Verde"
2791
  msgstr ""
2792
 
2793
+ #: admin/manage-fields.php:454
2794
  msgid "Cayman Islands"
2795
  msgstr ""
2796
 
2797
+ #: admin/manage-fields.php:455
2798
  msgid "Central African Republic"
2799
  msgstr ""
2800
 
2801
+ #: admin/manage-fields.php:456
2802
  msgid "Chad"
2803
  msgstr ""
2804
 
2805
+ #: admin/manage-fields.php:457
2806
  msgid "Chile"
2807
  msgstr ""
2808
 
2809
+ #: admin/manage-fields.php:458
2810
  msgid "China"
2811
  msgstr ""
2812
 
2813
+ #: admin/manage-fields.php:459
2814
  msgid "Christmas Island"
2815
  msgstr ""
2816
 
2817
+ #: admin/manage-fields.php:460
2818
  msgid "Cocos Islands"
2819
  msgstr ""
2820
 
2821
+ #: admin/manage-fields.php:461
2822
  msgid "Colombia"
2823
  msgstr ""
2824
 
2825
+ #: admin/manage-fields.php:462
2826
  msgid "Comoros"
2827
  msgstr ""
2828
 
2829
+ #: admin/manage-fields.php:463
2830
  msgid "Cook Islands"
2831
  msgstr ""
2832
 
2833
+ #: admin/manage-fields.php:464
2834
  msgid "Costa Rica"
2835
  msgstr ""
2836
 
2837
+ #: admin/manage-fields.php:465
2838
  msgid "Croatia"
2839
  msgstr ""
2840
 
2841
+ #: admin/manage-fields.php:466
2842
  msgid "Cuba"
2843
  msgstr ""
2844
 
2845
+ #: admin/manage-fields.php:467
2846
  msgid "Curacao"
2847
  msgstr ""
2848
 
2849
+ #: admin/manage-fields.php:468
2850
  msgid "Cyprus"
2851
  msgstr ""
2852
 
2853
+ #: admin/manage-fields.php:469
2854
  msgid "Czech Republic"
2855
  msgstr ""
2856
 
2857
+ #: admin/manage-fields.php:470
2858
  msgid "Democratic Republic of the Congo"
2859
  msgstr ""
2860
 
2861
+ #: admin/manage-fields.php:471
2862
  msgid "Denmark"
2863
  msgstr ""
2864
 
2865
+ #: admin/manage-fields.php:472
2866
  msgid "Djibouti"
2867
  msgstr ""
2868
 
2869
+ #: admin/manage-fields.php:473
2870
  msgid "Dominica"
2871
  msgstr ""
2872
 
2873
+ #: admin/manage-fields.php:474
2874
  msgid "Dominican Republic"
2875
  msgstr ""
2876
 
2877
+ #: admin/manage-fields.php:475
2878
  msgid "East Timor"
2879
  msgstr ""
2880
 
2881
+ #: admin/manage-fields.php:476
2882
  msgid "Ecuador"
2883
  msgstr ""
2884
 
2885
+ #: admin/manage-fields.php:477
2886
  msgid "Egypt"
2887
  msgstr ""
2888
 
2889
+ #: admin/manage-fields.php:478
2890
  msgid "El Salvador"
2891
  msgstr ""
2892
 
2893
+ #: admin/manage-fields.php:479
2894
  msgid "Equatorial Guinea"
2895
  msgstr ""
2896
 
2897
+ #: admin/manage-fields.php:480
2898
  msgid "Eritrea"
2899
  msgstr ""
2900
 
2901
+ #: admin/manage-fields.php:481
2902
  msgid "Estonia"
2903
  msgstr ""
2904
 
2905
+ #: admin/manage-fields.php:482
2906
  msgid "Ethiopia"
2907
  msgstr ""
2908
 
2909
+ #: admin/manage-fields.php:483
2910
  msgid "Falkland Islands"
2911
  msgstr ""
2912
 
2913
+ #: admin/manage-fields.php:484
2914
  msgid "Faroe Islands"
2915
  msgstr ""
2916
 
2917
+ #: admin/manage-fields.php:485
2918
  msgid "Fiji"
2919
  msgstr ""
2920
 
2921
+ #: admin/manage-fields.php:486
2922
  msgid "Finland"
2923
  msgstr ""
2924
 
2925
+ #: admin/manage-fields.php:487
2926
  msgid "France"
2927
  msgstr ""
2928
 
2929
+ #: admin/manage-fields.php:488
2930
  msgid "French Guiana"
2931
  msgstr ""
2932
 
2933
+ #: admin/manage-fields.php:489
2934
  msgid "French Polynesia"
2935
  msgstr ""
2936
 
2937
+ #: admin/manage-fields.php:490
2938
  msgid "French Southern Territories"
2939
  msgstr ""
2940
 
2941
+ #: admin/manage-fields.php:491
2942
  msgid "Gabon"
2943
  msgstr ""
2944
 
2945
+ #: admin/manage-fields.php:492
2946
  msgid "Gambia"
2947
  msgstr ""
2948
 
2949
+ #: admin/manage-fields.php:493
2950
  msgid "Georgia"
2951
  msgstr ""
2952
 
2953
+ #: admin/manage-fields.php:494
2954
  msgid "Germany"
2955
  msgstr ""
2956
 
2957
+ #: admin/manage-fields.php:495
2958
  msgid "Ghana"
2959
  msgstr ""
2960
 
2961
+ #: admin/manage-fields.php:496
2962
  msgid "Gibraltar"
2963
  msgstr ""
2964
 
2965
+ #: admin/manage-fields.php:497
2966
  msgid "Greece"
2967
  msgstr ""
2968
 
2969
+ #: admin/manage-fields.php:498
2970
  msgid "Greenland"
2971
  msgstr ""
2972
 
2973
+ #: admin/manage-fields.php:499
2974
  msgid "Grenada"
2975
  msgstr ""
2976
 
2977
+ #: admin/manage-fields.php:500
2978
  msgid "Guadeloupe"
2979
  msgstr ""
2980
 
2981
+ #: admin/manage-fields.php:501
2982
  msgid "Guam"
2983
  msgstr ""
2984
 
2985
+ #: admin/manage-fields.php:502
2986
  msgid "Guatemala"
2987
  msgstr ""
2988
 
2989
+ #: admin/manage-fields.php:503
2990
  msgid "Guernsey"
2991
  msgstr ""
2992
 
2993
+ #: admin/manage-fields.php:504
2994
  msgid "Guinea"
2995
  msgstr ""
2996
 
2997
+ #: admin/manage-fields.php:505
2998
  msgid "Guinea-Bissau"
2999
  msgstr ""
3000
 
3001
+ #: admin/manage-fields.php:506
3002
  msgid "Guyana"
3003
  msgstr ""
3004
 
3005
+ #: admin/manage-fields.php:507
3006
  msgid "Haiti"
3007
  msgstr ""
3008
 
3009
+ #: admin/manage-fields.php:508
3010
  msgid "Heard Island and McDonald Islands"
3011
  msgstr ""
3012
 
3013
+ #: admin/manage-fields.php:509
3014
  msgid "Honduras"
3015
  msgstr ""
3016
 
3017
+ #: admin/manage-fields.php:510
3018
  msgid "Hong Kong"
3019
  msgstr ""
3020
 
3021
+ #: admin/manage-fields.php:511
3022
  msgid "Hungary"
3023
  msgstr ""
3024
 
3025
+ #: admin/manage-fields.php:512
3026
  msgid "Iceland"
3027
  msgstr ""
3028
 
3029
+ #: admin/manage-fields.php:513
3030
  msgid "India"
3031
  msgstr ""
3032
 
3033
+ #: admin/manage-fields.php:514
3034
  msgid "Indonesia"
3035
  msgstr ""
3036
 
3037
+ #: admin/manage-fields.php:515
3038
  msgid "Iran"
3039
  msgstr ""
3040
 
3041
+ #: admin/manage-fields.php:516
3042
  msgid "Iraq"
3043
  msgstr ""
3044
 
3045
+ #: admin/manage-fields.php:517
3046
  msgid "Ireland"
3047
  msgstr ""
3048
 
3049
+ #: admin/manage-fields.php:518
3050
  msgid "Isle of Man"
3051
  msgstr ""
3052
 
3053
+ #: admin/manage-fields.php:519
3054
  msgid "Israel"
3055
  msgstr ""
3056
 
3057
+ #: admin/manage-fields.php:520
3058
  msgid "Italy"
3059
  msgstr ""
3060
 
3061
+ #: admin/manage-fields.php:521
3062
  msgid "Ivory Coast"
3063
  msgstr ""
3064
 
3065
+ #: admin/manage-fields.php:522
3066
  msgid "Jamaica"
3067
  msgstr ""
3068
 
3069
+ #: admin/manage-fields.php:523
3070
  msgid "Japan"
3071
  msgstr ""
3072
 
3073
+ #: admin/manage-fields.php:524
3074
  msgid "Jersey"
3075
  msgstr ""
3076
 
3077
+ #: admin/manage-fields.php:525
3078
  msgid "Jordan"
3079
  msgstr ""
3080
 
3081
+ #: admin/manage-fields.php:526
3082
  msgid "Kazakhstan"
3083
  msgstr ""
3084
 
3085
+ #: admin/manage-fields.php:527
3086
  msgid "Kenya"
3087
  msgstr ""
3088
 
3089
+ #: admin/manage-fields.php:528
3090
  msgid "Kiribati"
3091
  msgstr ""
3092
 
3093
+ #: admin/manage-fields.php:529
3094
  msgid "Kosovo"
3095
  msgstr ""
3096
 
3097
+ #: admin/manage-fields.php:530
3098
  msgid "Kuwait"
3099
  msgstr ""
3100
 
3101
+ #: admin/manage-fields.php:531
3102
  msgid "Kyrgyzstan"
3103
  msgstr ""
3104
 
3105
+ #: admin/manage-fields.php:532
3106
  msgid "Laos"
3107
  msgstr ""
3108
 
3109
+ #: admin/manage-fields.php:533
3110
  msgid "Latvia"
3111
  msgstr ""
3112
 
3113
+ #: admin/manage-fields.php:534
3114
  msgid "Lebanon"
3115
  msgstr ""
3116
 
3117
+ #: admin/manage-fields.php:535
3118
  msgid "Lesotho"
3119
  msgstr ""
3120
 
3121
+ #: admin/manage-fields.php:536
3122
  msgid "Liberia"
3123
  msgstr ""
3124
 
3125
+ #: admin/manage-fields.php:537
3126
  msgid "Libya"
3127
  msgstr ""
3128
 
3129
+ #: admin/manage-fields.php:538
3130
  msgid "Liechtenstein"
3131
  msgstr ""
3132
 
3133
+ #: admin/manage-fields.php:539
3134
  msgid "Lithuania"
3135
  msgstr ""
3136
 
3137
+ #: admin/manage-fields.php:540
3138
  msgid "Luxembourg"
3139
  msgstr ""
3140
 
3141
+ #: admin/manage-fields.php:541
3142
  msgid "Macao"
3143
  msgstr ""
3144
 
3145
+ #: admin/manage-fields.php:542
3146
  msgid "Macedonia"
3147
  msgstr ""
3148
 
3149
+ #: admin/manage-fields.php:543
3150
  msgid "Madagascar"
3151
  msgstr ""
3152
 
3153
+ #: admin/manage-fields.php:544
3154
  msgid "Malawi"
3155
  msgstr ""
3156
 
3157
+ #: admin/manage-fields.php:545
3158
  msgid "Malaysia"
3159
  msgstr ""
3160
 
3161
+ #: admin/manage-fields.php:546
3162
  msgid "Maldives"
3163
  msgstr ""
3164
 
3165
+ #: admin/manage-fields.php:547
3166
  msgid "Mali"
3167
  msgstr ""
3168
 
3169
+ #: admin/manage-fields.php:548
3170
  msgid "Malta"
3171
  msgstr ""
3172
 
3173
+ #: admin/manage-fields.php:549
3174
  msgid "Marshall Islands"
3175
  msgstr ""
3176
 
3177
+ #: admin/manage-fields.php:550
3178
  msgid "Martinique"
3179
  msgstr ""
3180
 
3181
+ #: admin/manage-fields.php:551
3182
  msgid "Mauritania"
3183
  msgstr ""
3184
 
3185
+ #: admin/manage-fields.php:552
3186
  msgid "Mauritius"
3187
  msgstr ""
3188
 
3189
+ #: admin/manage-fields.php:553
3190
  msgid "Mayotte"
3191
  msgstr ""
3192
 
3193
+ #: admin/manage-fields.php:554
3194
  msgid "Mexico"
3195
  msgstr ""
3196
 
3197
+ #: admin/manage-fields.php:555
3198
  msgid "Micronesia"
3199
  msgstr ""
3200
 
3201
+ #: admin/manage-fields.php:556
3202
  msgid "Moldova"
3203
  msgstr ""
3204
 
3205
+ #: admin/manage-fields.php:557
3206
  msgid "Monaco"
3207
  msgstr ""
3208
 
3209
+ #: admin/manage-fields.php:558
3210
  msgid "Mongolia"
3211
  msgstr ""
3212
 
3213
+ #: admin/manage-fields.php:559
3214
  msgid "Montenegro"
3215
  msgstr ""
3216
 
3217
+ #: admin/manage-fields.php:560
3218
  msgid "Montserrat"
3219
  msgstr ""
3220
 
3221
+ #: admin/manage-fields.php:561
3222
  msgid "Morocco"
3223
  msgstr ""
3224
 
3225
+ #: admin/manage-fields.php:562
3226
  msgid "Mozambique"
3227
  msgstr ""
3228
 
3229
+ #: admin/manage-fields.php:563
3230
  msgid "Myanmar"
3231
  msgstr ""
3232
 
3233
+ #: admin/manage-fields.php:564
3234
  msgid "Namibia"
3235
  msgstr ""
3236
 
3237
+ #: admin/manage-fields.php:565
3238
  msgid "Nauru"
3239
  msgstr ""
3240
 
3241
+ #: admin/manage-fields.php:566
3242
  msgid "Nepal"
3243
  msgstr ""
3244
 
3245
+ #: admin/manage-fields.php:567
3246
  msgid "Netherlands"
3247
  msgstr ""
3248
 
3249
+ #: admin/manage-fields.php:568
3250
  msgid "New Caledonia"
3251
  msgstr ""
3252
 
3253
+ #: admin/manage-fields.php:569
3254
  msgid "New Zealand"
3255
  msgstr ""
3256
 
3257
+ #: admin/manage-fields.php:570
3258
  msgid "Nicaragua"
3259
  msgstr ""
3260
 
3261
+ #: admin/manage-fields.php:571
3262
  msgid "Niger"
3263
  msgstr ""
3264
 
3265
+ #: admin/manage-fields.php:572
3266
  msgid "Nigeria"
3267
  msgstr ""
3268
 
3269
+ #: admin/manage-fields.php:573
3270
  msgid "Niue"
3271
  msgstr ""
3272
 
3273
+ #: admin/manage-fields.php:574
3274
  msgid "Norfolk Island"
3275
  msgstr ""
3276
 
3277
+ #: admin/manage-fields.php:575
3278
  msgid "North Korea"
3279
  msgstr ""
3280
 
3281
+ #: admin/manage-fields.php:576
3282
  msgid "Northern Mariana Islands"
3283
  msgstr ""
3284
 
3285
+ #: admin/manage-fields.php:577
3286
  msgid "Norway"
3287
  msgstr ""
3288
 
3289
+ #: admin/manage-fields.php:578
3290
  msgid "Oman"
3291
  msgstr ""
3292
 
3293
+ #: admin/manage-fields.php:579
3294
  msgid "Pakistan"
3295
  msgstr ""
3296
 
3297
+ #: admin/manage-fields.php:580
3298
  msgid "Palau"
3299
  msgstr ""
3300
 
3301
+ #: admin/manage-fields.php:581
3302
  msgid "Palestinian Territory"
3303
  msgstr ""
3304
 
3305
+ #: admin/manage-fields.php:582
3306
  msgid "Panama"
3307
  msgstr ""
3308
 
3309
+ #: admin/manage-fields.php:583
3310
  msgid "Papua New Guinea"
3311
  msgstr ""
3312
 
3313
+ #: admin/manage-fields.php:584
3314
  msgid "Paraguay"
3315
  msgstr ""
3316
 
3317
+ #: admin/manage-fields.php:585
3318
  msgid "Peru"
3319
  msgstr ""
3320
 
3321
+ #: admin/manage-fields.php:586
3322
  msgid "Philippines"
3323
  msgstr ""
3324
 
3325
+ #: admin/manage-fields.php:587
3326
  msgid "Pitcairn"
3327
  msgstr ""
3328
 
3329
+ #: admin/manage-fields.php:588
3330
  msgid "Poland"
3331
  msgstr ""
3332
 
3333
+ #: admin/manage-fields.php:589
3334
  msgid "Portugal"
3335
  msgstr ""
3336
 
3337
+ #: admin/manage-fields.php:590
3338
  msgid "Puerto Rico"
3339
  msgstr ""
3340
 
3341
+ #: admin/manage-fields.php:591
3342
  msgid "Qatar"
3343
  msgstr ""
3344
 
3345
+ #: admin/manage-fields.php:592
3346
  msgid "Republic of the Congo"
3347
  msgstr ""
3348
 
3349
+ #: admin/manage-fields.php:593
3350
  msgid "Reunion"
3351
  msgstr ""
3352
 
3353
+ #: admin/manage-fields.php:594
3354
  msgid "Romania"
3355
  msgstr ""
3356
 
3357
+ #: admin/manage-fields.php:595
3358
  msgid "Russia"
3359
  msgstr ""
3360
 
3361
+ #: admin/manage-fields.php:596
3362
  msgid "Rwanda"
3363
  msgstr ""
3364
 
3365
+ #: admin/manage-fields.php:597
3366
  msgid "Saint Barthelemy"
3367
  msgstr ""
3368
 
3369
+ #: admin/manage-fields.php:598
3370
  msgid "Saint Helena"
3371
  msgstr ""
3372
 
3373
+ #: admin/manage-fields.php:599
3374
  msgid "Saint Kitts and Nevis"
3375
  msgstr ""
3376
 
3377
+ #: admin/manage-fields.php:600
3378
  msgid "Saint Lucia"
3379
  msgstr ""
3380
 
3381
+ #: admin/manage-fields.php:601
3382
  msgid "Saint Martin"
3383
  msgstr ""
3384
 
3385
+ #: admin/manage-fields.php:602
3386
  msgid "Saint Pierre and Miquelon"
3387
  msgstr ""
3388
 
3389
+ #: admin/manage-fields.php:603
3390
  msgid "Saint Vincent and the Grenadines"
3391
  msgstr ""
3392
 
3393
+ #: admin/manage-fields.php:604
3394
  msgid "Samoa"
3395
  msgstr ""
3396
 
3397
+ #: admin/manage-fields.php:605
3398
  msgid "San Marino"
3399
  msgstr ""
3400
 
3401
+ #: admin/manage-fields.php:606
3402
  msgid "Sao Tome and Principe"
3403
  msgstr ""
3404
 
3405
+ #: admin/manage-fields.php:607
3406
  msgid "Saudi Arabia"
3407
  msgstr ""
3408
 
3409
+ #: admin/manage-fields.php:608
3410
  msgid "Senegal"
3411
  msgstr ""
3412
 
3413
+ #: admin/manage-fields.php:609
3414
  msgid "Serbia"
3415
  msgstr ""
3416
 
3417
+ #: admin/manage-fields.php:610
3418
  msgid "Seychelles"
3419
  msgstr ""
3420
 
3421
+ #: admin/manage-fields.php:611
3422
  msgid "Sierra Leone"
3423
  msgstr ""
3424
 
3425
+ #: admin/manage-fields.php:612
3426
  msgid "Singapore"
3427
  msgstr ""
3428
 
3429
+ #: admin/manage-fields.php:613
3430
  msgid "Sint Maarten"
3431
  msgstr ""
3432
 
3433
+ #: admin/manage-fields.php:614
3434
  msgid "Slovakia"
3435
  msgstr ""
3436
 
3437
+ #: admin/manage-fields.php:615
3438
  msgid "Slovenia"
3439
  msgstr ""
3440
 
3441
+ #: admin/manage-fields.php:616
3442
  msgid "Solomon Islands"
3443
  msgstr ""
3444
 
3445
+ #: admin/manage-fields.php:617
3446
  msgid "Somalia"
3447
  msgstr ""
3448
 
3449
+ #: admin/manage-fields.php:618
3450
  msgid "South Africa"
3451
  msgstr ""
3452
 
3453
+ #: admin/manage-fields.php:619
3454
  msgid "South Georgia and the South Sandwich Islands"
3455
  msgstr ""
3456
 
3457
+ #: admin/manage-fields.php:620
3458
  msgid "South Korea"
3459
  msgstr ""
3460
 
3461
+ #: admin/manage-fields.php:621
3462
  msgid "South Sudan"
3463
  msgstr ""
3464
 
3465
+ #: admin/manage-fields.php:622
3466
  msgid "Spain"
3467
  msgstr ""
3468
 
3469
+ #: admin/manage-fields.php:623
3470
  msgid "Sri Lanka"
3471
  msgstr ""
3472
 
3473
+ #: admin/manage-fields.php:624
3474
  msgid "Sudan"
3475
  msgstr ""
3476
 
3477
+ #: admin/manage-fields.php:625
3478
  msgid "Suriname"
3479
  msgstr ""
3480
 
3481
+ #: admin/manage-fields.php:626
3482
  msgid "Svalbard and Jan Mayen"
3483
  msgstr ""
3484
 
3485
+ #: admin/manage-fields.php:627
3486
  msgid "Swaziland"
3487
  msgstr ""
3488
 
3489
+ #: admin/manage-fields.php:628
3490
  msgid "Sweden"
3491
  msgstr ""
3492
 
3493
+ #: admin/manage-fields.php:629
3494
  msgid "Switzerland"
3495
  msgstr ""
3496
 
3497
+ #: admin/manage-fields.php:630
3498
  msgid "Syria"
3499
  msgstr ""
3500
 
3501
+ #: admin/manage-fields.php:631
3502
  msgid "Taiwan"
3503
  msgstr ""
3504
 
3505
+ #: admin/manage-fields.php:632
3506
  msgid "Tajikistan"
3507
  msgstr ""
3508
 
3509
+ #: admin/manage-fields.php:633
3510
  msgid "Tanzania"
3511
  msgstr ""
3512
 
3513
+ #: admin/manage-fields.php:634
3514
  msgid "Thailand"
3515
  msgstr ""
3516
 
3517
+ #: admin/manage-fields.php:635
3518
  msgid "Togo"
3519
  msgstr ""
3520
 
3521
+ #: admin/manage-fields.php:636
3522
  msgid "Tokelau"
3523
  msgstr ""
3524
 
3525
+ #: admin/manage-fields.php:637
3526
  msgid "Tonga"
3527
  msgstr ""
3528
 
3529
+ #: admin/manage-fields.php:638
3530
  msgid "Trinidad and Tobago"
3531
  msgstr ""
3532
 
3533
+ #: admin/manage-fields.php:639
3534
  msgid "Tunisia"
3535
  msgstr ""
3536
 
3537
+ #: admin/manage-fields.php:640
3538
  msgid "Turkey"
3539
  msgstr ""
3540
 
3541
+ #: admin/manage-fields.php:641
3542
  msgid "Turkmenistan"
3543
  msgstr ""
3544
 
3545
+ #: admin/manage-fields.php:642
3546
  msgid "Turks and Caicos Islands"
3547
  msgstr ""
3548
 
3549
+ #: admin/manage-fields.php:643
3550
  msgid "Tuvalu"
3551
  msgstr ""
3552
 
3553
+ #: admin/manage-fields.php:644
3554
  msgid "U.S. Virgin Islands"
3555
  msgstr ""
3556
 
3557
+ #: admin/manage-fields.php:645
3558
  msgid "Uganda"
3559
  msgstr ""
3560
 
3561
+ #: admin/manage-fields.php:646
3562
  msgid "Ukraine"
3563
  msgstr ""
3564
 
3565
+ #: admin/manage-fields.php:647
3566
  msgid "United Arab Emirates"
3567
  msgstr ""
3568
 
3569
+ #: admin/manage-fields.php:648
3570
  msgid "United Kingdom"
3571
  msgstr ""
3572
 
3573
+ #: admin/manage-fields.php:649
3574
  msgid "United States"
3575
  msgstr ""
3576
 
3577
+ #: admin/manage-fields.php:650
3578
  msgid "United States Minor Outlying Islands"
3579
  msgstr ""
3580
 
3581
+ #: admin/manage-fields.php:651
3582
  msgid "Uruguay"
3583
  msgstr ""
3584
 
3585
+ #: admin/manage-fields.php:652
3586
  msgid "Uzbekistan"
3587
  msgstr ""
3588
 
3589
+ #: admin/manage-fields.php:653
3590
  msgid "Vanuatu"
3591
  msgstr ""
3592
 
3593
+ #: admin/manage-fields.php:654
3594
  msgid "Vatican"
3595
  msgstr ""
3596
 
3597
+ #: admin/manage-fields.php:655
3598
  msgid "Venezuela"
3599
  msgstr ""
3600
 
3601
+ #: admin/manage-fields.php:656
3602
  msgid "Vietnam"
3603
  msgstr ""
3604
 
3605
+ #: admin/manage-fields.php:657
3606
  msgid "Wallis and Futuna"
3607
  msgstr ""
3608
 
3609
+ #: admin/manage-fields.php:658
3610
  msgid "Western Sahara"
3611
  msgstr ""
3612
 
3613
+ #: admin/manage-fields.php:659
3614
  msgid "Yemen"
3615
  msgstr ""
3616
 
3617
+ #: admin/manage-fields.php:660
3618
  msgid "Zambia"
3619
  msgstr ""
3620
 
3621
+ #: admin/manage-fields.php:661
3622
  msgid "Zimbabwe"
3623
  msgstr ""
3624
 
3625
+ #: admin/manage-fields.php:694
3626
  msgid "Albania Lek"
3627
  msgstr ""
3628
 
3629
+ #: admin/manage-fields.php:695
3630
  msgid "Afghanistan Afghani"
3631
  msgstr ""
3632
 
3633
+ #: admin/manage-fields.php:696
3634
  msgid "Argentina Peso"
3635
  msgstr ""
3636
 
3637
+ #: admin/manage-fields.php:698
3638
  msgid "Australia Dollar"
3639
  msgstr ""
3640
 
3641
+ #: admin/manage-fields.php:699
3642
  msgid "Azerbaijan New Manat"
3643
  msgstr ""
3644
 
3645
+ #: admin/manage-fields.php:700
3646
  msgid "Bahamas Dollar"
3647
  msgstr ""
3648
 
3649
+ #: admin/manage-fields.php:701
3650
  msgid "Barbados Dollar"
3651
  msgstr ""
3652
 
3653
+ #: admin/manage-fields.php:702
3654
  msgid "Bangladeshi taka"
3655
  msgstr ""
3656
 
3657
+ #: admin/manage-fields.php:703
3658
  msgid "Belarus Ruble"
3659
  msgstr ""
3660
 
3661
+ #: admin/manage-fields.php:704
3662
  msgid "Belize Dollar"
3663
  msgstr ""
3664
 
3665
+ #: admin/manage-fields.php:705
3666
  msgid "Bermuda Dollar"
3667
  msgstr ""
3668
 
3669
+ #: admin/manage-fields.php:706
3670
  msgid "Bolivia Boliviano"
3671
  msgstr ""
3672
 
3673
+ #: admin/manage-fields.php:707
3674
  msgid "Bosnia and Herzegovina Convertible Marka"
3675
  msgstr ""
3676
 
3677
+ #: admin/manage-fields.php:708
3678
  msgid "Botswana Pula"
3679
  msgstr ""
3680
 
3681
+ #: admin/manage-fields.php:709
3682
  msgid "Bulgaria Lev"
3683
  msgstr ""
3684
 
3685
+ #: admin/manage-fields.php:710
3686
  msgid "Brazil Real"
3687
  msgstr ""
3688
 
3689
+ #: admin/manage-fields.php:711
3690
  msgid "Brunei Darussalam Dollar"
3691
  msgstr ""
3692
 
3693
+ #: admin/manage-fields.php:712
3694
  msgid "Cambodia Riel"
3695
  msgstr ""
3696
 
3697
+ #: admin/manage-fields.php:713
3698
  msgid "Canada Dollar"
3699
  msgstr ""
3700
 
3701
+ #: admin/manage-fields.php:714
3702
  msgid "Cayman Islands Dollar"
3703
  msgstr ""
3704
 
3705
+ #: admin/manage-fields.php:715
3706
  msgid "Chile Peso"
3707
  msgstr ""
3708
 
3709
+ #: admin/manage-fields.php:716
3710
  msgid "China Yuan Renminbi"
3711
  msgstr ""
3712
 
3713
+ #: admin/manage-fields.php:717
3714
  msgid "Colombia Peso"
3715
  msgstr ""
3716
 
3717
+ #: admin/manage-fields.php:718
3718
  msgid "Costa Rica Colon"
3719
  msgstr ""
3720
 
3721
+ #: admin/manage-fields.php:719
3722
  msgid "Croatia Kuna"
3723
  msgstr ""
3724
 
3725
+ #: admin/manage-fields.php:720
3726
  msgid "Cuba Peso"
3727
  msgstr ""
3728
 
3729
+ #: admin/manage-fields.php:721
3730
  msgid "Czech Republic Koruna"
3731
  msgstr ""
3732
 
3733
+ #: admin/manage-fields.php:722
3734
  msgid "Denmark Krone"
3735
  msgstr ""
3736
 
3737
+ #: admin/manage-fields.php:723
3738
  msgid "Dominican Republic Peso"
3739
  msgstr ""
3740
 
3741
+ #: admin/manage-fields.php:724
3742
  msgid "East Caribbean Dollar"
3743
  msgstr ""
3744
 
3745
+ #: admin/manage-fields.php:725
3746
  msgid "Egypt Pound"
3747
  msgstr ""
3748
 
3749
+ #: admin/manage-fields.php:726
3750
  msgid "El Salvador Colon"
3751
  msgstr ""
3752
 
3753
+ #: admin/manage-fields.php:727
3754
  msgid "Estonia Kroon"
3755
  msgstr ""
3756
 
3757
+ #: admin/manage-fields.php:728
3758
  msgid "Euro"
3759
  msgstr ""
3760
 
3761
+ #: admin/manage-fields.php:729
3762
  msgid "Falkland Islands (Malvinas) Pound"
3763
  msgstr ""
3764
 
3765
+ #: admin/manage-fields.php:730
3766
  msgid "Fiji Dollar"
3767
  msgstr ""
3768
 
3769
+ #: admin/manage-fields.php:731
3770
  msgid "Ghana Cedis"
3771
  msgstr ""
3772
 
3773
+ #: admin/manage-fields.php:732
3774
  msgid "Gibraltar Pound"
3775
  msgstr ""
3776
 
3777
+ #: admin/manage-fields.php:733
3778
  msgid "Guatemala Quetzal"
3779
  msgstr ""
3780
 
3781
+ #: admin/manage-fields.php:734
3782
  msgid "Guernsey Pound"
3783
  msgstr ""
3784
 
3785
+ #: admin/manage-fields.php:735
3786
  msgid "Guyana Dollar"
3787
  msgstr ""
3788
 
3789
+ #: admin/manage-fields.php:736
3790
  msgid "Honduras Lempira"
3791
  msgstr ""
3792
 
3793
+ #: admin/manage-fields.php:737
3794
  msgid "Hong Kong Dollar"
3795
  msgstr ""
3796
 
3797
+ #: admin/manage-fields.php:738
3798
  msgid "Hungary Forint"
3799
  msgstr ""
3800
 
3801
+ #: admin/manage-fields.php:739
3802
  msgid "Iceland Krona"
3803
  msgstr ""
3804
 
3805
+ #: admin/manage-fields.php:740
3806
  msgid "India Rupee"
3807
  msgstr ""
3808
 
3809
+ #: admin/manage-fields.php:741
3810
  msgid "Indonesia Rupiah"
3811
  msgstr ""
3812
 
3813
+ #: admin/manage-fields.php:742
3814
  msgid "Iran Rial"
3815
  msgstr ""
3816
 
3817
+ #: admin/manage-fields.php:743
3818
  msgid "Isle of Man Pound"
3819
  msgstr ""
3820
 
3821
+ #: admin/manage-fields.php:744
3822
  msgid "Israel Shekel"
3823
  msgstr ""
3824
 
3825
+ #: admin/manage-fields.php:745
3826
  msgid "Jamaica Dollar"
3827
  msgstr ""
3828
 
3829
+ #: admin/manage-fields.php:746
3830
  msgid "Japan Yen"
3831
  msgstr ""
3832
 
3833
+ #: admin/manage-fields.php:747
3834
  msgid "Jersey Pound"
3835
  msgstr ""
3836
 
3837
+ #: admin/manage-fields.php:748
3838
  msgid "Kazakhstan Tenge"
3839
  msgstr ""
3840
 
3841
+ #: admin/manage-fields.php:749
3842
  msgid "Korea (North) Won"
3843
  msgstr ""
3844
 
3845
+ #: admin/manage-fields.php:750
3846
  msgid "Korea (South) Won"
3847
  msgstr ""
3848
 
3849
+ #: admin/manage-fields.php:751
3850
  msgid "Kyrgyzstan Som"
3851
  msgstr ""
3852
 
3853
+ #: admin/manage-fields.php:752
3854
  msgid "Laos Kip"
3855
  msgstr ""
3856
 
3857
+ #: admin/manage-fields.php:753
3858
  msgid "Latvia Lat"
3859
  msgstr ""
3860
 
3861
+ #: admin/manage-fields.php:754
3862
  msgid "Lebanon Pound"
3863
  msgstr ""
3864
 
3865
+ #: admin/manage-fields.php:755
3866
  msgid "Liberia Dollar"
3867
  msgstr ""
3868
 
3869
+ #: admin/manage-fields.php:756
3870
  msgid "Lithuania Litas"
3871
  msgstr ""
3872
 
3873
+ #: admin/manage-fields.php:757
3874
  msgid "Macedonia Denar"
3875
  msgstr ""
3876
 
3877
+ #: admin/manage-fields.php:758
3878
  msgid "Malaysia Ringgit"
3879
  msgstr ""
3880
 
3881
+ #: admin/manage-fields.php:759
3882
  msgid "Mauritius Rupee"
3883
  msgstr ""
3884
 
3885
+ #: admin/manage-fields.php:760
3886
  msgid "Mexico Peso"
3887
  msgstr ""
3888
 
3889
+ #: admin/manage-fields.php:761
3890
  msgid "Mongolia Tughrik"
3891
  msgstr ""
3892
 
3893
+ #: admin/manage-fields.php:762
3894
  msgid "Mozambique Metical"
3895
  msgstr ""
3896
 
3897
+ #: admin/manage-fields.php:763
3898
  msgid "Namibia Dollar"
3899
  msgstr ""
3900
 
3901
+ #: admin/manage-fields.php:764
3902
  msgid "Nepal Rupee"
3903
  msgstr ""
3904
 
3905
+ #: admin/manage-fields.php:765
3906
  msgid "Netherlands Antilles Guilder"
3907
  msgstr ""
3908
 
3909
+ #: admin/manage-fields.php:766
3910
  msgid "New Zealand Dollar"
3911
  msgstr ""
3912
 
3913
+ #: admin/manage-fields.php:767
3914
  msgid "Nicaragua Cordoba"
3915
  msgstr ""
3916
 
3917
+ #: admin/manage-fields.php:768
3918
  msgid "Nigeria Naira"
3919
  msgstr ""
3920
 
3921
+ #: admin/manage-fields.php:769
3922
  msgid "Norway Krone"
3923
  msgstr ""
3924
 
3925
+ #: admin/manage-fields.php:770
3926
  msgid "Oman Rial"
3927
  msgstr ""
3928
 
3929
+ #: admin/manage-fields.php:771
3930
  msgid "Pakistan Rupee"
3931
  msgstr ""
3932
 
3933
+ #: admin/manage-fields.php:772
3934
  msgid "Panama Balboa"
3935
  msgstr ""
3936
 
3937
+ #: admin/manage-fields.php:773
3938
  msgid "Paraguay Guarani"
3939
  msgstr ""
3940
 
3941
+ #: admin/manage-fields.php:774
3942
  msgid "Peru Nuevo Sol"
3943
  msgstr ""
3944
 
3945
+ #: admin/manage-fields.php:775
3946
  msgid "Philippines Peso"
3947
  msgstr ""
3948
 
3949
+ #: admin/manage-fields.php:776
3950
  msgid "Poland Zloty"
3951
  msgstr ""
3952
 
3953
+ #: admin/manage-fields.php:777
3954
  msgid "Qatar Riyal"
3955
  msgstr ""
3956
 
3957
+ #: admin/manage-fields.php:778
3958
  msgid "Romania New Leu"
3959
  msgstr ""
3960
 
3961
+ #: admin/manage-fields.php:779
3962
  msgid "Russia Ruble"
3963
  msgstr ""
3964
 
3965
+ #: admin/manage-fields.php:780
3966
  msgid "Saint Helena Pound"
3967
  msgstr ""
3968
 
3969
+ #: admin/manage-fields.php:781
3970
  msgid "Saudi Arabia Riyal"
3971
  msgstr ""
3972
 
3973
+ #: admin/manage-fields.php:782
3974
  msgid "Serbia Dinar"
3975
  msgstr ""
3976
 
3977
+ #: admin/manage-fields.php:783
3978
  msgid "Seychelles Rupee"
3979
  msgstr ""
3980
 
3981
+ #: admin/manage-fields.php:784
3982
  msgid "Singapore Dollar"
3983
  msgstr ""
3984
 
3985
+ #: admin/manage-fields.php:785
3986
  msgid "Solomon Islands Dollar"
3987
  msgstr ""
3988
 
3989
+ #: admin/manage-fields.php:786
3990
  msgid "Somalia Shilling"
3991
  msgstr ""
3992
 
3993
+ #: admin/manage-fields.php:787
3994
  msgid "South Africa Rand"
3995
  msgstr ""
3996
 
3997
+ #: admin/manage-fields.php:788
3998
  msgid "Sri Lanka Rupee"
3999
  msgstr ""
4000
 
4001
+ #: admin/manage-fields.php:789
4002
  msgid "Sweden Krona"
4003
  msgstr ""
4004
 
4005
+ #: admin/manage-fields.php:790
4006
  msgid "Switzerland Franc"
4007
  msgstr ""
4008
 
4009
+ #: admin/manage-fields.php:791
4010
  msgid "Suriname Dollar"
4011
  msgstr ""
4012
 
4013
+ #: admin/manage-fields.php:792
4014
  msgid "Syria Pound"
4015
  msgstr ""
4016
 
4017
+ #: admin/manage-fields.php:793
4018
  msgid "Taiwan New Dollar"
4019
  msgstr ""
4020
 
4021
+ #: admin/manage-fields.php:794
4022
  msgid "Thailand Baht"
4023
  msgstr ""
4024
 
4025
+ #: admin/manage-fields.php:795
4026
  msgid "Trinidad and Tobago Dollar"
4027
  msgstr ""
4028
 
4029
+ #: admin/manage-fields.php:796, admin/manage-fields.php:797
4030
  msgid "Turkey Lira"
4031
  msgstr ""
4032
 
4033
+ #: admin/manage-fields.php:798
4034
  msgid "Tuvalu Dollar"
4035
  msgstr ""
4036
 
4037
+ #: admin/manage-fields.php:799
4038
  msgid "Ukraine Hryvna"
4039
  msgstr ""
4040
 
4041
+ #: admin/manage-fields.php:800
4042
  msgid "United Kingdom Pound"
4043
  msgstr ""
4044
 
4045
+ #: admin/manage-fields.php:801
4046
  msgid "Uganda Shilling"
4047
  msgstr ""
4048
 
4049
+ #: admin/manage-fields.php:802
4050
  msgid "US Dollar"
4051
  msgstr ""
4052
 
4053
+ #: admin/manage-fields.php:803
4054
  msgid "Uruguay Peso"
4055
  msgstr ""
4056
 
4057
+ #: admin/manage-fields.php:804
4058
  msgid "Uzbekistan Som"
4059
  msgstr ""
4060
 
4061
+ #: admin/manage-fields.php:805
4062
  msgid "Venezuela Bolivar"
4063
  msgstr ""
4064
 
4065
+ #: admin/manage-fields.php:806
4066
  msgid "Viet Nam Dong"
4067
  msgstr ""
4068
 
4069
+ #: admin/manage-fields.php:807
4070
  msgid "Yemen Rial"
4071
  msgstr ""
4072
 
4073
+ #: admin/manage-fields.php:808
4074
  msgid "Zimbabwe Dollar"
4075
  msgstr ""
4076
 
4077
+ #: admin/manage-fields.php:1308
4078
  msgid ""
4079
  "That field is already added in this form\n"
4080
  ""
4081
  msgstr ""
4082
 
4083
+ #: admin/manage-fields.php:1301, admin/manage-fields.php:1115
4084
  msgid ""
4085
  "You must select a field\n"
4086
  ""
4087
  msgstr ""
4088
 
4089
+ #: admin/manage-fields.php:1125
4090
  msgid ""
4091
  "Please choose a different field type as this one already exists in your form (must be unique)\n"
4092
  ""
4093
  msgstr ""
4094
 
4095
+ #: admin/manage-fields.php:1139
4096
  msgid ""
4097
  "The entered avatar size is not numerical\n"
4098
  ""
4099
  msgstr ""
4100
 
4101
+ #: admin/manage-fields.php:1136
4102
  msgid ""
4103
  "The entered avatar size is not between 20 and 200\n"
4104
  ""
4105
  msgstr ""
4106
 
4107
+ #: admin/manage-fields.php:1150
4108
  msgid ""
4109
  "You must enter a value for the row number\n"
4110
  ""
4111
  msgstr ""
4112
 
4113
+ #: admin/manage-fields.php:1147
4114
  msgid ""
4115
  "The entered row number is not numerical\n"
4116
  ""
4117
  msgstr ""
4118
 
4119
+ #: admin/manage-fields.php:1158
4120
  msgid ""
4121
  "You must enter the site key\n"
4122
  ""
4123
  msgstr ""
4124
 
4125
+ #: admin/manage-fields.php:1160
4126
  msgid ""
4127
  "You must enter the secret key\n"
4128
  ""
4129
  msgstr ""
4130
 
4131
+ #: admin/manage-fields.php:1182
4132
  msgid ""
4133
  "The entered value for the Datepicker is not a valid date-format\n"
4134
  ""
4135
  msgstr ""
4136
 
4137
+ #: admin/manage-fields.php:1168
4138
  msgid ""
4139
  "You must enter a value for the date-format\n"
4140
  ""
4141
  msgstr ""
4142
 
4143
+ #: admin/manage-fields.php:1201
4144
  msgid ""
4145
  "The meta-name cannot be empty\n"
4146
  ""
4147
  msgstr ""
4148
 
4149
+ #: admin/manage-fields.php:1206
4150
  msgid ""
4151
  "The meta-name cannot begin with a space\n"
4152
  ""
4153
  msgstr ""
4154
 
4155
+ #: admin/manage-fields.php:1209
4156
  msgid ""
4157
  "The meta-name cannot end with a space\n"
4158
  ""
4159
  msgstr ""
4160
 
4161
+ #: admin/manage-fields.php:1239, admin/manage-fields.php:1250
4162
  msgid ""
4163
  "That meta-name is already in use\n"
4164
  ""
4165
  msgstr ""
4166
 
4167
+ #: admin/manage-fields.php:1231
4168
  msgid ""
4169
  "That meta-name can't be used, please choose another\n"
4170
  ""
4171
  msgstr ""
4172
 
4173
+ #: admin/manage-fields.php:1261
4174
  msgid ""
4175
  "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
4176
  ""
4177
  msgstr ""
4178
 
4179
+ #: admin/manage-fields.php:1285
4180
  msgid ""
4181
  "The following option did not coincide with the ones in the options list: %s\n"
4182
  ""
4183
  msgstr ""
4184
 
4185
+ #: admin/manage-fields.php:1281
4186
  msgid ""
4187
  "The following option(s) did not coincide with the ones in the options list: %s\n"
4188
  ""
4189
  msgstr ""
4190
 
4191
+ #: admin/manage-fields.php:1292
4192
  msgid ""
4193
  "Please select at least one user role\n"
4194
  ""
4195
  msgstr ""
4196
 
4197
+ #: admin/manage-fields.php:1360
4198
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4199
  msgstr ""
4200
 
4201
+ #: admin/manage-fields.php:1360, features/functions.php:1025, features/functions.php:1032, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
4202
  msgid "Edit"
4203
  msgstr ""
4204
 
4205
+ #: admin/manage-fields.php:1360, features/functions.php:1018, features/functions.php:1032, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4206
  msgid "Delete"
4207
  msgstr ""
4208
 
4209
+ #: admin/manage-fields.php:1375
4210
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4211
  msgstr ""
4212
 
4213
+ #: admin/manage-fields.php:1386
4214
  msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on."
4215
  msgstr ""
4216
 
4217
+ #: admin/manage-fields.php:1384
4218
  msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons."
4219
  msgstr ""
4220
 
4221
+ #: admin/manage-fields.php:1485
4222
  msgid "Search Location"
4223
  msgstr ""
4224
 
4398
  msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
4399
  msgstr ""
4400
 
4401
+ #: admin/private-website.php:162, features/functions.php:1004, features/content-restriction/content-restriction.php:162, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:101, admin/advanced-settings/includes/views/view-fields.php:293, admin/advanced-settings/includes/views/view-forms.php:376, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
4402
  msgid "Save Changes"
4403
  msgstr ""
4404
 
4522
  msgid "Minimum length of %d characters."
4523
  msgstr ""
4524
 
4525
+ #: features/functions.php:790, front-end/recover.php:370, front-end/default-fields/password/password.php:59
4526
  msgid "The password must have a minimum strength of %s"
4527
  msgstr ""
4528
 
4529
+ #: features/functions.php:923
4530
  msgid "This field is required"
4531
  msgstr ""
4532
 
4533
+ #: features/functions.php:961, front-end/default-fields/recaptcha/recaptcha.php:529, front-end/default-fields/recaptcha/recaptcha.php:520, front-end/default-fields/recaptcha/recaptcha.php:585, front-end/default-fields/recaptcha/recaptcha.php:633
4534
  msgid "Please enter a (valid) reCAPTCHA value"
4535
  msgstr ""
4536
 
4537
+ #: features/functions.php:968
4538
  msgid "Incorrect phone number"
4539
  msgstr ""
4540
 
4541
+ #: features/functions.php:1032, assets/lib/wck-api/wordpress-creation-kit.php:447
4542
  msgid "Content"
4543
  msgstr ""
4544
 
4545
+ #: features/functions.php:1220
4546
  msgid "<br><br>Also, you will be able to visit your site at "
4547
  msgstr ""
4548
 
4549
+ #: features/functions.php:1233
4550
  msgid "<br><br>You can visit your site at "
4551
  msgstr ""
4552
 
4553
+ #: features/functions.php:1323
4554
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4555
  msgstr ""
4556
 
4557
+ #: features/functions.php:1477
4558
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4559
  msgstr ""
4560
 
4561
+ #: features/functions.php:1518
4562
  msgid "You are not currently logged in."
4563
  msgstr ""
4564
 
4594
  msgid "Only an administrator can add new users."
4595
  msgstr ""
4596
 
4597
+ #: front-end/class-formbuilder.php:295, front-end/login.php:514
4598
  msgid "You are not allowed to do this."
4599
  msgstr ""
4600
 
4658
  msgid "Log In"
4659
  msgstr ""
4660
 
4661
+ #: front-end/login.php:323, front-end/login.php:344, front-end/recover.php:18, front-end/recover.php:321, front-end/extra-fields/extra-fields.php:94
4662
  msgid "ERROR"
4663
  msgstr ""
4664
 
4665
+ #: front-end/login.php:326
4666
  msgid "The password you entered is incorrect."
4667
  msgstr ""
4668
 
4669
+ #: front-end/login.php:335
4670
  msgid "Invalid username."
4671
  msgstr ""
4672
 
4673
+ #: front-end/login.php:333
4674
  msgid "Invalid username or email."
4675
  msgstr ""
4676
 
4677
+ #: front-end/login.php:331
4678
  msgid "Invalid email."
4679
  msgstr ""
4680
 
4681
+ #: front-end/login.php:339
4682
  msgid "Password Lost and Found."
4683
  msgstr ""
4684
 
4685
+ #: front-end/login.php:339, front-end/login.php:462
4686
  msgid "Lost your password?"
4687
  msgstr ""
4688
 
4689
+ #: front-end/login.php:344
4690
  msgid "Both fields are empty."
4691
  msgstr ""
4692
 
4693
+ #: front-end/login.php:501, front-end/logout.php:29
4694
  msgid "Log out of this account"
4695
  msgstr ""
4696
 
4697
+ #: front-end/login.php:501, front-end/logout.php:16
4698
  msgid "Log out &raquo;"
4699
  msgstr ""
4700
 
4701
+ #: front-end/login.php:502
4702
  msgid "You are currently logged in as %1$s. %2$s"
4703
  msgstr ""
4704
 
4705
+ #: front-end/login.php:427, front-end/recover.php:123
4706
  msgid "Username or Email"
4707
  msgstr ""
4708
 
4770
  msgid "The entered passwords don't match!"
4771
  msgstr ""
4772
 
4773
+ #: front-end/recover.php:366, front-end/default-fields/password/password.php:55
4774
  msgid "The password must have the minimum length of %s characters"
4775
  msgstr ""
4776
 
5960
  msgid "Your submission contains banned words."
5961
  msgstr ""
5962
 
5963
+ #: admin/advanced-settings/advanced-settings.php:186
5964
  msgid "are"
5965
  msgstr ""
5966
 
5967
+ #: admin/advanced-settings/advanced-settings.php:187
5968
  msgid "have"
5969
  msgstr ""
5970
 
5971
+ #: admin/advanced-settings/advanced-settings.php:183
5972
  msgid "is"
5973
  msgstr ""
5974
 
5975
+ #: admin/advanced-settings/advanced-settings.php:184
5976
  msgid "has"
5977
  msgstr ""
5978
 
5979
+ #: admin/advanced-settings/advanced-settings.php:190
5980
  msgid "%1$s of the emails provided in the Admin Emails field %2$s invalid and %3$s been removed from the list"
5981
  msgstr ""
5982
 
6606
  ""
6607
  msgstr ""
6608
 
6609
+ #: assets/lib/wck-api/wordpress-creation-kit.php:549
6610
  msgid "Delete this item"
6611
  msgstr ""
6612
 
6662
  msgid "You did not type %s. Try again!"
6663
  msgstr ""
6664
 
6665
+ #: front-end/default-fields/password-repeat/password-repeat.php:47, front-end/default-fields/password-repeat/password-repeat.php:43
6666
  msgid "The passwords do not match"
6667
  msgstr ""
6668
 
6714
  msgid "Remove"
6715
  msgstr ""
6716
 
6717
+ #: front-end/extra-fields/avatar/avatar.php:85, front-end/extra-fields/checkbox/checkbox.php:45, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/language/language.php:34, front-end/extra-fields/map/map.php:54, front-end/extra-fields/number/number.php:30, front-end/extra-fields/phone/phone.php:39, front-end/extra-fields/radio/radio.php:44, front-end/extra-fields/select/select.php:51, front-end/extra-fields/select-cpt/select-cpt.php:59, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/select2/select2-multiple.php:88, front-end/extra-fields/select2/select2.php:74, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:80, front-end/extra-fields/wysiwyg/wysiwyg.php:33
6718
  msgid "required"
6719
  msgstr ""
6720