User registration & user profile – Profile Builder - Version 2.7.7

Version Description

  • Added Invisible reCAPTCHA support for both PB forms as well as default WordPress forms
  • Small CSS modification in role editor
  • Fixing some CSS issues with notifications class on some pages and addon pages
Download this release

Release Info

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

Code changes from version 2.7.6 to 2.7.7

admin/basic-info.php CHANGED
@@ -27,7 +27,7 @@ function wppb_basic_info_content() {
27
  ?>
28
  <div class="wrap wppb-wrap wppb-info-wrap">
29
  <div class="wppb-badge <?php echo $version; ?>"><span><?php printf( __( 'Version %s' ), PROFILE_BUILDER_VERSION ); ?></span></div>
30
- <h1><?php echo __( '<strong>Profile Builder </strong>' . $version, 'profile-builder' ); ?></h1>
31
  <p class="wppb-info-text"><?php printf( __( 'The best way to add front-end registration, edit profile and login forms.', 'profile-builder' ) ); ?></p>
32
  <hr />
33
  <h2 class="wppb-callout"><?php _e( 'For Modern User Interaction', 'profile-builder' ); ?></h2>
27
  ?>
28
  <div class="wrap wppb-wrap wppb-info-wrap">
29
  <div class="wppb-badge <?php echo $version; ?>"><span><?php printf( __( 'Version %s' ), PROFILE_BUILDER_VERSION ); ?></span></div>
30
+ <h1><?php printf( __( '<strong>Profile Builder </strong> %s', 'profile-builder' ), $version ); ?></h1>
31
  <p class="wppb-info-text"><?php printf( __( 'The best way to add front-end registration, edit profile and login forms.', 'profile-builder' ) ); ?></p>
32
  <hr />
33
  <h2 class="wppb-callout"><?php _e( 'For Modern User Interaction', 'profile-builder' ); ?></h2>
admin/manage-fields.php CHANGED
@@ -138,6 +138,7 @@ function wppb_populate_manage_fields(){
138
  array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href="custom_url"&gt;custom_text&lt;/a&gt;', 'profile-builder' ) ),
139
  array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "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", 'profile-builder' ) ),
140
  array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
 
141
  array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Site Key', 'profile-builder' ), 'description' => __( 'The site key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
142
  array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Secret Key', 'profile-builder' ), 'description' => __( 'The secret key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
143
  array( 'type' => 'checkbox', 'slug' => 'captcha-pb-forms', 'title' => __( 'Display on PB forms', 'profile-builder' ), 'options' => array( '%'.__('PB Login','profile-builder').'%'.'pb_login', '%'.__('PB Register','profile-builder').'%'.'pb_register', '%'.__('PB Recover Password','profile-builder').'%'.'pb_recover_password' ), 'default' => 'pb_register', 'description' => __( "Select on which Profile Builder forms to display reCAPTCHA", 'profile-builder' ) ),
138
  array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href="custom_url"&gt;custom_text&lt;/a&gt;', 'profile-builder' ) ),
139
  array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "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", 'profile-builder' ) ),
140
  array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
141
+ array( 'type' => 'select', 'slug' => 'recaptcha-type', 'title' => __( 'reCAPTCHA Type', 'profile-builder' ), 'options' => array('%reCAPTCHA V2%v2', '%Invisible reCAPTCHA%invisible'), 'default' => 'v2', 'description' => __( 'Choose the <a href="https://developers.google.com/recaptcha/docs/versions" target="_blank">type of reCAPTCHA</a> you wish to add to this site.', 'profile-builder' ) ),
142
  array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Site Key', 'profile-builder' ), 'description' => __( 'The site key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
143
  array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Secret Key', 'profile-builder' ), 'description' => __( 'The secret key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
144
  array( 'type' => 'checkbox', 'slug' => 'captcha-pb-forms', 'title' => __( 'Display on PB forms', 'profile-builder' ), 'options' => array( '%'.__('PB Login','profile-builder').'%'.'pb_login', '%'.__('PB Register','profile-builder').'%'.'pb_register', '%'.__('PB Recover Password','profile-builder').'%'.'pb_recover_password' ), 'default' => 'pb_register', 'description' => __( "Select on which Profile Builder forms to display reCAPTCHA", 'profile-builder' ) ),
admin/register-version.php CHANGED
@@ -58,7 +58,7 @@ function wppb_register_your_version_content() {
58
  function wppb_serial_form($version, $fullname){
59
  ?>
60
 
61
- <h2><?php _e( "Register your version of $fullname", 'profile-builder' ); ?></h2>
62
 
63
  <form method="post" action="<?php echo get_admin_url( 1, 'options.php' ) ?>">
64
 
58
  function wppb_serial_form($version, $fullname){
59
  ?>
60
 
61
+ <h2><?php printf( __( "Register your version of %s", 'profile-builder' ), $fullname ); ?></h2>
62
 
63
  <form method="post" action="<?php echo get_admin_url( 1, 'options.php' ) ?>">
64
 
assets/css/style-front-end.css CHANGED
@@ -296,10 +296,13 @@ input#send_credentials_via_email{
296
  }
297
 
298
 
299
- .g-recaptcha{
300
  display: inline-block;
301
  }
302
- .g-recaptcha iframe{
 
 
 
303
  margin-bottom: 0;
304
  }
305
 
296
  }
297
 
298
 
299
+ .wppb-recaptcha-element{
300
  display: inline-block;
301
  }
302
+ .wppb-recaptcha-element.wppb-invisible-recaptcha {
303
+ display: block !important;
304
+ }
305
+ .wppb-recaptcha-element iframe{
306
  margin-bottom: 0;
307
  }
308
 
assets/js/jquery-manage-fields-live-change.js CHANGED
@@ -437,6 +437,7 @@ var fields = {
437
  'reCAPTCHA': { 'show_rows' : [
438
  '.row-field-title',
439
  '.row-description',
 
440
  '.row-public-key',
441
  '.row-private-key',
442
  '.row-captcha-pb-forms',
437
  'reCAPTCHA': { 'show_rows' : [
438
  '.row-field-title',
439
  '.row-description',
440
+ '.row-recaptcha-type',
441
  '.row-public-key',
442
  '.row-private-key',
443
  '.row-captcha-pb-forms',
assets/lib/wck-api/wordpress-creation-kit.php CHANGED
@@ -391,8 +391,8 @@ class Wordpress_Creation_Kit_PB{
391
  }
392
  }
393
  $form .= '<li style="overflow:visible;">';
394
- $form .= '<a href="javascript:void(0)" class="button-primary" onclick=\'updateMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($update_nonce).'")\'><span>'. __( apply_filters( 'wck_save_changes_button', 'Save Changes', $meta ), 'profile-builder' ) .'</span></a>';
395
- $form .= '<a href="javascript:void(0)" class="button-secondary" style="margin-left:10px;" onclick=\'removeUpdateForm("'. esc_js( 'update_container_'.$meta.'_'.$element_id ). '" )\'><span>'. __( apply_filters( 'wck_cancel_button', 'Cancel', $meta ), 'profile-builder' ) .'</span></a>';
396
  $form .= '</li>';
397
 
398
  $form .= '</ul>';
391
  }
392
  }
393
  $form .= '<li style="overflow:visible;">';
394
+ $form .= '<a href="javascript:void(0)" class="button-primary" onclick=\'updateMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($update_nonce).'")\'><span>'. apply_filters( 'wck_save_changes_button', __( 'Save Changes', 'profile-builder' ), $meta ) .'</span></a>';
395
+ $form .= '<a href="javascript:void(0)" class="button-secondary" style="margin-left:10px;" onclick=\'removeUpdateForm("'. esc_js( 'update_container_'.$meta.'_'.$element_id ). '" )\'><span>'. apply_filters( 'wck_cancel_button', __( 'Cancel', 'profile-builder' ), $meta ) .'</span></a>';
396
  $form .= '</li>';
397
 
398
  $form .= '</ul>';
features/functions.php CHANGED
@@ -260,11 +260,16 @@ function wppb_print_cpt_script( $hook ){
260
  ( $hook == 'profile-builder_page_profile-builder-register' ) ||
261
  ( $hook == 'profile-builder_page_profile-builder-wppb_userListing' ) ||
262
  ( $hook == 'profile-builder_page_custom-redirects' ) ||
263
- ( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizer' ) ||
264
- ( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizerAdmin' ) ||
265
  ( $hook == 'profile-builder_page_profile-builder-add-ons' ) ||
266
  ( $hook == 'profile-builder_page_profile-builder-woocommerce-sync' ) ||
267
  ( $hook == 'profile-builder_page_profile-builder-bbpress') ||
 
 
 
 
 
268
  ( $hook == 'admin_page_profile-builder-pms-promo') ) {
269
  wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
270
  }
@@ -290,6 +295,9 @@ function wppb_print_cpt_script( $hook ){
290
  wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
291
  wp_enqueue_script( 'wppb-epf-rf', WPPB_PLUGIN_URL . 'assets/js/jquery-epf-rf.js', array(), PROFILE_BUILDER_VERSION, true );
292
  }
 
 
 
293
  }
294
  if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) ) {
295
  wp_enqueue_script( 'wppb-sitewide', WPPB_PLUGIN_URL . 'assets/js/jquery-pb-sitewide.js', array(), PROFILE_BUILDER_VERSION, true );
260
  ( $hook == 'profile-builder_page_profile-builder-register' ) ||
261
  ( $hook == 'profile-builder_page_profile-builder-wppb_userListing' ) ||
262
  ( $hook == 'profile-builder_page_custom-redirects' ) ||
263
+ ( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizer' ) ||//?what is this
264
+ ( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizerAdmin' ) ||//?what is this
265
  ( $hook == 'profile-builder_page_profile-builder-add-ons' ) ||
266
  ( $hook == 'profile-builder_page_profile-builder-woocommerce-sync' ) ||
267
  ( $hook == 'profile-builder_page_profile-builder-bbpress') ||
268
+ ( $hook == 'profile-builder_page_admin-email-customizer') ||
269
+ ( $hook == 'profile-builder_page_user-email-customizer') ||
270
+ ( $hook == 'profile-builder_page_profile-builder-content_restriction' ) ||
271
+ ( strpos( $hook, 'profile-builder_page_' ) === 0 ) ||
272
+ ( $hook == 'edit.php' && $_GET['post_type'] == 'wppb-roles-editor' ) ||
273
  ( $hook == 'admin_page_profile-builder-pms-promo') ) {
274
  wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
275
  }
295
  wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
296
  wp_enqueue_script( 'wppb-epf-rf', WPPB_PLUGIN_URL . 'assets/js/jquery-epf-rf.js', array(), PROFILE_BUILDER_VERSION, true );
297
  }
298
+ else if( 'wppb-roles-editor' == $post_type ){
299
+ wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', array(), PROFILE_BUILDER_VERSION );
300
+ }
301
  }
302
  if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) ) {
303
  wp_enqueue_script( 'wppb-sitewide', WPPB_PLUGIN_URL . 'assets/js/jquery-pb-sitewide.js', array(), PROFILE_BUILDER_VERSION, true );
features/roles-editor/assets/css/roles-editor.css CHANGED
@@ -72,6 +72,10 @@
72
  width: 25%;
73
  }
74
 
 
 
 
 
75
  .post-type-wppb-roles-editor .column-capabilities {
76
  width: 15%;
77
  text-align: center;
72
  width: 25%;
73
  }
74
 
75
+ .post-type-wppb-roles-editor .column-role .wppb-role-slug-input{
76
+ width:90%;
77
+ }
78
+
79
  .post-type-wppb-roles-editor .column-capabilities {
80
  width: 15%;
81
  text-align: center;
features/roles-editor/roles-editor.php CHANGED
@@ -67,7 +67,7 @@ class WPPB_Roles_Editor {
67
  }
68
 
69
  $wp_default_styles = $this->wp_default_styles();
70
- $styles_exceptions = array( 'wppb-serial-notice-css', 'acf-global' );
71
  foreach( $wp_styles->registered as $key => $value ) {
72
  if( ! in_array( $key, $wp_default_styles ) && ! in_array( $key, $styles_exceptions ) ) {
73
  wp_deregister_style( $key );
67
  }
68
 
69
  $wp_default_styles = $this->wp_default_styles();
70
+ $styles_exceptions = array( 'wppb-serial-notice-css', 'acf-global', 'wppb-back-end-style' );
71
  foreach( $wp_styles->registered as $key => $value ) {
72
  if( ! in_array( $key, $wp_default_styles ) && ! in_array( $key, $styles_exceptions ) ) {
73
  wp_deregister_style( $key );
features/upgrades/upgrades-functions.php CHANGED
@@ -177,6 +177,7 @@ function wppb_pro_hobbyist_free_v2_0(){
177
  $local_array['terms-of-agreement'] = '';
178
  $local_array['options'] = '';
179
  $local_array['labels'] = '';
 
180
  $local_array['public-key'] = '';
181
  $local_array['private-key'] = '';
182
  $local_array['default-value'] = '';
177
  $local_array['terms-of-agreement'] = '';
178
  $local_array['options'] = '';
179
  $local_array['labels'] = '';
180
+ $local_array['recaptcha-type'] = 'v2';
181
  $local_array['public-key'] = '';
182
  $local_array['private-key'] = '';
183
  $local_array['default-value'] = '';
front-end/default-fields/recaptcha/recaptcha.php CHANGED
@@ -42,72 +42,114 @@ function _wppb_submitHTTPGet($path, $data)
42
  * @return string - The HTML to be embedded in the user's form.
43
  */
44
  function wppb_recaptcha_get_html ( $pubkey, $form_name='' ){
45
- global $wppb_recaptcha_forms; // will contain the name of all PB forms containing reCAPTCHA which are loaded on a certain page
 
 
 
 
 
46
 
47
  if ( empty($pubkey) )
48
  echo $errorMessage = '<span class="error">'. __("To use reCAPTCHA you must get an API key from", "profile-builder"). " <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a></span><br/><br/>";
49
 
50
- // we add this number to the form name to differentiate between 2 different forms of the same type (e.g. PB Login widget + PB Login page form) which both have reCAPTCHA
51
- $length = strval(strlen($wppb_recaptcha_forms));
52
-
53
- if ($form_name != '') {
54
- if ($wppb_recaptcha_forms != '') $wppb_recaptcha_forms .= ','.trim($form_name).$length;
55
- else $wppb_recaptcha_forms = trim($form_name).$length;
56
-
57
- // reCAPTCHA html for PB forms
58
- return '
59
- <div id="recaptcha_'.$form_name.$length.'" class="g-recaptcha" data-sitekey="'.$pubkey.'" data-theme="'.apply_filters('wppb_recaptcha_theme_select','light').'" ></div>
60
- ';
61
  }
62
- else { //reCAPTCHA html and scripts for default WP forms (backend)
63
- return '
64
- <script src="https://www.google.com/recaptcha/api.js" async defer></script>
65
- <div id="recaptcha_'.$form_name.$length.'" class="g-recaptcha" data-sitekey="'.$pubkey.'" data-theme="'.apply_filters('wppb_recaptcha_theme_select','light').'" ></div>
66
- ';
67
- }
68
-
69
- }
70
 
71
- // For PB forms (not default WP ones) containing reCAPTCHA we'll make sure to add the script in the page's header and footer, in order to allow multiple reCAPTCHAs on the same page.
72
- function wppb_recaptcha_script_header() {
73
- global $wppb_recaptcha_forms;
74
- //initialize the $wppb_recaptcha_forms global var
75
- $wppb_recaptcha_forms = '';
76
  }
77
- add_action('wp_head', 'wppb_recaptcha_script_header');
78
 
79
 
80
 
 
 
 
81
  function wppb_recaptcha_script_footer(){
82
- global $wppb_recaptcha_forms;
83
- if( !empty( $wppb_recaptcha_forms ) ) {
84
- echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallBack&render=explicit" async defer></script>';
85
-
86
- $forms = explode(',',$wppb_recaptcha_forms);
87
-
88
- $field = wppb_get_recaptcha_field();
 
 
 
 
 
89
 
90
- $pubkey = '';
91
- if( isset( $field['public-key'] ) ) {
92
- $pubkey = trim( $field['public-key'] );
93
- }
 
 
 
 
 
 
 
 
 
94
 
95
- echo '<script type="text/javascript">
96
- var wppbRecaptchaCallBack = function() {';
97
- if( !empty( $pubkey ) ) {
98
- foreach ($forms as $form_name) {
99
- echo '
100
- var recaptcha_' . $form_name . ' = grecaptcha.render("recaptcha_' . $form_name . '", {
101
- "sitekey" : "' . $pubkey . '",
102
- });';
 
 
 
103
  }
 
 
 
 
 
 
 
104
  }
105
- echo '};
106
- </script>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  }
108
- }
109
- add_action('wp_footer','wppb_recaptcha_script_footer');
110
 
 
 
 
 
 
 
111
 
112
 
113
  /**
@@ -133,7 +175,11 @@ function wppb_recaptcha_check_answer ( $privkey, $remoteip, $response ){
133
  // Discard empty solution submissions
134
  if ($response == null || strlen($response) == 0) {
135
  $recaptchaResponse = new wppb_ReCaptchaResponse();
136
- $recaptchaResponse->is_valid = false;
 
 
 
 
137
 
138
  return $recaptchaResponse;
139
  }
@@ -191,9 +237,16 @@ function wppb_recaptcha_handler ( $output, $form_location, $field, $user_id, $fi
191
  if ( empty( $publickey ) || empty( $privatekey ) )
192
  return '<span class="custom_field_recaptcha_error_message" id="'.$field['meta-name'].'_error_message">'.apply_filters( 'wppb_'.$form_location.'_recaptcha_custom_field_'.$field['id'].'_error_message', __("To use reCAPTCHA you must get an API public key from:", "profile-builder"). '<a href="https://www.google.com/recaptcha/admin/create">https://www.google.com/recaptcha/admin/create</a>' ).'</span>';
193
 
194
- $output = '<label for="recaptcha_response_field">'.$item_title.$error_mark.'</label>'.wppb_recaptcha_get_html( $publickey , 'pb_register');
195
- if( !empty( $item_description ) )
196
- $output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
 
 
 
 
 
 
 
197
 
198
  return $output;
199
 
@@ -207,7 +260,14 @@ add_filter( 'wppb_output_form_field_recaptcha', 'wppb_recaptcha_handler', 10, 6
207
  function wppb_check_recaptcha_value( $message, $field, $request_data, $form_location ){
208
  if( $field['field'] == 'reCAPTCHA' ){
209
  if ( ( $form_location == 'register' ) && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) {
210
- if ( ( wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) ) == false ) && ( $field['required'] == 'Yes' ) ){
 
 
 
 
 
 
 
211
  return wppb_required_field_error($field["field-title"]);
212
  }
213
  }
@@ -238,13 +298,20 @@ function wppb_display_recaptcha_recover_password( $output ){
238
  $item_title = apply_filters('wppb_recover_password_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
239
  $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
240
 
241
- // check where reCAPCHA should display and add reCAPTCHA html
242
  if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) ) {
243
- $recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_recover_password');
244
- if (!empty($item_description))
245
- $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
246
 
247
- $output = str_replace('</ul>', '<li class="wppb-form-field wppb-recaptcha">' . $recaptcha_output . '</li>' . '</ul>', $output);
 
 
 
 
 
 
 
 
 
 
248
  }
249
  }
250
  return $output;
@@ -327,11 +394,18 @@ function wppb_display_recaptcha_login_form($form_part, $args) {
327
  $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
328
 
329
  if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) ) { // check where reCAPTCHA should display and add reCAPTCHA html
330
- $recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html( trim($field['public-key']), 'pb_login' );
331
- if (!empty($item_description))
332
- $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
333
 
334
- $form_part .= '<div class="wppb-form-field wppb-recaptcha">'. $recaptcha_output .'</div>';
 
 
 
 
 
 
 
 
 
 
335
  }
336
  }
337
 
@@ -349,11 +423,17 @@ function wppb_display_recaptcha_wp_login_form(){
349
 
350
  if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
351
 
352
- $recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html( trim($field['public-key']) );
353
- if (!empty($item_description))
354
- $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
 
355
 
356
- echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">'. $recaptcha_output .'</div>';
 
 
 
 
 
357
  }
358
  }
359
  }
@@ -367,16 +447,24 @@ function wppb_recaptcha_login_wp_error_message($user){
367
  $field = wppb_get_recaptcha_field();
368
  if ( !empty($field) ){
369
  global $wppb_recaptcha_response;
 
370
  if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) );
371
 
372
  //reCAPTCHA error for displaying on the PB login form
373
- if ( isset($_POST['wppb_login']) && ($_POST['wppb_login'] == true) && (isset($field['captcha-pb-forms'])) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) && ( $wppb_recaptcha_response == false ) ) {
374
- $user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value','profile-builder'));
 
 
 
 
 
375
  }
 
 
 
 
 
376
 
377
- //reCAPTCHA error for displaying on the default WP login form
378
- if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) && ($wppb_recaptcha_response == false) ) {
379
- $user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value','profile-builder'));
380
  }
381
  }
382
  }
@@ -394,11 +482,18 @@ function wppb_display_recaptcha_default_wp_recover_password() {
394
  $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
395
 
396
  if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_recover_password') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
397
- $recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
398
- if (!empty($item_description))
399
- $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
400
 
401
- echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">'. $recaptcha_output .'</div>';
 
 
 
 
 
 
 
 
 
 
402
  }
403
  }
404
  }
@@ -429,18 +524,26 @@ function wppb_display_recaptcha_default_wp_register(){
429
  $field = wppb_get_recaptcha_field();
430
 
431
  if (!empty($field)) {
432
- $publickey = trim($field['public-key']);
433
- $item_title = apply_filters('wppb_register_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
434
- $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
435
 
436
- wppb_recaptcha_set_default_values();
437
- if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_register') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
438
- $recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
439
- if (!empty($item_description))
440
- $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
441
 
442
- echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">' . $recaptcha_output . '</div>';
443
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
444
  }
445
  }
446
  add_action( 'register_form', 'wppb_display_recaptcha_default_wp_register' );
@@ -463,7 +566,7 @@ return $errors;
463
  }
464
  add_filter('registration_errors','wppb_verify_recaptcha_default_wp_register');
465
 
466
- // set default "Display on which forms?" values in case there's already an existing reCAPTCHA field in Manage fields (when upgrading)
467
  function wppb_recaptcha_set_default_values() {
468
  $manage_fields = get_option('wppb_manage_fields', 'not_set');
469
  if ($manage_fields != 'not_set') {
@@ -471,6 +574,7 @@ function wppb_recaptcha_set_default_values() {
471
  if ($value['field'] == 'reCAPTCHA') {
472
  if ( !isset($value['captcha-pb-forms']) ) $manage_fields[$key]['captcha-pb-forms'] = 'pb_register';
473
  if ( !isset($value['captcha-wp-forms']) ) $manage_fields[$key]['captcha-wp-forms'] = 'default_wp_register';
 
474
  }
475
  }
476
  update_option('wppb_manage_fields', $manage_fields);
42
  * @return string - The HTML to be embedded in the user's form.
43
  */
44
  function wppb_recaptcha_get_html ( $pubkey, $form_name='' ){
45
+ global $wppb_recaptcha_forms; // is the counter for the number of forms that have recaptcha so we always have unique ids on the element
46
+ if( is_null( $wppb_recaptcha_forms ) )
47
+ $wppb_recaptcha_forms = 0;
48
+ $wppb_recaptcha_forms++;
49
+
50
+ $field = wppb_get_recaptcha_field();
51
 
52
  if ( empty($pubkey) )
53
  echo $errorMessage = '<span class="error">'. __("To use reCAPTCHA you must get an API key from", "profile-builder"). " <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a></span><br/><br/>";
54
 
55
+ // extra class needed for Invisible reCAPTCHA html
56
+ $invisible_class = '';
57
+ if ( isset($field['recaptcha-type']) && ($field['recaptcha-type'] == 'invisible') ) {
58
+ $invisible_class = 'wppb-invisible-recaptcha';
 
 
 
 
 
 
 
59
  }
 
 
 
 
 
 
 
 
60
 
61
+ // reCAPTCHA html for all forms and we make sure we have a unique id for v2
62
+ return '<div id="wppb-recaptcha-element-'.$form_name.$wppb_recaptcha_forms.'" class="wppb-recaptcha-element '.$invisible_class.'"></div>';
 
 
 
63
  }
 
64
 
65
 
66
 
67
+ /**
68
+ * Add reCAPTCHA scripts to both front-end PB forms (with support for multiple forms) as well as Default WP forms
69
+ */
70
  function wppb_recaptcha_script_footer(){
71
+
72
+ //we don't have jquery on the backend
73
+ if( current_filter() != 'wp_footer' ) {
74
+ wp_print_scripts('jquery');
75
+ }
76
+
77
+ //get site key
78
+ $field = wppb_get_recaptcha_field();
79
+ $pubkey = '';
80
+ if( isset( $field['public-key'] ) ) {
81
+ $pubkey = trim( $field['public-key'] );
82
+ }
83
 
84
+ // Check if we have a reCAPTCHA type
85
+ if ( !isset($field['recaptcha-type']) )
86
+ return ;
87
+
88
+ /*for invisible recaptcha we have extra parameters and the selector is different. v2 is initialized on the id of the div
89
+ that must be unique and invisible is on the submit button of the forms that have the div */
90
+ if( $field['recaptcha-type'] === 'invisible' ) {
91
+ $callback_conditions = 'jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") )';
92
+ $invisible_parameters = '"callback" : wppbInvisibleRecaptchaOnSubmit,"size": "invisible"';
93
+ }else {
94
+ $callback_conditions = 'jQuery(".wppb-recaptcha-element")';
95
+ $invisible_parameters = '';
96
+ }
97
 
98
+ echo '<script>
99
+ var wppbRecaptchaCallback = function() {
100
+ if( typeof window.wppbRecaptchaCallbackExecuted == "undefined" ){//see if we executed this before
101
+ '.$callback_conditions.'.each(function(){
102
+ recID = grecaptcha.render( jQuery(this).attr("id"), {
103
+ "sitekey" : "' . $pubkey . '",
104
+ "error-callback": wppbRecaptchaInitializationError,
105
+ '.$invisible_parameters.'
106
+ });
107
+ });
108
+ window.wppbRecaptchaCallbackExecuted = true;//we use this to make sure we only run the callback once
109
  }
110
+ };
111
+
112
+ /* the callback function for when the captcha does not load propperly, maybe network problem or wrong keys */
113
+ function wppbRecaptchaInitializationError(){
114
+ window.wppbRecaptchaInitError = true;
115
+ //add a captcha field so we do not just let the form submit if we do not have a captcha response
116
+ jQuery( ".wppb-recaptcha-element" ).after(\''. wp_nonce_field( 'wppb_recaptcha_init_error', 'wppb_recaptcha_load_error', false, false ) .'\');
117
  }
118
+
119
+ /* compatibility with other plugins that may include recaptcha with an onload callback. if their script loads first then our callback will not execute so call it explicitly */
120
+ jQuery( window ).on( "load", function() {
121
+ wppbRecaptchaCallback();
122
+ });
123
+ </script>';
124
+
125
+ if( $field['recaptcha-type'] === 'invisible' ) {
126
+ echo '<script>
127
+ /* success callback for invisible recaptcha. it submits the form that contains the right token response */
128
+ function wppbInvisibleRecaptchaOnSubmit(token){
129
+ var elem = jQuery(".g-recaptcha-response").filter(function(){
130
+ return jQuery(this).val() === token;
131
+ });
132
+ var form = elem.closest("form");
133
+ form.submit();
134
+ }
135
+
136
+ /* make sure if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
137
+ jQuery(document).ready(function(){
138
+ if( window.wppbRecaptchaInitError === true ){
139
+ jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).click(function(e){
140
+ jQuery(this).closest("form").submit();
141
+ });
142
+ }
143
+ });
144
+ </script>';
145
  }
 
 
146
 
147
+ echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit" async defer></script>';
148
+ }
149
+ add_action('wp_footer', 'wppb_recaptcha_script_footer', 999);
150
+ add_action('login_footer', 'wppb_recaptcha_script_footer');
151
+ add_action('register_form', 'wppb_recaptcha_script_footer');
152
+ add_action('lost_password', 'wppb_recaptcha_script_footer');
153
 
154
 
155
  /**
175
  // Discard empty solution submissions
176
  if ($response == null || strlen($response) == 0) {
177
  $recaptchaResponse = new wppb_ReCaptchaResponse();
178
+
179
+ if( isset( $_POST['wppb_recaptcha_load_error'] ) && wp_verify_nonce( $_POST['wppb_recaptcha_load_error'], 'wppb_recaptcha_init_error' ) )
180
+ $recaptchaResponse->is_valid = true;
181
+ else
182
+ $recaptchaResponse->is_valid = false;
183
 
184
  return $recaptchaResponse;
185
  }
237
  if ( empty( $publickey ) || empty( $privatekey ) )
238
  return '<span class="custom_field_recaptcha_error_message" id="'.$field['meta-name'].'_error_message">'.apply_filters( 'wppb_'.$form_location.'_recaptcha_custom_field_'.$field['id'].'_error_message', __("To use reCAPTCHA you must get an API public key from:", "profile-builder"). '<a href="https://www.google.com/recaptcha/admin/create">https://www.google.com/recaptcha/admin/create</a>' ).'</span>';
239
 
240
+ if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
241
+ $output = '<label for="recaptcha_response_field">' . $item_title . $error_mark . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_register');
242
+ if (!empty($item_description))
243
+ $output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
244
+ }
245
+ else {
246
+ // html for Invisible reCAPTCHA
247
+ $output = wppb_recaptcha_get_html($publickey, 'pb_register');
248
+ }
249
+
250
 
251
  return $output;
252
 
260
  function wppb_check_recaptcha_value( $message, $field, $request_data, $form_location ){
261
  if( $field['field'] == 'reCAPTCHA' ){
262
  if ( ( $form_location == 'register' ) && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) {
263
+
264
+ /* theme my login plugin executes the register_errors hook on the frontend on all pages so on our register forms we might have already a recaptcha response
265
+ so do not verify it again or it will fail */
266
+ global $wppb_recaptcha_response;
267
+ if (!isset($wppb_recaptcha_response)){
268
+ $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) );
269
+ }
270
+ if ( ( $wppb_recaptcha_response == false ) && ( $field['required'] == 'Yes' ) ){
271
  return wppb_required_field_error($field["field-title"]);
272
  }
273
  }
298
  $item_title = apply_filters('wppb_recover_password_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
299
  $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
300
 
301
+ // check where reCAPTCHA should display and add reCAPTCHA html
302
  if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) ) {
 
 
 
303
 
304
+ if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
305
+ $recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_recover_password');
306
+ if (!empty($item_description))
307
+ $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
308
+
309
+ $output = str_replace('</ul>', '<li class="wppb-form-field wppb-recaptcha">' . $recaptcha_output . '</li>' . '</ul>', $output);
310
+ }
311
+ else {
312
+ // output Invisible reCAPTCHA html
313
+ $output = str_replace('</ul>', '<li class="wppb-form-field wppb-recaptcha">' . wppb_recaptcha_get_html($publickey, 'pb_recover_password') . '</li>' . '</ul>', $output);
314
+ }
315
  }
316
  }
317
  return $output;
394
  $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
395
 
396
  if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) ) { // check where reCAPTCHA should display and add reCAPTCHA html
 
 
 
397
 
398
+ if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
399
+ $recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login');
400
+ if (!empty($item_description))
401
+ $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
402
+
403
+ $form_part .= '<div class="wppb-form-field wppb-recaptcha">' . $recaptcha_output . '</div>';
404
+ }
405
+ else {
406
+ //output Invisible reCAPTCHA html
407
+ $form_part .= wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login');
408
+ }
409
  }
410
  }
411
 
423
 
424
  if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
425
 
426
+ if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
427
+ $recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']));
428
+ if (!empty($item_description))
429
+ $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
430
 
431
+ echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">' . $recaptcha_output . '</div>';
432
+ }
433
+ else {
434
+ // output Invisible reCAPTCHA html
435
+ echo wppb_recaptcha_get_html( trim($field['public-key']));
436
+ }
437
  }
438
  }
439
  }
447
  $field = wppb_get_recaptcha_field();
448
  if ( !empty($field) ){
449
  global $wppb_recaptcha_response;
450
+
451
  if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) );
452
 
453
  //reCAPTCHA error for displaying on the PB login form
454
+ if ( isset($_POST['wppb_login']) && ($_POST['wppb_login'] == true) ) {
455
+
456
+ // it's a PB login form, check if we have a reCAPTCHA on it and display error if not valid
457
+ if ((isset($field['captcha-pb-forms'])) && (strpos($field['captcha-pb-forms'], 'pb_login') !== false) && ($wppb_recaptcha_response == false)) {
458
+ $user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
459
+ }
460
+
461
  }
462
+ else {
463
+ //reCAPTCHA error for displaying on the default WP login form
464
+ if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_login') !== false) && ($wppb_recaptcha_response == false)) {
465
+ $user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
466
+ }
467
 
 
 
 
468
  }
469
  }
470
  }
482
  $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
483
 
484
  if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_recover_password') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
 
 
 
485
 
486
+ if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ){
487
+ $recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
488
+ if (!empty($item_description))
489
+ $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
490
+
491
+ echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">' . $recaptcha_output . '</div>';
492
+ }
493
+ else {
494
+ // output Invisible reCAPTCHA html
495
+ echo wppb_recaptcha_get_html($publickey);
496
+ }
497
  }
498
  }
499
  }
524
  $field = wppb_get_recaptcha_field();
525
 
526
  if (!empty($field)) {
 
 
 
527
 
528
+ $publickey = trim($field['public-key']);
529
+ $item_title = apply_filters('wppb_register_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
530
+ $item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
 
 
531
 
532
+ wppb_recaptcha_set_default_values();
533
+ if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_register') !== false)) { // check where reCAPTCHA should display and add reCAPTCHA html
534
+
535
+ if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
536
+ $recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
537
+ if (!empty($item_description))
538
+ $recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
539
+
540
+ echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">' . $recaptcha_output . '</div>';
541
+ }
542
+ else {
543
+ // output reCAPTCHA html
544
+ echo wppb_recaptcha_get_html($publickey);
545
+ }
546
+ }
547
  }
548
  }
549
  add_action( 'register_form', 'wppb_display_recaptcha_default_wp_register' );
566
  }
567
  add_filter('registration_errors','wppb_verify_recaptcha_default_wp_register');
568
 
569
+ // set default values in case there's already an existing reCAPTCHA field in Manage fields (when upgrading)
570
  function wppb_recaptcha_set_default_values() {
571
  $manage_fields = get_option('wppb_manage_fields', 'not_set');
572
  if ($manage_fields != 'not_set') {
574
  if ($value['field'] == 'reCAPTCHA') {
575
  if ( !isset($value['captcha-pb-forms']) ) $manage_fields[$key]['captcha-pb-forms'] = 'pb_register';
576
  if ( !isset($value['captcha-wp-forms']) ) $manage_fields[$key]['captcha-wp-forms'] = 'default_wp_register';
577
+ if ( !isset($value['recaptcha-type']) ) $manage_fields[$key]['recaptcha-type'] = 'v2';
578
  }
579
  }
580
  update_option('wppb_manage_fields', $manage_fields);
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.7.6
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -33,7 +33,7 @@ function wppb_free_plugin_init() {
33
  {
34
  ?>
35
  <div class="error">
36
- <p><?php _e( PROFILE_BUILDER . ' is also activated. You need to deactivate it before activating this version of the plugin.', 'profile-builder'); ?></p>
37
  </div>
38
  <?php
39
  }
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
75
  *
76
  *
77
  */
78
- define('PROFILE_BUILDER_VERSION', '2.7.6' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.7.7
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
33
  {
34
  ?>
35
  <div class="error">
36
+ <p><?php printf( __( '%s is also activated. You need to deactivate it before activating this version of the plugin.', 'profile-builder'), PROFILE_BUILDER ); ?></p>
37
  </div>
38
  <?php
39
  }
75
  *
76
  *
77
  */
78
+ define('PROFILE_BUILDER_VERSION', '2.7.7' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 4.9.4
7
- Stable tag: 2.7.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -163,6 +163,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
163
  12. Role Editor
164
 
165
  == Changelog ==
 
 
 
 
 
166
  = 2.7.6 =
167
  * Fixed some issues on the login form that prevented some users from logging in
168
  * When changing/recovering password we now log out of all other/all sessions
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 4.9.4
7
+ Stable tag: 2.7.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
163
  12. Role Editor
164
 
165
  == Changelog ==
166
+ = 2.7.7 =
167
+ * Added Invisible reCAPTCHA support for both PB forms as well as default WordPress forms
168
+ * Small CSS modification in role editor
169
+ * Fixing some CSS issues with notifications class on some pages and addon pages
170
+
171
  = 2.7.6 =
172
  * Fixed some issues on the login form that prevented some users from logging in
173
  * When changing/recovering password we now log out of all other/all sessions
translation/profile-builder.catalog.php ADDED
@@ -0,0 +1,1602 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php __("", "profile-builder"); ?>
2
+ <?php __("bbPress", "profile-builder"); ?>
3
+ <?php __("bbPress Integration", "profile-builder"); ?>
4
+ <?php __("Choose (Single) User Listing to display under bbPress user Profile tab:", "profile-builder"); ?>
5
+ <?php __("None", "profile-builder"); ?>
6
+ <?php __("Select which Single User-listing managed via Profile Builder should replace the default bbPress user profile.", "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 __("Topics Started", "profile-builder"); ?>
11
+ <?php __("Replies Created", "profile-builder"); ?>
12
+ <?php __("Forum Role", "profile-builder"); ?>
13
+ <?php __("bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!", "profile-builder"); ?>
14
+ <?php __("BuddyPress", "profile-builder"); ?>
15
+ <?php __("BuddyPress Integration", "profile-builder"); ?>
16
+ <?php __("Import BuddyPress Fields to Profile Builder", "profile-builder"); ?>
17
+ <?php __("Import BuddyPress Fields", "profile-builder"); ?>
18
+ <?php __("Create fields in Profile Builder that match the existing ones in BuddyPress and import all the user field entries.<br><a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/add-ons/buddypress/#Import_BuddyPress_Fields_to_Profile_Builder\">Learn more about importing BuddyPress fields</a>.", "profile-builder"); ?>
19
+ <?php __("Registration form:", "profile-builder"); ?>
20
+ <?php __("Default Registration", "profile-builder"); ?>
21
+ <?php __("Select Profile Builder Registration form to replace the BuddyPress Registration form.<br>Registration emails will now be managed in Profile Builder -> User Email Customizer", "profile-builder"); ?>
22
+ <?php __("Edit Profile form:", "profile-builder"); ?>
23
+ <?php __("Select Profile Builder Edit Profile form to replace the BuddyPress Profile Edit tab.", "profile-builder"); ?>
24
+ <?php __("User Listing template:", "profile-builder"); ?>
25
+ <?php __("Select which User Listing template managed by Profile Builder should replace the default BuddyPress user profile view.", "profile-builder"); ?>
26
+ <?php __("Use All-User Listing?", "profile-builder"); ?>
27
+ <?php __("Enable PB User Listing on BuddyPress Members page", "profile-builder"); ?>
28
+ <?php __("Check this if All User-listing managed via Profile Builder should replace the default BuddyPress Members page.<br>The template used will be the one selected above.", "profile-builder"); ?>
29
+ <?php __("Allow members to override", "profile-builder"); ?>
30
+ <?php __("Enforce field visibility", "profile-builder"); ?>
31
+ <?php __("BuddyPress Default Field Visibility", "profile-builder"); ?>
32
+ <?php __("BuddyPress Allow Custom Visibility", "profile-builder"); ?>
33
+ <?php __("This field can be seen by: ", "profile-builder"); ?>
34
+ <?php __("Change", "profile-builder"); ?>
35
+ <?php __("Who can see this field?", "profile-builder"); ?>
36
+ <?php __("Close", "profile-builder"); ?>
37
+ <?php __("Everyone", "profile-builder"); ?>
38
+ <?php __("Only Me", "profile-builder"); ?>
39
+ <?php __("All Members", "profile-builder"); ?>
40
+ <?php __("My Friends", "profile-builder"); ?>
41
+ <?php __("<h2>Import BuddyPress Fields to Profile Builder</h2>", "profile-builder"); ?>
42
+ <?php __("BuddyPress is not installed and active. Import aborted!", "profile-builder"); ?>
43
+ <?php __("Importing BuddyPress Field Settings to Profile Builder...<br><br>", "profile-builder"); ?>
44
+ <?php __("If the page does not redirect automatically", "profile-builder"); ?>
45
+ <?php __("click here", "profile-builder"); ?>
46
+ <?php __("Importing User entries BuddyPress Fields to Profile Builder...<br><br>", "profile-builder"); ?>
47
+ <?php __("Done.", "profile-builder"); ?>
48
+ <?php __("Back to BuddyPress Settings page", "profile-builder"); ?>
49
+ <?php __("Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar.", "profile-builder"); ?>
50
+ <?php __("BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!", "profile-builder"); ?>
51
+ <?php __("Name", "profile-builder"); ?>
52
+ <?php __("Username:", "profile-builder"); ?>
53
+ <?php __("First Name:", "profile-builder"); ?>
54
+ <?php __("Last Name:", "profile-builder"); ?>
55
+ <?php __("Nickname:", "profile-builder"); ?>
56
+ <?php __("Display name:", "profile-builder"); ?>
57
+ <?php __("Contact Info", "profile-builder"); ?>
58
+ <?php __("Website:", "profile-builder"); ?>
59
+ <?php __("About Yourself", "profile-builder"); ?>
60
+ <?php __("Biographical Info:", "profile-builder"); ?>
61
+ <?php __("BuddyPress Avatar", "profile-builder"); ?>
62
+ <?php __("BuddyPress Cover Photo", "profile-builder"); ?>
63
+ <?php __("BuddyPress Last Active", "profile-builder"); ?>
64
+ <?php __("BuddyPress Add Friend Button", "profile-builder"); ?>
65
+ <?php __("BuddyPress Latest Update", "profile-builder"); ?>
66
+ <?php __("Never active", "profile-builder"); ?>
67
+ <?php __("Last Active", "profile-builder"); ?>
68
+ <?php __("My BuddyPress Friends Tab", "profile-builder"); ?>
69
+ <?php __("BuddyPress field visibility syntax", "profile-builder"); ?>
70
+ <?php __("Are you sure you want to reset this template?", "profile-builder"); ?>
71
+ <?php __("Reset to Default BuddyPress User Listing Templates", "profile-builder"); ?>
72
+ <?php __("<b>Note:</b> This action is not reversible. All modifications to this template will be lost!", "profile-builder"); ?>
73
+ <?php __("Reset template", "profile-builder"); ?>
74
+ <?php __("CSS Class", "profile-builder"); ?>
75
+ <?php __("Add a class to a field. Should not contain dots(.) and for multiple classes separate by space.", "profile-builder"); ?>
76
+ <?php __("Login Label", "profile-builder"); ?>
77
+ <?php __("Login", "profile-builder"); ?>
78
+ <?php __("Logout Label", "profile-builder"); ?>
79
+ <?php __("Logout", "profile-builder"); ?>
80
+ <?php __("Form page URL", "profile-builder"); ?>
81
+ <?php __("Login page URL", "profile-builder"); ?>
82
+ <?php __("Login Form page URL", "profile-builder"); ?>
83
+ <?php __("Edit Profile Form page URL", "profile-builder"); ?>
84
+ <?php __("Register Form page URL", "profile-builder"); ?>
85
+ <?php __("Display Mode", "profile-builder"); ?>
86
+ <?php __("Logged In Users", "profile-builder"); ?>
87
+ <?php __("Logged Out Users", "profile-builder"); ?>
88
+ <?php __("Restrict menu item to a minimum role", "profile-builder"); ?>
89
+ <?php __("Works only if Display Mode: Logged In Users is selected", "profile-builder"); ?>
90
+ <?php __("Edit Profile", "profile-builder"); ?>
91
+ <?php __("Register", "profile-builder"); ?>
92
+ <?php __("iFrame Title", "profile-builder"); ?>
93
+ <?php __("iFrame Size", "profile-builder"); ?>
94
+ <?php __("Height (px)", "profile-builder"); ?>
95
+ <?php __("Width (px)", "profile-builder"); ?>
96
+ <?php __("The email confirmation does not match your email address.", "profile-builder"); ?>
97
+ <?php __("Visibility", "profile-builder"); ?>
98
+ <?php __("<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
99
+ <?php __("User Role Visibility", "profile-builder"); ?>
100
+ <?php __("Select which user roles see this field", "profile-builder"); ?>
101
+ <?php __("Location Visibility", "profile-builder"); ?>
102
+ <?php __("Select the locations you wish the field to appear", "profile-builder"); ?>
103
+ <?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>", "profile-builder"); ?>
104
+ <?php __("Edit", "profile-builder"); ?>
105
+ <?php __("Delete", "profile-builder"); ?>
106
+ <?php __("This field is visible only for administrators.", "profile-builder"); ?>
107
+ <?php __("This field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
108
+ <?php __("This field is visible only for the following user roles: %1$s", "profile-builder"); ?>
109
+ <?php __("This field is visible only in the following locations: %1$s", "profile-builder"); ?>
110
+ <?php __("Get file", "profile-builder"); ?>
111
+ <?php __("You do not have the capabilities necessary to edit this field.", "profile-builder"); ?>
112
+ <?php __("Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site.", "profile-builder"); ?>
113
+ <?php __("Export", "profile-builder"); ?>
114
+ <?php __("Import Profile Builder options from a .json file. This allows you to easily import the configuration from another site. ", "profile-builder"); ?>
115
+ <?php __("Import", "profile-builder"); ?>
116
+ <?php __("This will overwrite your old PB settings! Are you sure you want to continue?", "profile-builder"); ?>
117
+ <?php __("Import and Export", "profile-builder"); ?>
118
+ <?php __(" labels scanned.", "profile-builder"); ?>
119
+ <?php __("Labels Edit", "profile-builder"); ?>
120
+ <?php __("Label to Edit", "profile-builder"); ?>
121
+ <?php __("New Label", "profile-builder"); ?>
122
+ <?php __("Edit Labels", "profile-builder"); ?>
123
+ <?php __("Rescan Lables", "profile-builder"); ?>
124
+ <?php __("Informations", "profile-builder"); ?>
125
+ <?php __("Import and Export Labels", "profile-builder"); ?>
126
+ <?php __("Import Labels from a .json file.", "profile-builder"); ?>
127
+ <?php __("Easily import the labels from another site.", "profile-builder"); ?>
128
+ <?php __("This will overwrite all your old edited labels!\nAre you sure you want to continue?", "profile-builder"); ?>
129
+ <?php __("Export Labels as a .json file.", "profile-builder"); ?>
130
+ <?php __("Easily import the labels into another site.", "profile-builder"); ?>
131
+ <?php __("You must select a label to edit!", "profile-builder"); ?>
132
+ <?php __("Labels", "profile-builder"); ?>
133
+ <?php __("Delete all", "profile-builder"); ?>
134
+ <?php __("No labels edited, nothing to export!", "profile-builder"); ?>
135
+ <?php __("MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!", "profile-builder"); ?>
136
+ <?php __("Maximum Character Length", "profile-builder"); ?>
137
+ <?php __("Specify the maximum number of characters a user can type in this field", "profile-builder"); ?>
138
+ <?php __("The entered character number is not numerical\n", "profile-builder"); ?>
139
+ <?php __("Step", "profile-builder"); ?>
140
+ <?php __("Title for Tab", "profile-builder"); ?>
141
+ <?php __("Add Break Points to edit tabs title.", "profile-builder"); ?>
142
+ <?php __("Publish the form to edit tabs title.", "profile-builder"); ?>
143
+ <?php __("Publish the form before adding Break Points!", "profile-builder"); ?>
144
+ <?php __("Request in process, please wait a few seconds before a new one!", "profile-builder"); ?>
145
+ <?php __("Multi-Step Forms", "profile-builder"); ?>
146
+ <?php __("Multi-Step Forms options updated.", "profile-builder"); ?>
147
+ <?php __("Enable on:", "profile-builder"); ?>
148
+ <?php __("PB Default Register Form", "profile-builder"); ?>
149
+ <?php __("PB Default Edit Profile Form", "profile-builder"); ?>
150
+ <?php __("To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page.", "profile-builder"); ?>
151
+ <?php __("Pagination and Tabs:", "profile-builder"); ?>
152
+ <?php __("Enable Pagination", "profile-builder"); ?>
153
+ <?php __("Enable Tabs", "profile-builder"); ?>
154
+ <?php __("Edit Tabs Title", "profile-builder"); ?>
155
+ <?php __("Update Multi-Step", "profile-builder"); ?>
156
+ <?php __("To enable MSF you must add Break Points.", "profile-builder"); ?>
157
+ <?php __("Next", "profile-builder"); ?>
158
+ <?php __("Previous", "profile-builder"); ?>
159
+ <?php __("Placeholder Labels", "profile-builder"); ?>
160
+ <?php __("Replace labels with placeholders:", "profile-builder"); ?>
161
+ <?php __("Yes", "profile-builder"); ?>
162
+ <?php __("No", "profile-builder"); ?>
163
+ <?php __("Social Connect", "profile-builder"); ?>
164
+ <?php __("Display on the Following Forms", "profile-builder"); ?>
165
+ <?php __("Disable Registration on", "profile-builder"); ?>
166
+ <?php __("Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms.", "profile-builder"); ?>
167
+ <?php __("Facebook Login", "profile-builder"); ?>
168
+ <?php __("Facebook App ID", "profile-builder"); ?>
169
+ <?php __("Google+ Login", "profile-builder"); ?>
170
+ <?php __("Google+ Client ID", "profile-builder"); ?>
171
+ <?php __("Twitter Login", "profile-builder"); ?>
172
+ <?php __("Twitter API Key", "profile-builder"); ?>
173
+ <?php __("Twitter API Secret", "profile-builder"); ?>
174
+ <?php __("LinkedIn Login", "profile-builder"); ?>
175
+ <?php __("LinkedIn Client ID", "profile-builder"); ?>
176
+ <?php __("Buttons Order", "profile-builder"); ?>
177
+ <?php __("Drag and drop the dots to re-order.", "profile-builder"); ?>
178
+ <?php __("Buttons Re-Order", "profile-builder"); ?>
179
+ <?php __("Save the buttons order from the buttons order checkboxes", "profile-builder"); ?>
180
+ <?php __("Buttons Location", "profile-builder"); ?>
181
+ <?php __("Display social buttons before or after the forms fields.", "profile-builder"); ?>
182
+ <?php __("Buttons Style", "profile-builder"); ?>
183
+ <?php __("Heading Before Buttons (Login/Register)", "profile-builder"); ?>
184
+ <?php __("Empty field will remove the heading.", "profile-builder"); ?>
185
+ <?php __("Heading Before Buttons (Edit Profile)", "profile-builder"); ?>
186
+ <?php __("Facebook Button Text (Login/Register)", "profile-builder"); ?>
187
+ <?php __("Google+ Button Text (Login/Register)", "profile-builder"); ?>
188
+ <?php __("Twitter Button Text (Login/Register)", "profile-builder"); ?>
189
+ <?php __("LinkedIn Button Text (Login/Register)", "profile-builder"); ?>
190
+ <?php __("Facebook Button Text (Edit Profile)", "profile-builder"); ?>
191
+ <?php __("Google+ Button Text (Edit Profile)", "profile-builder"); ?>
192
+ <?php __("Twitter Button Text (Edit Profile)", "profile-builder"); ?>
193
+ <?php __("LinkedIn Button Text (Edit Profile)", "profile-builder"); ?>
194
+ <?php __("Unlink Accounts (Edit Profile)", "profile-builder"); ?>
195
+ <?php __("This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page.", "profile-builder"); ?>
196
+ <?php __("Default Social Connect CSS in the Front-end", "profile-builder"); ?>
197
+ <?php __("Settings", "profile-builder"); ?>
198
+ <?php __("Help", "profile-builder"); ?>
199
+ <?php __("Display Social Connect buttons:", "profile-builder"); ?>
200
+ <?php __("You have successfully unlinked %% from your account.", "profile-builder"); ?>
201
+ <?php __("An account with this email address already exists.<br> Do you want to connect it?", "profile-builder"); ?>
202
+ <?php __("Please enter your website account password", "profile-builder"); ?>
203
+ <?php __("Please enter a new email", "profile-builder"); ?>
204
+ <?php __("You have successfully linked your account to %%.", "profile-builder"); ?>
205
+ <?php __("Something went wrong. Please try again later!", "profile-builder"); ?>
206
+ <?php __("Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link.", "profile-builder"); ?>
207
+ <?php __("<strong>ERROR</strong>: You need to confirm your email address before you can log in.", "profile-builder"); ?>
208
+ <?php __("Before you can access your account an administrator has to approve it. You will be notified via email.", "profile-builder"); ?>
209
+ <?php __("<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
210
+ <?php __("You will be redirected in 5 seconds. If not, click %%.", "profile-builder"); ?>
211
+ <?php __("here", "profile-builder"); ?>
212
+ <?php __("<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first.", "profile-builder"); ?>
213
+ <?php __("Wrong password!", "profile-builder"); ?>
214
+ <?php __("Please enter a valid email!", "profile-builder"); ?>
215
+ <?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
216
+ <?php __("Please enter your Facebook email", "profile-builder"); ?>
217
+ <?php __("Please enter your Facebook email!", "profile-builder"); ?>
218
+ <?php __("Waiting for Twitter...", "profile-builder"); ?>
219
+ <?php __("Please enter your Twitter email", "profile-builder"); ?>
220
+ <?php __("Please enter your Twitter email!", "profile-builder"); ?>
221
+ <?php __("Profile Builder not active!", "profile-builder"); ?>
222
+ <?php __("General Settings", "profile-builder"); ?>
223
+ <?php __("Application Settings", "profile-builder"); ?>
224
+ <?php __("Appearance Settings", "profile-builder"); ?>
225
+ <?php __("Unlink", "profile-builder"); ?>
226
+ <?php __("Your account is linked with:", "profile-builder"); ?>
227
+ <?php __("Country", "profile-builder"); ?>
228
+ <?php __("First Name", "profile-builder"); ?>
229
+ <?php __("Last Name", "profile-builder"); ?>
230
+ <?php __("Company Name", "profile-builder"); ?>
231
+ <?php __("Address", "profile-builder"); ?>
232
+ <?php __("Town / City", "profile-builder"); ?>
233
+ <?php __("State / County", "profile-builder"); ?>
234
+ <?php __("Postcode / Zip", "profile-builder"); ?>
235
+ <?php __("Email Address", "profile-builder"); ?>
236
+ <?php __("Phone", "profile-builder"); ?>
237
+ <?php __("Ship to a different address?", "profile-builder"); ?>
238
+ <?php __("Billing Address", "profile-builder"); ?>
239
+ <?php __("Displays customer billing fields in front-end. ", "profile-builder"); ?>
240
+ <?php __("Shipping Address", "profile-builder"); ?>
241
+ <?php __("Displays customer shipping fields in front-end. ", "profile-builder"); ?>
242
+ <?php __("Address line 2", "profile-builder"); ?>
243
+ <?php __("Billing Fields", "profile-builder"); ?>
244
+ <?php __("Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required", "profile-builder"); ?>
245
+ <?php __("Billing Fields Order", "profile-builder"); ?>
246
+ <?php __("Save the billing fields order from the billing fields checkboxes", "profile-builder"); ?>
247
+ <?php __("Billing Fields Name", "profile-builder"); ?>
248
+ <?php __("Save the billing fields names", "profile-builder"); ?>
249
+ <?php __("Shipping Fields", "profile-builder"); ?>
250
+ <?php __("Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required", "profile-builder"); ?>
251
+ <?php __("Shipping Fields Order", "profile-builder"); ?>
252
+ <?php __("Save the shipping fields order from the billing fields checkboxes", "profile-builder"); ?>
253
+ <?php __("Shipping Fields Name", "profile-builder"); ?>
254
+ <?php __("Save the shipping fields names", "profile-builder"); ?>
255
+ <?php __("Field Name", "profile-builder"); ?>
256
+ <?php __("Required", "profile-builder"); ?>
257
+ <?php __("Click to edit ", "profile-builder"); ?>
258
+ <?php __("The email you entered is not a valid email address.", "profile-builder"); ?>
259
+ <?php __("No options available. Please select one country.", "profile-builder"); ?>
260
+ <?php __("Billing ", "profile-builder"); ?>
261
+ <?php __("Shipping ", "profile-builder"); ?>
262
+ <?php __("WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!", "profile-builder"); ?>
263
+ <?php __("Display on WooCommerce Checkout", "profile-builder"); ?>
264
+ <?php __("Whether the field should be added to the WooCommerce checkout form or not", "profile-builder"); ?>
265
+ <?php __("WooCommerce Sync", "profile-builder"); ?>
266
+ <?php __("Choose Register form to display on My Account page:", "profile-builder"); ?>
267
+ <?php __("Default Register", "profile-builder"); ?>
268
+ <?php __("Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page.", "profile-builder"); ?>
269
+ <?php __("Choose Edit Profile form to display on My Account page:", "profile-builder"); ?>
270
+ <?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
271
+ <?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
272
+ <?php __("Campaign Monitor", "profile-builder"); ?>
273
+ <?php __("Campaign Monitor Integration", "profile-builder"); ?>
274
+ <?php __("Save", "profile-builder"); ?>
275
+ <?php __("Campaign Monitor API key:", "profile-builder"); ?>
276
+ <?php __("The API key was successfully validated!", "profile-builder"); ?>
277
+ <?php __("Either the API key is not valid or we could not connect to Campaign Monitor to validate it!", "profile-builder"); ?>
278
+ <?php __("Enter your Campaign Monitor account API key.", "profile-builder"); ?>
279
+ <?php __("Select client:", "profile-builder"); ?>
280
+ <?php __("Loading clients...", "profile-builder"); ?>
281
+ <?php __("Select a client that you would like to edit.", "profile-builder"); ?>
282
+ <?php __("No clients found", "profile-builder"); ?>
283
+ <?php __("Select a client...", "profile-builder"); ?>
284
+ <?php __("Client List", "profile-builder"); ?>
285
+ <?php __("Fields Count", "profile-builder"); ?>
286
+ <?php __("Retrieves changes made in your Campaign Monitor account and matches it with the saved data from the add-on. This does not save the new data, so you will have to manually save.", "profile-builder"); ?>
287
+ <?php __("Synchronize client data", "profile-builder"); ?>
288
+ <?php __("Change client", "profile-builder"); ?>
289
+ <?php __("No lists were found.", "profile-builder"); ?>
290
+ <?php __("Click to edit", "profile-builder"); ?>
291
+ <?php __("Cancel", "profile-builder"); ?>
292
+ <?php __("Field Associations:", "profile-builder"); ?>
293
+ <?php __("Associate each Campaign Monitor field with a Profile Builder field", "profile-builder"); ?>
294
+ <?php __("Extra Options:", "profile-builder"); ?>
295
+ <?php __("Resubscribe", "profile-builder"); ?>
296
+ <?php __("If the subscriber is in an inactive state or has previously been unsubscribed and you check the Resubscribe option, they will be re-added to the list. Therefore, this method should be used with caution and only where suitable.", "profile-builder"); ?>
297
+ <?php __("Campaign Monitor API key is empty", "profile-builder"); ?>
298
+ <?php __("Campaign Monitor API key is invalid", "profile-builder"); ?>
299
+ <?php __("Campaign Monitor List", "profile-builder"); ?>
300
+ <?php __("Please enter a Campaign Monitor API key <a href=\"%s\">here</a>.", "profile-builder"); ?>
301
+ <?php __("Something went wrong. Either the API key is invalid or we could not connect to Campaign Monitor to validate the key.", "profile-builder"); ?>
302
+ <?php __("Select a list...", "profile-builder"); ?>
303
+ <?php __("Select in which Campaign Monitor list you wish to add a new subscriber", "profile-builder"); ?>
304
+ <?php __("Hide on Edit Profile", "profile-builder"); ?>
305
+ <?php __("If checked this field will not be displayed on edit profile forms", "profile-builder"); ?>
306
+ <?php __("We couldn't find any lists in your Campaign Monitor settings.", "profile-builder"); ?>
307
+ <?php __("Please select at least one Campaign Monitor list \n", "profile-builder"); ?>
308
+ <?php __("Profile Builder Campaign Monitor Widget", "profile-builder"); ?>
309
+ <?php __("Adds a basic subscribe form so that your users can subscribe to your Campaign Monitor lists", "profile-builder"); ?>
310
+ <?php __("Something went wrong. Either the Campaign Monitor API key is missing or it is invalid.", "profile-builder"); ?>
311
+ <?php __("%s", "profile-builder"); ?>
312
+ <?php __("Submit", "profile-builder"); ?>
313
+ <?php __("Subscribe to Newsletter", "profile-builder"); ?>
314
+ <?php __("Title", "profile-builder"); ?>
315
+ <?php __("Select the list your new subscriber will be added to", "profile-builder"); ?>
316
+ <?php __("Select list...", "profile-builder"); ?>
317
+ <?php __("No lists found", "profile-builder"); ?>
318
+ <?php __("Select which fields to show", "profile-builder"); ?>
319
+ <?php __("E-mail address", "profile-builder"); ?>
320
+ <?php __("fullname", "profile-builder"); ?>
321
+ <?php __("Extra options", "profile-builder"); ?>
322
+ <?php __("The Campaign Monitor API key is either missing or is invalid.", "profile-builder"); ?>
323
+ <?php __("Uploaded file is not valid json!", "profile-builder"); ?>
324
+ <?php __("Import successfully!", "profile-builder"); ?>
325
+ <?php __("Please select a .json file to import!", "profile-builder"); ?>
326
+ <?php __("Page will refresh in 3 seconds...", "profile-builder"); ?>
327
+ <?php __("MailChimp", "profile-builder"); ?>
328
+ <?php __("MailChimp Integration", "profile-builder"); ?>
329
+ <?php __("Before you can make any changes you will need to add a MailChimp API key.", "profile-builder"); ?>
330
+ <?php __("MailChimp List", "profile-builder"); ?>
331
+ <?php __("We couldn't find any lists", "profile-builder"); ?>
332
+ <?php __("MailChimp API Key:", "profile-builder"); ?>
333
+ <?php __("Either the API key is not valid or we could not connect to MailChimp to validate it!", "profile-builder"); ?>
334
+ <?php __("Enter a MailChimp API key. You can create keys in your MailChimp account.", "profile-builder"); ?>
335
+ <?php __("Edit this item", "profile-builder"); ?>
336
+ <?php __("This field is required in MailChimp", "profile-builder"); ?>
337
+ <?php __("Associate each MailChimp field with a Profile Builder field", "profile-builder"); ?>
338
+ <?php __("Group Associations:", "profile-builder"); ?>
339
+ <?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
340
+ <?php __("Double Opt-In", "profile-builder"); ?>
341
+ <?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
342
+ <?php __("Send Welcome E-mail", "profile-builder"); ?>
343
+ <?php __("If checked will send an e-mail to welcome the user to the subscribtion area", "profile-builder"); ?>
344
+ <?php __("MailChimp API key is empty", "profile-builder"); ?>
345
+ <?php __("MailChimp API key is invalid", "profile-builder"); ?>
346
+ <?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
347
+ <?php __("Please enter a MailChimp API key <a href=\"%s\">here</a>.", "profile-builder"); ?>
348
+ <?php __("Select in which MailChimp list you wish to add a new subscriber", "profile-builder"); ?>
349
+ <?php __("Checked by Default", "profile-builder"); ?>
350
+ <?php __("If checked the Subscribe checkbox in the front-end will be checked by default on register forms", "profile-builder"); ?>
351
+ <?php __("We couldn't find any lists in your MailChimp settings.", "profile-builder"); ?>
352
+ <?php __("Please select at least one MailChimp list \n", "profile-builder"); ?>
353
+ <?php __("Profile Builder MailChimp Widget", "profile-builder"); ?>
354
+ <?php __("Adds a basic subscribe form so that your users can subscribe to your MailChimp lists", "profile-builder"); ?>
355
+ <?php __("Something went wrong. Either the MailChimp API key is missing or it is invalid.", "profile-builder"); ?>
356
+ <?php __("Select...", "profile-builder"); ?>
357
+ <?php __("Extra Options", "profile-builder"); ?>
358
+ <?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscribtion", "profile-builder"); ?>
359
+ <?php __("Please select a list first", "profile-builder"); ?>
360
+ <?php __("No list was found.", "profile-builder"); ?>
361
+ <?php __("MailPoet List", "profile-builder"); ?>
362
+ <?php __("Select in which MailPoet list you wish to add a new subscriber", "profile-builder"); ?>
363
+ <?php __("We couldn't find any lists in your MailPoet settings.", "profile-builder"); ?>
364
+ <?php __("Please install and activate MailPoet plugin.", "profile-builder"); ?>
365
+ <?php __("Please select at least one MailPoet list \n", "profile-builder"); ?>
366
+ <?php __("Maximum Selections", "profile-builder"); ?>
367
+ <?php __("Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected.", "profile-builder"); ?>
368
+ <?php __("User Inputted Options", "profile-builder"); ?>
369
+ <?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
370
+ <?php __("required", "profile-builder"); ?>
371
+ <?php __("Link with Facebook", "profile-builder"); ?>
372
+ <?php __("Sign in with Facebook", "profile-builder"); ?>
373
+ <?php __("Link with Google+", "profile-builder"); ?>
374
+ <?php __("Sign in with Google+", "profile-builder"); ?>
375
+ <?php __("Link with LinkedIn", "profile-builder"); ?>
376
+ <?php __("Sign in with LinkedIn", "profile-builder"); ?>
377
+ <?php __("Connection with twitter Failed", "profile-builder"); ?>
378
+ <?php __("Error Receiving Request Token", "profile-builder"); ?>
379
+ <?php __("Something went wrong. Please try again later.", "profile-builder"); ?>
380
+ <?php __("Link with Twitter", "profile-builder"); ?>
381
+ <?php __("Sign in with Twitter", "profile-builder"); ?>
382
+ <?php __("Add-Ons", "profile-builder"); ?>
383
+ <?php __("Recommended Plugins", "profile-builder"); ?>
384
+ <?php __("Free", "profile-builder"); ?>
385
+ <?php __("Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders.", "profile-builder"); ?>
386
+ <?php __("Activate", "profile-builder"); ?>
387
+ <?php __("Deactivate", "profile-builder"); ?>
388
+ <?php __("Plugin is <strong>inactive</strong>", "profile-builder"); ?>
389
+ <?php __("Plugin is <strong>active</strong>", "profile-builder"); ?>
390
+ <?php __("Install Now", "profile-builder"); ?>
391
+ <?php __("Compatible with your version of Profile Builder.", "profile-builder"); ?>
392
+ <?php __("Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
393
+ <?php __("Accept user payments, create subscription plans and restrict content on your membership site.", "profile-builder"); ?>
394
+ <?php __("Downloading and installing...", "profile-builder"); ?>
395
+ <?php __("Installation complete", "profile-builder"); ?>
396
+ <?php __("Add-On is Active", "profile-builder"); ?>
397
+ <?php __("Add-On has been activated", "profile-builder"); ?>
398
+ <?php __("Retry Install", "profile-builder"); ?>
399
+ <?php __("Add-On is <strong>active</strong>", "profile-builder"); ?>
400
+ <?php __("Add-On is <strong>inactive</strong>", "profile-builder"); ?>
401
+ <?php __("Add-On has been deactivated.", "profile-builder"); ?>
402
+ <?php __("Something went wrong, we could not connect to the server. Please try again later.", "profile-builder"); ?>
403
+ <?php __("Available in Hobbyist and Pro Versions", "profile-builder"); ?>
404
+ <?php __("Available in All Versions", "profile-builder"); ?>
405
+ <?php __("Learn More", "profile-builder"); ?>
406
+ <?php __("Download Now", "profile-builder"); ?>
407
+ <?php __("Upgrade Profile Builder", "profile-builder"); ?>
408
+ <?php __("Not compatible with Profile Builder", "profile-builder"); ?>
409
+ <?php __("Update", "profile-builder"); ?>
410
+ <?php __("Not compatible with your version of Profile Builder.", "profile-builder"); ?>
411
+ <?php __("Minimum required Profile Builder version:", "profile-builder"); ?>
412
+ <?php __("Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
413
+ <?php __("Show/Hide the Admin Bar on the Front-End", "profile-builder"); ?>
414
+ <?php __("Admin Bar Settings", "profile-builder"); ?>
415
+ <?php __("Choose which user roles view the admin bar in the front-end of the website.", "profile-builder"); ?>
416
+ <?php __("User-Role", "profile-builder"); ?>
417
+ <?php __("Default", "profile-builder"); ?>
418
+ <?php __("Show", "profile-builder"); ?>
419
+ <?php __("Hide", "profile-builder"); ?>
420
+ <?php __("Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )", "profile-builder"); ?>
421
+ <?php __("Display name publicly as - only appears on the Edit Profile page!", "profile-builder"); ?>
422
+ <?php __("Blog Details - only appears on the Registration page!", "profile-builder"); ?>
423
+ <?php __("<strong>ERROR</strong>: The password must have the minimum length of %s characters", "profile-builder"); ?>
424
+ <?php __("Very weak", "profile-builder"); ?>
425
+ <?php __("Weak", "profile-builder"); ?>
426
+ <?php __("Medium", "profile-builder"); ?>
427
+ <?php __("Strong", "profile-builder"); ?>
428
+ <?php __("<strong>ERROR</strong>: The password must have a minimum strength of %s", "profile-builder"); ?>
429
+ <?php __("Add Field", "profile-builder"); ?>
430
+ <?php __("Save Settings", "profile-builder"); ?>
431
+ <?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
432
+ <?php __("Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder.", "profile-builder"); ?>
433
+ <?php __("Check it out!", "profile-builder"); ?>
434
+ <?php __("Dismiss this notice.", "profile-builder"); ?>
435
+ <?php __("Basic Information", "profile-builder"); ?>
436
+ <?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
437
+ <?php __("The best way to add front-end registration, edit profile and login forms.", "profile-builder"); ?>
438
+ <?php __("For Modern User Interaction", "profile-builder"); ?>
439
+ <?php __("Friction-less login using %s shortcode or a widget.", "profile-builder"); ?>
440
+ <?php __("Registration", "profile-builder"); ?>
441
+ <?php __("Beautiful registration forms fully customizable using the %s shortcode.", "profile-builder"); ?>
442
+ <?php __("Straight forward edit profile forms using %s shortcode.", "profile-builder"); ?>
443
+ <?php __("Extra Features", "profile-builder"); ?>
444
+ <?php __("Features that give you more control over your users, increased security and help you fight user registration spam.", "profile-builder"); ?>
445
+ <?php __("Enable extra features", "profile-builder"); ?>
446
+ <?php __("Recover Password", "profile-builder"); ?>
447
+ <?php __("Allow users to recover their password in the front-end using the %s.", "profile-builder"); ?>
448
+ <?php __("Admin Approval (*)", "profile-builder"); ?>
449
+ <?php __("You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.", "profile-builder"); ?>
450
+ <?php __("Email Confirmation", "profile-builder"); ?>
451
+ <?php __("Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.", "profile-builder"); ?>
452
+ <?php __("Content Restriction", "profile-builder"); ?>
453
+ <?php __("Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status.", "profile-builder"); ?>
454
+ <?php __("Minimum Password Length and Strength Meter", "profile-builder"); ?>
455
+ <?php __("Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.", "profile-builder"); ?>
456
+ <?php __("Login with Email or Username", "profile-builder"); ?>
457
+ <?php __("Allow users to log in with their email or username when accessing your site.", "profile-builder"); ?>
458
+ <?php __("Roles Editor", "profile-builder"); ?>
459
+ <?php __("Add, remove, clone and edit roles and also capabilities for these roles.", "profile-builder"); ?>
460
+ <?php __("Customize Your Forms The Way You Want (*)", "profile-builder"); ?>
461
+ <?php __("With Extra Profile Fields you can create the exact registration form your project needs.", "profile-builder"); ?>
462
+ <?php __("Extra Profile Fields are available in Hobbyist or PRO versions", "profile-builder"); ?>
463
+ <?php __("Get started with extra fields", "profile-builder"); ?>
464
+ <?php __("Avatar Upload", "profile-builder"); ?>
465
+ <?php __("Generic Uploads", "profile-builder"); ?>
466
+ <?php __("Agree To Terms Checkbox", "profile-builder"); ?>
467
+ <?php __("Datepicker", "profile-builder"); ?>
468
+ <?php __("Timepicker", "profile-builder"); ?>
469
+ <?php __("Colorpicker", "profile-builder"); ?>
470
+ <?php __("reCAPTCHA", "profile-builder"); ?>
471
+ <?php __("Country Select", "profile-builder"); ?>
472
+ <?php __("Currency Select", "profile-builder"); ?>
473
+ <?php __("Timezone Select", "profile-builder"); ?>
474
+ <?php __("Input / Hidden Input", "profile-builder"); ?>
475
+ <?php __("Number", "profile-builder"); ?>
476
+ <?php __("Checkbox", "profile-builder"); ?>
477
+ <?php __("Select", "profile-builder"); ?>
478
+ <?php __("Radio Buttons", "profile-builder"); ?>
479
+ <?php __("Textarea", "profile-builder"); ?>
480
+ <?php __("Validation", "profile-builder"); ?>
481
+ <?php __("Map", "profile-builder"); ?>
482
+ <?php __("HTML", "profile-builder"); ?>
483
+ <?php __("Powerful Modules (**)", "profile-builder"); ?>
484
+ <?php __("Everything you will need to manage your users is probably already available using the Pro Modules.", "profile-builder"); ?>
485
+ <?php __("Enable your modules", "profile-builder"); ?>
486
+ <?php __("Find out more about PRO Modules", "profile-builder"); ?>
487
+ <?php __("User Listing", "profile-builder"); ?>
488
+ <?php __("Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.", "profile-builder"); ?>
489
+ <?php __("To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.", "profile-builder"); ?>
490
+ <?php __("Email Customizer", "profile-builder"); ?>
491
+ <?php __("Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.", "profile-builder"); ?>
492
+ <?php __("Custom Redirects", "profile-builder"); ?>
493
+ <?php __("Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.", "profile-builder"); ?>
494
+ <?php __("Multiple Registration Forms", "profile-builder"); ?>
495
+ <?php __("Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.", "profile-builder"); ?>
496
+ <?php __("Multiple Edit-profile Forms", "profile-builder"); ?>
497
+ <?php __("Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.", "profile-builder"); ?>
498
+ <?php __("Repeater Fields", "profile-builder"); ?>
499
+ <?php __("Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.", "profile-builder"); ?>
500
+ <?php __(" * only available in the %1$sHobbyist and Pro versions%2$s.", "profile-builder"); ?>
501
+ <?php __("** only available in the %1$sPro version%2$s.", "profile-builder"); ?>
502
+ <?php __("Load Profile Builder's own CSS file in the front-end:", "profile-builder"); ?>
503
+ <?php __("You can find the default file here: %1$s", "profile-builder"); ?>
504
+ <?php __("\"Email Confirmation\" Activated:", "profile-builder"); ?>
505
+ <?php __("This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module.", "profile-builder"); ?>
506
+ <?php __("You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.", "profile-builder"); ?>
507
+ <?php __("\"Email Confirmation\" Landing Page:", "profile-builder"); ?>
508
+ <?php __("Existing Pages", "profile-builder"); ?>
509
+ <?php __("Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user.", "profile-builder"); ?>
510
+ <?php __("\"Admin Approval\" Activated:", "profile-builder"); ?>
511
+ <?php __("You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.", "profile-builder"); ?>
512
+ <?php __("\"Admin Approval\" on User Role:", "profile-builder"); ?>
513
+ <?php __("Select on what user roles to activate Admin Approval.", "profile-builder"); ?>
514
+ <?php __("\"Roles Editor\" Activated:", "profile-builder"); ?>
515
+ <?php __("You can add / edit user roles at %1$sUsers > Roles Editor%2$s.", "profile-builder"); ?>
516
+ <?php __("\"Content Restriction\" Activated:", "profile-builder"); ?>
517
+ <?php __("Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content.", "profile-builder"); ?>
518
+ <?php __("\"Admin Approval\" Feature:", "profile-builder"); ?>
519
+ <?php __("You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s.", "profile-builder"); ?>
520
+ <?php __("Allow Users to Log in With:", "profile-builder"); ?>
521
+ <?php __("Username and Email", "profile-builder"); ?>
522
+ <?php __("Username", "profile-builder"); ?>
523
+ <?php __("Email", "profile-builder"); ?>
524
+ <?php __("\"Username and Email\" - users can Log In with both Username and Email.", "profile-builder"); ?>
525
+ <?php __("\"Username\" - users can Log In only with Username.", "profile-builder"); ?>
526
+ <?php __("\"Email\" - users can Log In only with Email.", "profile-builder"); ?>
527
+ <?php __("Minimum Password Length:", "profile-builder"); ?>
528
+ <?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
529
+ <?php __("Minimum Password Strength:", "profile-builder"); ?>
530
+ <?php __("Disabled", "profile-builder"); ?>
531
+ <?php __("Manage Fields", "profile-builder"); ?>
532
+ <?php __("Manage Default and Extra Fields", "profile-builder"); ?>
533
+ <?php __("Choose one of the supported field types", "profile-builder"); ?>
534
+ <?php __(". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>.", "profile-builder"); ?>
535
+ <?php __("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", "profile-builder"); ?>
536
+ <?php __("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", "profile-builder"); ?>
537
+ <?php __("Field Title", "profile-builder"); ?>
538
+ <?php __("Title of the field", "profile-builder"); ?>
539
+ <?php __("Field", "profile-builder"); ?>
540
+ <?php __("Meta-name", "profile-builder"); ?>
541
+ <?php __("ID", "profile-builder"); ?>
542
+ <?php __("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", "profile-builder"); ?>
543
+ <?php __("Description", "profile-builder"); ?>
544
+ <?php __("Enter a (detailed) description of the option for end users to read<br/>Optional", "profile-builder"); ?>
545
+ <?php __("Row Count", "profile-builder"); ?>
546
+ <?php __("Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5", "profile-builder"); ?>
547
+ <?php __("Allowed Image Extensions", "profile-builder"); ?>
548
+ <?php __("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 (.*)", "profile-builder"); ?>
549
+ <?php __("Allowed Upload Extensions", "profile-builder"); ?>
550
+ <?php __("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 (.*)", "profile-builder"); ?>
551
+ <?php __("Avatar Size", "profile-builder"); ?>
552
+ <?php __("Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", "profile-builder"); ?>
553
+ <?php __("Date-format", "profile-builder"); ?>
554
+ <?php __("Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy", "profile-builder"); ?>
555
+ <?php __("Terms of Agreement", "profile-builder"); ?>
556
+ <?php __("Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;", "profile-builder"); ?>
557
+ <?php __("Options", "profile-builder"); ?>
558
+ <?php __("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", "profile-builder"); ?>
559
+ <?php __("Enter a comma separated list of labels<br/>Visible for the user", "profile-builder"); ?>
560
+ <?php __("reCAPTCHA Type", "profile-builder"); ?>
561
+ <?php __("Choose the <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\">type of reCAPTCHA</a> you wish to add to this site.", "profile-builder"); ?>
562
+ <?php __("Site Key", "profile-builder"); ?>
563
+ <?php __("The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>", "profile-builder"); ?>
564
+ <?php __("Secret Key", "profile-builder"); ?>
565
+ <?php __("The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>", "profile-builder"); ?>
566
+ <?php __("Display on PB forms", "profile-builder"); ?>
567
+ <?php __("PB Login", "profile-builder"); ?>
568
+ <?php __("PB Register", "profile-builder"); ?>
569
+ <?php __("PB Recover Password", "profile-builder"); ?>
570
+ <?php __("Select on which Profile Builder forms to display reCAPTCHA", "profile-builder"); ?>
571
+ <?php __("Display on default WP forms", "profile-builder"); ?>
572
+ <?php __("Default WP Login", "profile-builder"); ?>
573
+ <?php __("Default WP Register", "profile-builder"); ?>
574
+ <?php __("Default WP Recover Password", "profile-builder"); ?>
575
+ <?php __("Select on which default WP forms to display reCAPTCHA", "profile-builder"); ?>
576
+ <?php __("User Roles", "profile-builder"); ?>
577
+ <?php __("Select which user roles to show to the user ( drag and drop to re-order )", "profile-builder"); ?>
578
+ <?php __("User Roles Order", "profile-builder"); ?>
579
+ <?php __("Save the user role order from the user roles checkboxes", "profile-builder"); ?>
580
+ <?php __("Default Value", "profile-builder"); ?>
581
+ <?php __("Default value of the field", "profile-builder"); ?>
582
+ <?php __("Default Option", "profile-builder"); ?>
583
+ <?php __("Specify the option which should be selected by default", "profile-builder"); ?>
584
+ <?php __("Default Option(s)", "profile-builder"); ?>
585
+ <?php __("Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)", "profile-builder"); ?>
586
+ <?php __("Default option of the field", "profile-builder"); ?>
587
+ <?php __("Show Currency Symbol", "profile-builder"); ?>
588
+ <?php __("Whether the currency symbol should be displayed after the currency name in the select option.", "profile-builder"); ?>
589
+ <?php __("Show Post Type", "profile-builder"); ?>
590
+ <?php __("Posts from what post type will be displayed in the select.", "profile-builder"); ?>
591
+ <?php __("Allowable Values", "profile-builder"); ?>
592
+ <?php __("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.", "profile-builder"); ?>
593
+ <?php __("Error Message", "profile-builder"); ?>
594
+ <?php __("Set a custom error message that will be displayed to the user.", "profile-builder"); ?>
595
+ <?php __("Time Format", "profile-builder"); ?>
596
+ <?php __("Specify the time format.", "profile-builder"); ?>
597
+ <?php __("Google Maps API Key", "profile-builder"); ?>
598
+ <?php __("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.", "profile-builder"); ?>
599
+ <?php __("Default Latitude", "profile-builder"); ?>
600
+ <?php __("The latitude at which the map should be displayed when no pins are attached.", "profile-builder"); ?>
601
+ <?php __("Default Longitude", "profile-builder"); ?>
602
+ <?php __("The longitude at which the map should be displayed when no pins are attached.", "profile-builder"); ?>
603
+ <?php __("Default Zoom Level", "profile-builder"); ?>
604
+ <?php __("Add a number from 0 to 19. The higher the number the higher the zoom.", "profile-builder"); ?>
605
+ <?php __("Map Height", "profile-builder"); ?>
606
+ <?php __("The height of the map.", "profile-builder"); ?>
607
+ <?php __("Default Content", "profile-builder"); ?>
608
+ <?php __("Default value of the textarea", "profile-builder"); ?>
609
+ <?php __("HTML Content", "profile-builder"); ?>
610
+ <?php __("Add your HTML (or text) content", "profile-builder"); ?>
611
+ <?php __("Phone Format", "profile-builder"); ?>
612
+ <?php __("You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.", "profile-builder"); ?>
613
+ <?php __("Eg. (###) ###-####", "profile-builder"); ?>
614
+ <?php __("Empty field won't check for correct phone number.", "profile-builder"); ?>
615
+ <?php __("Heading Tag", "profile-builder"); ?>
616
+ <?php __("Change heading field size on front-end forms", "profile-builder"); ?>
617
+ <?php __("Min Number Value", "profile-builder"); ?>
618
+ <?php __("Min allowed number value (0 to allow only positive numbers)", "profile-builder"); ?>
619
+ <?php __("Leave it empty for no min value", "profile-builder"); ?>
620
+ <?php __("Max Number Value", "profile-builder"); ?>
621
+ <?php __("Max allowed number value (0 to allow only negative numbers)", "profile-builder"); ?>
622
+ <?php __("Leave it empty for no max value", "profile-builder"); ?>
623
+ <?php __("Number Step Value", "profile-builder"); ?>
624
+ <?php __("Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal", "profile-builder"); ?>
625
+ <?php __("To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on", "profile-builder"); ?>
626
+ <?php __("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)", "profile-builder"); ?>
627
+ <?php __("Leave it empty for no restriction", "profile-builder"); ?>
628
+ <?php __("Whether the field is required or not", "profile-builder"); ?>
629
+ <?php __("Overwrite Existing", "profile-builder"); ?>
630
+ <?php __("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", "profile-builder"); ?>
631
+ <?php __("Field Properties", "profile-builder"); ?>
632
+ <?php __("Registration & Edit Profile", "profile-builder"); ?>
633
+ <?php __("Usernames cannot be changed.", "profile-builder"); ?>
634
+ <?php __("Nickname", "profile-builder"); ?>
635
+ <?php __("Display name publicly as", "profile-builder"); ?>
636
+ <?php __("E-mail", "profile-builder"); ?>
637
+ <?php __("Website", "profile-builder"); ?>
638
+ <?php __("AIM", "profile-builder"); ?>
639
+ <?php __("Yahoo IM", "profile-builder"); ?>
640
+ <?php __("Jabber / Google Talk", "profile-builder"); ?>
641
+ <?php __("Biographical Info", "profile-builder"); ?>
642
+ <?php __("Share a little biographical information to fill out your profile. This may be shown publicly.", "profile-builder"); ?>
643
+ <?php __("Password", "profile-builder"); ?>
644
+ <?php __("Type your password.", "profile-builder"); ?>
645
+ <?php __("Repeat Password", "profile-builder"); ?>
646
+ <?php __("Type your password again. ", "profile-builder"); ?>
647
+ <?php __("Blog Details", "profile-builder"); ?>
648
+ <?php __("Afghanistan", "profile-builder"); ?>
649
+ <?php __("Aland Islands", "profile-builder"); ?>
650
+ <?php __("Albania", "profile-builder"); ?>
651
+ <?php __("Algeria", "profile-builder"); ?>
652
+ <?php __("American Samoa", "profile-builder"); ?>
653
+ <?php __("Andorra", "profile-builder"); ?>
654
+ <?php __("Angola", "profile-builder"); ?>
655
+ <?php __("Anguilla", "profile-builder"); ?>
656
+ <?php __("Antarctica", "profile-builder"); ?>
657
+ <?php __("Antigua and Barbuda", "profile-builder"); ?>
658
+ <?php __("Argentina", "profile-builder"); ?>
659
+ <?php __("Armenia", "profile-builder"); ?>
660
+ <?php __("Aruba", "profile-builder"); ?>
661
+ <?php __("Australia", "profile-builder"); ?>
662
+ <?php __("Austria", "profile-builder"); ?>
663
+ <?php __("Azerbaijan", "profile-builder"); ?>
664
+ <?php __("Bahamas", "profile-builder"); ?>
665
+ <?php __("Bahrain", "profile-builder"); ?>
666
+ <?php __("Bangladesh", "profile-builder"); ?>
667
+ <?php __("Barbados", "profile-builder"); ?>
668
+ <?php __("Belarus", "profile-builder"); ?>
669
+ <?php __("Belgium", "profile-builder"); ?>
670
+ <?php __("Belize", "profile-builder"); ?>
671
+ <?php __("Benin", "profile-builder"); ?>
672
+ <?php __("Bermuda", "profile-builder"); ?>
673
+ <?php __("Bhutan", "profile-builder"); ?>
674
+ <?php __("Bolivia", "profile-builder"); ?>
675
+ <?php __("Bonaire, Saint Eustatius and Saba", "profile-builder"); ?>
676
+ <?php __("Bosnia and Herzegovina", "profile-builder"); ?>
677
+ <?php __("Botswana", "profile-builder"); ?>
678
+ <?php __("Bouvet Island", "profile-builder"); ?>
679
+ <?php __("Brazil", "profile-builder"); ?>
680
+ <?php __("British Indian Ocean Territory", "profile-builder"); ?>
681
+ <?php __("British Virgin Islands", "profile-builder"); ?>
682
+ <?php __("Brunei", "profile-builder"); ?>
683
+ <?php __("Bulgaria", "profile-builder"); ?>
684
+ <?php __("Burkina Faso", "profile-builder"); ?>
685
+ <?php __("Burundi", "profile-builder"); ?>
686
+ <?php __("Cambodia", "profile-builder"); ?>
687
+ <?php __("Cameroon", "profile-builder"); ?>
688
+ <?php __("Canada", "profile-builder"); ?>
689
+ <?php __("Cape Verde", "profile-builder"); ?>
690
+ <?php __("Cayman Islands", "profile-builder"); ?>
691
+ <?php __("Central African Republic", "profile-builder"); ?>
692
+ <?php __("Chad", "profile-builder"); ?>
693
+ <?php __("Chile", "profile-builder"); ?>
694
+ <?php __("China", "profile-builder"); ?>
695
+ <?php __("Christmas Island", "profile-builder"); ?>
696
+ <?php __("Cocos Islands", "profile-builder"); ?>
697
+ <?php __("Colombia", "profile-builder"); ?>
698
+ <?php __("Comoros", "profile-builder"); ?>
699
+ <?php __("Cook Islands", "profile-builder"); ?>
700
+ <?php __("Costa Rica", "profile-builder"); ?>
701
+ <?php __("Croatia", "profile-builder"); ?>
702
+ <?php __("Cuba", "profile-builder"); ?>
703
+ <?php __("Curacao", "profile-builder"); ?>
704
+ <?php __("Cyprus", "profile-builder"); ?>
705
+ <?php __("Czech Republic", "profile-builder"); ?>
706
+ <?php __("Democratic Republic of the Congo", "profile-builder"); ?>
707
+ <?php __("Denmark", "profile-builder"); ?>
708
+ <?php __("Djibouti", "profile-builder"); ?>
709
+ <?php __("Dominica", "profile-builder"); ?>
710
+ <?php __("Dominican Republic", "profile-builder"); ?>
711
+ <?php __("East Timor", "profile-builder"); ?>
712
+ <?php __("Ecuador", "profile-builder"); ?>
713
+ <?php __("Egypt", "profile-builder"); ?>
714
+ <?php __("El Salvador", "profile-builder"); ?>
715
+ <?php __("Equatorial Guinea", "profile-builder"); ?>
716
+ <?php __("Eritrea", "profile-builder"); ?>
717
+ <?php __("Estonia", "profile-builder"); ?>
718
+ <?php __("Ethiopia", "profile-builder"); ?>
719
+ <?php __("Falkland Islands", "profile-builder"); ?>
720
+ <?php __("Faroe Islands", "profile-builder"); ?>
721
+ <?php __("Fiji", "profile-builder"); ?>
722
+ <?php __("Finland", "profile-builder"); ?>
723
+ <?php __("France", "profile-builder"); ?>
724
+ <?php __("French Guiana", "profile-builder"); ?>
725
+ <?php __("French Polynesia", "profile-builder"); ?>
726
+ <?php __("French Southern Territories", "profile-builder"); ?>
727
+ <?php __("Gabon", "profile-builder"); ?>
728
+ <?php __("Gambia", "profile-builder"); ?>
729
+ <?php __("Georgia", "profile-builder"); ?>
730
+ <?php __("Germany", "profile-builder"); ?>
731
+ <?php __("Ghana", "profile-builder"); ?>
732
+ <?php __("Gibraltar", "profile-builder"); ?>
733
+ <?php __("Greece", "profile-builder"); ?>
734
+ <?php __("Greenland", "profile-builder"); ?>
735
+ <?php __("Grenada", "profile-builder"); ?>
736
+ <?php __("Guadeloupe", "profile-builder"); ?>
737
+ <?php __("Guam", "profile-builder"); ?>
738
+ <?php __("Guatemala", "profile-builder"); ?>
739
+ <?php __("Guernsey", "profile-builder"); ?>
740
+ <?php __("Guinea", "profile-builder"); ?>
741
+ <?php __("Guinea-Bissau", "profile-builder"); ?>
742
+ <?php __("Guyana", "profile-builder"); ?>
743
+ <?php __("Haiti", "profile-builder"); ?>
744
+ <?php __("Heard Island and McDonald Islands", "profile-builder"); ?>
745
+ <?php __("Honduras", "profile-builder"); ?>
746
+ <?php __("Hong Kong", "profile-builder"); ?>
747
+ <?php __("Hungary", "profile-builder"); ?>
748
+ <?php __("Iceland", "profile-builder"); ?>
749
+ <?php __("India", "profile-builder"); ?>
750
+ <?php __("Indonesia", "profile-builder"); ?>
751
+ <?php __("Iran", "profile-builder"); ?>
752
+ <?php __("Iraq", "profile-builder"); ?>
753
+ <?php __("Ireland", "profile-builder"); ?>
754
+ <?php __("Isle of Man", "profile-builder"); ?>
755
+ <?php __("Israel", "profile-builder"); ?>
756
+ <?php __("Italy", "profile-builder"); ?>
757
+ <?php __("Ivory Coast", "profile-builder"); ?>
758
+ <?php __("Jamaica", "profile-builder"); ?>
759
+ <?php __("Japan", "profile-builder"); ?>
760
+ <?php __("Jersey", "profile-builder"); ?>
761
+ <?php __("Jordan", "profile-builder"); ?>
762
+ <?php __("Kazakhstan", "profile-builder"); ?>
763
+ <?php __("Kenya", "profile-builder"); ?>
764
+ <?php __("Kiribati", "profile-builder"); ?>
765
+ <?php __("Kosovo", "profile-builder"); ?>
766
+ <?php __("Kuwait", "profile-builder"); ?>
767
+ <?php __("Kyrgyzstan", "profile-builder"); ?>
768
+ <?php __("Laos", "profile-builder"); ?>
769
+ <?php __("Latvia", "profile-builder"); ?>
770
+ <?php __("Lebanon", "profile-builder"); ?>
771
+ <?php __("Lesotho", "profile-builder"); ?>
772
+ <?php __("Liberia", "profile-builder"); ?>
773
+ <?php __("Libya", "profile-builder"); ?>
774
+ <?php __("Liechtenstein", "profile-builder"); ?>
775
+ <?php __("Lithuania", "profile-builder"); ?>
776
+ <?php __("Luxembourg", "profile-builder"); ?>
777
+ <?php __("Macao", "profile-builder"); ?>
778
+ <?php __("Macedonia", "profile-builder"); ?>
779
+ <?php __("Madagascar", "profile-builder"); ?>
780
+ <?php __("Malawi", "profile-builder"); ?>
781
+ <?php __("Malaysia", "profile-builder"); ?>
782
+ <?php __("Maldives", "profile-builder"); ?>
783
+ <?php __("Mali", "profile-builder"); ?>
784
+ <?php __("Malta", "profile-builder"); ?>
785
+ <?php __("Marshall Islands", "profile-builder"); ?>
786
+ <?php __("Martinique", "profile-builder"); ?>
787
+ <?php __("Mauritania", "profile-builder"); ?>
788
+ <?php __("Mauritius", "profile-builder"); ?>
789
+ <?php __("Mayotte", "profile-builder"); ?>
790
+ <?php __("Mexico", "profile-builder"); ?>
791
+ <?php __("Micronesia", "profile-builder"); ?>
792
+ <?php __("Moldova", "profile-builder"); ?>
793
+ <?php __("Monaco", "profile-builder"); ?>
794
+ <?php __("Mongolia", "profile-builder"); ?>
795
+ <?php __("Montenegro", "profile-builder"); ?>
796
+ <?php __("Montserrat", "profile-builder"); ?>
797
+ <?php __("Morocco", "profile-builder"); ?>
798
+ <?php __("Mozambique", "profile-builder"); ?>
799
+ <?php __("Myanmar", "profile-builder"); ?>
800
+ <?php __("Namibia", "profile-builder"); ?>
801
+ <?php __("Nauru", "profile-builder"); ?>
802
+ <?php __("Nepal", "profile-builder"); ?>
803
+ <?php __("Netherlands", "profile-builder"); ?>
804
+ <?php __("New Caledonia", "profile-builder"); ?>
805
+ <?php __("New Zealand", "profile-builder"); ?>
806
+ <?php __("Nicaragua", "profile-builder"); ?>
807
+ <?php __("Niger", "profile-builder"); ?>
808
+ <?php __("Nigeria", "profile-builder"); ?>
809
+ <?php __("Niue", "profile-builder"); ?>
810
+ <?php __("Norfolk Island", "profile-builder"); ?>
811
+ <?php __("North Korea", "profile-builder"); ?>
812
+ <?php __("Northern Mariana Islands", "profile-builder"); ?>
813
+ <?php __("Norway", "profile-builder"); ?>
814
+ <?php __("Oman", "profile-builder"); ?>
815
+ <?php __("Pakistan", "profile-builder"); ?>
816
+ <?php __("Palau", "profile-builder"); ?>
817
+ <?php __("Palestinian Territory", "profile-builder"); ?>
818
+ <?php __("Panama", "profile-builder"); ?>
819
+ <?php __("Papua New Guinea", "profile-builder"); ?>
820
+ <?php __("Paraguay", "profile-builder"); ?>
821
+ <?php __("Peru", "profile-builder"); ?>
822
+ <?php __("Philippines", "profile-builder"); ?>
823
+ <?php __("Pitcairn", "profile-builder"); ?>
824
+ <?php __("Poland", "profile-builder"); ?>
825
+ <?php __("Portugal", "profile-builder"); ?>
826
+ <?php __("Puerto Rico", "profile-builder"); ?>
827
+ <?php __("Qatar", "profile-builder"); ?>
828
+ <?php __("Republic of the Congo", "profile-builder"); ?>
829
+ <?php __("Reunion", "profile-builder"); ?>
830
+ <?php __("Romania", "profile-builder"); ?>
831
+ <?php __("Russia", "profile-builder"); ?>
832
+ <?php __("Rwanda", "profile-builder"); ?>
833
+ <?php __("Saint Barthelemy", "profile-builder"); ?>
834
+ <?php __("Saint Helena", "profile-builder"); ?>
835
+ <?php __("Saint Kitts and Nevis", "profile-builder"); ?>
836
+ <?php __("Saint Lucia", "profile-builder"); ?>
837
+ <?php __("Saint Martin", "profile-builder"); ?>
838
+ <?php __("Saint Pierre and Miquelon", "profile-builder"); ?>
839
+ <?php __("Saint Vincent and the Grenadines", "profile-builder"); ?>
840
+ <?php __("Samoa", "profile-builder"); ?>
841
+ <?php __("San Marino", "profile-builder"); ?>
842
+ <?php __("Sao Tome and Principe", "profile-builder"); ?>
843
+ <?php __("Saudi Arabia", "profile-builder"); ?>
844
+ <?php __("Senegal", "profile-builder"); ?>
845
+ <?php __("Serbia", "profile-builder"); ?>
846
+ <?php __("Seychelles", "profile-builder"); ?>
847
+ <?php __("Sierra Leone", "profile-builder"); ?>
848
+ <?php __("Singapore", "profile-builder"); ?>
849
+ <?php __("Sint Maarten", "profile-builder"); ?>
850
+ <?php __("Slovakia", "profile-builder"); ?>
851
+ <?php __("Slovenia", "profile-builder"); ?>
852
+ <?php __("Solomon Islands", "profile-builder"); ?>
853
+ <?php __("Somalia", "profile-builder"); ?>
854
+ <?php __("South Africa", "profile-builder"); ?>
855
+ <?php __("South Georgia and the South Sandwich Islands", "profile-builder"); ?>
856
+ <?php __("South Korea", "profile-builder"); ?>
857
+ <?php __("South Sudan", "profile-builder"); ?>
858
+ <?php __("Spain", "profile-builder"); ?>
859
+ <?php __("Sri Lanka", "profile-builder"); ?>
860
+ <?php __("Sudan", "profile-builder"); ?>
861
+ <?php __("Suriname", "profile-builder"); ?>
862
+ <?php __("Svalbard and Jan Mayen", "profile-builder"); ?>
863
+ <?php __("Swaziland", "profile-builder"); ?>
864
+ <?php __("Sweden", "profile-builder"); ?>
865
+ <?php __("Switzerland", "profile-builder"); ?>
866
+ <?php __("Syria", "profile-builder"); ?>
867
+ <?php __("Taiwan", "profile-builder"); ?>
868
+ <?php __("Tajikistan", "profile-builder"); ?>
869
+ <?php __("Tanzania", "profile-builder"); ?>
870
+ <?php __("Thailand", "profile-builder"); ?>
871
+ <?php __("Togo", "profile-builder"); ?>
872
+ <?php __("Tokelau", "profile-builder"); ?>
873
+ <?php __("Tonga", "profile-builder"); ?>
874
+ <?php __("Trinidad and Tobago", "profile-builder"); ?>
875
+ <?php __("Tunisia", "profile-builder"); ?>
876
+ <?php __("Turkey", "profile-builder"); ?>
877
+ <?php __("Turkmenistan", "profile-builder"); ?>
878
+ <?php __("Turks and Caicos Islands", "profile-builder"); ?>
879
+ <?php __("Tuvalu", "profile-builder"); ?>
880
+ <?php __("U.S. Virgin Islands", "profile-builder"); ?>
881
+ <?php __("Uganda", "profile-builder"); ?>
882
+ <?php __("Ukraine", "profile-builder"); ?>
883
+ <?php __("United Arab Emirates", "profile-builder"); ?>
884
+ <?php __("United Kingdom", "profile-builder"); ?>
885
+ <?php __("United States", "profile-builder"); ?>
886
+ <?php __("United States Minor Outlying Islands", "profile-builder"); ?>
887
+ <?php __("Uruguay", "profile-builder"); ?>
888
+ <?php __("Uzbekistan", "profile-builder"); ?>
889
+ <?php __("Vanuatu", "profile-builder"); ?>
890
+ <?php __("Vatican", "profile-builder"); ?>
891
+ <?php __("Venezuela", "profile-builder"); ?>
892
+ <?php __("Vietnam", "profile-builder"); ?>
893
+ <?php __("Wallis and Futuna", "profile-builder"); ?>
894
+ <?php __("Western Sahara", "profile-builder"); ?>
895
+ <?php __("Yemen", "profile-builder"); ?>
896
+ <?php __("Zambia", "profile-builder"); ?>
897
+ <?php __("Zimbabwe", "profile-builder"); ?>
898
+ <?php __("Albania Lek", "profile-builder"); ?>
899
+ <?php __("Afghanistan Afghani", "profile-builder"); ?>
900
+ <?php __("Argentina Peso", "profile-builder"); ?>
901
+ <?php __("Australia Dollar", "profile-builder"); ?>
902
+ <?php __("Azerbaijan New Manat", "profile-builder"); ?>
903
+ <?php __("Bahamas Dollar", "profile-builder"); ?>
904
+ <?php __("Barbados Dollar", "profile-builder"); ?>
905
+ <?php __("Bangladeshi taka", "profile-builder"); ?>
906
+ <?php __("Belarus Ruble", "profile-builder"); ?>
907
+ <?php __("Belize Dollar", "profile-builder"); ?>
908
+ <?php __("Bermuda Dollar", "profile-builder"); ?>
909
+ <?php __("Bolivia Boliviano", "profile-builder"); ?>
910
+ <?php __("Bosnia and Herzegovina Convertible Marka", "profile-builder"); ?>
911
+ <?php __("Botswana Pula", "profile-builder"); ?>
912
+ <?php __("Bulgaria Lev", "profile-builder"); ?>
913
+ <?php __("Brazil Real", "profile-builder"); ?>
914
+ <?php __("Brunei Darussalam Dollar", "profile-builder"); ?>
915
+ <?php __("Cambodia Riel", "profile-builder"); ?>
916
+ <?php __("Canada Dollar", "profile-builder"); ?>
917
+ <?php __("Cayman Islands Dollar", "profile-builder"); ?>
918
+ <?php __("Chile Peso", "profile-builder"); ?>
919
+ <?php __("China Yuan Renminbi", "profile-builder"); ?>
920
+ <?php __("Colombia Peso", "profile-builder"); ?>
921
+ <?php __("Costa Rica Colon", "profile-builder"); ?>
922
+ <?php __("Croatia Kuna", "profile-builder"); ?>
923
+ <?php __("Cuba Peso", "profile-builder"); ?>
924
+ <?php __("Czech Republic Koruna", "profile-builder"); ?>
925
+ <?php __("Denmark Krone", "profile-builder"); ?>
926
+ <?php __("Dominican Republic Peso", "profile-builder"); ?>
927
+ <?php __("East Caribbean Dollar", "profile-builder"); ?>
928
+ <?php __("Egypt Pound", "profile-builder"); ?>
929
+ <?php __("El Salvador Colon", "profile-builder"); ?>
930
+ <?php __("Estonia Kroon", "profile-builder"); ?>
931
+ <?php __("Euro", "profile-builder"); ?>
932
+ <?php __("Falkland Islands (Malvinas) Pound", "profile-builder"); ?>
933
+ <?php __("Fiji Dollar", "profile-builder"); ?>
934
+ <?php __("Ghana Cedis", "profile-builder"); ?>
935
+ <?php __("Gibraltar Pound", "profile-builder"); ?>
936
+ <?php __("Guatemala Quetzal", "profile-builder"); ?>
937
+ <?php __("Guernsey Pound", "profile-builder"); ?>
938
+ <?php __("Guyana Dollar", "profile-builder"); ?>
939
+ <?php __("Honduras Lempira", "profile-builder"); ?>
940
+ <?php __("Hong Kong Dollar", "profile-builder"); ?>
941
+ <?php __("Hungary Forint", "profile-builder"); ?>
942
+ <?php __("Iceland Krona", "profile-builder"); ?>
943
+ <?php __("India Rupee", "profile-builder"); ?>
944
+ <?php __("Indonesia Rupiah", "profile-builder"); ?>
945
+ <?php __("Iran Rial", "profile-builder"); ?>
946
+ <?php __("Isle of Man Pound", "profile-builder"); ?>
947
+ <?php __("Israel Shekel", "profile-builder"); ?>
948
+ <?php __("Jamaica Dollar", "profile-builder"); ?>
949
+ <?php __("Japan Yen", "profile-builder"); ?>
950
+ <?php __("Jersey Pound", "profile-builder"); ?>
951
+ <?php __("Kazakhstan Tenge", "profile-builder"); ?>
952
+ <?php __("Korea (North) Won", "profile-builder"); ?>
953
+ <?php __("Korea (South) Won", "profile-builder"); ?>
954
+ <?php __("Kyrgyzstan Som", "profile-builder"); ?>
955
+ <?php __("Laos Kip", "profile-builder"); ?>
956
+ <?php __("Latvia Lat", "profile-builder"); ?>
957
+ <?php __("Lebanon Pound", "profile-builder"); ?>
958
+ <?php __("Liberia Dollar", "profile-builder"); ?>
959
+ <?php __("Lithuania Litas", "profile-builder"); ?>
960
+ <?php __("Macedonia Denar", "profile-builder"); ?>
961
+ <?php __("Malaysia Ringgit", "profile-builder"); ?>
962
+ <?php __("Mauritius Rupee", "profile-builder"); ?>
963
+ <?php __("Mexico Peso", "profile-builder"); ?>
964
+ <?php __("Mongolia Tughrik", "profile-builder"); ?>
965
+ <?php __("Mozambique Metical", "profile-builder"); ?>
966
+ <?php __("Namibia Dollar", "profile-builder"); ?>
967
+ <?php __("Nepal Rupee", "profile-builder"); ?>
968
+ <?php __("Netherlands Antilles Guilder", "profile-builder"); ?>
969
+ <?php __("New Zealand Dollar", "profile-builder"); ?>
970
+ <?php __("Nicaragua Cordoba", "profile-builder"); ?>
971
+ <?php __("Nigeria Naira", "profile-builder"); ?>
972
+ <?php __("Norway Krone", "profile-builder"); ?>
973
+ <?php __("Oman Rial", "profile-builder"); ?>
974
+ <?php __("Pakistan Rupee", "profile-builder"); ?>
975
+ <?php __("Panama Balboa", "profile-builder"); ?>
976
+ <?php __("Paraguay Guarani", "profile-builder"); ?>
977
+ <?php __("Peru Nuevo Sol", "profile-builder"); ?>
978
+ <?php __("Philippines Peso", "profile-builder"); ?>
979
+ <?php __("Poland Zloty", "profile-builder"); ?>
980
+ <?php __("Qatar Riyal", "profile-builder"); ?>
981
+ <?php __("Romania New Leu", "profile-builder"); ?>
982
+ <?php __("Russia Ruble", "profile-builder"); ?>
983
+ <?php __("Saint Helena Pound", "profile-builder"); ?>
984
+ <?php __("Saudi Arabia Riyal", "profile-builder"); ?>
985
+ <?php __("Serbia Dinar", "profile-builder"); ?>
986
+ <?php __("Seychelles Rupee", "profile-builder"); ?>
987
+ <?php __("Singapore Dollar", "profile-builder"); ?>
988
+ <?php __("Solomon Islands Dollar", "profile-builder"); ?>
989
+ <?php __("Somalia Shilling", "profile-builder"); ?>
990
+ <?php __("South Africa Rand", "profile-builder"); ?>
991
+ <?php __("Sri Lanka Rupee", "profile-builder"); ?>
992
+ <?php __("Sweden Krona", "profile-builder"); ?>
993
+ <?php __("Switzerland Franc", "profile-builder"); ?>
994
+ <?php __("Suriname Dollar", "profile-builder"); ?>
995
+ <?php __("Syria Pound", "profile-builder"); ?>
996
+ <?php __("Taiwan New Dollar", "profile-builder"); ?>
997
+ <?php __("Thailand Baht", "profile-builder"); ?>
998
+ <?php __("Trinidad and Tobago Dollar", "profile-builder"); ?>
999
+ <?php __("Turkey Lira", "profile-builder"); ?>
1000
+ <?php __("Tuvalu Dollar", "profile-builder"); ?>
1001
+ <?php __("Ukraine Hryvna", "profile-builder"); ?>
1002
+ <?php __("United Kingdom Pound", "profile-builder"); ?>
1003
+ <?php __("Uganda Shilling", "profile-builder"); ?>
1004
+ <?php __("US Dollar", "profile-builder"); ?>
1005
+ <?php __("Uruguay Peso", "profile-builder"); ?>
1006
+ <?php __("Uzbekistan Som", "profile-builder"); ?>
1007
+ <?php __("Venezuela Bolivar", "profile-builder"); ?>
1008
+ <?php __("Viet Nam Dong", "profile-builder"); ?>
1009
+ <?php __("Yemen Rial", "profile-builder"); ?>
1010
+ <?php __("Zimbabwe Dollar", "profile-builder"); ?>
1011
+ <?php __("You must select a field\n", "profile-builder"); ?>
1012
+ <?php __("Please choose a different field type as this one already exists in your form (must be unique)\n", "profile-builder"); ?>
1013
+ <?php __("The entered avatar size is not between 20 and 200\n", "profile-builder"); ?>
1014
+ <?php __("The entered avatar size is not numerical\n", "profile-builder"); ?>
1015
+ <?php __("The entered row number is not numerical\n", "profile-builder"); ?>
1016
+ <?php __("You must enter a value for the row number\n", "profile-builder"); ?>
1017
+ <?php __("You must enter the site key\n", "profile-builder"); ?>
1018
+ <?php __("You must enter the secret key\n", "profile-builder"); ?>
1019
+ <?php __("The entered value for the Datepicker is not a valid date-format\n", "profile-builder"); ?>
1020
+ <?php __("You must enter a value for the date-format\n", "profile-builder"); ?>
1021
+ <?php __("The meta-name cannot be empty\n", "profile-builder"); ?>
1022
+ <?php __("That meta-name is already in use\n", "profile-builder"); ?>
1023
+ <?php __("The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n", "profile-builder"); ?>
1024
+ <?php __("The following option(s) did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
1025
+ <?php __("The following option did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
1026
+ <?php __("Please select at least one user role\n", "profile-builder"); ?>
1027
+ <?php __("That field is already added in this form\n", "profile-builder"); ?>
1028
+ <?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
1029
+ <?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
1030
+ <?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", "profile-builder"); ?>
1031
+ <?php __("With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module.", "profile-builder"); ?>
1032
+ <?php __("Search Location", "profile-builder"); ?>
1033
+ <?php __("Paid Accounts", "profile-builder"); ?>
1034
+ <?php __("Paid Member Subscriptions - a free WordPress plugin", "profile-builder"); ?>
1035
+ <?php __("With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.", "profile-builder"); ?>
1036
+ <?php __("Paid & Free Subscriptions", "profile-builder"); ?>
1037
+ <?php __("Restrict Content", "profile-builder"); ?>
1038
+ <?php __("Member Management", "profile-builder"); ?>
1039
+ <?php __("Email Templates", "profile-builder"); ?>
1040
+ <?php __("Account Management", "profile-builder"); ?>
1041
+ <?php __("Subscription Management", "profile-builder"); ?>
1042
+ <?php __("Payment Management", "profile-builder"); ?>
1043
+ <?php __("Plugin is Active", "profile-builder"); ?>
1044
+ <?php __("Plugin has been activated", "profile-builder"); ?>
1045
+ <?php __("Plugin has been deactivated.", "profile-builder"); ?>
1046
+ <?php __("Accept user payments, create subscription plans and restrict content on your website.", "profile-builder"); ?>
1047
+ <?php __("Step by Step Quick Setup", "profile-builder"); ?>
1048
+ <?php __("Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s", "profile-builder"); ?>
1049
+ <?php __("Register Your Version", "profile-builder"); ?>
1050
+ <?php __("Register Version", "profile-builder"); ?>
1051
+ <?php __("Profile Builder Register", "profile-builder"); ?>
1052
+ <?php __("Register your version of %s", "profile-builder"); ?>
1053
+ <?php __("Now that you acquired a copy of %s, you should take the time and register it with the serial number you received", "profile-builder"); ?>
1054
+ <?php __("If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.", "profile-builder"); ?>
1055
+ <?php __(" Serial Number:", "profile-builder"); ?>
1056
+ <?php __("The serial number was successfully validated!", "profile-builder"); ?>
1057
+ <?php __("The serial number entered couldn't be validated!", "profile-builder"); ?>
1058
+ <?php __("The serial number is about to expire soon!", "profile-builder"); ?>
1059
+ <?php __(" Your serial number is about to expire, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
1060
+ <?php __("The serial number couldn't be validated because it expired!", "profile-builder"); ?>
1061
+ <?php __(" Your serial number is expired, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
1062
+ <?php __("The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!", "profile-builder"); ?>
1063
+ <?php __("(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)", "profile-builder"); ?>
1064
+ <?php __("<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>", "profile-builder"); ?>
1065
+ <?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>", "profile-builder"); ?>
1066
+ <?php __("<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>", "profile-builder"); ?>
1067
+ <?php __("Strength indicator", "profile-builder"); ?>
1068
+ <?php __("Very Weak", "profile-builder"); ?>
1069
+ <?php __("Minimum length of %d characters.", "profile-builder"); ?>
1070
+ <?php __("The password must have a minimum strength of %s.", "profile-builder"); ?>
1071
+ <?php __("This field is required", "profile-builder"); ?>
1072
+ <?php __("Please enter a (valid) reCAPTCHA value", "profile-builder"); ?>
1073
+ <?php __("Incorrect phone number", "profile-builder"); ?>
1074
+ <?php __("Save Changes", "profile-builder"); ?>
1075
+ <?php __("Content", "profile-builder"); ?>
1076
+ <?php __("To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s", "profile-builder"); ?>
1077
+ <?php __("To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s", "profile-builder"); ?>
1078
+ <?php __("<br><br>Also, you will be able to visit your site at ", "profile-builder"); ?>
1079
+ <?php __("<br><br>You can visit your site at ", "profile-builder"); ?>
1080
+ <?php __("You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s", "profile-builder"); ?>
1081
+ <?php __("The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form.", "profile-builder"); ?>
1082
+ <?php __("Only an administrator can add new users.", "profile-builder"); ?>
1083
+ <?php __("Users can register themselves or you can manually create users here.", "profile-builder"); ?>
1084
+ <?php __("This message is only visible by administrators", "profile-builder"); ?>
1085
+ <?php __("Users cannot currently register themselves, but you can manually create users here.", "profile-builder"); ?>
1086
+ <?php __("You are currently logged in as %1s. You don't need another account. %2s", "profile-builder"); ?>
1087
+ <?php __("Log out of this account.", "profile-builder"); ?>
1088
+ <?php __("You must be logged in to edit your profile.", "profile-builder"); ?>
1089
+ <?php __("You are not allowed to do this.", "profile-builder"); ?>
1090
+ <?php __("The account %1s has been successfully created!", "profile-builder"); ?>
1091
+ <?php __("Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", "profile-builder"); ?>
1092
+ <?php __("Before you can access your account %1s, an administrator has to approve it. You will be notified via email.", "profile-builder"); ?>
1093
+ <?php __("Your profile has been successfully updated!", "profile-builder"); ?>
1094
+ <?php __("There was an error in the submitted form", "profile-builder"); ?>
1095
+ <?php __("Add User", "profile-builder"); ?>
1096
+ <?php __("Send these credentials via email.", "profile-builder"); ?>
1097
+ <?php __("User to edit:", "profile-builder"); ?>
1098
+ <?php __("Something went wrong. Please try again!", "profile-builder"); ?>
1099
+ <?php __("ERROR", "profile-builder"); ?>
1100
+ <?php __("The password you entered is incorrect.", "profile-builder"); ?>
1101
+ <?php __("Password Lost and Found.", "profile-builder"); ?>
1102
+ <?php __("Lost your password", "profile-builder"); ?>
1103
+ <?php __("Invalid username.", "profile-builder"); ?>
1104
+ <?php __("username", "profile-builder"); ?>
1105
+ <?php __("email", "profile-builder"); ?>
1106
+ <?php __("username or email", "profile-builder"); ?>
1107
+ <?php __("Both fields are empty.", "profile-builder"); ?>
1108
+ <?php __("Username or Email", "profile-builder"); ?>
1109
+ <?php __("Lost your password?", "profile-builder"); ?>
1110
+ <?php __("Log out of this account", "profile-builder"); ?>
1111
+ <?php __("Log out", "profile-builder"); ?>
1112
+ <?php __("You are currently logged in as %1$s. %2$s", "profile-builder"); ?>
1113
+ <?php __("You are currently logged in as %s. ", "profile-builder"); ?>
1114
+ <?php __("Log out &raquo;", "profile-builder"); ?>
1115
+ <?php __("Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature.", "profile-builder"); ?>
1116
+ <?php __("Reset Password", "profile-builder"); ?>
1117
+ <?php __("Please enter your email address.", "profile-builder"); ?>
1118
+ <?php __("Please enter your username or email address.", "profile-builder"); ?>
1119
+ <?php __("Username or E-mail", "profile-builder"); ?>
1120
+ <?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
1121
+ <?php __("Get New Password", "profile-builder"); ?>
1122
+ <?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
1123
+ <?php __("The username entered wasn't found in the database!", "profile-builder"); ?>
1124
+ <?php __("Please check that you entered the correct username.", "profile-builder"); ?>
1125
+ <?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
1126
+ <?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
1127
+ <?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
1128
+ <?php __("Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s", "profile-builder"); ?>
1129
+ <?php __("Password Reset from \"%1$s\"", "profile-builder"); ?>
1130
+ <?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
1131
+ <?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
1132
+ <?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
1133
+ <?php __("Your password has been successfully changed!", "profile-builder"); ?>
1134
+ <?php __("You have successfully reset your password.", "profile-builder"); ?>
1135
+ <?php __("Password Successfully Reset for %1$s on \"%2$s\"", "profile-builder"); ?>
1136
+ <?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
1137
+ <?php __("The entered passwords don't match!", "profile-builder"); ?>
1138
+ <?php __("ERROR:", "profile-builder"); ?>
1139
+ <?php __("Invalid key!", "profile-builder"); ?>
1140
+ <?php __("Invalid activation key!", "profile-builder"); ?>
1141
+ <?php __("This username is now active!", "profile-builder"); ?>
1142
+ <?php __("Could not create user!", "profile-builder"); ?>
1143
+ <?php __("This username is already activated!", "profile-builder"); ?>
1144
+ <?php __("Your email was successfully confirmed.", "profile-builder"); ?>
1145
+ <?php __("Before you can access your account, an administrator needs to approve it. You will be notified via email.", "profile-builder"); ?>
1146
+ <?php __("There was an error while trying to activate the user.", "profile-builder"); ?>
1147
+ <?php __("Modules", "profile-builder"); ?>
1148
+ <?php __("Here you can activate / deactivate available modules for Profile Builder.", "profile-builder"); ?>
1149
+ <?php __("Name/Description", "profile-builder"); ?>
1150
+ <?php __("Status", "profile-builder"); ?>
1151
+ <?php __("Active", "profile-builder"); ?>
1152
+ <?php __("Inactive", "profile-builder"); ?>
1153
+ <?php __("Admin Email Customizer", "profile-builder"); ?>
1154
+ <?php __("User Email Customizer", "profile-builder"); ?>
1155
+ <?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
1156
+ <?php __("Admin Approval", "profile-builder"); ?>
1157
+ <?php __("Do you want to", "profile-builder"); ?>
1158
+ <?php __("Your session has expired! Please refresh the page and try again", "profile-builder"); ?>
1159
+ <?php __("User successfully approved!", "profile-builder"); ?>
1160
+ <?php __("User successfully unapproved!", "profile-builder"); ?>
1161
+ <?php __("User successfully deleted!", "profile-builder"); ?>
1162
+ <?php __("You either don't have permission for that action or there was an error!", "profile-builder"); ?>
1163
+ <?php __("Your session has expired! Please refresh the page and try again.", "profile-builder"); ?>
1164
+ <?php __("Users successfully approved!", "profile-builder"); ?>
1165
+ <?php __("Users successfully unapproved!", "profile-builder"); ?>
1166
+ <?php __("Users successfully deleted!", "profile-builder"); ?>
1167
+ <?php __("Your account on %1$s has been approved!", "profile-builder"); ?>
1168
+ <?php __("approved", "profile-builder"); ?>
1169
+ <?php __("An administrator has just approved your account on %1$s (%2$s).", "profile-builder"); ?>
1170
+ <?php __("Your account on %1$s has been unapproved!", "profile-builder"); ?>
1171
+ <?php __("unapproved", "profile-builder"); ?>
1172
+ <?php __("An administrator has just unapproved your account on %1$s (%2$s).", "profile-builder"); ?>
1173
+ <?php __("Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature.", "profile-builder"); ?>
1174
+ <?php __("Your account has been successfully created!", "profile-builder"); ?>
1175
+ <?php __("The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. ", "profile-builder"); ?>
1176
+ <?php __("delete this user?", "profile-builder"); ?>
1177
+ <?php __("unapprove this user?", "profile-builder"); ?>
1178
+ <?php __("Unapprove", "profile-builder"); ?>
1179
+ <?php __("approve this user?", "profile-builder"); ?>
1180
+ <?php __("Approve", "profile-builder"); ?>
1181
+ <?php __("Firstname", "profile-builder"); ?>
1182
+ <?php __("Lastname", "profile-builder"); ?>
1183
+ <?php __("Role", "profile-builder"); ?>
1184
+ <?php __("Registered", "profile-builder"); ?>
1185
+ <?php __("User-status", "profile-builder"); ?>
1186
+ <?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
1187
+ <?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
1188
+ <?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
1189
+ <?php __("Sorry, but you don't have permission to do that!", "profile-builder"); ?>
1190
+ <?php __("Approved", "profile-builder"); ?>
1191
+ <?php __("Unapproved", "profile-builder"); ?>
1192
+ <?php __("All Users", "profile-builder"); ?>
1193
+ <?php __("Conditional Logic", "profile-builder"); ?>
1194
+ <?php __("Conditional Rules", "profile-builder"); ?>
1195
+ <?php __("This field has conditional logic enabled.", "profile-builder"); ?>
1196
+ <?php __("You must be logged in to view this content.", "profile-builder"); ?>
1197
+ <?php __("This content is restricted for your user role.", "profile-builder"); ?>
1198
+ <?php __("Profile Builder Content Restriction", "profile-builder"); ?>
1199
+ <?php __("Display Options", "profile-builder"); ?>
1200
+ <?php __("Message", "profile-builder"); ?>
1201
+ <?php __("Redirect", "profile-builder"); ?>
1202
+ <?php __("Type of Restriction", "profile-builder"); ?>
1203
+ <?php __("Settings Default", "profile-builder"); ?>
1204
+ <?php __("Display For", "profile-builder"); ?>
1205
+ <?php __("Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role.", "profile-builder"); ?>
1206
+ <?php __("Checking any user role will show this %s only to users that have one of those user roles assigned.", "profile-builder"); ?>
1207
+ <?php __("Restriction Redirect URL", "profile-builder"); ?>
1208
+ <?php __("Enable Custom Redirect URL", "profile-builder"); ?>
1209
+ <?php __("Check if you wish to add a custom redirect URL for this %s.", "profile-builder"); ?>
1210
+ <?php __("Custom Redirect URL", "profile-builder"); ?>
1211
+ <?php __("Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly.", "profile-builder"); ?>
1212
+ <?php __("Restriction Messages", "profile-builder"); ?>
1213
+ <?php __("Enable Custom Messages", "profile-builder"); ?>
1214
+ <?php __("Check if you wish to add custom messages for this %s.", "profile-builder"); ?>
1215
+ <?php __("Messages for logged-out users", "profile-builder"); ?>
1216
+ <?php __("Messages for logged-in users", "profile-builder"); ?>
1217
+ <?php __("If you select \"Message\", the post's content will be protected by being replaced with a custom message.", "profile-builder"); ?>
1218
+ <?php __("If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content.", "profile-builder"); ?>
1219
+ <?php __("Redirect URL", "profile-builder"); ?>
1220
+ <?php __("Message for logged-out users", "profile-builder"); ?>
1221
+ <?php __("Message for logged-in users", "profile-builder"); ?>
1222
+ <?php __("Restricted Posts Preview", "profile-builder"); ?>
1223
+ <?php __("Show the first %s words of the post's content", "profile-builder"); ?>
1224
+ <?php __("Show the content before the \"more\" tag", "profile-builder"); ?>
1225
+ <?php __("Show a portion of the restricted post to logged-out users or users that are not allowed to see it.", "profile-builder"); ?>
1226
+ <?php __("User Meta", "profile-builder"); ?>
1227
+ <?php __("show", "profile-builder"); ?>
1228
+ <?php __("delete this user from the _signups table?", "profile-builder"); ?>
1229
+ <?php __("confirm this email yourself?", "profile-builder"); ?>
1230
+ <?php __("Confirm Email", "profile-builder"); ?>
1231
+ <?php __("resend the activation link?", "profile-builder"); ?>
1232
+ <?php __("Resend Activation Email", "profile-builder"); ?>
1233
+ <?php __("%s couldn't be deleted", "profile-builder"); ?>
1234
+ <?php __("All users have been successfully deleted", "profile-builder"); ?>
1235
+ <?php __("The selected users have been activated", "profile-builder"); ?>
1236
+ <?php __("The selected users have had their activation emails resent", "profile-builder"); ?>
1237
+ <?php __("Users with Unconfirmed Email Address", "profile-builder"); ?>
1238
+ <?php __("There was an error performing that action!", "profile-builder"); ?>
1239
+ <?php __("The selected user couldn't be deleted", "profile-builder"); ?>
1240
+ <?php __("Email notification resent to user", "profile-builder"); ?>
1241
+ <?php __("[%1$s] Activate %2$s", "profile-builder"); ?>
1242
+ <?php __("To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login.", "profile-builder"); ?>
1243
+ <?php __("That username is already activated!", "profile-builder"); ?>
1244
+ <?php __("There was an error while trying to activate the user", "profile-builder"); ?>
1245
+ <?php __("A new subscriber has (been) registered!", "profile-builder"); ?>
1246
+ <?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>", "profile-builder"); ?>
1247
+ <?php __("[%1$s] Your new account information", "profile-builder"); ?>
1248
+ <?php __("Your selected password at signup", "profile-builder"); ?>
1249
+ <?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s", "profile-builder"); ?>
1250
+ <?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s", "profile-builder"); ?>
1251
+ <?php __("The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!", "profile-builder"); ?>
1252
+ <?php __("This login widget lets you add a login form in the sidebar.", "profile-builder"); ?>
1253
+ <?php __("Profile Builder Login Widget", "profile-builder"); ?>
1254
+ <?php __("Title:", "profile-builder"); ?>
1255
+ <?php __("After login redirect URL (optional):", "profile-builder"); ?>
1256
+ <?php __("Register page URL (optional):", "profile-builder"); ?>
1257
+ <?php __("Password Recovery page URL (optional):", "profile-builder"); ?>
1258
+ <?php __("Capability", "profile-builder"); ?>
1259
+ <?php __("You can't delete this capability from your role.", "profile-builder"); ?>
1260
+ <?php __("Add New Role", "profile-builder"); ?>
1261
+ <?php __("Edit Role", "profile-builder"); ?>
1262
+ <?php __("New Role", "profile-builder"); ?>
1263
+ <?php __("View Role", "profile-builder"); ?>
1264
+ <?php __("Search the Roles Editor", "profile-builder"); ?>
1265
+ <?php __("No roles found", "profile-builder"); ?>
1266
+ <?php __("No roles found in trash", "profile-builder"); ?>
1267
+ <?php __("Role updated.", "profile-builder"); ?>
1268
+ <?php __("Custom field updated.", "profile-builder"); ?>
1269
+ <?php __("Custom field deleted.", "profile-builder"); ?>
1270
+ <?php __("Role created.", "profile-builder"); ?>
1271
+ <?php __("Role saved.", "profile-builder"); ?>
1272
+ <?php __("Role submitted.", "profile-builder"); ?>
1273
+ <?php __("Role scheduled for: <strong>%1$s</strong>", "profile-builder"); ?>
1274
+ <?php __("Role draft updated.", "profile-builder"); ?>
1275
+ <?php __("Role Name", "profile-builder"); ?>
1276
+ <?php __("Role Slug", "profile-builder"); ?>
1277
+ <?php __("Capabilities", "profile-builder"); ?>
1278
+ <?php __("Users", "profile-builder"); ?>
1279
+ <?php __("Clone", "profile-builder"); ?>
1280
+ <?php __("You can't delete your role.", "profile-builder"); ?>
1281
+ <?php __("Change Default", "profile-builder"); ?>
1282
+ <?php __("You can't delete the default role. Change it first.", "profile-builder"); ?>
1283
+ <?php __("Edit User Roles", "profile-builder"); ?>
1284
+ <?php __("The usernames cannot be changed.", "profile-builder"); ?>
1285
+ <?php __("After Login", "profile-builder"); ?>
1286
+ <?php __("After Logout", "profile-builder"); ?>
1287
+ <?php __("After Registration", "profile-builder"); ?>
1288
+ <?php __("After Edit Profile", "profile-builder"); ?>
1289
+ <?php __("After Successful Email Confirmation", "profile-builder"); ?>
1290
+ <?php __("After Successful Password Reset", "profile-builder"); ?>
1291
+ <?php __("Dashboard (redirect users from accessing the dashboard)", "profile-builder"); ?>
1292
+ <?php __("User ID", "profile-builder"); ?>
1293
+ <?php __("User ID or Username", "profile-builder"); ?>
1294
+ <?php __("User ID / Username", "profile-builder"); ?>
1295
+ <?php __("Please select and enter the ID or username of your user.", "profile-builder"); ?>
1296
+ <?php __("Redirect Type", "profile-builder"); ?>
1297
+ <?php __("Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}", "profile-builder"); ?>
1298
+ <?php __("Individual User Redirects", "profile-builder"); ?>
1299
+ <?php __("User Role", "profile-builder"); ?>
1300
+ <?php __("Select a user role.", "profile-builder"); ?>
1301
+ <?php __("User Role based Redirects", "profile-builder"); ?>
1302
+ <?php __("Global Redirects", "profile-builder"); ?>
1303
+ <?php __("Login ( wp_login.php )", "profile-builder"); ?>
1304
+ <?php __("Register ( wp-login.php?action=register )", "profile-builder"); ?>
1305
+ <?php __("Lost Password ( wp-login.php?action=lostpassword )", "profile-builder"); ?>
1306
+ <?php __("Author Archive ( http://sitename.com/author/admin )", "profile-builder"); ?>
1307
+ <?php __("Redirect Default WordPress Forms and Pages", "profile-builder"); ?>
1308
+ <?php __("How does this work?", "profile-builder"); ?>
1309
+ <?php __("<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>", "profile-builder"); ?>
1310
+ <?php __("<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>", "profile-builder"); ?>
1311
+ <?php __("<pre>Redirect</pre><pre>URL</pre>", "profile-builder"); ?>
1312
+ <?php __("These redirects happen after a successful action, like registration or after a successful login.", "profile-builder"); ?>
1313
+ <?php __("Which redirect happens depends on the following priority:", "profile-builder"); ?>
1314
+ <?php __("Multiple Registration and Edit Profile form settings Redirects", "profile-builder"); ?>
1315
+ <?php __("Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.", "profile-builder"); ?>
1316
+ <?php __("Redirect Default WordPress forms and pages", "profile-builder"); ?>
1317
+ <?php __("With these you can redirect various WordPress forms and pages to pages created with profile builder.", "profile-builder"); ?>
1318
+ <?php __("Available tags for dynamic URLs", "profile-builder"); ?>
1319
+ <?php __("You use the following tags in your URLs to redirect users to various pages.", "profile-builder"); ?>
1320
+ <?php __("generates a url of the current website homepage.", "profile-builder"); ?>
1321
+ <?php __("in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url", "profile-builder"); ?>
1322
+ <?php __("the ID of the user", "profile-builder"); ?>
1323
+ <?php __("the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.", "profile-builder"); ?>
1324
+ <?php __("the URL of the previously visited page", "profile-builder"); ?>
1325
+ <?php __("You can't add duplicate redirects!", "profile-builder"); ?>
1326
+ <?php __("These settings are also replicated in the \"User Email Customizer\" settings-page upon save.", "profile-builder"); ?>
1327
+ <?php __("Valid tags {{reply_to}} and {{site_name}}", "profile-builder"); ?>
1328
+ <?php __("From (name)", "profile-builder"); ?>
1329
+ <?php __("From (reply-to email)", "profile-builder"); ?>
1330
+ <?php __("Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email", "profile-builder"); ?>
1331
+ <?php __("Common Settings", "profile-builder"); ?>
1332
+ <?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n", "profile-builder"); ?>
1333
+ <?php __("Email Subject", "profile-builder"); ?>
1334
+ <?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
1335
+ <?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n<p>The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!</p>", "profile-builder"); ?>
1336
+ <?php __("Registration with Admin Approval", "profile-builder"); ?>
1337
+ <?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n<p>His/her new password is: {{password}}</p>\n", "profile-builder"); ?>
1338
+ <?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
1339
+ <?php __("Available Tags", "profile-builder"); ?>
1340
+ <?php __("User Fields Tags", "profile-builder"); ?>
1341
+ <?php __("Site Url", "profile-builder"); ?>
1342
+ <?php __("Site Name", "profile-builder"); ?>
1343
+ <?php __("User Id", "profile-builder"); ?>
1344
+ <?php __("User Role Label", "profile-builder"); ?>
1345
+ <?php __("Reply To", "profile-builder"); ?>
1346
+ <?php __("Blog URL", "profile-builder"); ?>
1347
+ <?php __("Activation Key", "profile-builder"); ?>
1348
+ <?php __("Activation Url", "profile-builder"); ?>
1349
+ <?php __("Activation Link", "profile-builder"); ?>
1350
+ <?php __("Reset Key", "profile-builder"); ?>
1351
+ <?php __("Reset Url", "profile-builder"); ?>
1352
+ <?php __("Reset Link", "profile-builder"); ?>
1353
+ <?php __("Approve User Url", "profile-builder"); ?>
1354
+ <?php __("Approve User Link", "profile-builder"); ?>
1355
+ <?php __("The users selected password at signup", "profile-builder"); ?>
1356
+ <?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
1357
+ <?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n", "profile-builder"); ?>
1358
+ <?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
1359
+ <?php __("[{{site_name}}] Activate {{username}}", "profile-builder"); ?>
1360
+ <?php __("Registration with Email Confirmation", "profile-builder"); ?>
1361
+ <?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n", "profile-builder"); ?>
1362
+ <?php __("A new account has been created for you on {{site_name}}", "profile-builder"); ?>
1363
+ <?php __("<h3>Good News!</h3>\n<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
1364
+ <?php __("Your account on {{site_name}} has been approved!", "profile-builder"); ?>
1365
+ <?php __("User Approval Notification", "profile-builder"); ?>
1366
+ <?php __("<h3>Hello,</h3>\n<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
1367
+ <?php __("Your account on {{site_name}} has been unapproved!", "profile-builder"); ?>
1368
+ <?php __("Unapproved User Notification", "profile-builder"); ?>
1369
+ <?php __("<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\nUsername: {{username}}</p>\n<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n<p>To reset your password, visit the following address:<br/>\n{{{reset_link}}}</p>\n", "profile-builder"); ?>
1370
+ <?php __("[{{site_name}}] Password Reset", "profile-builder"); ?>
1371
+ <?php __("Password Reset Email", "profile-builder"); ?>
1372
+ <?php __("<p>You have successfully reset your password.</p>\n", "profile-builder"); ?>
1373
+ <?php __("[{{site_name}}] Password Reset Successfully", "profile-builder"); ?>
1374
+ <?php __("Password Reset Success Email", "profile-builder"); ?>
1375
+ <?php __("<h3>Hi {{username}},</h3>\n<p>This notice confirms that your email was changed on {{site_name}}.</p>\n<p>If you did not change your email, please contact the Site Administrator at %s</p>\n<p>This email has been sent to {{user_email}}</p>\n<p>Regards,<br>\nAll at {{site_name}}<br>\n<a href=\"{{site_url}}\">{{site_url}}</a></p>", "profile-builder"); ?>
1376
+ <?php __("[{{site_name}}] Notice of Email Change", "profile-builder"); ?>
1377
+ <?php __("Changed Email Address Notification", "profile-builder"); ?>
1378
+ <?php __("Edit-profile Form", "profile-builder"); ?>
1379
+ <?php __("Add New", "profile-builder"); ?>
1380
+ <?php __("Add new Edit-profile Form", "profile-builder"); ?>
1381
+ <?php __("Edit the Edit-profile Forms", "profile-builder"); ?>
1382
+ <?php __("New Edit-profile Form", "profile-builder"); ?>
1383
+ <?php __("Edit-profile Forms", "profile-builder"); ?>
1384
+ <?php __("View the Edit-profile Form", "profile-builder"); ?>
1385
+ <?php __("Search the Edit-profile Forms", "profile-builder"); ?>
1386
+ <?php __("No Edit-profile Form found", "profile-builder"); ?>
1387
+ <?php __("No Edit-profile Forms found in trash", "profile-builder"); ?>
1388
+ <?php __("Shortcode", "profile-builder"); ?>
1389
+ <?php __("(no title)", "profile-builder"); ?>
1390
+ <?php __("The shortcode will be available after you publish this form.", "profile-builder"); ?>
1391
+ <?php __("Use this shortcode on the page you want the form to be displayed:", "profile-builder"); ?>
1392
+ <?php __("<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!", "profile-builder"); ?>
1393
+ <?php __("Form Shortcode", "profile-builder"); ?>
1394
+ <?php __("Whether to redirect the user to a specific page or not", "profile-builder"); ?>
1395
+ <?php __("Display Messages", "profile-builder"); ?>
1396
+ <?php __("Allowed time to display any success messages (in seconds)", "profile-builder"); ?>
1397
+ <?php __("URL", "profile-builder"); ?>
1398
+ <?php __("Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com", "profile-builder"); ?>
1399
+ <?php __("After Profile Update...", "profile-builder"); ?>
1400
+ <?php __("Add New Field to the List", "profile-builder"); ?>
1401
+ <?php __("Choose one of the supported fields you manage <a href=\"%s\">here</a>", "profile-builder"); ?>
1402
+ <?php __("This form is empty.", "profile-builder"); ?>
1403
+ <?php __("You need to specify the title of the form before creating it", "profile-builder"); ?>
1404
+ <?php __("<pre>Title (Type)</pre>", "profile-builder"); ?>
1405
+ <?php __("Delete all items", "profile-builder"); ?>
1406
+ <?php __("Registration Form", "profile-builder"); ?>
1407
+ <?php __("Add new Registration Form", "profile-builder"); ?>
1408
+ <?php __("Edit the Registration Forms", "profile-builder"); ?>
1409
+ <?php __("New Registration Form", "profile-builder"); ?>
1410
+ <?php __("Registration Forms", "profile-builder"); ?>
1411
+ <?php __("View the Registration Form", "profile-builder"); ?>
1412
+ <?php __("Search the Registration Forms", "profile-builder"); ?>
1413
+ <?php __("No Registration Form found", "profile-builder"); ?>
1414
+ <?php __("No Registration Forms found in trash", "profile-builder"); ?>
1415
+ <?php __("Default Role", "profile-builder"); ?>
1416
+ <?php __("Set Role", "profile-builder"); ?>
1417
+ <?php __("Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings", "profile-builder"); ?>
1418
+ <?php __("Automatically Log In", "profile-builder"); ?>
1419
+ <?php __("Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work", "profile-builder"); ?>
1420
+ <?php __("Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com", "profile-builder"); ?>
1421
+ <?php __("After Registration...", "profile-builder"); ?>
1422
+ <?php __("Are you sure you want to delete this?", "profile-builder"); ?>
1423
+ <?php __("Add new User Listing", "profile-builder"); ?>
1424
+ <?php __("Edit the User Listing", "profile-builder"); ?>
1425
+ <?php __("New User Listing", "profile-builder"); ?>
1426
+ <?php __("View the User Listing", "profile-builder"); ?>
1427
+ <?php __("Search the User Listing", "profile-builder"); ?>
1428
+ <?php __("No User Listing found", "profile-builder"); ?>
1429
+ <?php __("No User Listing found in trash", "profile-builder"); ?>
1430
+ <?php __("Display name as", "profile-builder"); ?>
1431
+ <?php __("Registration Date", "profile-builder"); ?>
1432
+ <?php __("Number of Posts", "profile-builder"); ?>
1433
+ <?php __("More Info", "profile-builder"); ?>
1434
+ <?php __("More Info Url", "profile-builder"); ?>
1435
+ <?php __("Avatar or Gravatar", "profile-builder"); ?>
1436
+ <?php __("User Nicename", "profile-builder"); ?>
1437
+ <?php __("Sort Tags", "profile-builder"); ?>
1438
+ <?php __("Extra Functions", "profile-builder"); ?>
1439
+ <?php __("Pagination", "profile-builder"); ?>
1440
+ <?php __("Search all Fields", "profile-builder"); ?>
1441
+ <?php __("Faceted Menus", "profile-builder"); ?>
1442
+ <?php __("User Count", "profile-builder"); ?>
1443
+ <?php __("Go Back Link", "profile-builder"); ?>
1444
+ <?php __("All-userlisting Template", "profile-builder"); ?>
1445
+ <?php __("Single-userlisting Template", "profile-builder"); ?>
1446
+ <?php __("Avatar", "profile-builder"); ?>
1447
+ <?php __("Posts", "profile-builder"); ?>
1448
+ <?php __("Sign-up Date", "profile-builder"); ?>
1449
+ <?php __("More", "profile-builder"); ?>
1450
+ <?php __("You do not have permission to view this user list.", "profile-builder"); ?>
1451
+ <?php __("You do not have the required user role to view this user list.", "profile-builder"); ?>
1452
+ <?php __("User not found", "profile-builder"); ?>
1453
+ <?php __("First/Lastname", "profile-builder"); ?>
1454
+ <?php __("Display Name", "profile-builder"); ?>
1455
+ <?php __("Aim", "profile-builder"); ?>
1456
+ <?php __("Yim", "profile-builder"); ?>
1457
+ <?php __("Jabber", "profile-builder"); ?>
1458
+ <?php __("Search Users by All Fields", "profile-builder"); ?>
1459
+ <?php __("Click here to see more information about this user", "profile-builder"); ?>
1460
+ <?php __("More...", "profile-builder"); ?>
1461
+ <?php __("Click here to see more information about this user.", "profile-builder"); ?>
1462
+ <?php __("View Map", "profile-builder"); ?>
1463
+ <?php __("Click here to go back", "profile-builder"); ?>
1464
+ <?php __("Back", "profile-builder"); ?>
1465
+ <?php __("&laquo;&laquo; First", "profile-builder"); ?>
1466
+ <?php __("&laquo; Prev", "profile-builder"); ?>
1467
+ <?php __("Next &raquo; ", "profile-builder"); ?>
1468
+ <?php __("Last &raquo;&raquo;", "profile-builder"); ?>
1469
+ <?php __("You don't have any pagination settings on this userlisting!", "profile-builder"); ?>
1470
+ <?php __("Show All", "profile-builder"); ?>
1471
+ <?php __("Choose...", "profile-builder"); ?>
1472
+ <?php __("No options available", "profile-builder"); ?>
1473
+ <?php __("Remove All Filters", "profile-builder"); ?>
1474
+ <?php __("Search", "profile-builder"); ?>
1475
+ <?php __("Clear Results", "profile-builder"); ?>
1476
+ <?php __("Extra shortcode parameters", "profile-builder"); ?>
1477
+ <?php __("View all extra shortcode parameters", "profile-builder"); ?>
1478
+ <?php __("displays users having a certain meta-value within a certain (extra) meta-field", "profile-builder"); ?>
1479
+ <?php __("Example:", "profile-builder"); ?>
1480
+ <?php __("Remember though, that the field-value combination must exist in the database.", "profile-builder"); ?>
1481
+ <?php __("displays only the users that you specified the user_id for", "profile-builder"); ?>
1482
+ <?php __("displays all users except the ones you specified the user_id for", "profile-builder"); ?>
1483
+ <?php __("Random (very slow on large databases > 10K user)", "profile-builder"); ?>
1484
+ <?php __("Ascending", "profile-builder"); ?>
1485
+ <?php __("Descending", "profile-builder"); ?>
1486
+ <?php __("Roles to Display", "profile-builder"); ?>
1487
+ <?php __("Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles", "profile-builder"); ?>
1488
+ <?php __("Number of Users/Page", "profile-builder"); ?>
1489
+ <?php __("Set the number of users to be displayed on every paginated part of the all-userlisting", "profile-builder"); ?>
1490
+ <?php __("Default Sorting Criteria", "profile-builder"); ?>
1491
+ <?php __("Set the default sorting criteria<br/>This can temporarily be changed for each new session", "profile-builder"); ?>
1492
+ <?php __("Default Sorting Order", "profile-builder"); ?>
1493
+ <?php __("Set the default sorting order<br/>This can temporarily be changed for each new session", "profile-builder"); ?>
1494
+ <?php __("Avatar Size (All-userlisting)", "profile-builder"); ?>
1495
+ <?php __("Set the avatar size on the all-userlisting only", "profile-builder"); ?>
1496
+ <?php __("Avatar Size (Single-userlisting)", "profile-builder"); ?>
1497
+ <?php __("Set the avatar size on the single-userlisting only", "profile-builder"); ?>
1498
+ <?php __("Visible only to logged in users?", "profile-builder"); ?>
1499
+ <?php __("The userlisting will only be visible only to the logged in users", "profile-builder"); ?>
1500
+ <?php __("Visible to following Roles", "profile-builder"); ?>
1501
+ <?php __("The userlisting will only be visible to the following roles", "profile-builder"); ?>
1502
+ <?php __("Userlisting Settings", "profile-builder"); ?>
1503
+ <?php __("Label", "profile-builder"); ?>
1504
+ <?php __("Choose the facet name that appears on the frontend", "profile-builder"); ?>
1505
+ <?php __("Facet Type", "profile-builder"); ?>
1506
+ <?php __("Choose the facet menu type", "profile-builder"); ?>
1507
+ <?php __("Facet Meta", "profile-builder"); ?>
1508
+ <?php __("Choose the meta field for the facet menu", "profile-builder"); ?>
1509
+ <?php __("Behaviour", "profile-builder"); ?>
1510
+ <?php __("Narrow the results", "profile-builder"); ?>
1511
+ <?php __("Expand the results", "profile-builder"); ?>
1512
+ <?php __("Choose how multiple selections affect the results", "profile-builder"); ?>
1513
+ <?php __("Visible choices", "profile-builder"); ?>
1514
+ <?php __("Show a toggle link after this many choices. Leave blank for all", "profile-builder"); ?>
1515
+ <?php __("Search Fields", "profile-builder"); ?>
1516
+ <?php __("Choose the fields in which the Search Field will look in", "profile-builder"); ?>
1517
+ <?php __("Search Settings", "profile-builder"); ?>
1518
+ <?php __("You need to activate the Userlisting feature from within the \"Modules\" tab!", "profile-builder"); ?>
1519
+ <?php __("You can find it in the Profile Builder menu.", "profile-builder"); ?>
1520
+ <?php __("No results found!", "profile-builder"); ?>
1521
+ <?php __("Delete this item", "profile-builder"); ?>
1522
+ <?php __("Syncronize WCK", "profile-builder"); ?>
1523
+ <?php __("Syncronize WCK Translation", "profile-builder"); ?>
1524
+ <?php __("Yes, I'd like to create a new site", "profile-builder"); ?>
1525
+ <?php __("Your site url will look like this:<br>", "profile-builder"); ?>
1526
+ <?php __("Site URL slug", "profile-builder"); ?>
1527
+ <?php __("Site Title", "profile-builder"); ?>
1528
+ <?php __("Privacy: I would like my site to appear in search engines, and in public listings around this network.", "profile-builder"); ?>
1529
+ <?php __("You must enter a valid email address.", "profile-builder"); ?>
1530
+ <?php __("This email is already reserved to be used soon.", "profile-builder"); ?>
1531
+ <?php __("Please try a different one!", "profile-builder"); ?>
1532
+ <?php __("This email is already in use.", "profile-builder"); ?>
1533
+ <?php __("The passwords do not match", "profile-builder"); ?>
1534
+ <?php __("To use reCAPTCHA you must get an API key from", "profile-builder"); ?>
1535
+ <?php __("For security reasons, you must pass the remote ip to reCAPTCHA!", "profile-builder"); ?>
1536
+ <?php __("To use reCAPTCHA you must get an API public key from:", "profile-builder"); ?>
1537
+ <?php __("Click the BACK button on your browser, and try again.", "profile-builder"); ?>
1538
+ <?php __("Only administrators can see this field on edit profile forms.", "profile-builder"); ?>
1539
+ <?php __("As an administrator you cannot change your role.", "profile-builder"); ?>
1540
+ <?php __("You cannot register this user role", "profile-builder"); ?>
1541
+ <?php __("This username already exists.", "profile-builder"); ?>
1542
+ <?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
1543
+ <?php __("Please enter a valid username.", "profile-builder"); ?>
1544
+ <?php __("This username is already reserved to be used soon.", "profile-builder"); ?>
1545
+ <?php __("Please add the Google Maps API key for this field.", "profile-builder"); ?>
1546
+ <?php __("Something went wrong. Please try again.", "profile-builder"); ?>
1547
+ <?php __("Please enter numbers only", "profile-builder"); ?>
1548
+ <?php __("Value must be a multiplier of %1$s", "profile-builder"); ?>
1549
+ <?php __("Value must be greater than or equal to %1$s", "profile-builder"); ?>
1550
+ <?php __("Value must be less than or equal to %1$s", "profile-builder"); ?>
1551
+ <?php __("Required phone number format: ", "profile-builder"); ?>
1552
+ <?php __("Bolivia, __( Plurinational State of", "profile-builder"); ?>
1553
+ <?php __("Bonaire, __( Sint Eustatius and Saba", "profile-builder"); ?>
1554
+ <?php __("Brunei Darussalam", "profile-builder"); ?>
1555
+ <?php __("Cabo Verde", "profile-builder"); ?>
1556
+ <?php __("Cocos (Keeling) Islands", "profile-builder"); ?>
1557
+ <?php __("Congo", "profile-builder"); ?>
1558
+ <?php __("Congo, __( the Democratic Republic of the", "profile-builder"); ?>
1559
+ <?php __("Cote dIvoire", "profile-builder"); ?>
1560
+ <?php __("Falkland Islands (Malvinas)", "profile-builder"); ?>
1561
+ <?php __("Holy See (Vatican City State)", "profile-builder"); ?>
1562
+ <?php __("Iran, __( Islamic Republic of", "profile-builder"); ?>
1563
+ <?php __("Korea, __( Democratic Peoples Republic of", "profile-builder"); ?>
1564
+ <?php __("Korea, __( Republic of", "profile-builder"); ?>
1565
+ <?php __("Lao Peoples Democratic Republic", "profile-builder"); ?>
1566
+ <?php __("Macedonia, __( the former Yugoslav Republic of", "profile-builder"); ?>
1567
+ <?php __("Micronesia, __( Federated States of", "profile-builder"); ?>
1568
+ <?php __("Moldova, __( Republic of", "profile-builder"); ?>
1569
+ <?php __("Palestine, __( State of", "profile-builder"); ?>
1570
+ <?php __("Russian Federation", "profile-builder"); ?>
1571
+ <?php __("Saint Helena, __( Ascension and Tristan da Cunha", "profile-builder"); ?>
1572
+ <?php __("Saint Martin (French part)", "profile-builder"); ?>
1573
+ <?php __("Sint Maarten (Dutch part)", "profile-builder"); ?>
1574
+ <?php __("Syrian Arab Republic", "profile-builder"); ?>
1575
+ <?php __("Taiwan, __( Province of China", "profile-builder"); ?>
1576
+ <?php __("Tanzania, __( United Republic of", "profile-builder"); ?>
1577
+ <?php __("Timor-Leste", "profile-builder"); ?>
1578
+ <?php __("Venezuela, __( Bolivarian Republic of", "profile-builder"); ?>
1579
+ <?php __("Viet Nam", "profile-builder"); ?>
1580
+ <?php __("Virgin Islands, __( British", "profile-builder"); ?>
1581
+ <?php __("Virgin Islands, __( U.S.", "profile-builder"); ?>
1582
+ <?php __("...Choose", "profile-builder"); ?>
1583
+ <?php __("Remove", "profile-builder"); ?>
1584
+ <?php __("Select File", "profile-builder"); ?>
1585
+ <?php __("Upload ", "profile-builder"); ?>
1586
+ <?php __("Sorry, you cannot upload this file type for this field.", "profile-builder"); ?>
1587
+ <?php __("An error occurred, please try again later.", "profile-builder"); ?>
1588
+ <?php __("Limit", "profile-builder"); ?>
1589
+ <?php __("Enable limit to the number of fields to be generated by users in front end forms ", "profile-builder"); ?>
1590
+ <?php __("General Limit", "profile-builder"); ?>
1591
+ <?php __("Default limit for this repeater group. <br>Leave 0 for unlimited.", "profile-builder"); ?>
1592
+ <?php __("Limit reached message", "profile-builder"); ?>
1593
+ <?php __("The maximum number of fields has been reached.", "profile-builder"); ?>
1594
+ <?php __("The popup message to display when the limit of repeater groups is reached.", "profile-builder"); ?>
1595
+ <?php __("Limit per Role", "profile-builder"); ?>
1596
+ <?php __("Leave 0 for unlimited.", "profile-builder"); ?>
1597
+ <?php __("Repeated field group", "profile-builder"); ?>
1598
+ <?php __("Manage field or group of fields that will be repeatable.", "profile-builder"); ?>
1599
+ <?php __("Edit field group", "profile-builder"); ?>
1600
+ <?php __("Repeatable fields saved!", "profile-builder"); ?>
1601
+ <?php __("Please enter a unique field title.", "profile-builder"); ?>
1602
+ <?php __("Please enter a unique field title.\n", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -1,5993 +1,6508 @@
1
- # Copyright (C) 2017 Profile Builder Pro
2
- # This file is distributed under the same license as the Profile Builder Pro package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Profile Builder Pro 2.7.1\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/profile-builder-2.0\n"
7
- "POT-Creation-Date: 2017-12-05 12:23:24+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
-
15
- #: admin/add-ons.php:10 admin/add-ons.php:193
16
- msgid "Add-Ons"
17
- msgstr ""
18
-
19
- #: admin/add-ons.php:41
20
- msgid "Recommended Plugins"
21
- msgstr ""
22
-
23
- #: admin/add-ons.php:72 admin/add-ons.php:143 admin/pms-cross-promotion.php:102
24
- msgid "Free"
25
- msgstr ""
26
-
27
- #: admin/add-ons.php:74
28
- msgid ""
29
- "Translate your Profile Builder forms with a WordPress translation plugin "
30
- "that anyone can use. It offers a simpler way to translate WordPress sites, "
31
- "with full support for WooCommerce and site builders."
32
- msgstr ""
33
-
34
- #: admin/add-ons.php:75 admin/add-ons.php:146 admin/pms-cross-promotion.php:105
35
- msgid "More Details"
36
- msgstr ""
37
-
38
- #: admin/add-ons.php:84 admin/add-ons.php:155 admin/add-ons.php:195
39
- #: admin/add-ons.php:284 admin/pms-cross-promotion.php:78
40
- #: admin/pms-cross-promotion.php:114 admin/pms-cross-promotion.php:193
41
- msgid "Activate"
42
- msgstr ""
43
-
44
- #: admin/add-ons.php:88 admin/add-ons.php:159 admin/add-ons.php:207
45
- #: admin/add-ons.php:288 admin/pms-cross-promotion.php:90
46
- #: admin/pms-cross-promotion.php:118 admin/pms-cross-promotion.php:197
47
- msgid "Deactivate"
48
- msgstr ""
49
-
50
- #: admin/add-ons.php:93 admin/add-ons.php:164 admin/pms-cross-promotion.php:88
51
- #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
52
- msgid "Plugin is <strong>inactive</strong>"
53
- msgstr ""
54
-
55
- #: admin/add-ons.php:95 admin/add-ons.php:166 admin/pms-cross-promotion.php:87
56
- #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204
57
- msgid "Plugin is <strong>active</strong>"
58
- msgstr ""
59
-
60
- #: admin/add-ons.php:101 admin/add-ons.php:172
61
- #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216
62
- msgid "Install Now"
63
- msgstr ""
64
-
65
- #: admin/add-ons.php:104 admin/add-ons.php:175 admin/add-ons.php:308
66
- #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220
67
- msgid "Compatible with your version of Profile Builder."
68
- msgstr ""
69
-
70
- #: admin/add-ons.php:109 admin/add-ons.php:180
71
- #: admin/pms-cross-promotion.php:146
72
- msgid ""
73
- "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install "
74
- "manually</a>."
75
- msgstr ""
76
-
77
- #: admin/add-ons.php:145
78
- msgid ""
79
- "Accept user payments, create subscription plans and restrict content on your "
80
- "membership site."
81
- msgstr ""
82
-
83
- #: admin/add-ons.php:197 admin/pms-cross-promotion.php:80
84
- msgid "Downloading and installing..."
85
- msgstr ""
86
-
87
- #: admin/add-ons.php:198 admin/pms-cross-promotion.php:81
88
- msgid "Installation complete"
89
- msgstr ""
90
-
91
- #: admin/add-ons.php:200
92
- msgid "Add-On is Active"
93
- msgstr ""
94
-
95
- #: admin/add-ons.php:201
96
- msgid "Add-On has been activated"
97
- msgstr ""
98
-
99
- #: admin/add-ons.php:202 admin/pms-cross-promotion.php:85
100
- msgid "Retry Install"
101
- msgstr ""
102
-
103
- #: admin/add-ons.php:204 admin/add-ons.php:295
104
- msgid "Add-On is <strong>active</strong>"
105
- msgstr ""
106
-
107
- #: admin/add-ons.php:205 admin/add-ons.php:293
108
- msgid "Add-On is <strong>inactive</strong>"
109
- msgstr ""
110
-
111
- #: admin/add-ons.php:208
112
- msgid "Add-On has been deactivated."
113
- msgstr ""
114
-
115
- #: admin/add-ons.php:216
116
- msgid ""
117
- "Something went wrong, we could not connect to the server. Please try again "
118
- "later."
119
- msgstr ""
120
-
121
- #: admin/add-ons.php:260
122
- msgid "Available in Hobbyist and Pro Versions"
123
- msgstr ""
124
-
125
- #: admin/add-ons.php:262
126
- msgid "Available in All Versions"
127
- msgstr ""
128
-
129
- #: admin/add-ons.php:303
130
- msgid "Learn More"
131
- msgstr ""
132
-
133
- #: admin/add-ons.php:303 admin/pms-cross-promotion.php:134
134
- #: admin/pms-cross-promotion.php:213
135
- msgid "Download Now"
136
- msgstr ""
137
-
138
- #: admin/add-ons.php:317
139
- msgid "Upgrade Profile Builder"
140
- msgstr ""
141
-
142
- #: admin/add-ons.php:318
143
- msgid "Not compatible with Profile Builder"
144
- msgstr ""
145
-
146
- #: admin/add-ons.php:325 front-end/class-formbuilder.php:418
147
- msgid "Update"
148
- msgstr ""
149
-
150
- #: admin/add-ons.php:326
151
- msgid "Not compatible with your version of Profile Builder."
152
- msgstr ""
153
-
154
- #: admin/add-ons.php:327
155
- msgid "Minimum required Profile Builder version:"
156
- msgstr ""
157
-
158
- #: admin/add-ons.php:332
159
- msgid ""
160
- "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
161
- "manually</a>."
162
- msgstr ""
163
-
164
- #: admin/admin-bar.php:10
165
- msgid "Show/Hide the Admin Bar on the Front-End"
166
- msgstr ""
167
-
168
- #: admin/admin-bar.php:10 admin/admin-bar.php:47
169
- msgid "Admin Bar Settings"
170
- msgstr ""
171
-
172
- #: admin/admin-bar.php:48
173
- msgid ""
174
- "Choose which user roles view the admin bar in the front-end of the website."
175
- msgstr ""
176
-
177
- #: admin/admin-bar.php:57
178
- msgid "User-Role"
179
- msgstr ""
180
-
181
- #: admin/admin-bar.php:58
182
- msgid "Visibility"
183
- msgstr ""
184
-
185
- #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
186
- #: modules/multiple-forms/register-forms.php:230
187
- msgid "Default"
188
- msgstr ""
189
-
190
- #: admin/admin-bar.php:74
191
- msgid "Show"
192
- msgstr ""
193
-
194
- #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1599
195
- msgid "Hide"
196
- msgstr ""
197
-
198
- #: admin/admin-bar.php:86 admin/general-settings.php:243
199
- #: admin/register-version.php:95 features/functions.php:714
200
- #: modules/modules.php:127
201
- msgid "Save Changes"
202
- msgstr ""
203
-
204
- #: admin/admin-functions.php:37
205
- msgid ""
206
- "Login is set to be done using the E-mail. This field will NOT appear in the "
207
- "front-end! ( you can change these settings under the \"%s\" tab )"
208
- msgstr ""
209
-
210
- #: admin/admin-functions.php:37 admin/general-settings.php:10
211
- #: admin/general-settings.php:35
212
- msgid "General Settings"
213
- msgstr ""
214
-
215
- #: admin/admin-functions.php:41
216
- msgid "Display name publicly as - only appears on the Edit Profile page!"
217
- msgstr ""
218
-
219
- #: admin/admin-functions.php:44
220
- msgid "Blog Details - only appears on the Registration page!"
221
- msgstr ""
222
-
223
- #: admin/admin-functions.php:132
224
- msgid ""
225
- "<strong>ERROR</strong>: The password must have the minimum length of %s "
226
- "characters"
227
- msgstr ""
228
-
229
- #: admin/admin-functions.php:137 admin/general-settings.php:229
230
- msgid "Very weak"
231
- msgstr ""
232
-
233
- #: admin/admin-functions.php:137 admin/general-settings.php:230
234
- #: features/functions.php:555 features/functions.php:579
235
- msgid "Weak"
236
- msgstr ""
237
-
238
- #: admin/admin-functions.php:137 admin/general-settings.php:231
239
- #: features/functions.php:555 features/functions.php:579
240
- msgid "Medium"
241
- msgstr ""
242
-
243
- #: admin/admin-functions.php:137 admin/general-settings.php:232
244
- #: features/functions.php:555 features/functions.php:579
245
- msgid "Strong"
246
- msgstr ""
247
-
248
- #: admin/admin-functions.php:148
249
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
250
- msgstr ""
251
-
252
- #: admin/admin-functions.php:187
253
- msgid "Add Field"
254
- msgstr ""
255
-
256
- #: admin/admin-functions.php:189
257
- #: features/content-restriction/content-restriction.php:117
258
- #: modules/class-mustache-templates/class-mustache-templates.php:390
259
- msgid "Save Settings"
260
- msgstr ""
261
-
262
- #: admin/admin-functions.php:200
263
- msgid ""
264
- "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target="
265
- "\"_blank\">rate us on WordPress.org</a>. More happy users means more "
266
- "features, less bugs and better support for everyone. "
267
- msgstr ""
268
-
269
- #: admin/basic-info.php:10
270
- msgid "Basic Information"
271
- msgstr ""
272
-
273
- #: admin/basic-info.php:29
274
- msgid "Version %s"
275
- msgstr ""
276
-
277
- #: admin/basic-info.php:31
278
- msgid ""
279
- "The best way to add front-end registration, edit profile and login forms."
280
- msgstr ""
281
-
282
- #: admin/basic-info.php:33
283
- msgid "For Modern User Interaction"
284
- msgstr ""
285
-
286
- #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
287
- msgid "Login"
288
- msgstr ""
289
-
290
- #: admin/basic-info.php:37
291
- msgid "Friction-less login using %s shortcode or a widget."
292
- msgstr ""
293
-
294
- #: admin/basic-info.php:40
295
- msgid "Registration"
296
- msgstr ""
297
-
298
- #: admin/basic-info.php:41
299
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
300
- msgstr ""
301
-
302
- #: admin/basic-info.php:44
303
- msgid "Edit Profile"
304
- msgstr ""
305
-
306
- #: admin/basic-info.php:45
307
- msgid "Straight forward edit profile forms using %s shortcode."
308
- msgstr ""
309
-
310
- #: admin/basic-info.php:51
311
- msgid "Extra Features"
312
- msgstr ""
313
-
314
- #: admin/basic-info.php:52
315
- msgid ""
316
- "Features that give you more control over your users, increased security and "
317
- "help you fight user registration spam."
318
- msgstr ""
319
-
320
- #: admin/basic-info.php:53
321
- msgid "Enable extra features"
322
- msgstr ""
323
-
324
- #: admin/basic-info.php:57
325
- msgid "Recover Password"
326
- msgstr ""
327
-
328
- #: admin/basic-info.php:58
329
- msgid "Allow users to recover their password in the front-end using the %s."
330
- msgstr ""
331
-
332
- #: admin/basic-info.php:61
333
- msgid "Admin Approval (*)"
334
- msgstr ""
335
-
336
- #: admin/basic-info.php:62
337
- msgid ""
338
- "You decide who is a user on your website. Get notified via email or approve "
339
- "multiple users at once from the WordPress UI."
340
- msgstr ""
341
-
342
- #: admin/basic-info.php:65
343
- msgid "Email Confirmation"
344
- msgstr ""
345
-
346
- #: admin/basic-info.php:66
347
- msgid ""
348
- "Make sure users sign up with genuine emails. On registration users will "
349
- "receive a notification to confirm their email address."
350
- msgstr ""
351
-
352
- #: admin/basic-info.php:69
353
- #: features/content-restriction/content-restriction.php:17
354
- #: features/content-restriction/content-restriction.php:44
355
- msgid "Content Restriction"
356
- msgstr ""
357
-
358
- #: admin/basic-info.php:70
359
- msgid ""
360
- "Restrict users from accessing certain pages, posts or custom post types "
361
- "based on user role or logged-in status."
362
- msgstr ""
363
-
364
- #: admin/basic-info.php:73
365
- msgid "Minimum Password Length and Strength Meter"
366
- msgstr ""
367
-
368
- #: admin/basic-info.php:74
369
- msgid ""
370
- "Eliminate weak passwords altogether by setting a minimum password length and "
371
- "enforcing a certain password strength."
372
- msgstr ""
373
-
374
- #: admin/basic-info.php:77
375
- msgid "Login with Email or Username"
376
- msgstr ""
377
-
378
- #: admin/basic-info.php:78
379
- msgid ""
380
- "Allow users to log in with their email or username when accessing your site."
381
- msgstr ""
382
-
383
- #: admin/basic-info.php:91
384
- msgid "Customize Your Forms The Way You Want (*)"
385
- msgstr ""
386
-
387
- #: admin/basic-info.php:92
388
- msgid ""
389
- "With Extra Profile Fields you can create the exact registration form your "
390
- "project needs."
391
- msgstr ""
392
-
393
- #: admin/basic-info.php:94
394
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
395
- msgstr ""
396
-
397
- #: admin/basic-info.php:96
398
- msgid "Get started with extra fields"
399
- msgstr ""
400
-
401
- #: admin/basic-info.php:99
402
- msgid "Avatar Upload"
403
- msgstr ""
404
-
405
- #: admin/basic-info.php:100
406
- msgid "Generic Uploads"
407
- msgstr ""
408
-
409
- #: admin/basic-info.php:101
410
- msgid "Agree To Terms Checkbox"
411
- msgstr ""
412
-
413
- #: admin/basic-info.php:102
414
- msgid "Datepicker"
415
- msgstr ""
416
-
417
- #: admin/basic-info.php:103
418
- msgid "Timepicker"
419
- msgstr ""
420
-
421
- #: admin/basic-info.php:104
422
- msgid "Colorpicker"
423
- msgstr ""
424
-
425
- #: admin/basic-info.php:105
426
- msgid "reCAPTCHA"
427
- msgstr ""
428
-
429
- #: admin/basic-info.php:106
430
- msgid "Country Select"
431
- msgstr ""
432
-
433
- #: admin/basic-info.php:107
434
- msgid "Currency Select"
435
- msgstr ""
436
-
437
- #: admin/basic-info.php:108
438
- msgid "Timezone Select"
439
- msgstr ""
440
-
441
- #: admin/basic-info.php:112
442
- msgid "Input / Hidden Input"
443
- msgstr ""
444
-
445
- #: admin/basic-info.php:113
446
- msgid "Number"
447
- msgstr ""
448
-
449
- #: admin/basic-info.php:114
450
- msgid "Checkbox"
451
- msgstr ""
452
-
453
- #: admin/basic-info.php:115
454
- msgid "Select"
455
- msgstr ""
456
-
457
- #: admin/basic-info.php:116
458
- msgid "Radio Buttons"
459
- msgstr ""
460
-
461
- #: admin/basic-info.php:117
462
- msgid "Textarea"
463
- msgstr ""
464
-
465
- #: admin/basic-info.php:118
466
- msgid "Validation"
467
- msgstr ""
468
-
469
- #: admin/basic-info.php:119
470
- msgid "Map"
471
- msgstr ""
472
-
473
- #: admin/basic-info.php:120
474
- msgid "HTML"
475
- msgstr ""
476
-
477
- #: admin/basic-info.php:129
478
- msgid "Powerful Modules (**)"
479
- msgstr ""
480
-
481
- #: admin/basic-info.php:130
482
- msgid ""
483
- "Everything you will need to manage your users is probably already available "
484
- "using the Pro Modules."
485
- msgstr ""
486
-
487
- #: admin/basic-info.php:132
488
- msgid "Enable your modules"
489
- msgstr ""
490
-
491
- #: admin/basic-info.php:135
492
- msgid "Find out more about PRO Modules"
493
- msgstr ""
494
-
495
- #: admin/basic-info.php:140 modules/modules.php:89
496
- #: modules/user-listing/userlisting.php:11
497
- #: modules/user-listing/userlisting.php:12
498
- #: modules/user-listing/userlisting.php:17
499
- #: modules/user-listing/userlisting.php:23
500
- msgid "User Listing"
501
- msgstr ""
502
-
503
- #: admin/basic-info.php:142
504
- msgid ""
505
- "Easy to edit templates for listing your website users as well as creating "
506
- "single user pages. Shortcode based, offering many options to customize your "
507
- "listings."
508
- msgstr ""
509
-
510
- #: admin/basic-info.php:144
511
- msgid ""
512
- "To create a page containing the users registered to this current site/blog, "
513
- "insert the following shortcode in a page of your chosing: %s."
514
- msgstr ""
515
-
516
- #: admin/basic-info.php:148
517
- msgid "Email Customizer"
518
- msgstr ""
519
-
520
- #: admin/basic-info.php:149
521
- msgid ""
522
- "Personalize all emails sent to your users or admins. On registration, email "
523
- "confirmation, admin approval / un-approval."
524
- msgstr ""
525
-
526
- #: admin/basic-info.php:152
527
- #: modules/custom-redirects/custom_redirects_admin.php:32
528
- #: modules/custom-redirects/custom_redirects_admin.php:33
529
- #: modules/modules.php:110
530
- msgid "Custom Redirects"
531
- msgstr ""
532
-
533
- #: admin/basic-info.php:153
534
- msgid ""
535
- "Keep your users out of the WordPress dashboard, redirect them to the front-"
536
- "page after login or registration, everything is just a few clicks away."
537
- msgstr ""
538
-
539
- #: admin/basic-info.php:158 modules/modules.php:75
540
- msgid "Multiple Registration Forms"
541
- msgstr ""
542
-
543
- #: admin/basic-info.php:159
544
- msgid ""
545
- "Set up multiple registration forms with different fields for certain user "
546
- "roles. Capture different information from different types of users."
547
- msgstr ""
548
-
549
- #: admin/basic-info.php:162 modules/modules.php:82
550
- msgid "Multiple Edit-profile Forms"
551
- msgstr ""
552
-
553
- #: admin/basic-info.php:163
554
- msgid ""
555
- "Allow different user roles to edit their specific information. Set up "
556
- "multiple edit-profile forms with different fields for certain user roles."
557
- msgstr ""
558
-
559
- #: admin/basic-info.php:166 modules/modules.php:117
560
- msgid "Repeater Fields"
561
- msgstr ""
562
-
563
- #: admin/basic-info.php:167
564
- msgid ""
565
- "Set up a repeating group of fields on register and edit profile forms. Limit "
566
- "the number of repeated groups for each user role."
567
- msgstr ""
568
-
569
- #: admin/basic-info.php:203
570
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
571
- msgstr ""
572
-
573
- #: admin/basic-info.php:204
574
- msgid "** only available in the %1$sPro version%2$s."
575
- msgstr ""
576
-
577
- #: admin/general-settings.php:39
578
- msgid "Load Profile Builder's own CSS file in the front-end:"
579
- msgstr ""
580
-
581
- #: admin/general-settings.php:42 admin/general-settings.php:55
582
- #: admin/general-settings.php:104 admin/general-settings.php:151
583
- #: admin/general-settings.php:170
584
- #: modules/multiple-forms/edit-profile-forms.php:206
585
- #: modules/multiple-forms/register-forms.php:229
586
- #: modules/multiple-forms/register-forms.php:230
587
- #: modules/user-listing/userlisting.php:2313
588
- msgid "Yes"
589
- msgstr ""
590
-
591
- #: admin/general-settings.php:44
592
- msgid "You can find the default file here: %1$s"
593
- msgstr ""
594
-
595
- #: admin/general-settings.php:51
596
- msgid "\"Email Confirmation\" Activated:"
597
- msgstr ""
598
-
599
- #: admin/general-settings.php:56 admin/general-settings.php:105
600
- #: admin/general-settings.php:150 admin/general-settings.php:169
601
- #: modules/multiple-forms/edit-profile-forms.php:206
602
- #: modules/multiple-forms/register-forms.php:229
603
- #: modules/multiple-forms/register-forms.php:230
604
- msgid "No"
605
- msgstr ""
606
-
607
- #: admin/general-settings.php:59
608
- msgid ""
609
- "This works with front-end forms only. Recommended to redirect WP default "
610
- "registration to a Profile Builder one using \"Custom Redirects\" module."
611
- msgstr ""
612
-
613
- #: admin/general-settings.php:61
614
- msgid ""
615
- "You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
616
- "Email Confirmation%2$s."
617
- msgstr ""
618
-
619
- #: admin/general-settings.php:69
620
- msgid "\"Email Confirmation\" Landing Page:"
621
- msgstr ""
622
-
623
- #: admin/general-settings.php:74
624
- msgid "Existing Pages"
625
- msgstr ""
626
-
627
- #: admin/general-settings.php:89
628
- msgid ""
629
- "Specify the page where the users will be directed when confirming the email "
630
- "account. This page can differ from the register page(s) and can be changed "
631
- "at any time. If none selected, a simple confirmation page will be displayed "
632
- "for the user."
633
- msgstr ""
634
-
635
- #: admin/general-settings.php:100
636
- msgid "\"Admin Approval\" Activated:"
637
- msgstr ""
638
-
639
- #: admin/general-settings.php:108
640
- msgid ""
641
- "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
642
- msgstr ""
643
-
644
- #: admin/general-settings.php:115
645
- msgid "\"Admin Approval\" on User Role:"
646
- msgstr ""
647
-
648
- #: admin/general-settings.php:134
649
- msgid "Select on what user roles to activate Admin Approval."
650
- msgstr ""
651
-
652
- #: admin/general-settings.php:146
653
- msgid "\"Roles Editor\" Activated:"
654
- msgstr ""
655
-
656
- #: admin/general-settings.php:154
657
- msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
658
- msgstr ""
659
-
660
- #: admin/general-settings.php:165
661
- msgid "\"Content Restriction\" Activated:"
662
- msgstr ""
663
-
664
- #: admin/general-settings.php:173
665
- msgid ""
666
- "Set your settings at %1$sProfile Builder > Content Restriction%2$s and use "
667
- "each page / post / custom post type individual meta-box to restrict content."
668
- msgstr ""
669
-
670
- #: admin/general-settings.php:184
671
- msgid "\"Admin Approval\" Feature:"
672
- msgstr ""
673
-
674
- #: admin/general-settings.php:187
675
- msgid ""
676
- "You decide who is a user on your website. Get notified via email or approve "
677
- "multiple users at once from the WordPress UI. Enable Admin Approval by "
678
- "upgrading to %1$sHobbyist or PRO versions%2$s."
679
- msgstr ""
680
-
681
- #: admin/general-settings.php:194
682
- msgid "Allow Users to Log in With:"
683
- msgstr ""
684
-
685
- #: admin/general-settings.php:198
686
- msgid "Username and Email"
687
- msgstr ""
688
-
689
- #: admin/general-settings.php:199 admin/manage-fields.php:201
690
- #: features/admin-approval/class-admin-approval.php:166
691
- #: features/email-confirmation/class-email-confirmation.php:167
692
- #: front-end/login.php:88 front-end/login.php:102 front-end/login.php:231
693
- #: modules/custom-redirects/custom_redirects_admin.php:56
694
- #: modules/email-customizer/email-customizer.php:28
695
- #: modules/user-listing/userlisting.php:111
696
- #: modules/user-listing/userlisting.php:303
697
- #: modules/user-listing/userlisting.php:774
698
- #: modules/user-listing/userlisting.php:2264
699
- msgid "Username"
700
- msgstr ""
701
-
702
- #: admin/general-settings.php:200 front-end/login.php:228
703
- #: modules/email-customizer/email-customizer.php:29
704
- #: modules/user-listing/userlisting.php:780
705
- #: modules/user-listing/userlisting.php:2265
706
- msgid "Email"
707
- msgstr ""
708
-
709
- #: admin/general-settings.php:203
710
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
711
- msgstr ""
712
-
713
- #: admin/general-settings.php:204
714
- msgid "\"Username\" - users can Log In only with Username."
715
- msgstr ""
716
-
717
- #: admin/general-settings.php:205
718
- msgid "\"Email\" - users can Log In only with Email."
719
- msgstr ""
720
-
721
- #: admin/general-settings.php:212
722
- msgid "Minimum Password Length:"
723
- msgstr ""
724
-
725
- #: admin/general-settings.php:217
726
- msgid ""
727
- "Enter the minimum characters the password should have. Leave empty for no "
728
- "minimum limit"
729
- msgstr ""
730
-
731
- #: admin/general-settings.php:224
732
- msgid "Minimum Password Strength:"
733
- msgstr ""
734
-
735
- #: admin/general-settings.php:228
736
- msgid "Disabled"
737
- msgstr ""
738
-
739
- #: admin/manage-fields.php:12
740
- msgid "Manage Fields"
741
- msgstr ""
742
-
743
- #: admin/manage-fields.php:13
744
- msgid "Manage Default and Extra Fields"
745
- msgstr ""
746
-
747
- #: admin/manage-fields.php:82
748
- msgid "Choose one of the supported field types"
749
- msgstr ""
750
-
751
- #: admin/manage-fields.php:84
752
- msgid ""
753
- ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO "
754
- "versions</a>."
755
- msgstr ""
756
-
757
- #: admin/manage-fields.php:118
758
- msgid "Field Title"
759
- msgstr ""
760
-
761
- #: admin/manage-fields.php:118
762
- msgid "Title of the field"
763
- msgstr ""
764
-
765
- #: admin/manage-fields.php:119
766
- #: modules/multiple-forms/edit-profile-forms.php:245
767
- #: modules/multiple-forms/register-forms.php:266
768
- msgid "Field"
769
- msgstr ""
770
-
771
- #: admin/manage-fields.php:120
772
- msgid "Meta-name"
773
- msgstr ""
774
-
775
- #: admin/manage-fields.php:120
776
- msgid ""
777
- "Use this in conjunction with WordPress functions to display the value in the "
778
- "page of your choosing<br/>Auto-completed but in some cases editable (in "
779
- "which case it must be unique)<br/>Changing this might take long in case of a "
780
- "very big user-count"
781
- msgstr ""
782
-
783
- #: admin/manage-fields.php:121
784
- #: modules/custom-redirects/custom_redirects_admin.php:65
785
- #: modules/custom-redirects/custom_redirects_admin.php:95
786
- #: modules/custom-redirects/custom_redirects_admin.php:114
787
- #: modules/custom-redirects/custom_redirects_admin.php:139
788
- #: modules/multiple-forms/edit-profile-forms.php:246
789
- #: modules/multiple-forms/register-forms.php:267
790
- msgid "ID"
791
- msgstr ""
792
-
793
- #: admin/manage-fields.php:121
794
- #: modules/multiple-forms/edit-profile-forms.php:246
795
- #: modules/multiple-forms/register-forms.php:267
796
- msgid ""
797
- "A unique, auto-generated ID for this particular field<br/>You can use this "
798
- "in conjuction with filters to target this element if needed<br/>Can't be "
799
- "edited"
800
- msgstr ""
801
-
802
- #: admin/manage-fields.php:122
803
- msgid "Description"
804
- msgstr ""
805
-
806
- #: admin/manage-fields.php:122
807
- msgid ""
808
- "Enter a (detailed) description of the option for end users to read<br/"
809
- ">Optional"
810
- msgstr ""
811
-
812
- #: admin/manage-fields.php:123
813
- msgid "Row Count"
814
- msgstr ""
815
-
816
- #: admin/manage-fields.php:123
817
- msgid ""
818
- "Specify the number of rows for a 'Textarea' field<br/>If not specified, "
819
- "defaults to 5"
820
- msgstr ""
821
-
822
- #: admin/manage-fields.php:124
823
- msgid "Allowed Image Extensions"
824
- msgstr ""
825
-
826
- #: admin/manage-fields.php:124
827
- msgid ""
828
- "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
829
- "ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
830
- msgstr ""
831
-
832
- #: admin/manage-fields.php:125
833
- msgid "Allowed Upload Extensions"
834
- msgstr ""
835
-
836
- #: admin/manage-fields.php:125
837
- msgid ""
838
- "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
839
- "ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
840
- "extensions (.*)"
841
- msgstr ""
842
-
843
- #: admin/manage-fields.php:126
844
- msgid "Avatar Size"
845
- msgstr ""
846
-
847
- #: admin/manage-fields.php:126
848
- msgid ""
849
- "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
850
- "specified, defaults to 100"
851
- msgstr ""
852
-
853
- #: admin/manage-fields.php:127
854
- msgid "Date-format"
855
- msgstr ""
856
-
857
- #: admin/manage-fields.php:127
858
- msgid ""
859
- "Specify the format of the date when using Datepicker<br/>Valid options: mm/"
860
- "dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, "
861
- "D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, "
862
- "defaults to mm/dd/yy"
863
- msgstr ""
864
-
865
- #: admin/manage-fields.php:128
866
- msgid "Terms of Agreement"
867
- msgstr ""
868
-
869
- #: admin/manage-fields.php:128
870
- msgid ""
871
- "Enter a detailed description of the temrs of agreement for the user to read."
872
- "<br/>Links can be inserted by using standard HTML syntax: &lt;a href="
873
- "\"custom_url\"&gt;custom_text&lt;/a&gt;"
874
- msgstr ""
875
-
876
- #: admin/manage-fields.php:129
877
- msgid "Options"
878
- msgstr ""
879
-
880
- #: admin/manage-fields.php:129
881
- msgid ""
882
- "Enter a comma separated list of values<br/>This can be anything, as it is "
883
- "hidden from the user, but should not contain special characters or "
884
- "apostrophes"
885
- msgstr ""
886
-
887
- #: admin/manage-fields.php:130
888
- msgid "Labels"
889
- msgstr ""
890
-
891
- #: admin/manage-fields.php:130
892
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
893
- msgstr ""
894
-
895
- #: admin/manage-fields.php:131
896
- msgid "Site Key"
897
- msgstr ""
898
-
899
- #: admin/manage-fields.php:131
900
- msgid ""
901
- "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target="
902
- "\"_blank\">www.google.com/recaptcha</a>"
903
- msgstr ""
904
-
905
- #: admin/manage-fields.php:132
906
- msgid "Secret Key"
907
- msgstr ""
908
-
909
- #: admin/manage-fields.php:132
910
- msgid ""
911
- "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" "
912
- "target=\"_blank\">www.google.com/recaptcha</a>"
913
- msgstr ""
914
-
915
- #: admin/manage-fields.php:133
916
- msgid "Display on PB forms"
917
- msgstr ""
918
-
919
- #: admin/manage-fields.php:133
920
- msgid "PB Login"
921
- msgstr ""
922
-
923
- #: admin/manage-fields.php:133
924
- msgid "PB Register"
925
- msgstr ""
926
-
927
- #: admin/manage-fields.php:133
928
- msgid "PB Recover Password"
929
- msgstr ""
930
-
931
- #: admin/manage-fields.php:133
932
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
933
- msgstr ""
934
-
935
- #: admin/manage-fields.php:134
936
- msgid "Display on default WP forms"
937
- msgstr ""
938
-
939
- #: admin/manage-fields.php:134
940
- msgid "Default WP Login"
941
- msgstr ""
942
-
943
- #: admin/manage-fields.php:134
944
- msgid "Default WP Register"
945
- msgstr ""
946
-
947
- #: admin/manage-fields.php:134
948
- msgid "Default WP Recover Password"
949
- msgstr ""
950
-
951
- #: admin/manage-fields.php:134
952
- msgid "Select on which default WP forms to display reCAPTCHA"
953
- msgstr ""
954
-
955
- #: admin/manage-fields.php:135
956
- msgid "User Roles"
957
- msgstr ""
958
-
959
- #: admin/manage-fields.php:135
960
- msgid ""
961
- "Select which user roles to show to the user ( drag and drop to re-order )"
962
- msgstr ""
963
-
964
- #: admin/manage-fields.php:136
965
- msgid "User Roles Order"
966
- msgstr ""
967
-
968
- #: admin/manage-fields.php:136
969
- msgid "Save the user role order from the user roles checkboxes"
970
- msgstr ""
971
-
972
- #: admin/manage-fields.php:137
973
- msgid "Default Value"
974
- msgstr ""
975
-
976
- #: admin/manage-fields.php:137
977
- msgid "Default value of the field"
978
- msgstr ""
979
-
980
- #: admin/manage-fields.php:138 admin/manage-fields.php:140
981
- #: admin/manage-fields.php:141 admin/manage-fields.php:142
982
- msgid "Default Option"
983
- msgstr ""
984
-
985
- #: admin/manage-fields.php:138
986
- msgid "Specify the option which should be selected by default"
987
- msgstr ""
988
-
989
- #: admin/manage-fields.php:139
990
- msgid "Default Option(s)"
991
- msgstr ""
992
-
993
- #: admin/manage-fields.php:139
994
- msgid ""
995
- "Specify the option which should be checked by default<br/>If there are "
996
- "multiple values, separate them with a ',' (comma)"
997
- msgstr ""
998
-
999
- #: admin/manage-fields.php:140 admin/manage-fields.php:141
1000
- #: admin/manage-fields.php:142
1001
- msgid "Default option of the field"
1002
- msgstr ""
1003
-
1004
- #: admin/manage-fields.php:143
1005
- msgid "Show Currency Symbol"
1006
- msgstr ""
1007
-
1008
- #: admin/manage-fields.php:143
1009
- msgid ""
1010
- "Whether the currency symbol should be displayed after the currency name in "
1011
- "the select option."
1012
- msgstr ""
1013
-
1014
- #: admin/manage-fields.php:144
1015
- msgid "Show Post Type"
1016
- msgstr ""
1017
-
1018
- #: admin/manage-fields.php:144
1019
- msgid "Posts from what post type will be displayed in the select."
1020
- msgstr ""
1021
-
1022
- #: admin/manage-fields.php:145
1023
- msgid "Allowable Values"
1024
- msgstr ""
1025
-
1026
- #: admin/manage-fields.php:145
1027
- msgid ""
1028
- "Enter a comma separated list of possible values. Upon registration if the "
1029
- "value provided by the user does not match one of these values, the user will "
1030
- "not be registered."
1031
- msgstr ""
1032
-
1033
- #: admin/manage-fields.php:146
1034
- msgid "Error Message"
1035
- msgstr ""
1036
-
1037
- #: admin/manage-fields.php:146
1038
- msgid "Set a custom error message that will be displayed to the user."
1039
- msgstr ""
1040
-
1041
- #: admin/manage-fields.php:147
1042
- msgid "Time Format"
1043
- msgstr ""
1044
-
1045
- #: admin/manage-fields.php:147
1046
- msgid "Specify the time format."
1047
- msgstr ""
1048
-
1049
- #: admin/manage-fields.php:148
1050
- msgid "Google Maps API Key"
1051
- msgstr ""
1052
-
1053
- #: admin/manage-fields.php:148
1054
- msgid ""
1055
- "Enter your Google Maps API key ( <a href=\"https://console.developers.google."
1056
- "com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</"
1057
- "a> ). If more than one map fields are added to a form the API key from the "
1058
- "first map displayed will be used."
1059
- msgstr ""
1060
-
1061
- #: admin/manage-fields.php:149
1062
- msgid "Default Latitude"
1063
- msgstr ""
1064
-
1065
- #: admin/manage-fields.php:149
1066
- msgid ""
1067
- "The latitude at which the map should be displayed when no pins are attached."
1068
- msgstr ""
1069
-
1070
- #: admin/manage-fields.php:150
1071
- msgid "Default Longitude"
1072
- msgstr ""
1073
-
1074
- #: admin/manage-fields.php:150
1075
- msgid ""
1076
- "The longitude at which the map should be displayed when no pins are attached."
1077
- msgstr ""
1078
-
1079
- #: admin/manage-fields.php:151
1080
- msgid "Default Zoom Level"
1081
- msgstr ""
1082
-
1083
- #: admin/manage-fields.php:151
1084
- msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
1085
- msgstr ""
1086
-
1087
- #: admin/manage-fields.php:152
1088
- msgid "Map Height"
1089
- msgstr ""
1090
-
1091
- #: admin/manage-fields.php:152
1092
- msgid "The height of the map."
1093
- msgstr ""
1094
-
1095
- #: admin/manage-fields.php:153
1096
- msgid "Default Content"
1097
- msgstr ""
1098
-
1099
- #: admin/manage-fields.php:153
1100
- msgid "Default value of the textarea"
1101
- msgstr ""
1102
-
1103
- #: admin/manage-fields.php:154
1104
- msgid "HTML Content"
1105
- msgstr ""
1106
-
1107
- #: admin/manage-fields.php:154
1108
- msgid "Add your HTML (or text) content"
1109
- msgstr ""
1110
-
1111
- #: admin/manage-fields.php:155
1112
- msgid "Phone Format"
1113
- msgstr ""
1114
-
1115
- #: admin/manage-fields.php:155
1116
- msgid ""
1117
- "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and "
1118
- "spaces."
1119
- msgstr ""
1120
-
1121
- #: admin/manage-fields.php:155
1122
- msgid "Eg. (###) ###-####"
1123
- msgstr ""
1124
-
1125
- #: admin/manage-fields.php:155
1126
- msgid "Empty field won't check for correct phone number."
1127
- msgstr ""
1128
-
1129
- #: admin/manage-fields.php:156
1130
- msgid "Heading Tag"
1131
- msgstr ""
1132
-
1133
- #: admin/manage-fields.php:156
1134
- msgid "Change heading field size on front-end forms"
1135
- msgstr ""
1136
-
1137
- #: admin/manage-fields.php:157
1138
- msgid "Min Number Value"
1139
- msgstr ""
1140
-
1141
- #: admin/manage-fields.php:157
1142
- msgid "Min allowed number value (0 to allow only positive numbers)"
1143
- msgstr ""
1144
-
1145
- #: admin/manage-fields.php:157
1146
- msgid "Leave it empty for no min value"
1147
- msgstr ""
1148
-
1149
- #: admin/manage-fields.php:158
1150
- msgid "Max Number Value"
1151
- msgstr ""
1152
-
1153
- #: admin/manage-fields.php:158
1154
- msgid "Max allowed number value (0 to allow only negative numbers)"
1155
- msgstr ""
1156
-
1157
- #: admin/manage-fields.php:158
1158
- msgid "Leave it empty for no max value"
1159
- msgstr ""
1160
-
1161
- #: admin/manage-fields.php:159
1162
- msgid "Number Step Value"
1163
- msgstr ""
1164
-
1165
- #: admin/manage-fields.php:159
1166
- msgid ""
1167
- "Step value 1 to allow only integers, 0.1 to allow integers and numbers with "
1168
- "1 decimal"
1169
- msgstr ""
1170
-
1171
- #: admin/manage-fields.php:159
1172
- msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
1173
- msgstr ""
1174
-
1175
- #: admin/manage-fields.php:159
1176
- msgid ""
1177
- "You can also use step value to specify the legal number intervals (eg. step "
1178
- "value 2 will allow only -4, -2, 0, 2 and so on)"
1179
- msgstr ""
1180
-
1181
- #: admin/manage-fields.php:159
1182
- msgid "Leave it empty for no restriction"
1183
- msgstr ""
1184
-
1185
- #: admin/manage-fields.php:160
1186
- msgid "Required"
1187
- msgstr ""
1188
-
1189
- #: admin/manage-fields.php:160
1190
- msgid "Whether the field is required or not"
1191
- msgstr ""
1192
-
1193
- #: admin/manage-fields.php:161
1194
- msgid "Overwrite Existing"
1195
- msgstr ""
1196
-
1197
- #: admin/manage-fields.php:161
1198
- msgid ""
1199
- "Selecting 'Yes' will add the field to the list, but will overwrite any other "
1200
- "field in the database that has the same meta-name<br/>Use this at your own "
1201
- "risk"
1202
- msgstr ""
1203
-
1204
- #: admin/manage-fields.php:167
1205
- msgid "Field Properties"
1206
- msgstr ""
1207
-
1208
- #: admin/manage-fields.php:181
1209
- msgid "Registration & Edit Profile"
1210
- msgstr ""
1211
-
1212
- #: admin/manage-fields.php:200
1213
- msgid "Name"
1214
- msgstr ""
1215
-
1216
- #: admin/manage-fields.php:201
1217
- msgid "Usernames cannot be changed."
1218
- msgstr ""
1219
-
1220
- #: admin/manage-fields.php:202
1221
- msgid "First Name"
1222
- msgstr ""
1223
-
1224
- #: admin/manage-fields.php:203
1225
- msgid "Last Name"
1226
- msgstr ""
1227
-
1228
- #: admin/manage-fields.php:204 modules/user-listing/userlisting.php:813
1229
- #: modules/user-listing/userlisting.php:2272
1230
- msgid "Nickname"
1231
- msgstr ""
1232
-
1233
- #: admin/manage-fields.php:205
1234
- msgid "Display name publicly as"
1235
- msgstr ""
1236
-
1237
- #: admin/manage-fields.php:206
1238
- msgid "Contact Info"
1239
- msgstr ""
1240
-
1241
- #: admin/manage-fields.php:207
1242
- #: features/admin-approval/class-admin-approval.php:169
1243
- #: features/email-confirmation/class-email-confirmation.php:168
1244
- #: front-end/recover.php:119 modules/user-listing/userlisting.php:117
1245
- msgid "E-mail"
1246
- msgstr ""
1247
-
1248
- #: admin/manage-fields.php:208 modules/email-customizer/email-customizer.php:33
1249
- #: modules/user-listing/userlisting.php:120
1250
- #: modules/user-listing/userlisting.php:795
1251
- #: modules/user-listing/userlisting.php:2266
1252
- msgid "Website"
1253
- msgstr ""
1254
-
1255
- #: admin/manage-fields.php:212
1256
- msgid "AIM"
1257
- msgstr ""
1258
-
1259
- #: admin/manage-fields.php:213
1260
- msgid "Yahoo IM"
1261
- msgstr ""
1262
-
1263
- #: admin/manage-fields.php:214
1264
- msgid "Jabber / Google Talk"
1265
- msgstr ""
1266
-
1267
- #: admin/manage-fields.php:217
1268
- msgid "About Yourself"
1269
- msgstr ""
1270
-
1271
- #: admin/manage-fields.php:218 modules/user-listing/userlisting.php:123
1272
- #: modules/user-listing/userlisting.php:798
1273
- #: modules/user-listing/userlisting.php:2267
1274
- msgid "Biographical Info"
1275
- msgstr ""
1276
-
1277
- #: admin/manage-fields.php:218
1278
- msgid ""
1279
- "Share a little biographical information to fill out your profile. This may "
1280
- "be shown publicly."
1281
- msgstr ""
1282
-
1283
- #: admin/manage-fields.php:219 front-end/recover.php:73
1284
- #: modules/email-customizer/email-customizer.php:30
1285
- msgid "Password"
1286
- msgstr ""
1287
-
1288
- #: admin/manage-fields.php:219
1289
- msgid "Type your password."
1290
- msgstr ""
1291
-
1292
- #: admin/manage-fields.php:220 front-end/recover.php:74
1293
- msgid "Repeat Password"
1294
- msgstr ""
1295
-
1296
- #: admin/manage-fields.php:220
1297
- msgid "Type your password again. "
1298
- msgstr ""
1299
-
1300
- #: admin/manage-fields.php:222
1301
- msgid "Blog Details"
1302
- msgstr ""
1303
-
1304
- #: admin/manage-fields.php:282
1305
- #: front-end/extra-fields/select-country/select-country.php:10
1306
- msgid "Afghanistan"
1307
- msgstr ""
1308
-
1309
- #: admin/manage-fields.php:283
1310
- #: front-end/extra-fields/select-country/select-country.php:10
1311
- msgid "Aland Islands"
1312
- msgstr ""
1313
-
1314
- #: admin/manage-fields.php:284
1315
- #: front-end/extra-fields/select-country/select-country.php:10
1316
- msgid "Albania"
1317
- msgstr ""
1318
-
1319
- #: admin/manage-fields.php:285
1320
- #: front-end/extra-fields/select-country/select-country.php:10
1321
- msgid "Algeria"
1322
- msgstr ""
1323
-
1324
- #: admin/manage-fields.php:286
1325
- #: front-end/extra-fields/select-country/select-country.php:10
1326
- msgid "American Samoa"
1327
- msgstr ""
1328
-
1329
- #: admin/manage-fields.php:287
1330
- #: front-end/extra-fields/select-country/select-country.php:10
1331
- msgid "Andorra"
1332
- msgstr ""
1333
-
1334
- #: admin/manage-fields.php:288
1335
- #: front-end/extra-fields/select-country/select-country.php:10
1336
- msgid "Angola"
1337
- msgstr ""
1338
-
1339
- #: admin/manage-fields.php:289
1340
- #: front-end/extra-fields/select-country/select-country.php:10
1341
- msgid "Anguilla"
1342
- msgstr ""
1343
-
1344
- #: admin/manage-fields.php:290
1345
- #: front-end/extra-fields/select-country/select-country.php:10
1346
- msgid "Antarctica"
1347
- msgstr ""
1348
-
1349
- #: admin/manage-fields.php:291
1350
- #: front-end/extra-fields/select-country/select-country.php:10
1351
- msgid "Antigua and Barbuda"
1352
- msgstr ""
1353
-
1354
- #: admin/manage-fields.php:292
1355
- #: front-end/extra-fields/select-country/select-country.php:10
1356
- msgid "Argentina"
1357
- msgstr ""
1358
-
1359
- #: admin/manage-fields.php:293
1360
- #: front-end/extra-fields/select-country/select-country.php:10
1361
- msgid "Armenia"
1362
- msgstr ""
1363
-
1364
- #: admin/manage-fields.php:294
1365
- #: front-end/extra-fields/select-country/select-country.php:10
1366
- msgid "Aruba"
1367
- msgstr ""
1368
-
1369
- #: admin/manage-fields.php:295
1370
- #: front-end/extra-fields/select-country/select-country.php:10
1371
- msgid "Australia"
1372
- msgstr ""
1373
-
1374
- #: admin/manage-fields.php:296
1375
- #: front-end/extra-fields/select-country/select-country.php:10
1376
- msgid "Austria"
1377
- msgstr ""
1378
-
1379
- #: admin/manage-fields.php:297
1380
- #: front-end/extra-fields/select-country/select-country.php:10
1381
- msgid "Azerbaijan"
1382
- msgstr ""
1383
-
1384
- #: admin/manage-fields.php:298
1385
- #: front-end/extra-fields/select-country/select-country.php:10
1386
- msgid "Bahamas"
1387
- msgstr ""
1388
-
1389
- #: admin/manage-fields.php:299
1390
- #: front-end/extra-fields/select-country/select-country.php:10
1391
- msgid "Bahrain"
1392
- msgstr ""
1393
-
1394
- #: admin/manage-fields.php:300
1395
- #: front-end/extra-fields/select-country/select-country.php:10
1396
- msgid "Bangladesh"
1397
- msgstr ""
1398
-
1399
- #: admin/manage-fields.php:301
1400
- #: front-end/extra-fields/select-country/select-country.php:10
1401
- msgid "Barbados"
1402
- msgstr ""
1403
-
1404
- #: admin/manage-fields.php:302
1405
- #: front-end/extra-fields/select-country/select-country.php:10
1406
- msgid "Belarus"
1407
- msgstr ""
1408
-
1409
- #: admin/manage-fields.php:303
1410
- #: front-end/extra-fields/select-country/select-country.php:10
1411
- msgid "Belgium"
1412
- msgstr ""
1413
-
1414
- #: admin/manage-fields.php:304
1415
- #: front-end/extra-fields/select-country/select-country.php:10
1416
- msgid "Belize"
1417
- msgstr ""
1418
-
1419
- #: admin/manage-fields.php:305
1420
- #: front-end/extra-fields/select-country/select-country.php:10
1421
- msgid "Benin"
1422
- msgstr ""
1423
-
1424
- #: admin/manage-fields.php:306
1425
- #: front-end/extra-fields/select-country/select-country.php:10
1426
- msgid "Bermuda"
1427
- msgstr ""
1428
-
1429
- #: admin/manage-fields.php:307
1430
- #: front-end/extra-fields/select-country/select-country.php:10
1431
- msgid "Bhutan"
1432
- msgstr ""
1433
-
1434
- #: admin/manage-fields.php:308
1435
- msgid "Bolivia"
1436
- msgstr ""
1437
-
1438
- #: admin/manage-fields.php:309
1439
- msgid "Bonaire, Saint Eustatius and Saba"
1440
- msgstr ""
1441
-
1442
- #: admin/manage-fields.php:310
1443
- #: front-end/extra-fields/select-country/select-country.php:10
1444
- msgid "Bosnia and Herzegovina"
1445
- msgstr ""
1446
-
1447
- #: admin/manage-fields.php:311
1448
- #: front-end/extra-fields/select-country/select-country.php:10
1449
- msgid "Botswana"
1450
- msgstr ""
1451
-
1452
- #: admin/manage-fields.php:312
1453
- #: front-end/extra-fields/select-country/select-country.php:10
1454
- msgid "Bouvet Island"
1455
- msgstr ""
1456
-
1457
- #: admin/manage-fields.php:313
1458
- #: front-end/extra-fields/select-country/select-country.php:10
1459
- msgid "Brazil"
1460
- msgstr ""
1461
-
1462
- #: admin/manage-fields.php:314
1463
- #: front-end/extra-fields/select-country/select-country.php:10
1464
- msgid "British Indian Ocean Territory"
1465
- msgstr ""
1466
-
1467
- #: admin/manage-fields.php:315
1468
- msgid "British Virgin Islands"
1469
- msgstr ""
1470
-
1471
- #: admin/manage-fields.php:316
1472
- msgid "Brunei"
1473
- msgstr ""
1474
-
1475
- #: admin/manage-fields.php:317
1476
- #: front-end/extra-fields/select-country/select-country.php:10
1477
- msgid "Bulgaria"
1478
- msgstr ""
1479
-
1480
- #: admin/manage-fields.php:318
1481
- #: front-end/extra-fields/select-country/select-country.php:10
1482
- msgid "Burkina Faso"
1483
- msgstr ""
1484
-
1485
- #: admin/manage-fields.php:319
1486
- #: front-end/extra-fields/select-country/select-country.php:10
1487
- msgid "Burundi"
1488
- msgstr ""
1489
-
1490
- #: admin/manage-fields.php:320
1491
- #: front-end/extra-fields/select-country/select-country.php:10
1492
- msgid "Cambodia"
1493
- msgstr ""
1494
-
1495
- #: admin/manage-fields.php:321
1496
- #: front-end/extra-fields/select-country/select-country.php:10
1497
- msgid "Cameroon"
1498
- msgstr ""
1499
-
1500
- #: admin/manage-fields.php:322
1501
- #: front-end/extra-fields/select-country/select-country.php:10
1502
- msgid "Canada"
1503
- msgstr ""
1504
-
1505
- #: admin/manage-fields.php:323
1506
- msgid "Cape Verde"
1507
- msgstr ""
1508
-
1509
- #: admin/manage-fields.php:324
1510
- #: front-end/extra-fields/select-country/select-country.php:10
1511
- msgid "Cayman Islands"
1512
- msgstr ""
1513
-
1514
- #: admin/manage-fields.php:325
1515
- #: front-end/extra-fields/select-country/select-country.php:10
1516
- msgid "Central African Republic"
1517
- msgstr ""
1518
-
1519
- #: admin/manage-fields.php:326
1520
- #: front-end/extra-fields/select-country/select-country.php:10
1521
- msgid "Chad"
1522
- msgstr ""
1523
-
1524
- #: admin/manage-fields.php:327
1525
- #: front-end/extra-fields/select-country/select-country.php:10
1526
- msgid "Chile"
1527
- msgstr ""
1528
-
1529
- #: admin/manage-fields.php:328
1530
- #: front-end/extra-fields/select-country/select-country.php:10
1531
- msgid "China"
1532
- msgstr ""
1533
-
1534
- #: admin/manage-fields.php:329
1535
- #: front-end/extra-fields/select-country/select-country.php:10
1536
- msgid "Christmas Island"
1537
- msgstr ""
1538
-
1539
- #: admin/manage-fields.php:330
1540
- msgid "Cocos Islands"
1541
- msgstr ""
1542
-
1543
- #: admin/manage-fields.php:331
1544
- #: front-end/extra-fields/select-country/select-country.php:10
1545
- msgid "Colombia"
1546
- msgstr ""
1547
-
1548
- #: admin/manage-fields.php:332
1549
- #: front-end/extra-fields/select-country/select-country.php:10
1550
- msgid "Comoros"
1551
- msgstr ""
1552
-
1553
- #: admin/manage-fields.php:333
1554
- #: front-end/extra-fields/select-country/select-country.php:10
1555
- msgid "Cook Islands"
1556
- msgstr ""
1557
-
1558
- #: admin/manage-fields.php:334
1559
- #: front-end/extra-fields/select-country/select-country.php:10
1560
- msgid "Costa Rica"
1561
- msgstr ""
1562
-
1563
- #: admin/manage-fields.php:335
1564
- #: front-end/extra-fields/select-country/select-country.php:10
1565
- msgid "Croatia"
1566
- msgstr ""
1567
-
1568
- #: admin/manage-fields.php:336
1569
- #: front-end/extra-fields/select-country/select-country.php:10
1570
- msgid "Cuba"
1571
- msgstr ""
1572
-
1573
- #: admin/manage-fields.php:337
1574
- #: front-end/extra-fields/select-country/select-country.php:10
1575
- msgid "Curacao"
1576
- msgstr ""
1577
-
1578
- #: admin/manage-fields.php:338
1579
- #: front-end/extra-fields/select-country/select-country.php:10
1580
- msgid "Cyprus"
1581
- msgstr ""
1582
-
1583
- #: admin/manage-fields.php:339
1584
- #: front-end/extra-fields/select-country/select-country.php:10
1585
- msgid "Czech Republic"
1586
- msgstr ""
1587
-
1588
- #: admin/manage-fields.php:340
1589
- msgid "Democratic Republic of the Congo"
1590
- msgstr ""
1591
-
1592
- #: admin/manage-fields.php:341
1593
- #: front-end/extra-fields/select-country/select-country.php:10
1594
- msgid "Denmark"
1595
- msgstr ""
1596
-
1597
- #: admin/manage-fields.php:342
1598
- #: front-end/extra-fields/select-country/select-country.php:10
1599
- msgid "Djibouti"
1600
- msgstr ""
1601
-
1602
- #: admin/manage-fields.php:343
1603
- #: front-end/extra-fields/select-country/select-country.php:10
1604
- msgid "Dominica"
1605
- msgstr ""
1606
-
1607
- #: admin/manage-fields.php:344
1608
- #: front-end/extra-fields/select-country/select-country.php:10
1609
- msgid "Dominican Republic"
1610
- msgstr ""
1611
-
1612
- #: admin/manage-fields.php:345
1613
- msgid "East Timor"
1614
- msgstr ""
1615
-
1616
- #: admin/manage-fields.php:346
1617
- #: front-end/extra-fields/select-country/select-country.php:10
1618
- msgid "Ecuador"
1619
- msgstr ""
1620
-
1621
- #: admin/manage-fields.php:347
1622
- #: front-end/extra-fields/select-country/select-country.php:10
1623
- msgid "Egypt"
1624
- msgstr ""
1625
-
1626
- #: admin/manage-fields.php:348
1627
- #: front-end/extra-fields/select-country/select-country.php:10
1628
- msgid "El Salvador"
1629
- msgstr ""
1630
-
1631
- #: admin/manage-fields.php:349
1632
- #: front-end/extra-fields/select-country/select-country.php:10
1633
- msgid "Equatorial Guinea"
1634
- msgstr ""
1635
-
1636
- #: admin/manage-fields.php:350
1637
- #: front-end/extra-fields/select-country/select-country.php:10
1638
- msgid "Eritrea"
1639
- msgstr ""
1640
-
1641
- #: admin/manage-fields.php:351
1642
- #: front-end/extra-fields/select-country/select-country.php:10
1643
- msgid "Estonia"
1644
- msgstr ""
1645
-
1646
- #: admin/manage-fields.php:352
1647
- #: front-end/extra-fields/select-country/select-country.php:10
1648
- msgid "Ethiopia"
1649
- msgstr ""
1650
-
1651
- #: admin/manage-fields.php:353
1652
- msgid "Falkland Islands"
1653
- msgstr ""
1654
-
1655
- #: admin/manage-fields.php:354
1656
- #: front-end/extra-fields/select-country/select-country.php:10
1657
- msgid "Faroe Islands"
1658
- msgstr ""
1659
-
1660
- #: admin/manage-fields.php:355
1661
- #: front-end/extra-fields/select-country/select-country.php:10
1662
- msgid "Fiji"
1663
- msgstr ""
1664
-
1665
- #: admin/manage-fields.php:356
1666
- #: front-end/extra-fields/select-country/select-country.php:10
1667
- msgid "Finland"
1668
- msgstr ""
1669
-
1670
- #: admin/manage-fields.php:357
1671
- #: front-end/extra-fields/select-country/select-country.php:10
1672
- msgid "France"
1673
- msgstr ""
1674
-
1675
- #: admin/manage-fields.php:358
1676
- #: front-end/extra-fields/select-country/select-country.php:10
1677
- msgid "French Guiana"
1678
- msgstr ""
1679
-
1680
- #: admin/manage-fields.php:359
1681
- #: front-end/extra-fields/select-country/select-country.php:10
1682
- msgid "French Polynesia"
1683
- msgstr ""
1684
-
1685
- #: admin/manage-fields.php:360
1686
- #: front-end/extra-fields/select-country/select-country.php:10
1687
- msgid "French Southern Territories"
1688
- msgstr ""
1689
-
1690
- #: admin/manage-fields.php:361
1691
- #: front-end/extra-fields/select-country/select-country.php:10
1692
- msgid "Gabon"
1693
- msgstr ""
1694
-
1695
- #: admin/manage-fields.php:362
1696
- #: front-end/extra-fields/select-country/select-country.php:10
1697
- msgid "Gambia"
1698
- msgstr ""
1699
-
1700
- #: admin/manage-fields.php:363
1701
- #: front-end/extra-fields/select-country/select-country.php:10
1702
- msgid "Georgia"
1703
- msgstr ""
1704
-
1705
- #: admin/manage-fields.php:364
1706
- #: front-end/extra-fields/select-country/select-country.php:10
1707
- msgid "Germany"
1708
- msgstr ""
1709
-
1710
- #: admin/manage-fields.php:365
1711
- #: front-end/extra-fields/select-country/select-country.php:10
1712
- msgid "Ghana"
1713
- msgstr ""
1714
-
1715
- #: admin/manage-fields.php:366
1716
- #: front-end/extra-fields/select-country/select-country.php:10
1717
- msgid "Gibraltar"
1718
- msgstr ""
1719
-
1720
- #: admin/manage-fields.php:367
1721
- #: front-end/extra-fields/select-country/select-country.php:10
1722
- msgid "Greece"
1723
- msgstr ""
1724
-
1725
- #: admin/manage-fields.php:368
1726
- #: front-end/extra-fields/select-country/select-country.php:10
1727
- msgid "Greenland"
1728
- msgstr ""
1729
-
1730
- #: admin/manage-fields.php:369
1731
- #: front-end/extra-fields/select-country/select-country.php:10
1732
- msgid "Grenada"
1733
- msgstr ""
1734
-
1735
- #: admin/manage-fields.php:370
1736
- #: front-end/extra-fields/select-country/select-country.php:10
1737
- msgid "Guadeloupe"
1738
- msgstr ""
1739
-
1740
- #: admin/manage-fields.php:371
1741
- #: front-end/extra-fields/select-country/select-country.php:10
1742
- msgid "Guam"
1743
- msgstr ""
1744
-
1745
- #: admin/manage-fields.php:372
1746
- #: front-end/extra-fields/select-country/select-country.php:10
1747
- msgid "Guatemala"
1748
- msgstr ""
1749
-
1750
- #: admin/manage-fields.php:373
1751
- #: front-end/extra-fields/select-country/select-country.php:10
1752
- msgid "Guernsey"
1753
- msgstr ""
1754
-
1755
- #: admin/manage-fields.php:374
1756
- #: front-end/extra-fields/select-country/select-country.php:10
1757
- msgid "Guinea"
1758
- msgstr ""
1759
-
1760
- #: admin/manage-fields.php:375
1761
- #: front-end/extra-fields/select-country/select-country.php:10
1762
- msgid "Guinea-Bissau"
1763
- msgstr ""
1764
-
1765
- #: admin/manage-fields.php:376
1766
- #: front-end/extra-fields/select-country/select-country.php:10
1767
- msgid "Guyana"
1768
- msgstr ""
1769
-
1770
- #: admin/manage-fields.php:377
1771
- #: front-end/extra-fields/select-country/select-country.php:10
1772
- msgid "Haiti"
1773
- msgstr ""
1774
-
1775
- #: admin/manage-fields.php:378
1776
- #: front-end/extra-fields/select-country/select-country.php:10
1777
- msgid "Heard Island and McDonald Islands"
1778
- msgstr ""
1779
-
1780
- #: admin/manage-fields.php:379
1781
- #: front-end/extra-fields/select-country/select-country.php:10
1782
- msgid "Honduras"
1783
- msgstr ""
1784
-
1785
- #: admin/manage-fields.php:380
1786
- #: front-end/extra-fields/select-country/select-country.php:10
1787
- msgid "Hong Kong"
1788
- msgstr ""
1789
-
1790
- #: admin/manage-fields.php:381
1791
- #: front-end/extra-fields/select-country/select-country.php:10
1792
- msgid "Hungary"
1793
- msgstr ""
1794
-
1795
- #: admin/manage-fields.php:382
1796
- #: front-end/extra-fields/select-country/select-country.php:10
1797
- msgid "Iceland"
1798
- msgstr ""
1799
-
1800
- #: admin/manage-fields.php:383
1801
- #: front-end/extra-fields/select-country/select-country.php:10
1802
- msgid "India"
1803
- msgstr ""
1804
-
1805
- #: admin/manage-fields.php:384
1806
- #: front-end/extra-fields/select-country/select-country.php:10
1807
- msgid "Indonesia"
1808
- msgstr ""
1809
-
1810
- #: admin/manage-fields.php:385
1811
- msgid "Iran"
1812
- msgstr ""
1813
-
1814
- #: admin/manage-fields.php:386
1815
- #: front-end/extra-fields/select-country/select-country.php:10
1816
- msgid "Iraq"
1817
- msgstr ""
1818
-
1819
- #: admin/manage-fields.php:387
1820
- #: front-end/extra-fields/select-country/select-country.php:10
1821
- msgid "Ireland"
1822
- msgstr ""
1823
-
1824
- #: admin/manage-fields.php:388
1825
- #: front-end/extra-fields/select-country/select-country.php:10
1826
- msgid "Isle of Man"
1827
- msgstr ""
1828
-
1829
- #: admin/manage-fields.php:389
1830
- #: front-end/extra-fields/select-country/select-country.php:10
1831
- msgid "Israel"
1832
- msgstr ""
1833
-
1834
- #: admin/manage-fields.php:390
1835
- #: front-end/extra-fields/select-country/select-country.php:10
1836
- msgid "Italy"
1837
- msgstr ""
1838
-
1839
- #: admin/manage-fields.php:391
1840
- msgid "Ivory Coast"
1841
- msgstr ""
1842
-
1843
- #: admin/manage-fields.php:392
1844
- #: front-end/extra-fields/select-country/select-country.php:10
1845
- msgid "Jamaica"
1846
- msgstr ""
1847
-
1848
- #: admin/manage-fields.php:393
1849
- #: front-end/extra-fields/select-country/select-country.php:10
1850
- msgid "Japan"
1851
- msgstr ""
1852
-
1853
- #: admin/manage-fields.php:394
1854
- #: front-end/extra-fields/select-country/select-country.php:10
1855
- msgid "Jersey"
1856
- msgstr ""
1857
-
1858
- #: admin/manage-fields.php:395
1859
- #: front-end/extra-fields/select-country/select-country.php:10
1860
- msgid "Jordan"
1861
- msgstr ""
1862
-
1863
- #: admin/manage-fields.php:396
1864
- #: front-end/extra-fields/select-country/select-country.php:10
1865
- msgid "Kazakhstan"
1866
- msgstr ""
1867
-
1868
- #: admin/manage-fields.php:397
1869
- #: front-end/extra-fields/select-country/select-country.php:10
1870
- msgid "Kenya"
1871
- msgstr ""
1872
-
1873
- #: admin/manage-fields.php:398
1874
- #: front-end/extra-fields/select-country/select-country.php:10
1875
- msgid "Kiribati"
1876
- msgstr ""
1877
-
1878
- #: admin/manage-fields.php:399
1879
- msgid "Kosovo"
1880
- msgstr ""
1881
-
1882
- #: admin/manage-fields.php:400
1883
- #: front-end/extra-fields/select-country/select-country.php:10
1884
- msgid "Kuwait"
1885
- msgstr ""
1886
-
1887
- #: admin/manage-fields.php:401
1888
- #: front-end/extra-fields/select-country/select-country.php:10
1889
- msgid "Kyrgyzstan"
1890
- msgstr ""
1891
-
1892
- #: admin/manage-fields.php:402
1893
- msgid "Laos"
1894
- msgstr ""
1895
-
1896
- #: admin/manage-fields.php:403
1897
- #: front-end/extra-fields/select-country/select-country.php:10
1898
- msgid "Latvia"
1899
- msgstr ""
1900
-
1901
- #: admin/manage-fields.php:404
1902
- #: front-end/extra-fields/select-country/select-country.php:10
1903
- msgid "Lebanon"
1904
- msgstr ""
1905
-
1906
- #: admin/manage-fields.php:405
1907
- #: front-end/extra-fields/select-country/select-country.php:10
1908
- msgid "Lesotho"
1909
- msgstr ""
1910
-
1911
- #: admin/manage-fields.php:406
1912
- #: front-end/extra-fields/select-country/select-country.php:10
1913
- msgid "Liberia"
1914
- msgstr ""
1915
-
1916
- #: admin/manage-fields.php:407
1917
- #: front-end/extra-fields/select-country/select-country.php:10
1918
- msgid "Libya"
1919
- msgstr ""
1920
-
1921
- #: admin/manage-fields.php:408
1922
- #: front-end/extra-fields/select-country/select-country.php:10
1923
- msgid "Liechtenstein"
1924
- msgstr ""
1925
-
1926
- #: admin/manage-fields.php:409
1927
- #: front-end/extra-fields/select-country/select-country.php:10
1928
- msgid "Lithuania"
1929
- msgstr ""
1930
-
1931
- #: admin/manage-fields.php:410
1932
- #: front-end/extra-fields/select-country/select-country.php:10
1933
- msgid "Luxembourg"
1934
- msgstr ""
1935
-
1936
- #: admin/manage-fields.php:411
1937
- #: front-end/extra-fields/select-country/select-country.php:10
1938
- msgid "Macao"
1939
- msgstr ""
1940
-
1941
- #: admin/manage-fields.php:412
1942
- msgid "Macedonia"
1943
- msgstr ""
1944
-
1945
- #: admin/manage-fields.php:413
1946
- #: front-end/extra-fields/select-country/select-country.php:10
1947
- msgid "Madagascar"
1948
- msgstr ""
1949
-
1950
- #: admin/manage-fields.php:414
1951
- #: front-end/extra-fields/select-country/select-country.php:10
1952
- msgid "Malawi"
1953
- msgstr ""
1954
-
1955
- #: admin/manage-fields.php:415
1956
- #: front-end/extra-fields/select-country/select-country.php:10
1957
- msgid "Malaysia"
1958
- msgstr ""
1959
-
1960
- #: admin/manage-fields.php:416
1961
- #: front-end/extra-fields/select-country/select-country.php:10
1962
- msgid "Maldives"
1963
- msgstr ""
1964
-
1965
- #: admin/manage-fields.php:417
1966
- #: front-end/extra-fields/select-country/select-country.php:10
1967
- msgid "Mali"
1968
- msgstr ""
1969
-
1970
- #: admin/manage-fields.php:418
1971
- #: front-end/extra-fields/select-country/select-country.php:10
1972
- msgid "Malta"
1973
- msgstr ""
1974
-
1975
- #: admin/manage-fields.php:419
1976
- #: front-end/extra-fields/select-country/select-country.php:10
1977
- msgid "Marshall Islands"
1978
- msgstr ""
1979
-
1980
- #: admin/manage-fields.php:420
1981
- #: front-end/extra-fields/select-country/select-country.php:10
1982
- msgid "Martinique"
1983
- msgstr ""
1984
-
1985
- #: admin/manage-fields.php:421
1986
- #: front-end/extra-fields/select-country/select-country.php:10
1987
- msgid "Mauritania"
1988
- msgstr ""
1989
-
1990
- #: admin/manage-fields.php:422
1991
- #: front-end/extra-fields/select-country/select-country.php:10
1992
- msgid "Mauritius"
1993
- msgstr ""
1994
-
1995
- #: admin/manage-fields.php:423
1996
- #: front-end/extra-fields/select-country/select-country.php:10
1997
- msgid "Mayotte"
1998
- msgstr ""
1999
-
2000
- #: admin/manage-fields.php:424
2001
- #: front-end/extra-fields/select-country/select-country.php:10
2002
- msgid "Mexico"
2003
- msgstr ""
2004
-
2005
- #: admin/manage-fields.php:425
2006
- msgid "Micronesia"
2007
- msgstr ""
2008
-
2009
- #: admin/manage-fields.php:426
2010
- msgid "Moldova"
2011
- msgstr ""
2012
-
2013
- #: admin/manage-fields.php:427
2014
- #: front-end/extra-fields/select-country/select-country.php:10
2015
- msgid "Monaco"
2016
- msgstr ""
2017
-
2018
- #: admin/manage-fields.php:428
2019
- #: front-end/extra-fields/select-country/select-country.php:10
2020
- msgid "Mongolia"
2021
- msgstr ""
2022
-
2023
- #: admin/manage-fields.php:429
2024
- #: front-end/extra-fields/select-country/select-country.php:10
2025
- msgid "Montenegro"
2026
- msgstr ""
2027
-
2028
- #: admin/manage-fields.php:430
2029
- #: front-end/extra-fields/select-country/select-country.php:10
2030
- msgid "Montserrat"
2031
- msgstr ""
2032
-
2033
- #: admin/manage-fields.php:431
2034
- #: front-end/extra-fields/select-country/select-country.php:10
2035
- msgid "Morocco"
2036
- msgstr ""
2037
-
2038
- #: admin/manage-fields.php:432
2039
- #: front-end/extra-fields/select-country/select-country.php:10
2040
- msgid "Mozambique"
2041
- msgstr ""
2042
-
2043
- #: admin/manage-fields.php:433
2044
- #: front-end/extra-fields/select-country/select-country.php:10
2045
- msgid "Myanmar"
2046
- msgstr ""
2047
-
2048
- #: admin/manage-fields.php:434
2049
- #: front-end/extra-fields/select-country/select-country.php:10
2050
- msgid "Namibia"
2051
- msgstr ""
2052
-
2053
- #: admin/manage-fields.php:435
2054
- #: front-end/extra-fields/select-country/select-country.php:10
2055
- msgid "Nauru"
2056
- msgstr ""
2057
-
2058
- #: admin/manage-fields.php:436
2059
- #: front-end/extra-fields/select-country/select-country.php:10
2060
- msgid "Nepal"
2061
- msgstr ""
2062
-
2063
- #: admin/manage-fields.php:437
2064
- #: front-end/extra-fields/select-country/select-country.php:10
2065
- msgid "Netherlands"
2066
- msgstr ""
2067
-
2068
- #: admin/manage-fields.php:438
2069
- #: front-end/extra-fields/select-country/select-country.php:10
2070
- msgid "New Caledonia"
2071
- msgstr ""
2072
-
2073
- #: admin/manage-fields.php:439
2074
- #: front-end/extra-fields/select-country/select-country.php:10
2075
- msgid "New Zealand"
2076
- msgstr ""
2077
-
2078
- #: admin/manage-fields.php:440
2079
- #: front-end/extra-fields/select-country/select-country.php:10
2080
- msgid "Nicaragua"
2081
- msgstr ""
2082
-
2083
- #: admin/manage-fields.php:441
2084
- #: front-end/extra-fields/select-country/select-country.php:10
2085
- msgid "Niger"
2086
- msgstr ""
2087
-
2088
- #: admin/manage-fields.php:442
2089
- #: front-end/extra-fields/select-country/select-country.php:10
2090
- msgid "Nigeria"
2091
- msgstr ""
2092
-
2093
- #: admin/manage-fields.php:443
2094
- #: front-end/extra-fields/select-country/select-country.php:10
2095
- msgid "Niue"
2096
- msgstr ""
2097
-
2098
- #: admin/manage-fields.php:444
2099
- #: front-end/extra-fields/select-country/select-country.php:10
2100
- msgid "Norfolk Island"
2101
- msgstr ""
2102
-
2103
- #: admin/manage-fields.php:445
2104
- msgid "North Korea"
2105
- msgstr ""
2106
-
2107
- #: admin/manage-fields.php:446
2108
- #: front-end/extra-fields/select-country/select-country.php:10
2109
- msgid "Northern Mariana Islands"
2110
- msgstr ""
2111
-
2112
- #: admin/manage-fields.php:447
2113
- #: front-end/extra-fields/select-country/select-country.php:10
2114
- msgid "Norway"
2115
- msgstr ""
2116
-
2117
- #: admin/manage-fields.php:448
2118
- #: front-end/extra-fields/select-country/select-country.php:10
2119
- msgid "Oman"
2120
- msgstr ""
2121
-
2122
- #: admin/manage-fields.php:449
2123
- #: front-end/extra-fields/select-country/select-country.php:10
2124
- msgid "Pakistan"
2125
- msgstr ""
2126
-
2127
- #: admin/manage-fields.php:450
2128
- #: front-end/extra-fields/select-country/select-country.php:10
2129
- msgid "Palau"
2130
- msgstr ""
2131
-
2132
- #: admin/manage-fields.php:451
2133
- msgid "Palestinian Territory"
2134
- msgstr ""
2135
-
2136
- #: admin/manage-fields.php:452
2137
- #: front-end/extra-fields/select-country/select-country.php:10
2138
- msgid "Panama"
2139
- msgstr ""
2140
-
2141
- #: admin/manage-fields.php:453
2142
- #: front-end/extra-fields/select-country/select-country.php:10
2143
- msgid "Papua New Guinea"
2144
- msgstr ""
2145
-
2146
- #: admin/manage-fields.php:454
2147
- #: front-end/extra-fields/select-country/select-country.php:10
2148
- msgid "Paraguay"
2149
- msgstr ""
2150
-
2151
- #: admin/manage-fields.php:455
2152
- #: front-end/extra-fields/select-country/select-country.php:10
2153
- msgid "Peru"
2154
- msgstr ""
2155
-
2156
- #: admin/manage-fields.php:456
2157
- #: front-end/extra-fields/select-country/select-country.php:10
2158
- msgid "Philippines"
2159
- msgstr ""
2160
-
2161
- #: admin/manage-fields.php:457
2162
- #: front-end/extra-fields/select-country/select-country.php:10
2163
- msgid "Pitcairn"
2164
- msgstr ""
2165
-
2166
- #: admin/manage-fields.php:458
2167
- #: front-end/extra-fields/select-country/select-country.php:10
2168
- msgid "Poland"
2169
- msgstr ""
2170
-
2171
- #: admin/manage-fields.php:459
2172
- #: front-end/extra-fields/select-country/select-country.php:10
2173
- msgid "Portugal"
2174
- msgstr ""
2175
-
2176
- #: admin/manage-fields.php:460
2177
- #: front-end/extra-fields/select-country/select-country.php:10
2178
- msgid "Puerto Rico"
2179
- msgstr ""
2180
-
2181
- #: admin/manage-fields.php:461
2182
- #: front-end/extra-fields/select-country/select-country.php:10
2183
- msgid "Qatar"
2184
- msgstr ""
2185
-
2186
- #: admin/manage-fields.php:462
2187
- msgid "Republic of the Congo"
2188
- msgstr ""
2189
-
2190
- #: admin/manage-fields.php:463
2191
- #: front-end/extra-fields/select-country/select-country.php:10
2192
- msgid "Reunion"
2193
- msgstr ""
2194
-
2195
- #: admin/manage-fields.php:464
2196
- #: front-end/extra-fields/select-country/select-country.php:10
2197
- msgid "Romania"
2198
- msgstr ""
2199
-
2200
- #: admin/manage-fields.php:465
2201
- msgid "Russia"
2202
- msgstr ""
2203
-
2204
- #: admin/manage-fields.php:466
2205
- #: front-end/extra-fields/select-country/select-country.php:10
2206
- msgid "Rwanda"
2207
- msgstr ""
2208
-
2209
- #: admin/manage-fields.php:467
2210
- #: front-end/extra-fields/select-country/select-country.php:10
2211
- msgid "Saint Barthelemy"
2212
- msgstr ""
2213
-
2214
- #: admin/manage-fields.php:468
2215
- msgid "Saint Helena"
2216
- msgstr ""
2217
-
2218
- #: admin/manage-fields.php:469
2219
- #: front-end/extra-fields/select-country/select-country.php:10
2220
- msgid "Saint Kitts and Nevis"
2221
- msgstr ""
2222
-
2223
- #: admin/manage-fields.php:470
2224
- #: front-end/extra-fields/select-country/select-country.php:10
2225
- msgid "Saint Lucia"
2226
- msgstr ""
2227
-
2228
- #: admin/manage-fields.php:471
2229
- msgid "Saint Martin"
2230
- msgstr ""
2231
-
2232
- #: admin/manage-fields.php:472
2233
- #: front-end/extra-fields/select-country/select-country.php:10
2234
- msgid "Saint Pierre and Miquelon"
2235
- msgstr ""
2236
-
2237
- #: admin/manage-fields.php:473
2238
- #: front-end/extra-fields/select-country/select-country.php:10
2239
- msgid "Saint Vincent and the Grenadines"
2240
- msgstr ""
2241
-
2242
- #: admin/manage-fields.php:474
2243
- #: front-end/extra-fields/select-country/select-country.php:10
2244
- msgid "Samoa"
2245
- msgstr ""
2246
-
2247
- #: admin/manage-fields.php:475
2248
- #: front-end/extra-fields/select-country/select-country.php:10
2249
- msgid "San Marino"
2250
- msgstr ""
2251
-
2252
- #: admin/manage-fields.php:476
2253
- #: front-end/extra-fields/select-country/select-country.php:10
2254
- msgid "Sao Tome and Principe"
2255
- msgstr ""
2256
-
2257
- #: admin/manage-fields.php:477
2258
- #: front-end/extra-fields/select-country/select-country.php:10
2259
- msgid "Saudi Arabia"
2260
- msgstr ""
2261
-
2262
- #: admin/manage-fields.php:478
2263
- #: front-end/extra-fields/select-country/select-country.php:10
2264
- msgid "Senegal"
2265
- msgstr ""
2266
-
2267
- #: admin/manage-fields.php:479
2268
- #: front-end/extra-fields/select-country/select-country.php:10
2269
- msgid "Serbia"
2270
- msgstr ""
2271
-
2272
- #: admin/manage-fields.php:480
2273
- #: front-end/extra-fields/select-country/select-country.php:10
2274
- msgid "Seychelles"
2275
- msgstr ""
2276
-
2277
- #: admin/manage-fields.php:481
2278
- #: front-end/extra-fields/select-country/select-country.php:10
2279
- msgid "Sierra Leone"
2280
- msgstr ""
2281
-
2282
- #: admin/manage-fields.php:482
2283
- #: front-end/extra-fields/select-country/select-country.php:10
2284
- msgid "Singapore"
2285
- msgstr ""
2286
-
2287
- #: admin/manage-fields.php:483
2288
- msgid "Sint Maarten"
2289
- msgstr ""
2290
-
2291
- #: admin/manage-fields.php:484
2292
- #: front-end/extra-fields/select-country/select-country.php:10
2293
- msgid "Slovakia"
2294
- msgstr ""
2295
-
2296
- #: admin/manage-fields.php:485
2297
- #: front-end/extra-fields/select-country/select-country.php:10
2298
- msgid "Slovenia"
2299
- msgstr ""
2300
-
2301
- #: admin/manage-fields.php:486
2302
- #: front-end/extra-fields/select-country/select-country.php:10
2303
- msgid "Solomon Islands"
2304
- msgstr ""
2305
-
2306
- #: admin/manage-fields.php:487
2307
- #: front-end/extra-fields/select-country/select-country.php:10
2308
- msgid "Somalia"
2309
- msgstr ""
2310
-
2311
- #: admin/manage-fields.php:488
2312
- #: front-end/extra-fields/select-country/select-country.php:10
2313
- msgid "South Africa"
2314
- msgstr ""
2315
-
2316
- #: admin/manage-fields.php:489
2317
- #: front-end/extra-fields/select-country/select-country.php:10
2318
- msgid "South Georgia and the South Sandwich Islands"
2319
- msgstr ""
2320
-
2321
- #: admin/manage-fields.php:490
2322
- msgid "South Korea"
2323
- msgstr ""
2324
-
2325
- #: admin/manage-fields.php:491
2326
- #: front-end/extra-fields/select-country/select-country.php:10
2327
- msgid "South Sudan"
2328
- msgstr ""
2329
-
2330
- #: admin/manage-fields.php:492
2331
- #: front-end/extra-fields/select-country/select-country.php:10
2332
- msgid "Spain"
2333
- msgstr ""
2334
-
2335
- #: admin/manage-fields.php:493
2336
- #: front-end/extra-fields/select-country/select-country.php:10
2337
- msgid "Sri Lanka"
2338
- msgstr ""
2339
-
2340
- #: admin/manage-fields.php:494
2341
- #: front-end/extra-fields/select-country/select-country.php:10
2342
- msgid "Sudan"
2343
- msgstr ""
2344
-
2345
- #: admin/manage-fields.php:495
2346
- #: front-end/extra-fields/select-country/select-country.php:10
2347
- msgid "Suriname"
2348
- msgstr ""
2349
-
2350
- #: admin/manage-fields.php:496
2351
- #: front-end/extra-fields/select-country/select-country.php:10
2352
- msgid "Svalbard and Jan Mayen"
2353
- msgstr ""
2354
-
2355
- #: admin/manage-fields.php:497
2356
- #: front-end/extra-fields/select-country/select-country.php:10
2357
- msgid "Swaziland"
2358
- msgstr ""
2359
-
2360
- #: admin/manage-fields.php:498
2361
- #: front-end/extra-fields/select-country/select-country.php:10
2362
- msgid "Sweden"
2363
- msgstr ""
2364
-
2365
- #: admin/manage-fields.php:499
2366
- #: front-end/extra-fields/select-country/select-country.php:10
2367
- msgid "Switzerland"
2368
- msgstr ""
2369
-
2370
- #: admin/manage-fields.php:500
2371
- msgid "Syria"
2372
- msgstr ""
2373
-
2374
- #: admin/manage-fields.php:501
2375
- msgid "Taiwan"
2376
- msgstr ""
2377
-
2378
- #: admin/manage-fields.php:502
2379
- #: front-end/extra-fields/select-country/select-country.php:10
2380
- msgid "Tajikistan"
2381
- msgstr ""
2382
-
2383
- #: admin/manage-fields.php:503
2384
- msgid "Tanzania"
2385
- msgstr ""
2386
-
2387
- #: admin/manage-fields.php:504
2388
- #: front-end/extra-fields/select-country/select-country.php:10
2389
- msgid "Thailand"
2390
- msgstr ""
2391
-
2392
- #: admin/manage-fields.php:505
2393
- #: front-end/extra-fields/select-country/select-country.php:10
2394
- msgid "Togo"
2395
- msgstr ""
2396
-
2397
- #: admin/manage-fields.php:506
2398
- #: front-end/extra-fields/select-country/select-country.php:10
2399
- msgid "Tokelau"
2400
- msgstr ""
2401
-
2402
- #: admin/manage-fields.php:507
2403
- #: front-end/extra-fields/select-country/select-country.php:10
2404
- msgid "Tonga"
2405
- msgstr ""
2406
-
2407
- #: admin/manage-fields.php:508
2408
- #: front-end/extra-fields/select-country/select-country.php:10
2409
- msgid "Trinidad and Tobago"
2410
- msgstr ""
2411
-
2412
- #: admin/manage-fields.php:509
2413
- #: front-end/extra-fields/select-country/select-country.php:10
2414
- msgid "Tunisia"
2415
- msgstr ""
2416
-
2417
- #: admin/manage-fields.php:510
2418
- #: front-end/extra-fields/select-country/select-country.php:10
2419
- msgid "Turkey"
2420
- msgstr ""
2421
-
2422
- #: admin/manage-fields.php:511
2423
- #: front-end/extra-fields/select-country/select-country.php:10
2424
- msgid "Turkmenistan"
2425
- msgstr ""
2426
-
2427
- #: admin/manage-fields.php:512
2428
- #: front-end/extra-fields/select-country/select-country.php:10
2429
- msgid "Turks and Caicos Islands"
2430
- msgstr ""
2431
-
2432
- #: admin/manage-fields.php:513
2433
- #: front-end/extra-fields/select-country/select-country.php:10
2434
- msgid "Tuvalu"
2435
- msgstr ""
2436
-
2437
- #: admin/manage-fields.php:514
2438
- msgid "U.S. Virgin Islands"
2439
- msgstr ""
2440
-
2441
- #: admin/manage-fields.php:515
2442
- #: front-end/extra-fields/select-country/select-country.php:10
2443
- msgid "Uganda"
2444
- msgstr ""
2445
-
2446
- #: admin/manage-fields.php:516
2447
- #: front-end/extra-fields/select-country/select-country.php:10
2448
- msgid "Ukraine"
2449
- msgstr ""
2450
-
2451
- #: admin/manage-fields.php:517
2452
- #: front-end/extra-fields/select-country/select-country.php:10
2453
- msgid "United Arab Emirates"
2454
- msgstr ""
2455
-
2456
- #: admin/manage-fields.php:518
2457
- #: front-end/extra-fields/select-country/select-country.php:10
2458
- msgid "United Kingdom"
2459
- msgstr ""
2460
-
2461
- #: admin/manage-fields.php:519
2462
- #: front-end/extra-fields/select-country/select-country.php:10
2463
- msgid "United States"
2464
- msgstr ""
2465
-
2466
- #: admin/manage-fields.php:520
2467
- #: front-end/extra-fields/select-country/select-country.php:10
2468
- msgid "United States Minor Outlying Islands"
2469
- msgstr ""
2470
-
2471
- #: admin/manage-fields.php:521
2472
- #: front-end/extra-fields/select-country/select-country.php:10
2473
- msgid "Uruguay"
2474
- msgstr ""
2475
-
2476
- #: admin/manage-fields.php:522
2477
- #: front-end/extra-fields/select-country/select-country.php:10
2478
- msgid "Uzbekistan"
2479
- msgstr ""
2480
-
2481
- #: admin/manage-fields.php:523
2482
- #: front-end/extra-fields/select-country/select-country.php:10
2483
- msgid "Vanuatu"
2484
- msgstr ""
2485
-
2486
- #: admin/manage-fields.php:524
2487
- msgid "Vatican"
2488
- msgstr ""
2489
-
2490
- #: admin/manage-fields.php:525
2491
- msgid "Venezuela"
2492
- msgstr ""
2493
-
2494
- #: admin/manage-fields.php:526
2495
- msgid "Vietnam"
2496
- msgstr ""
2497
-
2498
- #: admin/manage-fields.php:527
2499
- #: front-end/extra-fields/select-country/select-country.php:10
2500
- msgid "Wallis and Futuna"
2501
- msgstr ""
2502
-
2503
- #: admin/manage-fields.php:528
2504
- #: front-end/extra-fields/select-country/select-country.php:10
2505
- msgid "Western Sahara"
2506
- msgstr ""
2507
-
2508
- #: admin/manage-fields.php:529
2509
- #: front-end/extra-fields/select-country/select-country.php:10
2510
- msgid "Yemen"
2511
- msgstr ""
2512
-
2513
- #: admin/manage-fields.php:530
2514
- #: front-end/extra-fields/select-country/select-country.php:10
2515
- msgid "Zambia"
2516
- msgstr ""
2517
-
2518
- #: admin/manage-fields.php:531
2519
- #: front-end/extra-fields/select-country/select-country.php:10
2520
- msgid "Zimbabwe"
2521
- msgstr ""
2522
-
2523
- #: admin/manage-fields.php:564
2524
- msgid "Albania Lek"
2525
- msgstr ""
2526
-
2527
- #: admin/manage-fields.php:565
2528
- msgid "Afghanistan Afghani"
2529
- msgstr ""
2530
-
2531
- #: admin/manage-fields.php:566
2532
- msgid "Argentina Peso"
2533
- msgstr ""
2534
-
2535
- #: admin/manage-fields.php:567
2536
- msgid "Aruba Guilder"
2537
- msgstr ""
2538
-
2539
- #: admin/manage-fields.php:568
2540
- msgid "Australia Dollar"
2541
- msgstr ""
2542
-
2543
- #: admin/manage-fields.php:569
2544
- msgid "Azerbaijan New Manat"
2545
- msgstr ""
2546
-
2547
- #: admin/manage-fields.php:570
2548
- msgid "Bahamas Dollar"
2549
- msgstr ""
2550
-
2551
- #: admin/manage-fields.php:571
2552
- msgid "Barbados Dollar"
2553
- msgstr ""
2554
-
2555
- #: admin/manage-fields.php:572
2556
- msgid "Bangladeshi taka"
2557
- msgstr ""
2558
-
2559
- #: admin/manage-fields.php:573
2560
- msgid "Belarus Ruble"
2561
- msgstr ""
2562
-
2563
- #: admin/manage-fields.php:574
2564
- msgid "Belize Dollar"
2565
- msgstr ""
2566
-
2567
- #: admin/manage-fields.php:575
2568
- msgid "Bermuda Dollar"
2569
- msgstr ""
2570
-
2571
- #: admin/manage-fields.php:576
2572
- msgid "Bolivia Boliviano"
2573
- msgstr ""
2574
-
2575
- #: admin/manage-fields.php:577
2576
- msgid "Bosnia and Herzegovina Convertible Marka"
2577
- msgstr ""
2578
-
2579
- #: admin/manage-fields.php:578
2580
- msgid "Botswana Pula"
2581
- msgstr ""
2582
-
2583
- #: admin/manage-fields.php:579
2584
- msgid "Bulgaria Lev"
2585
- msgstr ""
2586
-
2587
- #: admin/manage-fields.php:580
2588
- msgid "Brazil Real"
2589
- msgstr ""
2590
-
2591
- #: admin/manage-fields.php:581
2592
- msgid "Brunei Darussalam Dollar"
2593
- msgstr ""
2594
-
2595
- #: admin/manage-fields.php:582
2596
- msgid "Cambodia Riel"
2597
- msgstr ""
2598
-
2599
- #: admin/manage-fields.php:583
2600
- msgid "Canada Dollar"
2601
- msgstr ""
2602
-
2603
- #: admin/manage-fields.php:584
2604
- msgid "Cayman Islands Dollar"
2605
- msgstr ""
2606
-
2607
- #: admin/manage-fields.php:585
2608
- msgid "Chile Peso"
2609
- msgstr ""
2610
-
2611
- #: admin/manage-fields.php:586
2612
- msgid "China Yuan Renminbi"
2613
- msgstr ""
2614
-
2615
- #: admin/manage-fields.php:587
2616
- msgid "Colombia Peso"
2617
- msgstr ""
2618
-
2619
- #: admin/manage-fields.php:588
2620
- msgid "Costa Rica Colon"
2621
- msgstr ""
2622
-
2623
- #: admin/manage-fields.php:589
2624
- msgid "Croatia Kuna"
2625
- msgstr ""
2626
-
2627
- #: admin/manage-fields.php:590
2628
- msgid "Cuba Peso"
2629
- msgstr ""
2630
-
2631
- #: admin/manage-fields.php:591
2632
- msgid "Czech Republic Koruna"
2633
- msgstr ""
2634
-
2635
- #: admin/manage-fields.php:592
2636
- msgid "Denmark Krone"
2637
- msgstr ""
2638
-
2639
- #: admin/manage-fields.php:593
2640
- msgid "Dominican Republic Peso"
2641
- msgstr ""
2642
-
2643
- #: admin/manage-fields.php:594
2644
- msgid "East Caribbean Dollar"
2645
- msgstr ""
2646
-
2647
- #: admin/manage-fields.php:595
2648
- msgid "Egypt Pound"
2649
- msgstr ""
2650
-
2651
- #: admin/manage-fields.php:596
2652
- msgid "El Salvador Colon"
2653
- msgstr ""
2654
-
2655
- #: admin/manage-fields.php:597
2656
- msgid "Estonia Kroon"
2657
- msgstr ""
2658
-
2659
- #: admin/manage-fields.php:598
2660
- msgid "Euro"
2661
- msgstr ""
2662
-
2663
- #: admin/manage-fields.php:599
2664
- msgid "Falkland Islands (Malvinas) Pound"
2665
- msgstr ""
2666
-
2667
- #: admin/manage-fields.php:600
2668
- msgid "Fiji Dollar"
2669
- msgstr ""
2670
-
2671
- #: admin/manage-fields.php:601
2672
- msgid "Ghana Cedis"
2673
- msgstr ""
2674
-
2675
- #: admin/manage-fields.php:602
2676
- msgid "Gibraltar Pound"
2677
- msgstr ""
2678
-
2679
- #: admin/manage-fields.php:603
2680
- msgid "Guatemala Quetzal"
2681
- msgstr ""
2682
-
2683
- #: admin/manage-fields.php:604
2684
- msgid "Guernsey Pound"
2685
- msgstr ""
2686
-
2687
- #: admin/manage-fields.php:605
2688
- msgid "Guyana Dollar"
2689
- msgstr ""
2690
-
2691
- #: admin/manage-fields.php:606
2692
- msgid "Honduras Lempira"
2693
- msgstr ""
2694
-
2695
- #: admin/manage-fields.php:607
2696
- msgid "Hong Kong Dollar"
2697
- msgstr ""
2698
-
2699
- #: admin/manage-fields.php:608
2700
- msgid "Hungary Forint"
2701
- msgstr ""
2702
-
2703
- #: admin/manage-fields.php:609
2704
- msgid "Iceland Krona"
2705
- msgstr ""
2706
-
2707
- #: admin/manage-fields.php:610
2708
- msgid "India Rupee"
2709
- msgstr ""
2710
-
2711
- #: admin/manage-fields.php:611
2712
- msgid "Indonesia Rupiah"
2713
- msgstr ""
2714
-
2715
- #: admin/manage-fields.php:612
2716
- msgid "Iran Rial"
2717
- msgstr ""
2718
-
2719
- #: admin/manage-fields.php:613
2720
- msgid "Isle of Man Pound"
2721
- msgstr ""
2722
-
2723
- #: admin/manage-fields.php:614
2724
- msgid "Israel Shekel"
2725
- msgstr ""
2726
-
2727
- #: admin/manage-fields.php:615
2728
- msgid "Jamaica Dollar"
2729
- msgstr ""
2730
-
2731
- #: admin/manage-fields.php:616
2732
- msgid "Japan Yen"
2733
- msgstr ""
2734
-
2735
- #: admin/manage-fields.php:617
2736
- msgid "Jersey Pound"
2737
- msgstr ""
2738
-
2739
- #: admin/manage-fields.php:618
2740
- msgid "Kazakhstan Tenge"
2741
- msgstr ""
2742
-
2743
- #: admin/manage-fields.php:619
2744
- msgid "Korea (North) Won"
2745
- msgstr ""
2746
-
2747
- #: admin/manage-fields.php:620
2748
- msgid "Korea (South) Won"
2749
- msgstr ""
2750
-
2751
- #: admin/manage-fields.php:621
2752
- msgid "Kyrgyzstan Som"
2753
- msgstr ""
2754
-
2755
- #: admin/manage-fields.php:622
2756
- msgid "Laos Kip"
2757
- msgstr ""
2758
-
2759
- #: admin/manage-fields.php:623
2760
- msgid "Latvia Lat"
2761
- msgstr ""
2762
-
2763
- #: admin/manage-fields.php:624
2764
- msgid "Lebanon Pound"
2765
- msgstr ""
2766
-
2767
- #: admin/manage-fields.php:625
2768
- msgid "Liberia Dollar"
2769
- msgstr ""
2770
-
2771
- #: admin/manage-fields.php:626
2772
- msgid "Lithuania Litas"
2773
- msgstr ""
2774
-
2775
- #: admin/manage-fields.php:627
2776
- msgid "Macedonia Denar"
2777
- msgstr ""
2778
-
2779
- #: admin/manage-fields.php:628
2780
- msgid "Malaysia Ringgit"
2781
- msgstr ""
2782
-
2783
- #: admin/manage-fields.php:629
2784
- msgid "Mauritius Rupee"
2785
- msgstr ""
2786
-
2787
- #: admin/manage-fields.php:630
2788
- msgid "Mexico Peso"
2789
- msgstr ""
2790
-
2791
- #: admin/manage-fields.php:631
2792
- msgid "Mongolia Tughrik"
2793
- msgstr ""
2794
-
2795
- #: admin/manage-fields.php:632
2796
- msgid "Mozambique Metical"
2797
- msgstr ""
2798
-
2799
- #: admin/manage-fields.php:633
2800
- msgid "Namibia Dollar"
2801
- msgstr ""
2802
-
2803
- #: admin/manage-fields.php:634
2804
- msgid "Nepal Rupee"
2805
- msgstr ""
2806
-
2807
- #: admin/manage-fields.php:635
2808
- msgid "Netherlands Antilles Guilder"
2809
- msgstr ""
2810
-
2811
- #: admin/manage-fields.php:636
2812
- msgid "New Zealand Dollar"
2813
- msgstr ""
2814
-
2815
- #: admin/manage-fields.php:637
2816
- msgid "Nicaragua Cordoba"
2817
- msgstr ""
2818
-
2819
- #: admin/manage-fields.php:638
2820
- msgid "Nigeria Naira"
2821
- msgstr ""
2822
-
2823
- #: admin/manage-fields.php:639
2824
- msgid "Norway Krone"
2825
- msgstr ""
2826
-
2827
- #: admin/manage-fields.php:640
2828
- msgid "Oman Rial"
2829
- msgstr ""
2830
-
2831
- #: admin/manage-fields.php:641
2832
- msgid "Pakistan Rupee"
2833
- msgstr ""
2834
-
2835
- #: admin/manage-fields.php:642
2836
- msgid "Panama Balboa"
2837
- msgstr ""
2838
-
2839
- #: admin/manage-fields.php:643
2840
- msgid "Paraguay Guarani"
2841
- msgstr ""
2842
-
2843
- #: admin/manage-fields.php:644
2844
- msgid "Peru Nuevo Sol"
2845
- msgstr ""
2846
-
2847
- #: admin/manage-fields.php:645
2848
- msgid "Philippines Peso"
2849
- msgstr ""
2850
-
2851
- #: admin/manage-fields.php:646
2852
- msgid "Poland Zloty"
2853
- msgstr ""
2854
-
2855
- #: admin/manage-fields.php:647
2856
- msgid "Qatar Riyal"
2857
- msgstr ""
2858
-
2859
- #: admin/manage-fields.php:648
2860
- msgid "Romania New Leu"
2861
- msgstr ""
2862
-
2863
- #: admin/manage-fields.php:649
2864
- msgid "Russia Ruble"
2865
- msgstr ""
2866
-
2867
- #: admin/manage-fields.php:650
2868
- msgid "Saint Helena Pound"
2869
- msgstr ""
2870
-
2871
- #: admin/manage-fields.php:651
2872
- msgid "Saudi Arabia Riyal"
2873
- msgstr ""
2874
-
2875
- #: admin/manage-fields.php:652
2876
- msgid "Serbia Dinar"
2877
- msgstr ""
2878
-
2879
- #: admin/manage-fields.php:653
2880
- msgid "Seychelles Rupee"
2881
- msgstr ""
2882
-
2883
- #: admin/manage-fields.php:654
2884
- msgid "Singapore Dollar"
2885
- msgstr ""
2886
-
2887
- #: admin/manage-fields.php:655
2888
- msgid "Solomon Islands Dollar"
2889
- msgstr ""
2890
-
2891
- #: admin/manage-fields.php:656
2892
- msgid "Somalia Shilling"
2893
- msgstr ""
2894
-
2895
- #: admin/manage-fields.php:657
2896
- msgid "South Africa Rand"
2897
- msgstr ""
2898
-
2899
- #: admin/manage-fields.php:658
2900
- msgid "Sri Lanka Rupee"
2901
- msgstr ""
2902
-
2903
- #: admin/manage-fields.php:659
2904
- msgid "Sweden Krona"
2905
- msgstr ""
2906
-
2907
- #: admin/manage-fields.php:660
2908
- msgid "Switzerland Franc"
2909
- msgstr ""
2910
-
2911
- #: admin/manage-fields.php:661
2912
- msgid "Suriname Dollar"
2913
- msgstr ""
2914
-
2915
- #: admin/manage-fields.php:662
2916
- msgid "Syria Pound"
2917
- msgstr ""
2918
-
2919
- #: admin/manage-fields.php:663
2920
- msgid "Taiwan New Dollar"
2921
- msgstr ""
2922
-
2923
- #: admin/manage-fields.php:664
2924
- msgid "Thailand Baht"
2925
- msgstr ""
2926
-
2927
- #: admin/manage-fields.php:665
2928
- msgid "Trinidad and Tobago Dollar"
2929
- msgstr ""
2930
-
2931
- #: admin/manage-fields.php:666 admin/manage-fields.php:667
2932
- msgid "Turkey Lira"
2933
- msgstr ""
2934
-
2935
- #: admin/manage-fields.php:668
2936
- msgid "Tuvalu Dollar"
2937
- msgstr ""
2938
-
2939
- #: admin/manage-fields.php:669
2940
- msgid "Ukraine Hryvna"
2941
- msgstr ""
2942
-
2943
- #: admin/manage-fields.php:670
2944
- msgid "United Kingdom Pound"
2945
- msgstr ""
2946
-
2947
- #: admin/manage-fields.php:671
2948
- msgid "Uganda Shilling"
2949
- msgstr ""
2950
-
2951
- #: admin/manage-fields.php:672
2952
- msgid "US Dollar"
2953
- msgstr ""
2954
-
2955
- #: admin/manage-fields.php:673
2956
- msgid "Uruguay Peso"
2957
- msgstr ""
2958
-
2959
- #: admin/manage-fields.php:674
2960
- msgid "Uzbekistan Som"
2961
- msgstr ""
2962
-
2963
- #: admin/manage-fields.php:675
2964
- msgid "Venezuela Bolivar"
2965
- msgstr ""
2966
-
2967
- #: admin/manage-fields.php:676
2968
- msgid "Viet Nam Dong"
2969
- msgstr ""
2970
-
2971
- #: admin/manage-fields.php:677
2972
- msgid "Yemen Rial"
2973
- msgstr ""
2974
-
2975
- #: admin/manage-fields.php:678
2976
- msgid "Zimbabwe Dollar"
2977
- msgstr ""
2978
-
2979
- #: admin/manage-fields.php:980 admin/manage-fields.php:1137
2980
- msgid "You must select a field\n"
2981
- msgstr ""
2982
-
2983
- #: admin/manage-fields.php:990
2984
- msgid ""
2985
- "Please choose a different field type as this one already exists in your form "
2986
- "(must be unique)\n"
2987
- msgstr ""
2988
-
2989
- #: admin/manage-fields.php:1001
2990
- msgid "The entered avatar size is not between 20 and 200\n"
2991
- msgstr ""
2992
-
2993
- #: admin/manage-fields.php:1004
2994
- msgid "The entered avatar size is not numerical\n"
2995
- msgstr ""
2996
-
2997
- #: admin/manage-fields.php:1012
2998
- msgid "The entered row number is not numerical\n"
2999
- msgstr ""
3000
-
3001
- #: admin/manage-fields.php:1015
3002
- msgid "You must enter a value for the row number\n"
3003
- msgstr ""
3004
-
3005
- #: admin/manage-fields.php:1023
3006
- msgid "You must enter the site key\n"
3007
- msgstr ""
3008
-
3009
- #: admin/manage-fields.php:1025
3010
- msgid "You must enter the secret key\n"
3011
- msgstr ""
3012
-
3013
- #: admin/manage-fields.php:1036
3014
- msgid "The entered value for the Datepicker is not a valid date-format\n"
3015
- msgstr ""
3016
-
3017
- #: admin/manage-fields.php:1039
3018
- msgid "You must enter a value for the date-format\n"
3019
- msgstr ""
3020
-
3021
- #: admin/manage-fields.php:1055
3022
- msgid "The meta-name cannot be empty\n"
3023
- msgstr ""
3024
-
3025
- #: admin/manage-fields.php:1067 admin/manage-fields.php:1075
3026
- #: admin/manage-fields.php:1086
3027
- msgid "That meta-name is already in use\n"
3028
- msgstr ""
3029
-
3030
- #: admin/manage-fields.php:1097
3031
- msgid ""
3032
- "The meta-name can only contain lowercase letters, numbers, _ , - and no "
3033
- "spaces.\n"
3034
- msgstr ""
3035
-
3036
- #: admin/manage-fields.php:1117
3037
- msgid ""
3038
- "The following option(s) did not coincide with the ones in the options list: "
3039
- "%s\n"
3040
- msgstr ""
3041
-
3042
- #: admin/manage-fields.php:1121
3043
- msgid ""
3044
- "The following option did not coincide with the ones in the options list: %s\n"
3045
- msgstr ""
3046
-
3047
- #: admin/manage-fields.php:1128
3048
- msgid "Please select at least one user role\n"
3049
- msgstr ""
3050
-
3051
- #: admin/manage-fields.php:1144
3052
- msgid "That field is already added in this form\n"
3053
- msgstr ""
3054
-
3055
- #: admin/manage-fields.php:1193
3056
- msgid ""
3057
- "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
3058
- "required\">Required</pre>"
3059
- msgstr ""
3060
-
3061
- #: admin/manage-fields.php:1193
3062
- #: assets/lib/wck-api/wordpress-creation-kit.php:438
3063
- #: assets/lib/wck-api/wordpress-creation-kit.php:535
3064
- #: features/admin-approval/class-admin-approval.php:108
3065
- #: features/functions.php:735 features/functions.php:742
3066
- #: features/roles-editor/roles-editor.php:866
3067
- #: modules/custom-redirects/custom_redirects_admin.php:179
3068
- #: modules/custom-redirects/custom_redirects_admin.php:193
3069
- #: modules/custom-redirects/custom_redirects_admin.php:207
3070
- #: modules/custom-redirects/custom_redirects_admin.php:221
3071
- #: modules/multiple-forms/multiple-forms.php:406
3072
- msgid "Edit"
3073
- msgstr ""
3074
-
3075
- #: admin/manage-fields.php:1193
3076
- #: assets/lib/wck-api/wordpress-creation-kit.php:438
3077
- #: assets/lib/wck-api/wordpress-creation-kit.php:536
3078
- #: features/admin-approval/class-admin-approval.php:113
3079
- #: features/admin-approval/class-admin-approval.php:224
3080
- #: features/email-confirmation/class-email-confirmation.php:120
3081
- #: features/email-confirmation/class-email-confirmation.php:217
3082
- #: features/functions.php:728 features/functions.php:742
3083
- #: features/roles-editor/roles-editor.php:179
3084
- #: features/roles-editor/roles-editor.php:884
3085
- #: features/roles-editor/roles-editor.php:893
3086
- #: features/roles-editor/roles-editor.php:904
3087
- #: modules/custom-redirects/custom_redirects_admin.php:179
3088
- #: modules/custom-redirects/custom_redirects_admin.php:193
3089
- #: modules/custom-redirects/custom_redirects_admin.php:207
3090
- #: modules/custom-redirects/custom_redirects_admin.php:221
3091
- msgid "Delete"
3092
- msgstr ""
3093
-
3094
- #: admin/manage-fields.php:1208
3095
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3096
- msgstr ""
3097
-
3098
- #: admin/manage-fields.php:1217
3099
- msgid ""
3100
- "If you're interested in displaying different fields in the registration and "
3101
- "edit profile forms, please use the Multiple Registration & Edit Profile "
3102
- "Forms Modules."
3103
- msgstr ""
3104
-
3105
- #: admin/manage-fields.php:1219
3106
- msgid ""
3107
- "With Profile Builder Pro v2 you can display different fields in the "
3108
- "registration and edit profile forms, using the Multiple Registration & Edit "
3109
- "Profile Forms module."
3110
- msgstr ""
3111
-
3112
- #: admin/manage-fields.php:1314
3113
- msgid "Search Location"
3114
- msgstr ""
3115
-
3116
- #: admin/pms-cross-promotion.php:10
3117
- msgid "Paid Accounts"
3118
- msgstr ""
3119
-
3120
- #: admin/pms-cross-promotion.php:33
3121
- msgid "Paid Member Subscriptions - a free WordPress plugin"
3122
- msgstr ""
3123
-
3124
- #: admin/pms-cross-promotion.php:37
3125
- msgid ""
3126
- "With the new Subscriptions Field in Profile Builder, your registration forms "
3127
- "will allow your users to sign up for paid accounts."
3128
- msgstr ""
3129
-
3130
- #: admin/pms-cross-promotion.php:40
3131
- msgid "Paid & Free Subscriptions"
3132
- msgstr ""
3133
-
3134
- #: admin/pms-cross-promotion.php:41
3135
- msgid "Restrict Content"
3136
- msgstr ""
3137
-
3138
- #: admin/pms-cross-promotion.php:42
3139
- msgid "Member Management"
3140
- msgstr ""
3141
-
3142
- #: admin/pms-cross-promotion.php:43
3143
- msgid "Email Templates"
3144
- msgstr ""
3145
-
3146
- #: admin/pms-cross-promotion.php:44
3147
- msgid "Account Management"
3148
- msgstr ""
3149
-
3150
- #: admin/pms-cross-promotion.php:45
3151
- msgid "Subscription Management"
3152
- msgstr ""
3153
-
3154
- #: admin/pms-cross-promotion.php:46
3155
- msgid "Payment Management"
3156
- msgstr ""
3157
-
3158
- #: admin/pms-cross-promotion.php:83
3159
- msgid "Plugin is Active"
3160
- msgstr ""
3161
-
3162
- #: admin/pms-cross-promotion.php:84
3163
- msgid "Plugin has been activated"
3164
- msgstr ""
3165
-
3166
- #: admin/pms-cross-promotion.php:91
3167
- msgid "Plugin has been deactivated."
3168
- msgstr ""
3169
-
3170
- #: admin/pms-cross-promotion.php:104
3171
- msgid ""
3172
- "Accept user payments, create subscription plans and restrict content on your "
3173
- "website."
3174
- msgstr ""
3175
-
3176
- #: admin/pms-cross-promotion.php:155
3177
- msgid "Step by Step Quick Setup"
3178
- msgstr ""
3179
-
3180
- #: admin/pms-cross-promotion.php:239
3181
- msgid ""
3182
- "Allow your users to have <strong>paid accounts with Profile Builder</"
3183
- "strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
3184
- msgstr ""
3185
-
3186
- #: admin/register-version.php:14
3187
- msgid "Register Your Version"
3188
- msgstr ""
3189
-
3190
- #: admin/register-version.php:14
3191
- msgid "Register Version"
3192
- msgstr ""
3193
-
3194
- #: admin/register-version.php:22
3195
- msgid "Profile Builder Register"
3196
- msgstr ""
3197
-
3198
- #: admin/register-version.php:69
3199
- msgid ""
3200
- "Now that you acquired a copy of %s, you should take the time and register it "
3201
- "with the serial number you received"
3202
- msgstr ""
3203
-
3204
- #: admin/register-version.php:70
3205
- msgid ""
3206
- "If you register this version of Profile Builder, you'll receive information "
3207
- "regarding upgrades, patches, and technical support."
3208
- msgstr ""
3209
-
3210
- #: admin/register-version.php:72
3211
- msgid " Serial Number:"
3212
- msgstr ""
3213
-
3214
- #: admin/register-version.php:77
3215
- msgid "The serial number was successfully validated!"
3216
- msgstr ""
3217
-
3218
- #: admin/register-version.php:79
3219
- msgid "The serial number entered couldn't be validated!"
3220
- msgstr ""
3221
-
3222
- #: admin/register-version.php:81
3223
- msgid "The serial number is about to expire soon!"
3224
- msgstr ""
3225
-
3226
- #: admin/register-version.php:81
3227
- msgid ""
3228
- " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3229
- msgstr ""
3230
-
3231
- #: admin/register-version.php:83
3232
- msgid "The serial number couldn't be validated because it expired!"
3233
- msgstr ""
3234
-
3235
- #: admin/register-version.php:83
3236
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3237
- msgstr ""
3238
-
3239
- #: admin/register-version.php:85
3240
- msgid ""
3241
- "The serial number couldn't be validated because process timed out. This is "
3242
- "possible due to the server being down. Please try again later!"
3243
- msgstr ""
3244
-
3245
- #: admin/register-version.php:87
3246
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3247
- msgstr ""
3248
-
3249
- #: admin/register-version.php:243
3250
- msgid ""
3251
- "<p>Your <strong>Profile Builder</strong> serial number is invalid or "
3252
- "missing. <br/>Please %1$sregister your copy%2$s to receive access to "
3253
- "automatic updates and support. Need a license key? %3$sPurchase one now%4$s</"
3254
- "p>"
3255
- msgstr ""
3256
-
3257
- #: admin/register-version.php:246
3258
- msgid ""
3259
- "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
3260
- "%1$sRenew Your Licence%2$s to continue receiving access to product "
3261
- "downloads, automatic updates and support. %3$sRenew now and get 40&#37; off "
3262
- "%4$s %5$sDismiss%6$s</p>"
3263
- msgstr ""
3264
-
3265
- #: admin/register-version.php:251
3266
- msgid ""
3267
- "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
3268
- "<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
3269
- "product downloads, automatic updates and support. %3$sRenew now and get "
3270
- "40&#37; off %4$s %6$sDismiss%7$s</p>"
3271
- msgstr ""
3272
-
3273
- #: assets/lib/wck-api/fields/country select.php:14
3274
- #: assets/lib/wck-api/fields/cpt select.php:17
3275
- #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3276
- #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:42
3277
- #: front-end/extra-fields/select-cpt/select-cpt.php:66
3278
- msgid "...Choose"
3279
- msgstr ""
3280
-
3281
- #: assets/lib/wck-api/fields/nested repeater.php:8
3282
- msgid "You can add the information for the %s after you add a entry"
3283
- msgstr ""
3284
-
3285
- #: assets/lib/wck-api/fields/upload.php:43
3286
- #: front-end/extra-fields/upload/upload.php:112
3287
- msgid "Remove"
3288
- msgstr ""
3289
-
3290
- #: assets/lib/wck-api/fields/upload.php:75
3291
- #: front-end/extra-fields/upload/upload.php:128
3292
- msgid "Upload "
3293
- msgstr ""
3294
-
3295
- #: assets/lib/wck-api/wordpress-creation-kit.php:334
3296
- #: modules/class-mustache-templates/class-mustache-templates.php:253
3297
- msgid "Save"
3298
- msgstr ""
3299
-
3300
- #: assets/lib/wck-api/wordpress-creation-kit.php:334
3301
- msgid "Add Entry"
3302
- msgstr ""
3303
-
3304
- #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:742
3305
- msgid "Content"
3306
- msgstr ""
3307
-
3308
- #: assets/lib/wck-api/wordpress-creation-kit.php:535
3309
- msgid "Edit this item"
3310
- msgstr ""
3311
-
3312
- #: assets/lib/wck-api/wordpress-creation-kit.php:536
3313
- msgid "Delete this item"
3314
- msgstr ""
3315
-
3316
- #: assets/lib/wck-api/wordpress-creation-kit.php:705
3317
- msgid "Please enter a value for the required field "
3318
- msgstr ""
3319
-
3320
- #: assets/lib/wck-api/wordpress-creation-kit.php:754 front-end/login.php:321
3321
- msgid "You are not allowed to do this."
3322
- msgstr ""
3323
-
3324
- #: assets/misc/plugin-compatibilities.php:237
3325
- msgid ""
3326
- "Your account has to be confirmed by an administrator before you can log in."
3327
- msgstr ""
3328
-
3329
- #: features/admin-approval/admin-approval.php:14
3330
- #: features/admin-approval/class-admin-approval.php:454
3331
- msgid "Admin Approval"
3332
- msgstr ""
3333
-
3334
- #: features/admin-approval/admin-approval.php:28
3335
- #: features/email-confirmation/email-confirmation.php:58
3336
- msgid "Do you want to"
3337
- msgstr ""
3338
-
3339
- #: features/admin-approval/admin-approval.php:51
3340
- msgid "Your session has expired! Please refresh the page and try again"
3341
- msgstr ""
3342
-
3343
- #: features/admin-approval/admin-approval.php:64
3344
- msgid "User successfully approved!"
3345
- msgstr ""
3346
-
3347
- #: features/admin-approval/admin-approval.php:74
3348
- msgid "User successfully unapproved!"
3349
- msgstr ""
3350
-
3351
- #: features/admin-approval/admin-approval.php:80
3352
- msgid "User successfully deleted!"
3353
- msgstr ""
3354
-
3355
- #: features/admin-approval/admin-approval.php:85
3356
- #: features/admin-approval/admin-approval.php:131
3357
- #: features/email-confirmation/email-confirmation.php:132
3358
- msgid "You either don't have permission for that action or there was an error!"
3359
- msgstr ""
3360
-
3361
- #: features/admin-approval/admin-approval.php:96
3362
- msgid "Your session has expired! Please refresh the page and try again."
3363
- msgstr ""
3364
-
3365
- #: features/admin-approval/admin-approval.php:109
3366
- msgid "Users successfully approved!"
3367
- msgstr ""
3368
-
3369
- #: features/admin-approval/admin-approval.php:119
3370
- msgid "Users successfully unapproved!"
3371
- msgstr ""
3372
-
3373
- #: features/admin-approval/admin-approval.php:127
3374
- msgid "Users successfully deleted!"
3375
- msgstr ""
3376
-
3377
- #: features/admin-approval/admin-approval.php:147
3378
- msgid "Your account on %1$s has been approved!"
3379
- msgstr ""
3380
-
3381
- #: features/admin-approval/admin-approval.php:148
3382
- #: features/admin-approval/admin-approval.php:151
3383
- msgid "approved"
3384
- msgstr ""
3385
-
3386
- #: features/admin-approval/admin-approval.php:150
3387
- msgid "An administrator has just approved your account on %1$s (%2$s)."
3388
- msgstr ""
3389
-
3390
- #: features/admin-approval/admin-approval.php:155
3391
- msgid "Your account on %1$s has been unapproved!"
3392
- msgstr ""
3393
-
3394
- #: features/admin-approval/admin-approval.php:156
3395
- #: features/admin-approval/admin-approval.php:159
3396
- msgid "unapproved"
3397
- msgstr ""
3398
-
3399
- #: features/admin-approval/admin-approval.php:158
3400
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
3401
- msgstr ""
3402
-
3403
- #: features/admin-approval/admin-approval.php:177
3404
- msgid ""
3405
- "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
3406
- "before you can log in."
3407
- msgstr ""
3408
-
3409
- #: features/admin-approval/admin-approval.php:189
3410
- msgid ""
3411
- "Your account has to be confirmed by an administrator before you can use the "
3412
- "\"Password Recovery\" feature."
3413
- msgstr ""
3414
-
3415
- #: features/admin-approval/admin-approval.php:218
3416
- msgid "Your account has been successfully created!"
3417
- msgstr ""
3418
-
3419
- #: features/admin-approval/class-admin-approval.php:113
3420
- msgid "delete this user?"
3421
- msgstr ""
3422
-
3423
- #: features/admin-approval/class-admin-approval.php:116
3424
- msgid "unapprove this user?"
3425
- msgstr ""
3426
-
3427
- #: features/admin-approval/class-admin-approval.php:116
3428
- #: features/admin-approval/class-admin-approval.php:223
3429
- msgid "Unapprove"
3430
- msgstr ""
3431
-
3432
- #: features/admin-approval/class-admin-approval.php:118
3433
- msgid "approve this user?"
3434
- msgstr ""
3435
-
3436
- #: features/admin-approval/class-admin-approval.php:118
3437
- #: features/admin-approval/class-admin-approval.php:222
3438
- msgid "Approve"
3439
- msgstr ""
3440
-
3441
- #: features/admin-approval/class-admin-approval.php:167
3442
- #: modules/user-listing/userlisting.php:304
3443
- #: modules/user-listing/userlisting.php:786
3444
- #: modules/user-listing/userlisting.php:2269
3445
- msgid "Firstname"
3446
- msgstr ""
3447
-
3448
- #: features/admin-approval/class-admin-approval.php:168
3449
- #: modules/user-listing/userlisting.php:789
3450
- #: modules/user-listing/userlisting.php:2270
3451
- msgid "Lastname"
3452
- msgstr ""
3453
-
3454
- #: features/admin-approval/class-admin-approval.php:170
3455
- #: features/roles-editor/roles-editor.php:255
3456
- #: modules/user-listing/userlisting.php:159
3457
- #: modules/user-listing/userlisting.php:305
3458
- #: modules/user-listing/userlisting.php:816
3459
- #: modules/user-listing/userlisting.php:2274
3460
- msgid "Role"
3461
- msgstr ""
3462
-
3463
- #: features/admin-approval/class-admin-approval.php:171
3464
- #: features/email-confirmation/class-email-confirmation.php:169
3465
- msgid "Registered"
3466
- msgstr ""
3467
-
3468
- #: features/admin-approval/class-admin-approval.php:172
3469
- msgid "User-status"
3470
- msgstr ""
3471
-
3472
- #: features/admin-approval/class-admin-approval.php:252
3473
- msgid "Do you want to bulk approve the selected users?"
3474
- msgstr ""
3475
-
3476
- #: features/admin-approval/class-admin-approval.php:260
3477
- msgid "Do you want to bulk unapprove the selected users?"
3478
- msgstr ""
3479
-
3480
- #: features/admin-approval/class-admin-approval.php:266
3481
- msgid "Do you want to bulk delete the selected users?"
3482
- msgstr ""
3483
-
3484
- #: features/admin-approval/class-admin-approval.php:274
3485
- #: features/email-confirmation/class-email-confirmation.php:278
3486
- msgid "Sorry, but you don't have permission to do that!"
3487
- msgstr ""
3488
-
3489
- #: features/admin-approval/class-admin-approval.php:339
3490
- msgid "Approved"
3491
- msgstr ""
3492
-
3493
- #: features/admin-approval/class-admin-approval.php:341
3494
- msgid "Unapproved"
3495
- msgstr ""
3496
-
3497
- #: features/admin-approval/class-admin-approval.php:457
3498
- #: features/email-confirmation/class-email-confirmation.php:454
3499
- msgid "All Users"
3500
- msgstr ""
3501
-
3502
- #: features/admin-approval/class-admin-approval.php:462
3503
- #: features/email-confirmation/class-email-confirmation.php:460
3504
- msgid "Search Users"
3505
- msgstr ""
3506
-
3507
- #: features/class-list-table.php:184
3508
- msgid "No items found."
3509
- msgstr ""
3510
-
3511
- #: features/class-list-table.php:308
3512
- msgid "Bulk Actions"
3513
- msgstr ""
3514
-
3515
- #: features/class-list-table.php:318
3516
- msgid "Apply"
3517
- msgstr ""
3518
-
3519
- #: features/class-list-table.php:402
3520
- msgid "Show all dates"
3521
- msgstr ""
3522
-
3523
- #. translators: 1: month name, 2: 4-digit year
3524
- #: features/class-list-table.php:415
3525
- msgid "%1$s %2$d"
3526
- msgstr ""
3527
-
3528
- #: features/class-list-table.php:431
3529
- msgid "List View"
3530
- msgstr ""
3531
-
3532
- #: features/class-list-table.php:432
3533
- msgid "Excerpt View"
3534
- msgstr ""
3535
-
3536
- #: features/class-list-table.php:458
3537
- msgid "%s pending"
3538
- msgstr ""
3539
-
3540
- #: features/class-list-table.php:526 features/class-list-table.php:942
3541
- msgid "1 item"
3542
- msgid_plural "%s items"
3543
- msgstr[0] ""
3544
- msgstr[1] ""
3545
-
3546
- #: features/class-list-table.php:544
3547
- msgid "Go to the first page"
3548
- msgstr ""
3549
-
3550
- #: features/class-list-table.php:551
3551
- msgid "Go to the previous page"
3552
- msgstr ""
3553
-
3554
- #: features/class-list-table.php:560
3555
- msgid "Current page"
3556
- msgstr ""
3557
-
3558
- #: features/class-list-table.php:566
3559
- msgctxt "paging"
3560
- msgid "%1$s of %2$s"
3561
- msgstr ""
3562
-
3563
- #: features/class-list-table.php:570
3564
- msgid "Go to the next page"
3565
- msgstr ""
3566
-
3567
- #: features/class-list-table.php:577
3568
- msgid "Go to the last page"
3569
- msgstr ""
3570
-
3571
- #: features/class-list-table.php:713
3572
- msgid "Select All"
3573
- msgstr ""
3574
-
3575
- #: features/conditional-fields/conditional-fields.php:78
3576
- msgid "Conditional Logic"
3577
- msgstr ""
3578
-
3579
- #: features/conditional-fields/conditional-fields.php:79
3580
- msgid "Conditional Rules"
3581
- msgstr ""
3582
-
3583
- #: features/conditional-fields/conditional-fields.php:448
3584
- msgid "This field has conditional logic enabled."
3585
- msgstr ""
3586
-
3587
- #: features/content-restriction/content-restriction-filtering.php:178
3588
- msgid "&hellip;"
3589
- msgstr ""
3590
-
3591
- #: features/content-restriction/content-restriction-functions.php:40
3592
- msgid "You must be logged in to view this content."
3593
- msgstr ""
3594
-
3595
- #: features/content-restriction/content-restriction-functions.php:42
3596
- msgid "This content is restricted for your user role."
3597
- msgstr ""
3598
-
3599
- #: features/content-restriction/content-restriction-meta-box.php:18
3600
- msgid "Profile Builder Content Restriction"
3601
- msgstr ""
3602
-
3603
- #: features/content-restriction/content-restriction-meta-box.php:32
3604
- msgid "Display Options"
3605
- msgstr ""
3606
-
3607
- #: features/content-restriction/content-restriction-meta-box.php:36
3608
- #: features/content-restriction/content-restriction.php:56
3609
- msgid "Message"
3610
- msgstr ""
3611
-
3612
- #: features/content-restriction/content-restriction-meta-box.php:36
3613
- #: features/content-restriction/content-restriction.php:61
3614
- #: modules/multiple-forms/edit-profile-forms.php:206
3615
- #: modules/multiple-forms/register-forms.php:230
3616
- msgid "Redirect"
3617
- msgstr ""
3618
-
3619
- #: features/content-restriction/content-restriction-meta-box.php:41
3620
- #: features/content-restriction/content-restriction.php:51
3621
- msgid "Type of Restriction"
3622
- msgstr ""
3623
-
3624
- #: features/content-restriction/content-restriction-meta-box.php:45
3625
- msgid "Settings Default"
3626
- msgstr ""
3627
-
3628
- #: features/content-restriction/content-restriction-meta-box.php:57
3629
- msgid "Display For"
3630
- msgstr ""
3631
-
3632
- #: features/content-restriction/content-restriction-meta-box.php:67
3633
- msgid "Logged In Users"
3634
- msgstr ""
3635
-
3636
- #: features/content-restriction/content-restriction-meta-box.php:81
3637
- msgid ""
3638
- "Checking only \"Logged In Users\" will show this %s to all logged in users, "
3639
- "regardless of user role."
3640
- msgstr ""
3641
-
3642
- #: features/content-restriction/content-restriction-meta-box.php:85
3643
- msgid ""
3644
- "Checking any user role will show this %s only to users that have one of "
3645
- "those user roles assigned."
3646
- msgstr ""
3647
-
3648
- #: features/content-restriction/content-restriction-meta-box.php:92
3649
- msgid "Restriction Redirect URL"
3650
- msgstr ""
3651
-
3652
- #: features/content-restriction/content-restriction-meta-box.php:98
3653
- msgid "Enable Custom Redirect URL"
3654
- msgstr ""
3655
-
3656
- #: features/content-restriction/content-restriction-meta-box.php:102
3657
- msgid "Check if you wish to add a custom redirect URL for this %s."
3658
- msgstr ""
3659
-
3660
- #: features/content-restriction/content-restriction-meta-box.php:109
3661
- msgid "Custom Redirect URL"
3662
- msgstr ""
3663
-
3664
- #: features/content-restriction/content-restriction-meta-box.php:113
3665
- msgid ""
3666
- "Add a URL where you wish to redirect users that do not have access to this "
3667
- "%s and try to access it directly."
3668
- msgstr ""
3669
-
3670
- #: features/content-restriction/content-restriction-meta-box.php:119
3671
- msgid "Restriction Messages"
3672
- msgstr ""
3673
-
3674
- #: features/content-restriction/content-restriction-meta-box.php:125
3675
- msgid "Enable Custom Messages"
3676
- msgstr ""
3677
-
3678
- #: features/content-restriction/content-restriction-meta-box.php:129
3679
- msgid "Check if you wish to add custom messages for this %s."
3680
- msgstr ""
3681
-
3682
- #: features/content-restriction/content-restriction-meta-box.php:136
3683
- msgid "Messages for logged-out users"
3684
- msgstr ""
3685
-
3686
- #: features/content-restriction/content-restriction-meta-box.php:139
3687
- msgid "Messages for logged-in users"
3688
- msgstr ""
3689
-
3690
- #: features/content-restriction/content-restriction.php:64
3691
- msgid ""
3692
- "If you select \"Message\", the post's content will be protected by being "
3693
- "replaced with a custom message."
3694
- msgstr ""
3695
-
3696
- #: features/content-restriction/content-restriction.php:65
3697
- msgid ""
3698
- "If you select \"Redirect\", the post's content will be protected by "
3699
- "redirecting the user to the URL you specify. The redirect happens only when "
3700
- "accessing a single post. On archive pages the restriction message will be "
3701
- "displayed, instead of the content."
3702
- msgstr ""
3703
-
3704
- #: features/content-restriction/content-restriction.php:70
3705
- #: modules/custom-redirects/custom_redirects_admin.php:64
3706
- #: modules/custom-redirects/custom_redirects_admin.php:94
3707
- #: modules/custom-redirects/custom_redirects_admin.php:113
3708
- #: modules/custom-redirects/custom_redirects_admin.php:138
3709
- msgid "Redirect URL"
3710
- msgstr ""
3711
-
3712
- #: features/content-restriction/content-restriction.php:75
3713
- msgid "Message for logged-out users"
3714
- msgstr ""
3715
-
3716
- #: features/content-restriction/content-restriction.php:80
3717
- msgid "Message for logged-in users"
3718
- msgstr ""
3719
-
3720
- #: features/content-restriction/content-restriction.php:85
3721
- msgid "Restricted Posts Preview"
3722
- msgstr ""
3723
-
3724
- #: features/content-restriction/content-restriction.php:91
3725
- #: modules/user-listing/userlisting.php:525
3726
- #: modules/user-listing/userlisting.php:543
3727
- msgid "None"
3728
- msgstr ""
3729
-
3730
- #: features/content-restriction/content-restriction.php:100
3731
- msgid "Show the first %s words of the post's content"
3732
- msgstr ""
3733
-
3734
- #: features/content-restriction/content-restriction.php:108
3735
- msgid "Show the content before the \"more\" tag"
3736
- msgstr ""
3737
-
3738
- #: features/content-restriction/content-restriction.php:112
3739
- msgid ""
3740
- "Show a portion of the restricted post to logged-out users or users that are "
3741
- "not allowed to see it."
3742
- msgstr ""
3743
-
3744
- #: features/email-confirmation/class-email-confirmation.php:91
3745
- #: features/email-confirmation/class-email-confirmation.php:170
3746
- msgid "User Meta"
3747
- msgstr ""
3748
-
3749
- #: features/email-confirmation/class-email-confirmation.php:91
3750
- msgid "show"
3751
- msgstr ""
3752
-
3753
- #: features/email-confirmation/class-email-confirmation.php:120
3754
- msgid "delete this user from the _signups table?"
3755
- msgstr ""
3756
-
3757
- #: features/email-confirmation/class-email-confirmation.php:121
3758
- msgid "confirm this email yourself?"
3759
- msgstr ""
3760
-
3761
- #: features/email-confirmation/class-email-confirmation.php:121
3762
- #: features/email-confirmation/class-email-confirmation.php:218
3763
- msgid "Confirm Email"
3764
- msgstr ""
3765
-
3766
- #: features/email-confirmation/class-email-confirmation.php:122
3767
- msgid "resend the activation link?"
3768
- msgstr ""
3769
-
3770
- #: features/email-confirmation/class-email-confirmation.php:122
3771
- #: features/email-confirmation/class-email-confirmation.php:219
3772
- msgid "Resend Activation Email"
3773
- msgstr ""
3774
-
3775
- #: features/email-confirmation/class-email-confirmation.php:249
3776
- msgid "%s couldn't be deleted"
3777
- msgstr ""
3778
-
3779
- #: features/email-confirmation/class-email-confirmation.php:253
3780
- msgid "All users have been successfully deleted"
3781
- msgstr ""
3782
-
3783
- #: features/email-confirmation/class-email-confirmation.php:263
3784
- msgid "The selected users have been activated"
3785
- msgstr ""
3786
-
3787
- #: features/email-confirmation/class-email-confirmation.php:274
3788
- msgid "The selected users have had their activation emails resent"
3789
- msgstr ""
3790
-
3791
- #: features/email-confirmation/class-email-confirmation.php:451
3792
- #: features/email-confirmation/email-confirmation.php:47
3793
- msgid "Users with Unconfirmed Email Address"
3794
- msgstr ""
3795
-
3796
- #: features/email-confirmation/email-confirmation.php:107
3797
- msgid "There was an error performing that action!"
3798
- msgstr ""
3799
-
3800
- #: features/email-confirmation/email-confirmation.php:115
3801
- msgid "The selected user couldn't be deleted"
3802
- msgstr ""
3803
-
3804
- #: features/email-confirmation/email-confirmation.php:126
3805
- msgid "Email notification resent to user"
3806
- msgstr ""
3807
-
3808
- #: features/email-confirmation/email-confirmation.php:404
3809
- msgid "[%1$s] Activate %2$s"
3810
- msgstr ""
3811
-
3812
- #: features/email-confirmation/email-confirmation.php:407
3813
- msgid ""
3814
- "To activate your user, please click the following link:<br><br>%s%s"
3815
- "%s<br><br>After you activate it you will receive yet *another email* with "
3816
- "your login."
3817
- msgstr ""
3818
-
3819
- #: features/email-confirmation/email-confirmation.php:448
3820
- #: front-end/register.php:71
3821
- msgid "Could not create user!"
3822
- msgstr ""
3823
-
3824
- #: features/email-confirmation/email-confirmation.php:451
3825
- msgid "That username is already activated!"
3826
- msgstr ""
3827
-
3828
- #: features/email-confirmation/email-confirmation.php:474
3829
- msgid "There was an error while trying to activate the user"
3830
- msgstr ""
3831
-
3832
- #: features/email-confirmation/email-confirmation.php:522
3833
- #: modules/email-customizer/admin-email-customizer.php:73
3834
- msgid "A new subscriber has (been) registered!"
3835
- msgstr ""
3836
-
3837
- #: features/email-confirmation/email-confirmation.php:525
3838
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
3839
- msgstr ""
3840
-
3841
- #: features/email-confirmation/email-confirmation.php:576
3842
- msgid "[%1$s] Your new account information"
3843
- msgstr ""
3844
-
3845
- #: features/email-confirmation/email-confirmation.php:580
3846
- #: features/email-confirmation/email-confirmation.php:589
3847
- #: modules/email-customizer/email-customizer.php:488
3848
- #: modules/email-customizer/email-customizer.php:495
3849
- #: modules/email-customizer/email-customizer.php:509
3850
- msgid "Your selected password at signup"
3851
- msgstr ""
3852
-
3853
- #: features/email-confirmation/email-confirmation.php:585
3854
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
3855
- msgstr ""
3856
-
3857
- #: features/email-confirmation/email-confirmation.php:587
3858
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
3859
- msgstr ""
3860
-
3861
- #: features/email-confirmation/email-confirmation.php:640
3862
- msgid ""
3863
- "The \"Admin Approval\" feature was activated at the time of registration, so "
3864
- "please remember that you need to approve this user before he/she can log in!"
3865
- msgstr ""
3866
-
3867
- #: features/email-confirmation/email-confirmation.php:648
3868
- #: front-end/register.php:125
3869
- msgid ""
3870
- "Before you can access your account, an administrator needs to approve it. "
3871
- "You will be notified via email."
3872
- msgstr ""
3873
-
3874
- #: features/functions.php:529
3875
- msgid "Strength indicator"
3876
- msgstr ""
3877
-
3878
- #: features/functions.php:555 features/functions.php:579
3879
- msgid "Very Weak"
3880
- msgstr ""
3881
-
3882
- #: features/functions.php:569
3883
- msgid "Minimum length of %d characters."
3884
- msgstr ""
3885
-
3886
- #: features/functions.php:580
3887
- msgid "The password must have a minimum strength of %s."
3888
- msgstr ""
3889
-
3890
- #: features/functions.php:657
3891
- msgid "This field is required"
3892
- msgstr ""
3893
-
3894
- #: features/functions.php:695
3895
- #: front-end/default-fields/recaptcha/recaptcha.php:374
3896
- #: front-end/default-fields/recaptcha/recaptcha.php:379
3897
- #: front-end/default-fields/recaptcha/recaptcha.php:421
3898
- #: front-end/default-fields/recaptcha/recaptcha.php:458
3899
- msgid "Please enter a (valid) reCAPTCHA value"
3900
- msgstr ""
3901
-
3902
- #: features/functions.php:702
3903
- msgid "Incorrect phone number"
3904
- msgstr ""
3905
-
3906
- #: features/functions.php:721 features/roles-editor/roles-editor.php:180
3907
- msgid "Cancel"
3908
- msgstr ""
3909
-
3910
- #: features/functions.php:753
3911
- msgid ""
3912
- "To allow users to register for your website via Profile Builder, you first "
3913
- "must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
3914
- "Registration Settings make sure to check “User accounts may be registered”. "
3915
- "%3$sDismiss%4$s"
3916
- msgstr ""
3917
-
3918
- #: features/functions.php:757
3919
- msgid ""
3920
- "To allow users to register for your website via Profile Builder, you first "
3921
- "must enable user registration. Go to %1$sSettings -> General%2$s tab, and "
3922
- "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3923
- msgstr ""
3924
-
3925
- #: features/functions.php:913
3926
- msgid "<br><br>Also, you will be able to visit your site at "
3927
- msgstr ""
3928
-
3929
- #: features/functions.php:926
3930
- msgid "<br><br>You can visit your site at "
3931
- msgstr ""
3932
-
3933
- #: features/functions.php:1011
3934
- msgid "here"
3935
- msgstr ""
3936
-
3937
- #: features/functions.php:1012
3938
- msgid ""
3939
- "You will soon be redirected automatically. If you see this page for more "
3940
- "than %1$d seconds, please click %2$s.%3$s"
3941
- msgstr ""
3942
-
3943
- #: features/login-widget/login-widget.php:10
3944
- msgid "This login widget lets you add a login form in the sidebar."
3945
- msgstr ""
3946
-
3947
- #: features/login-widget/login-widget.php:15
3948
- msgid "Profile Builder Login Widget"
3949
- msgstr ""
3950
-
3951
- #: features/login-widget/login-widget.php:63
3952
- msgid "Title:"
3953
- msgstr ""
3954
-
3955
- #: features/login-widget/login-widget.php:68
3956
- msgid "After login redirect URL (optional):"
3957
- msgstr ""
3958
-
3959
- #: features/login-widget/login-widget.php:73
3960
- msgid "Register page URL (optional):"
3961
- msgstr ""
3962
-
3963
- #: features/login-widget/login-widget.php:78
3964
- msgid "Password Recovery page URL (optional):"
3965
- msgstr ""
3966
-
3967
- #: features/roles-editor/roles-editor.php:170
3968
- #: modules/multiple-forms/register-forms.php:219
3969
- msgid "Default Role"
3970
- msgstr ""
3971
-
3972
- #: features/roles-editor/roles-editor.php:171
3973
- msgid "Your Role"
3974
- msgstr ""
3975
-
3976
- #: features/roles-editor/roles-editor.php:172
3977
- msgid "Role name is required."
3978
- msgstr ""
3979
-
3980
- #: features/roles-editor/roles-editor.php:173
3981
- msgid "No capabilities found."
3982
- msgstr ""
3983
-
3984
- #: features/roles-editor/roles-editor.php:174
3985
- msgid "Select capabilities"
3986
- msgstr ""
3987
-
3988
- #: features/roles-editor/roles-editor.php:175
3989
- msgid "Delete Permanently"
3990
- msgstr ""
3991
-
3992
- #: features/roles-editor/roles-editor.php:176
3993
- msgid ""
3994
- "This will permanently delete the capability from your site and from every "
3995
- "user role.\n"
3996
- "\n"
3997
- "It can't be undone!"
3998
- msgstr ""
3999
-
4000
- #: features/roles-editor/roles-editor.php:177
4001
- msgid "This capability is not saved until you click Update!"
4002
- msgstr ""
4003
-
4004
- #: features/roles-editor/roles-editor.php:178
4005
- msgid "This capability is not saved until you click Publish!"
4006
- msgstr ""
4007
-
4008
- #: features/roles-editor/roles-editor.php:181
4009
- #: features/roles-editor/roles-editor.php:431
4010
- msgid "Add New Capability"
4011
- msgstr ""
4012
-
4013
- #: features/roles-editor/roles-editor.php:182
4014
- msgid "Capability"
4015
- msgstr ""
4016
-
4017
- #: features/roles-editor/roles-editor.php:183
4018
- msgid "You can't delete this capability from your role."
4019
- msgstr ""
4020
-
4021
- #: features/roles-editor/roles-editor.php:244
4022
- #: features/roles-editor/roles-editor.php:245
4023
- #: features/roles-editor/roles-editor.php:250
4024
- #: features/roles-editor/roles-editor.php:257
4025
- msgid "Roles Editor"
4026
- msgstr ""
4027
-
4028
- #: features/roles-editor/roles-editor.php:246
4029
- #: features/roles-editor/roles-editor.php:247
4030
- msgid "Add New Role"
4031
- msgstr ""
4032
-
4033
- #: features/roles-editor/roles-editor.php:248
4034
- msgid "Edit Role"
4035
- msgstr ""
4036
-
4037
- #: features/roles-editor/roles-editor.php:249
4038
- msgid "New Role"
4039
- msgstr ""
4040
-
4041
- #: features/roles-editor/roles-editor.php:251
4042
- msgid "View Role"
4043
- msgstr ""
4044
-
4045
- #: features/roles-editor/roles-editor.php:252
4046
- msgid "Search the Roles Editor"
4047
- msgstr ""
4048
-
4049
- #: features/roles-editor/roles-editor.php:253
4050
- msgid "No roles found"
4051
- msgstr ""
4052
-
4053
- #: features/roles-editor/roles-editor.php:254
4054
- msgid "No roles found in trash"
4055
- msgstr ""
4056
-
4057
- #: features/roles-editor/roles-editor.php:283
4058
- msgid "Enter role name here"
4059
- msgstr ""
4060
-
4061
- #: features/roles-editor/roles-editor.php:296
4062
- #: features/roles-editor/roles-editor.php:299
4063
- msgid "Role updated."
4064
- msgstr ""
4065
-
4066
- #: features/roles-editor/roles-editor.php:297
4067
- msgid "Custom field updated."
4068
- msgstr ""
4069
-
4070
- #: features/roles-editor/roles-editor.php:298
4071
- msgid "Custom field deleted."
4072
- msgstr ""
4073
-
4074
- #: features/roles-editor/roles-editor.php:300
4075
- msgid "Role restored to revision from %s"
4076
- msgstr ""
4077
-
4078
- #: features/roles-editor/roles-editor.php:301
4079
- msgid "Role created."
4080
- msgstr ""
4081
-
4082
- #: features/roles-editor/roles-editor.php:302
4083
- msgid "Role saved."
4084
- msgstr ""
4085
-
4086
- #: features/roles-editor/roles-editor.php:303
4087
- msgid "Role submitted."
4088
- msgstr ""
4089
-
4090
- #: features/roles-editor/roles-editor.php:304
4091
- msgid "Role scheduled for: <strong>%1$s</strong>"
4092
- msgstr ""
4093
-
4094
- #: features/roles-editor/roles-editor.php:304
4095
- msgid "M j, Y @ G:i"
4096
- msgstr ""
4097
-
4098
- #: features/roles-editor/roles-editor.php:305
4099
- msgid "Role draft updated."
4100
- msgstr ""
4101
-
4102
- #: features/roles-editor/roles-editor.php:364
4103
- msgid "Role Name"
4104
- msgstr ""
4105
-
4106
- #: features/roles-editor/roles-editor.php:365
4107
- #: features/roles-editor/roles-editor.php:529
4108
- #: modules/user-listing/userlisting.php:160
4109
- msgid "Role Slug"
4110
- msgstr ""
4111
-
4112
- #: features/roles-editor/roles-editor.php:366
4113
- #: features/roles-editor/roles-editor.php:523
4114
- msgid "Capabilities"
4115
- msgstr ""
4116
-
4117
- #: features/roles-editor/roles-editor.php:367
4118
- #: features/roles-editor/roles-editor.php:474
4119
- #: features/roles-editor/roles-editor.php:518
4120
- msgid "Users"
4121
- msgstr ""
4122
-
4123
- #: features/roles-editor/roles-editor.php:413
4124
- msgid "Edit Role Capabilities"
4125
- msgstr ""
4126
-
4127
- #: features/roles-editor/roles-editor.php:424
4128
- msgid "Add a new capability"
4129
- msgstr ""
4130
-
4131
- #: features/roles-editor/roles-editor.php:427
4132
- msgid "Add Capability"
4133
- msgstr ""
4134
-
4135
- #: features/roles-editor/roles-editor.php:434
4136
- msgid "Please select an existing capability or add a new one!"
4137
- msgstr ""
4138
-
4139
- #: features/roles-editor/roles-editor.php:435
4140
- msgid "You can't add a hidden capability!"
4141
- msgstr ""
4142
-
4143
- #: features/roles-editor/roles-editor.php:436
4144
- msgid "This capability already exists!"
4145
- msgstr ""
4146
-
4147
- #: features/roles-editor/roles-editor.php:442
4148
- msgid "All"
4149
- msgstr ""
4150
-
4151
- #: features/roles-editor/roles-editor.php:446
4152
- msgid "General"
4153
- msgstr ""
4154
-
4155
- #: features/roles-editor/roles-editor.php:450
4156
- #: modules/user-listing/userlisting.php:306
4157
- #: modules/user-listing/userlisting.php:801
4158
- msgid "Posts"
4159
- msgstr ""
4160
-
4161
- #: features/roles-editor/roles-editor.php:454
4162
- msgid "Pages"
4163
- msgstr ""
4164
-
4165
- #: features/roles-editor/roles-editor.php:458
4166
- msgid "Media"
4167
- msgstr ""
4168
-
4169
- #: features/roles-editor/roles-editor.php:462
4170
- msgid "Taxonomies"
4171
- msgstr ""
4172
-
4173
- #: features/roles-editor/roles-editor.php:466
4174
- msgid "Appearance"
4175
- msgstr ""
4176
-
4177
- #: features/roles-editor/roles-editor.php:470
4178
- msgid "Plugins"
4179
- msgstr ""
4180
-
4181
- #: features/roles-editor/roles-editor.php:478
4182
- msgid "Custom"
4183
- msgstr ""
4184
-
4185
- #: features/roles-editor/roles-editor.php:877
4186
- msgid "Clone"
4187
- msgstr ""
4188
-
4189
- #: features/roles-editor/roles-editor.php:884
4190
- msgid "You can't delete your role."
4191
- msgstr ""
4192
-
4193
- #: features/roles-editor/roles-editor.php:892
4194
- msgid "Change Default"
4195
- msgstr ""
4196
-
4197
- #: features/roles-editor/roles-editor.php:893
4198
- msgid "You can't delete the default role. Change it first."
4199
- msgstr ""
4200
-
4201
- #: features/roles-editor/roles-editor.php:903
4202
- msgid ""
4203
- "Are you sure?\\nThis will permanently delete the role and cannot be undone!"
4204
- "\\nUsers assigned only on this role will be moved to the default role."
4205
- msgstr ""
4206
-
4207
- #: features/roles-editor/roles-editor.php:1116
4208
- msgid "Edit User Roles"
4209
- msgstr ""
4210
-
4211
- #: features/upgrades/upgrades-functions.php:91
4212
- #: features/upgrades/upgrades-functions.php:134
4213
- msgid "The usernames cannot be changed."
4214
- msgstr ""
4215
-
4216
- #: front-end/class-formbuilder.php:124
4217
- msgid ""
4218
- "The role of the created user set to the default role. Only an administrator "
4219
- "can register a user with the role assigned to this form."
4220
- msgstr ""
4221
-
4222
- #: front-end/class-formbuilder.php:136
4223
- msgid "Only an administrator can add new users."
4224
- msgstr ""
4225
-
4226
- #: front-end/class-formbuilder.php:146
4227
- msgid "Users can register themselves or you can manually create users here."
4228
- msgstr ""
4229
-
4230
- #: front-end/class-formbuilder.php:146 front-end/class-formbuilder.php:149
4231
- msgid "This message is only visible by administrators"
4232
- msgstr ""
4233
-
4234
- #: front-end/class-formbuilder.php:149
4235
- msgid ""
4236
- "Users cannot currently register themselves, but you can manually create "
4237
- "users here."
4238
- msgstr ""
4239
-
4240
- #: front-end/class-formbuilder.php:169
4241
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
4242
- msgstr ""
4243
-
4244
- #: front-end/class-formbuilder.php:169
4245
- msgid "Log out of this account."
4246
- msgstr ""
4247
-
4248
- #: front-end/class-formbuilder.php:169
4249
- msgid "Logout"
4250
- msgstr ""
4251
-
4252
- #: front-end/class-formbuilder.php:175
4253
- msgid "You must be logged in to edit your profile."
4254
- msgstr ""
4255
-
4256
- #: front-end/class-formbuilder.php:315 front-end/class-formbuilder.php:322
4257
- msgid "The account %1s has been successfully created!"
4258
- msgstr ""
4259
-
4260
- #: front-end/class-formbuilder.php:318 front-end/class-formbuilder.php:328
4261
- msgid ""
4262
- "Before you can access your account %1s, you need to confirm your email "
4263
- "address. Please check your inbox and click the activation link."
4264
- msgstr ""
4265
-
4266
- #: front-end/class-formbuilder.php:324
4267
- msgid ""
4268
- "Before you can access your account %1s, an administrator has to approve it. "
4269
- "You will be notified via email."
4270
- msgstr ""
4271
-
4272
- #: front-end/class-formbuilder.php:347
4273
- msgid "Your profile has been successfully updated!"
4274
- msgstr ""
4275
-
4276
- #: front-end/class-formbuilder.php:358
4277
- msgid "There was an error in the submitted form"
4278
- msgstr ""
4279
-
4280
- #: front-end/class-formbuilder.php:415
4281
- msgid "Add User"
4282
- msgstr ""
4283
-
4284
- #: front-end/class-formbuilder.php:415 front-end/login.php:263
4285
- msgid "Register"
4286
- msgstr ""
4287
-
4288
- #: front-end/class-formbuilder.php:481
4289
- msgid "Send these credentials via email."
4290
- msgstr ""
4291
-
4292
- #: front-end/class-formbuilder.php:675
4293
- msgid "User to edit:"
4294
- msgstr ""
4295
-
4296
- #: front-end/class-formbuilder.php:709
4297
- msgid "Something went wrong. Please try again!"
4298
- msgstr ""
4299
-
4300
- #: front-end/default-fields/blog-details/blog-details.php:63
4301
- msgid "Yes, I'd like to create a new site"
4302
- msgstr ""
4303
-
4304
- #: front-end/default-fields/blog-details/blog-details.php:70
4305
- msgid "Your site url will look like this:<br>"
4306
- msgstr ""
4307
-
4308
- #: front-end/default-fields/blog-details/blog-details.php:93
4309
- msgid "Site URL slug"
4310
- msgstr ""
4311
-
4312
- #: front-end/default-fields/blog-details/blog-details.php:116
4313
- msgid "Site Title"
4314
- msgstr ""
4315
-
4316
- #: front-end/default-fields/blog-details/blog-details.php:138
4317
- msgid ""
4318
- "Privacy: I would like my site to appear in search engines, and in public "
4319
- "listings around this network."
4320
- msgstr ""
4321
-
4322
- #: front-end/default-fields/email/email.php:47
4323
- msgid "The email you entered is not a valid email address."
4324
- msgstr ""
4325
-
4326
- #: front-end/default-fields/email/email.php:51
4327
- msgid "You must enter a valid email address."
4328
- msgstr ""
4329
-
4330
- #: front-end/default-fields/email/email.php:60
4331
- #: front-end/default-fields/email/email.php:67
4332
- msgid "This email is already reserved to be used soon."
4333
- msgstr ""
4334
-
4335
- #: front-end/default-fields/email/email.php:60
4336
- #: front-end/default-fields/email/email.php:67
4337
- #: front-end/default-fields/email/email.php:77
4338
- #: front-end/default-fields/email/email.php:95
4339
- #: front-end/default-fields/username/username.php:49
4340
- #: front-end/default-fields/username/username.php:65
4341
- msgid "Please try a different one!"
4342
- msgstr ""
4343
-
4344
- #: front-end/default-fields/email/email.php:77
4345
- #: front-end/default-fields/email/email.php:95
4346
- msgid "This email is already in use."
4347
- msgstr ""
4348
-
4349
- #: front-end/default-fields/password/password.php:47 front-end/recover.php:266
4350
- msgid "The password must have the minimum length of %s characters"
4351
- msgstr ""
4352
-
4353
- #: front-end/default-fields/password/password.php:51 front-end/recover.php:270
4354
- msgid "The password must have a minimum strength of %s"
4355
- msgstr ""
4356
-
4357
- #: front-end/default-fields/password-repeat/password-repeat.php:37
4358
- #: front-end/default-fields/password-repeat/password-repeat.php:41
4359
- msgid "The passwords do not match"
4360
- msgstr ""
4361
-
4362
- #: front-end/default-fields/recaptcha/recaptcha.php:48
4363
- msgid "To use reCAPTCHA you must get an API key from"
4364
- msgstr ""
4365
-
4366
- #: front-end/default-fields/recaptcha/recaptcha.php:131
4367
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4368
- msgstr ""
4369
-
4370
- #: front-end/default-fields/recaptcha/recaptcha.php:192
4371
- msgid "To use reCAPTCHA you must get an API public key from:"
4372
- msgstr ""
4373
-
4374
- #: front-end/default-fields/recaptcha/recaptcha.php:421
4375
- msgid "Click the BACK button on your browser, and try again."
4376
- msgstr ""
4377
-
4378
- #: front-end/default-fields/user-role/user-role.php:92
4379
- #: front-end/default-fields/user-role/user-role.php:105
4380
- msgid "Only administrators can see this field on edit profile forms."
4381
- msgstr ""
4382
-
4383
- #: front-end/default-fields/user-role/user-role.php:101
4384
- msgid "As an administrator you cannot change your role."
4385
- msgstr ""
4386
-
4387
- #: front-end/default-fields/user-role/user-role.php:130
4388
- #: front-end/default-fields/user-role/user-role.php:154
4389
- #: front-end/default-fields/user-role/user-role.php:159
4390
- msgid "You cannot register this user role"
4391
- msgstr ""
4392
-
4393
- #: front-end/default-fields/username/username.php:49
4394
- msgid "This username already exists."
4395
- msgstr ""
4396
-
4397
- #: front-end/default-fields/username/username.php:52
4398
- #: front-end/default-fields/username/username.php:60
4399
- msgid "This username is invalid because it uses illegal characters."
4400
- msgstr ""
4401
-
4402
- #: front-end/default-fields/username/username.php:52
4403
- #: front-end/default-fields/username/username.php:60
4404
- msgid "Please enter a valid username."
4405
- msgstr ""
4406
-
4407
- #: front-end/default-fields/username/username.php:65
4408
- msgid "This username is already reserved to be used soon."
4409
- msgstr ""
4410
-
4411
- #: front-end/extra-fields/avatar/avatar.php:74
4412
- #: front-end/extra-fields/checkbox/checkbox.php:45
4413
- #: front-end/extra-fields/colorpicker/colorpicker.php:45
4414
- #: front-end/extra-fields/datepicker/datepicker.php:40
4415
- #: front-end/extra-fields/input/input.php:30
4416
- #: front-end/extra-fields/input-hidden/input-hidden.php:34
4417
- #: front-end/extra-fields/map/map.php:51
4418
- #: front-end/extra-fields/number/number.php:30
4419
- #: front-end/extra-fields/phone/phone.php:39
4420
- #: front-end/extra-fields/radio/radio.php:44
4421
- #: front-end/extra-fields/select/select.php:51
4422
- #: front-end/extra-fields/select-cpt/select-cpt.php:58
4423
- #: front-end/extra-fields/select-multiple/select-multiple.php:46
4424
- #: front-end/extra-fields/select-timezone/select-timezone.php:49
4425
- #: front-end/extra-fields/textarea/textarea.php:30
4426
- #: front-end/extra-fields/upload/upload.php:70
4427
- #: front-end/extra-fields/wysiwyg/wysiwyg.php:33
4428
- msgid "required"
4429
- msgstr ""
4430
-
4431
- #: front-end/extra-fields/extra-fields.php:92 front-end/login.php:150
4432
- #: front-end/login.php:157 front-end/login.php:171 front-end/recover.php:17
4433
- #: front-end/recover.php:249
4434
- msgid "ERROR"
4435
- msgstr ""
4436
-
4437
- #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69
4438
- msgid "Please add the Google Maps API key for this field."
4439
- msgstr ""
4440
-
4441
- #: front-end/extra-fields/map/map.php:134
4442
- msgid "Something went wrong. Please try again."
4443
- msgstr ""
4444
-
4445
- #: front-end/extra-fields/number/number.php:69
4446
- msgid "Please enter numbers only"
4447
- msgstr ""
4448
-
4449
- #: front-end/extra-fields/number/number.php:73
4450
- msgid "Value must be a multiplier of %1$s"
4451
- msgstr ""
4452
-
4453
- #: front-end/extra-fields/number/number.php:77
4454
- msgid "Value must be greater than or equal to %1$s"
4455
- msgstr ""
4456
-
4457
- #: front-end/extra-fields/number/number.php:81
4458
- msgid "Value must be less than or equal to %1$s"
4459
- msgstr ""
4460
-
4461
- #: front-end/extra-fields/phone/phone.php:22
4462
- msgid "Required phone number format: "
4463
- msgstr ""
4464
-
4465
- #: front-end/extra-fields/select-country/select-country.php:10
4466
- msgid "Bolivia, __( Plurinational State of"
4467
- msgstr ""
4468
-
4469
- #: front-end/extra-fields/select-country/select-country.php:10
4470
- msgid "Bonaire, __( Sint Eustatius and Saba"
4471
- msgstr ""
4472
-
4473
- #: front-end/extra-fields/select-country/select-country.php:10
4474
- msgid "Brunei Darussalam"
4475
- msgstr ""
4476
-
4477
- #: front-end/extra-fields/select-country/select-country.php:10
4478
- msgid "Cabo Verde"
4479
- msgstr ""
4480
-
4481
- #: front-end/extra-fields/select-country/select-country.php:10
4482
- msgid "Cocos (Keeling) Islands"
4483
- msgstr ""
4484
-
4485
- #: front-end/extra-fields/select-country/select-country.php:10
4486
- msgid "Congo"
4487
- msgstr ""
4488
-
4489
- #: front-end/extra-fields/select-country/select-country.php:10
4490
- msgid "Congo, __( the Democratic Republic of the"
4491
- msgstr ""
4492
-
4493
- #: front-end/extra-fields/select-country/select-country.php:10
4494
- msgid "Cote dIvoire"
4495
- msgstr ""
4496
-
4497
- #: front-end/extra-fields/select-country/select-country.php:10
4498
- msgid "Falkland Islands (Malvinas)"
4499
- msgstr ""
4500
-
4501
- #: front-end/extra-fields/select-country/select-country.php:10
4502
- msgid "Holy See (Vatican City State)"
4503
- msgstr ""
4504
-
4505
- #: front-end/extra-fields/select-country/select-country.php:10
4506
- msgid "Iran, __( Islamic Republic of"
4507
- msgstr ""
4508
-
4509
- #: front-end/extra-fields/select-country/select-country.php:10
4510
- msgid "Korea, __( Democratic Peoples Republic of"
4511
- msgstr ""
4512
-
4513
- #: front-end/extra-fields/select-country/select-country.php:10
4514
- msgid "Korea, __( Republic of"
4515
- msgstr ""
4516
-
4517
- #: front-end/extra-fields/select-country/select-country.php:10
4518
- msgid "Lao Peoples Democratic Republic"
4519
- msgstr ""
4520
-
4521
- #: front-end/extra-fields/select-country/select-country.php:10
4522
- msgid "Macedonia, __( the former Yugoslav Republic of"
4523
- msgstr ""
4524
-
4525
- #: front-end/extra-fields/select-country/select-country.php:10
4526
- msgid "Micronesia, __( Federated States of"
4527
- msgstr ""
4528
-
4529
- #: front-end/extra-fields/select-country/select-country.php:10
4530
- msgid "Moldova, __( Republic of"
4531
- msgstr ""
4532
-
4533
- #: front-end/extra-fields/select-country/select-country.php:10
4534
- msgid "Palestine, __( State of"
4535
- msgstr ""
4536
-
4537
- #: front-end/extra-fields/select-country/select-country.php:10
4538
- msgid "Russian Federation"
4539
- msgstr ""
4540
-
4541
- #: front-end/extra-fields/select-country/select-country.php:10
4542
- msgid "Saint Helena, __( Ascension and Tristan da Cunha"
4543
- msgstr ""
4544
-
4545
- #: front-end/extra-fields/select-country/select-country.php:10
4546
- msgid "Saint Martin (French part)"
4547
- msgstr ""
4548
-
4549
- #: front-end/extra-fields/select-country/select-country.php:10
4550
- msgid "Sint Maarten (Dutch part)"
4551
- msgstr ""
4552
-
4553
- #: front-end/extra-fields/select-country/select-country.php:10
4554
- msgid "Syrian Arab Republic"
4555
- msgstr ""
4556
-
4557
- #: front-end/extra-fields/select-country/select-country.php:10
4558
- msgid "Taiwan, __( Province of China"
4559
- msgstr ""
4560
-
4561
- #: front-end/extra-fields/select-country/select-country.php:10
4562
- msgid "Tanzania, __( United Republic of"
4563
- msgstr ""
4564
-
4565
- #: front-end/extra-fields/select-country/select-country.php:10
4566
- msgid "Timor-Leste"
4567
- msgstr ""
4568
-
4569
- #: front-end/extra-fields/select-country/select-country.php:10
4570
- msgid "Venezuela, __( Bolivarian Republic of"
4571
- msgstr ""
4572
-
4573
- #: front-end/extra-fields/select-country/select-country.php:10
4574
- msgid "Viet Nam"
4575
- msgstr ""
4576
-
4577
- #: front-end/extra-fields/select-country/select-country.php:10
4578
- msgid "Virgin Islands, __( British"
4579
- msgstr ""
4580
-
4581
- #: front-end/extra-fields/select-country/select-country.php:10
4582
- msgid "Virgin Islands, __( U.S."
4583
- msgstr ""
4584
-
4585
- #: front-end/extra-fields/upload/upload.php:122
4586
- msgid "Select File"
4587
- msgstr ""
4588
-
4589
- #: front-end/extra-fields/upload/upload_helper_functions.php:78
4590
- #: front-end/extra-fields/upload/upload_helper_functions.php:87
4591
- msgid "Sorry, you cannot upload this file type for this field."
4592
- msgstr ""
4593
-
4594
- #: front-end/extra-fields/upload/upload_helper_functions.php:94
4595
- msgid "An error occurred, please try again later."
4596
- msgstr ""
4597
-
4598
- #: front-end/login.php:150
4599
- msgid "The password you entered is incorrect."
4600
- msgstr ""
4601
-
4602
- #: front-end/login.php:151 front-end/login.php:158
4603
- msgid "Password Lost and Found."
4604
- msgstr ""
4605
-
4606
- #: front-end/login.php:151 front-end/login.php:158
4607
- msgid "Lost your password"
4608
- msgstr ""
4609
-
4610
- #: front-end/login.php:157
4611
- msgid "Invalid username."
4612
- msgstr ""
4613
-
4614
- #: front-end/login.php:162 front-end/login.php:166
4615
- msgid "username"
4616
- msgstr ""
4617
-
4618
- #: front-end/login.php:162
4619
- msgid "email"
4620
- msgstr ""
4621
-
4622
- #: front-end/login.php:166
4623
- msgid "username or email"
4624
- msgstr ""
4625
-
4626
- #: front-end/login.php:171
4627
- msgid "Both fields are empty."
4628
- msgstr ""
4629
-
4630
- #: front-end/login.php:235
4631
- msgid "Username or Email"
4632
- msgstr ""
4633
-
4634
- #: front-end/login.php:269
4635
- msgid "Lost your password?"
4636
- msgstr ""
4637
-
4638
- #: front-end/login.php:308 front-end/logout.php:25
4639
- msgid "Log out of this account"
4640
- msgstr ""
4641
-
4642
- #: front-end/login.php:308
4643
- msgid "Log out"
4644
- msgstr ""
4645
-
4646
- #: front-end/login.php:309
4647
- msgid "You are currently logged in as %1$s. %2$s"
4648
- msgstr ""
4649
-
4650
- #: front-end/logout.php:15
4651
- msgid "You are currently logged in as %s. "
4652
- msgstr ""
4653
-
4654
- #: front-end/logout.php:15
4655
- msgid "Log out &raquo;"
4656
- msgstr ""
4657
-
4658
- #: front-end/recover.php:17
4659
- msgid ""
4660
- "Your account has to be confirmed by an administrator before you can use the "
4661
- "\"Password Reset\" feature."
4662
- msgstr ""
4663
-
4664
- #: front-end/recover.php:95
4665
- msgid "Reset Password"
4666
- msgstr ""
4667
-
4668
- #: front-end/recover.php:118
4669
- msgid "Please enter your email address."
4670
- msgstr ""
4671
-
4672
- #: front-end/recover.php:122
4673
- msgid "Please enter your username or email address."
4674
- msgstr ""
4675
-
4676
- #: front-end/recover.php:123
4677
- msgid "Username or E-mail"
4678
- msgstr ""
4679
-
4680
- #: front-end/recover.php:126
4681
- msgid "You will receive a link to create a new password via email."
4682
- msgstr ""
4683
-
4684
- #: front-end/recover.php:139
4685
- msgid "Get New Password"
4686
- msgstr ""
4687
-
4688
- #: front-end/recover.php:160
4689
- msgid ""
4690
- "You are already logged in. You can change your password on the edit profile "
4691
- "form."
4692
- msgstr ""
4693
-
4694
- #: front-end/recover.php:186
4695
- msgid "The username entered wasn't found in the database!"
4696
- msgstr ""
4697
-
4698
- #: front-end/recover.php:186
4699
- msgid "Please check that you entered the correct username."
4700
- msgstr ""
4701
-
4702
- #: front-end/recover.php:201
4703
- msgid "Check your e-mail for the confirmation link."
4704
- msgstr ""
4705
-
4706
- #: front-end/recover.php:208
4707
- msgid "The email address entered wasn't found in the database!"
4708
- msgstr ""
4709
-
4710
- #: front-end/recover.php:208
4711
- msgid "Please check that you entered the correct email address."
4712
- msgstr ""
4713
-
4714
- #: front-end/recover.php:236
4715
- msgid ""
4716
- "Someone requested that the password be reset for the following account: <b>"
4717
- "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
4718
- "happen.<br/>To reset your password, visit the following link:%2$s"
4719
- msgstr ""
4720
-
4721
- #: front-end/recover.php:239
4722
- msgid "Password Reset from \"%1$s\""
4723
- msgstr ""
4724
-
4725
- #: front-end/recover.php:249
4726
- msgid "There was an error while trying to send the activation link to %1$s!"
4727
- msgstr ""
4728
-
4729
- #: front-end/recover.php:277
4730
- msgid "Your password has been successfully changed!"
4731
- msgstr ""
4732
-
4733
- #: front-end/recover.php:296
4734
- msgid "You have successfully reset your password."
4735
- msgstr ""
4736
-
4737
- #: front-end/recover.php:299 front-end/recover.php:313
4738
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
4739
- msgstr ""
4740
-
4741
- #: front-end/recover.php:310
4742
- msgid ""
4743
- "%1$s has requested a password change via the password reset feature.<br/>His/"
4744
- "her new password is:%2$s"
4745
- msgstr ""
4746
-
4747
- #: front-end/recover.php:329
4748
- msgid "The entered passwords don't match!"
4749
- msgstr ""
4750
-
4751
- #: front-end/recover.php:384
4752
- msgid "ERROR:"
4753
- msgstr ""
4754
-
4755
- #: front-end/recover.php:384
4756
- msgid "Invalid key!"
4757
- msgstr ""
4758
-
4759
- #: front-end/register.php:56
4760
- msgid "Invalid activation key!"
4761
- msgstr ""
4762
-
4763
- #: front-end/register.php:60
4764
- msgid "This username is now active!"
4765
- msgstr ""
4766
-
4767
- #: front-end/register.php:74
4768
- msgid "This username is already activated!"
4769
- msgstr ""
4770
-
4771
- #: front-end/register.php:124
4772
- msgid "Your email was successfully confirmed."
4773
- msgstr ""
4774
-
4775
- #: front-end/register.php:153
4776
- msgid "There was an error while trying to activate the user."
4777
- msgstr ""
4778
-
4779
- #: modules/custom-redirects/custom_redirects_admin.php:45
4780
- msgid "After Login"
4781
- msgstr ""
4782
-
4783
- #: modules/custom-redirects/custom_redirects_admin.php:46
4784
- msgid "After Logout"
4785
- msgstr ""
4786
-
4787
- #: modules/custom-redirects/custom_redirects_admin.php:47
4788
- msgid "After Registration"
4789
- msgstr ""
4790
-
4791
- #: modules/custom-redirects/custom_redirects_admin.php:48
4792
- msgid "After Edit Profile"
4793
- msgstr ""
4794
-
4795
- #: modules/custom-redirects/custom_redirects_admin.php:49
4796
- msgid "After Successful Email Confirmation"
4797
- msgstr ""
4798
-
4799
- #: modules/custom-redirects/custom_redirects_admin.php:50
4800
- msgid "After Successful Password Reset"
4801
- msgstr ""
4802
-
4803
- #: modules/custom-redirects/custom_redirects_admin.php:51
4804
- msgid "Dashboard (redirect users from accessing the dashboard)"
4805
- msgstr ""
4806
-
4807
- #: modules/custom-redirects/custom_redirects_admin.php:55
4808
- msgid "User ID"
4809
- msgstr ""
4810
-
4811
- #: modules/custom-redirects/custom_redirects_admin.php:61
4812
- msgid "User ID or Username"
4813
- msgstr ""
4814
-
4815
- #: modules/custom-redirects/custom_redirects_admin.php:62
4816
- msgid "User ID / Username"
4817
- msgstr ""
4818
-
4819
- #: modules/custom-redirects/custom_redirects_admin.php:62
4820
- msgid "Please select and enter the ID or username of your user."
4821
- msgstr ""
4822
-
4823
- #: modules/custom-redirects/custom_redirects_admin.php:63
4824
- #: modules/custom-redirects/custom_redirects_admin.php:93
4825
- #: modules/custom-redirects/custom_redirects_admin.php:112
4826
- #: modules/custom-redirects/custom_redirects_admin.php:131
4827
- msgid "Redirect Type"
4828
- msgstr ""
4829
-
4830
- #: modules/custom-redirects/custom_redirects_admin.php:64
4831
- #: modules/custom-redirects/custom_redirects_admin.php:94
4832
- #: modules/custom-redirects/custom_redirects_admin.php:113
4833
- #: modules/custom-redirects/custom_redirects_admin.php:138
4834
- msgid ""
4835
- "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, "
4836
- "{{user_id}}, {{user_nicename}}, {{http_referer}}"
4837
- msgstr ""
4838
-
4839
- #: modules/custom-redirects/custom_redirects_admin.php:71
4840
- #: modules/custom-redirects/custom_redirects_admin.php:241
4841
- msgid "Individual User Redirects"
4842
- msgstr ""
4843
-
4844
- #: modules/custom-redirects/custom_redirects_admin.php:84
4845
- msgid "... Choose"
4846
- msgstr ""
4847
-
4848
- #: modules/custom-redirects/custom_redirects_admin.php:92
4849
- #: modules/email-customizer/email-customizer.php:31
4850
- msgid "User Role"
4851
- msgstr ""
4852
-
4853
- #: modules/custom-redirects/custom_redirects_admin.php:92
4854
- msgid "Select a user role."
4855
- msgstr ""
4856
-
4857
- #: modules/custom-redirects/custom_redirects_admin.php:101
4858
- #: modules/custom-redirects/custom_redirects_admin.php:242
4859
- msgid "User Role based Redirects"
4860
- msgstr ""
4861
-
4862
- #: modules/custom-redirects/custom_redirects_admin.php:120
4863
- #: modules/custom-redirects/custom_redirects_admin.php:243
4864
- msgid "Global Redirects"
4865
- msgstr ""
4866
-
4867
- #: modules/custom-redirects/custom_redirects_admin.php:133
4868
- msgid "Login ( wp_login.php )"
4869
- msgstr ""
4870
-
4871
- #: modules/custom-redirects/custom_redirects_admin.php:134
4872
- msgid "Register ( wp-login.php?action=register )"
4873
- msgstr ""
4874
-
4875
- #: modules/custom-redirects/custom_redirects_admin.php:135
4876
- msgid "Lost Password ( wp-login.php?action=lostpassword )"
4877
- msgstr ""
4878
-
4879
- #: modules/custom-redirects/custom_redirects_admin.php:136
4880
- msgid "Author Archive ( http://sitename.com/author/admin )"
4881
- msgstr ""
4882
-
4883
- #: modules/custom-redirects/custom_redirects_admin.php:145
4884
- msgid "Redirect Default WordPress Forms and Pages"
4885
- msgstr ""
4886
-
4887
- #: modules/custom-redirects/custom_redirects_admin.php:157
4888
- msgid "How does this work?"
4889
- msgstr ""
4890
-
4891
- #: modules/custom-redirects/custom_redirects_admin.php:179
4892
- msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
4893
- msgstr ""
4894
-
4895
- #: modules/custom-redirects/custom_redirects_admin.php:193
4896
- msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
4897
- msgstr ""
4898
-
4899
- #: modules/custom-redirects/custom_redirects_admin.php:207
4900
- #: modules/custom-redirects/custom_redirects_admin.php:221
4901
- msgid "<pre>Redirect</pre><pre>URL</pre>"
4902
- msgstr ""
4903
-
4904
- #: modules/custom-redirects/custom_redirects_admin.php:236
4905
- msgid ""
4906
- "These redirects happen after a successful action, like registration or after "
4907
- "a successful login."
4908
- msgstr ""
4909
-
4910
- #: modules/custom-redirects/custom_redirects_admin.php:238
4911
- msgid "Which redirect happens depends on the following priority:"
4912
- msgstr ""
4913
-
4914
- #: modules/custom-redirects/custom_redirects_admin.php:240
4915
- msgid "Multiple Registration and Edit Profile form settings Redirects"
4916
- msgstr ""
4917
-
4918
- #: modules/custom-redirects/custom_redirects_admin.php:244
4919
- msgid ""
4920
- "Individual redirects defined in shortcodes; <strong><em>redirect_priority="
4921
- "\"top\"</em></strong> parameter can be added in any shortcode, then that "
4922
- "shortcode redirect will have priority over all other redirects."
4923
- msgstr ""
4924
-
4925
- #: modules/custom-redirects/custom_redirects_admin.php:247
4926
- msgid "Redirect Default WordPress forms and pages"
4927
- msgstr ""
4928
-
4929
- #: modules/custom-redirects/custom_redirects_admin.php:248
4930
- msgid ""
4931
- "With these you can redirect various WordPress forms and pages to pages "
4932
- "created with profile builder."
4933
- msgstr ""
4934
-
4935
- #: modules/custom-redirects/custom_redirects_admin.php:250
4936
- msgid "Available tags for dynamic URLs"
4937
- msgstr ""
4938
-
4939
- #: modules/custom-redirects/custom_redirects_admin.php:251
4940
- msgid ""
4941
- "You use the following tags in your URLs to redirect users to various pages."
4942
- msgstr ""
4943
-
4944
- #: modules/custom-redirects/custom_redirects_admin.php:253
4945
- msgid "generates a url of the current website homepage."
4946
- msgstr ""
4947
-
4948
- #: modules/custom-redirects/custom_redirects_admin.php:254
4949
- msgid ""
4950
- "in WordPress the <a target='_blank' href='https://codex.wordpress.org/"
4951
- "Function_Reference/site_url'>site url</a> can be different then the home url"
4952
- msgstr ""
4953
-
4954
- #: modules/custom-redirects/custom_redirects_admin.php:255
4955
- msgid "the ID of the user"
4956
- msgstr ""
4957
-
4958
- #: modules/custom-redirects/custom_redirects_admin.php:256
4959
- msgid ""
4960
- "the URL sanitized version of the username, the user nicename can be safely "
4961
- "used in URLs since it can't contain special characters or spaces."
4962
- msgstr ""
4963
-
4964
- #: modules/custom-redirects/custom_redirects_admin.php:257
4965
- msgid "the URL of the previously visited page"
4966
- msgstr ""
4967
-
4968
- #: modules/custom-redirects/custom_redirects_admin.php:340
4969
- #: modules/custom-redirects/custom_redirects_admin.php:346
4970
- #: modules/custom-redirects/custom_redirects_admin.php:352
4971
- msgid "You can't add duplicate redirects!"
4972
- msgstr ""
4973
-
4974
- #: modules/email-customizer/admin-email-customizer.php:11
4975
- #: modules/email-customizer/admin-email-customizer.php:12
4976
- #: modules/modules.php:96
4977
- msgid "Admin Email Customizer"
4978
- msgstr ""
4979
-
4980
- #: modules/email-customizer/admin-email-customizer.php:38
4981
- msgid ""
4982
- "These settings are also replicated in the \"User Email Customizer\" settings-"
4983
- "page upon save."
4984
- msgstr ""
4985
-
4986
- #: modules/email-customizer/admin-email-customizer.php:38
4987
- #: modules/email-customizer/user-email-customizer.php:38
4988
- msgid "Valid tags {{reply_to}} and {{site_name}}"
4989
- msgstr ""
4990
-
4991
- #: modules/email-customizer/admin-email-customizer.php:41
4992
- #: modules/email-customizer/user-email-customizer.php:41
4993
- msgid "From (name)"
4994
- msgstr ""
4995
-
4996
- #: modules/email-customizer/admin-email-customizer.php:49
4997
- #: modules/email-customizer/user-email-customizer.php:49
4998
- msgid "From (reply-to email)"
4999
- msgstr ""
5000
-
5001
- #: modules/email-customizer/admin-email-customizer.php:54
5002
- #: modules/email-customizer/user-email-customizer.php:54
5003
- msgid ""
5004
- "Must be a valid email address or the tag {{reply_to}} which defaults to the "
5005
- "administrator email"
5006
- msgstr ""
5007
-
5008
- #: modules/email-customizer/admin-email-customizer.php:57
5009
- #: modules/email-customizer/user-email-customizer.php:57
5010
- msgid "Common Settings"
5011
- msgstr ""
5012
-
5013
- #: modules/email-customizer/admin-email-customizer.php:60
5014
- msgid ""
5015
- "\n"
5016
- "<p>New subscriber on {{site_name}}.</p>\n"
5017
- "<p>Username:{{username}}</p>\n"
5018
- "<p>E-mail:{{user_email}}</p>\n"
5019
- msgstr ""
5020
-
5021
- #: modules/email-customizer/admin-email-customizer.php:69
5022
- #: modules/email-customizer/admin-email-customizer.php:99
5023
- #: modules/email-customizer/admin-email-customizer.php:126
5024
- #: modules/email-customizer/user-email-customizer.php:71
5025
- #: modules/email-customizer/user-email-customizer.php:99
5026
- #: modules/email-customizer/user-email-customizer.php:128
5027
- #: modules/email-customizer/user-email-customizer.php:155
5028
- #: modules/email-customizer/user-email-customizer.php:183
5029
- #: modules/email-customizer/user-email-customizer.php:214
5030
- #: modules/email-customizer/user-email-customizer.php:241
5031
- #: modules/email-customizer/user-email-customizer.php:274
5032
- msgid "Email Subject"
5033
- msgstr ""
5034
-
5035
- #: modules/email-customizer/admin-email-customizer.php:84
5036
- msgid "Default Registration & Registration with Email Confirmation"
5037
- msgstr ""
5038
-
5039
- #: modules/email-customizer/admin-email-customizer.php:87
5040
- msgid ""
5041
- "\n"
5042
- "<p>New subscriber on {{site_name}}.</p>\n"
5043
- "<p>Username:{{username}}</p>\n"
5044
- "<p>E-mail:{{user_email}}</p>\n"
5045
- "<p>The Admin Approval feature was activated at the time of registration,\n"
5046
- "so please remember that you need to approve this user before he/she can log "
5047
- "in!</p>\n"
5048
- msgstr ""
5049
-
5050
- #: modules/email-customizer/admin-email-customizer.php:114
5051
- #: modules/email-customizer/user-email-customizer.php:143
5052
- msgid "Registration with Admin Approval"
5053
- msgstr ""
5054
-
5055
- #: modules/email-customizer/admin-email-customizer.php:117
5056
- msgid ""
5057
- "\n"
5058
- "<p>{{username}} has requested a password change via the password reset "
5059
- "feature.</p>\n"
5060
- "<p>His/her new password is: {{password}}</p>\n"
5061
- msgstr ""
5062
-
5063
- #: modules/email-customizer/admin-email-customizer.php:141
5064
- msgid "Admin Notification for User Password Reset"
5065
- msgstr ""
5066
-
5067
- #: modules/email-customizer/email-customizer.php:7
5068
- msgid "Available Tags"
5069
- msgstr ""
5070
-
5071
- #: modules/email-customizer/email-customizer.php:11
5072
- #: modules/user-listing/userlisting.php:212
5073
- msgid "User Fields Tags"
5074
- msgstr ""
5075
-
5076
- #: modules/email-customizer/email-customizer.php:21
5077
- msgid "Site Url"
5078
- msgstr ""
5079
-
5080
- #: modules/email-customizer/email-customizer.php:22
5081
- msgid "Site Name"
5082
- msgstr ""
5083
-
5084
- #: modules/email-customizer/email-customizer.php:25
5085
- #: modules/user-listing/userlisting.php:169
5086
- msgid "User Id"
5087
- msgstr ""
5088
-
5089
- #: modules/email-customizer/email-customizer.php:32
5090
- msgid "User Role Label"
5091
- msgstr ""
5092
-
5093
- #: modules/email-customizer/email-customizer.php:34
5094
- msgid "Reply To"
5095
- msgstr ""
5096
-
5097
- #: modules/email-customizer/email-customizer.php:37
5098
- #: modules/user-listing/userlisting.php:127
5099
- msgid "Blog URL"
5100
- msgstr ""
5101
-
5102
- #: modules/email-customizer/email-customizer.php:41
5103
- msgid "Activation Key"
5104
- msgstr ""
5105
-
5106
- #: modules/email-customizer/email-customizer.php:42
5107
- msgid "Activation Url"
5108
- msgstr ""
5109
-
5110
- #: modules/email-customizer/email-customizer.php:43
5111
- msgid "Activation Link"
5112
- msgstr ""
5113
-
5114
- #: modules/email-customizer/email-customizer.php:47
5115
- msgid "Reset Key"
5116
- msgstr ""
5117
-
5118
- #: modules/email-customizer/email-customizer.php:48
5119
- msgid "Reset Url"
5120
- msgstr ""
5121
-
5122
- #: modules/email-customizer/email-customizer.php:49
5123
- msgid "Reset Link"
5124
- msgstr ""
5125
-
5126
- #: modules/email-customizer/email-customizer.php:480
5127
- msgid "The users selected password at signup"
5128
- msgstr ""
5129
-
5130
- #: modules/email-customizer/user-email-customizer.php:11
5131
- #: modules/email-customizer/user-email-customizer.php:12
5132
- #: modules/modules.php:103
5133
- msgid "User Email Customizer"
5134
- msgstr ""
5135
-
5136
- #: modules/email-customizer/user-email-customizer.php:38
5137
- msgid ""
5138
- "These settings are also replicated in the \"Admin Email Customizer\" "
5139
- "settings-page upon save."
5140
- msgstr ""
5141
-
5142
- #: modules/email-customizer/user-email-customizer.php:64
5143
- msgid ""
5144
- "\n"
5145
- "<h3>Welcome to {{site_name}}!</h3>\n"
5146
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5147
- msgstr ""
5148
-
5149
- #: modules/email-customizer/user-email-customizer.php:85
5150
- msgid "Default Registration"
5151
- msgstr ""
5152
-
5153
- #: modules/email-customizer/user-email-customizer.php:91
5154
- msgid ""
5155
- "\n"
5156
- "<p>To activate your user, please click the following link:<br/>\n"
5157
- "{{{activation_link}}}</p>\n"
5158
- "<p>After you activate, you will receive another email with your credentials."
5159
- "</p>\n"
5160
- msgstr ""
5161
-
5162
- #: modules/email-customizer/user-email-customizer.php:103
5163
- msgid "[{{site_name}}] Activate {{username}}"
5164
- msgstr ""
5165
-
5166
- #: modules/email-customizer/user-email-customizer.php:114
5167
- msgid "Registration with Email Confirmation"
5168
- msgstr ""
5169
-
5170
- #: modules/email-customizer/user-email-customizer.php:120
5171
- msgid ""
5172
- "\n"
5173
- "<h3>Welcome to {{site_name}}!</h3>\n"
5174
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5175
- "<p>Before you can access your account, an administrator needs to approve it. "
5176
- "You will be notified via email.</p>\n"
5177
- msgstr ""
5178
-
5179
- #: modules/email-customizer/user-email-customizer.php:132
5180
- msgid "A new account has been created for you on {{site_name}}"
5181
- msgstr ""
5182
-
5183
- #: modules/email-customizer/user-email-customizer.php:148
5184
- msgid ""
5185
- "\n"
5186
- "<h3>Good News!</h3>\n"
5187
- "<p>An administrator has just approved your account: {{username}} on "
5188
- "{{site_name}}.</p>\n"
5189
- msgstr ""
5190
-
5191
- #: modules/email-customizer/user-email-customizer.php:159
5192
- msgid "Your account on {{site_name}} has been approved!"
5193
- msgstr ""
5194
-
5195
- #: modules/email-customizer/user-email-customizer.php:170
5196
- msgid "User Approval Notification"
5197
- msgstr ""
5198
-
5199
- #: modules/email-customizer/user-email-customizer.php:175
5200
- msgid ""
5201
- "\n"
5202
- "<h3>Hello,</h3>\n"
5203
- "<p>Unfortunatelly an administrator has just unapproved your account: "
5204
- "{{username}} on {{site_name}}.</p>\n"
5205
- msgstr ""
5206
-
5207
- #: modules/email-customizer/user-email-customizer.php:187
5208
- msgid "Your account on {{site_name}} has been unapproved!"
5209
- msgstr ""
5210
-
5211
- #: modules/email-customizer/user-email-customizer.php:198
5212
- msgid "Unapproved User Notification"
5213
- msgstr ""
5214
-
5215
- #: modules/email-customizer/user-email-customizer.php:204
5216
- msgid ""
5217
- "\n"
5218
- "<p>Someone requested that the password be reset for the following account: "
5219
- "{{site_name}}<br/>\n"
5220
- "Username: {{username}}</p>\n"
5221
- "<p>If this was a mistake, just ignore this email and nothing will happen.</"
5222
- "p>\n"
5223
- "<p>To reset your password, visit the following address:<br/>\n"
5224
- "{{{reset_link}}}</p>\n"
5225
- msgstr ""
5226
-
5227
- #: modules/email-customizer/user-email-customizer.php:218
5228
- msgid "[{{site_name}}] Password Reset"
5229
- msgstr ""
5230
-
5231
- #: modules/email-customizer/user-email-customizer.php:229
5232
- msgid "Password Reset Email"
5233
- msgstr ""
5234
-
5235
- #: modules/email-customizer/user-email-customizer.php:235
5236
- msgid ""
5237
- "\n"
5238
- "<p>You have successfully reset your password.</p>\n"
5239
- msgstr ""
5240
-
5241
- #: modules/email-customizer/user-email-customizer.php:245
5242
- msgid "[{{site_name}}] Password Reset Successfully"
5243
- msgstr ""
5244
-
5245
- #: modules/email-customizer/user-email-customizer.php:256
5246
- msgid "Password Reset Success Email"
5247
- msgstr ""
5248
-
5249
- #: modules/email-customizer/user-email-customizer.php:278
5250
- msgid "[{{site_name}}] Notice of Email Change"
5251
- msgstr ""
5252
-
5253
- #: modules/email-customizer/user-email-customizer.php:289
5254
- msgid "Changed Email Address Notification"
5255
- msgstr ""
5256
-
5257
- #: modules/modules.php:11 modules/modules.php:58
5258
- msgid "Modules"
5259
- msgstr ""
5260
-
5261
- #: modules/modules.php:59
5262
- msgid ""
5263
- "Here you can activate / deactivate available modules for Profile Builder."
5264
- msgstr ""
5265
-
5266
- #: modules/modules.php:69
5267
- msgid "Name/Description"
5268
- msgstr ""
5269
-
5270
- #: modules/modules.php:70
5271
- msgid "Status"
5272
- msgstr ""
5273
-
5274
- #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
5275
- #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
5276
- #: modules/modules.php:119
5277
- msgid "Active"
5278
- msgstr ""
5279
-
5280
- #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
5281
- #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
5282
- #: modules/modules.php:120
5283
- msgid "Inactive"
5284
- msgstr ""
5285
-
5286
- #: modules/multiple-forms/edit-profile-forms.php:11
5287
- #: modules/multiple-forms/edit-profile-forms.php:12
5288
- msgid "Edit-profile Form"
5289
- msgstr ""
5290
-
5291
- #: modules/multiple-forms/edit-profile-forms.php:13
5292
- #: modules/multiple-forms/register-forms.php:13
5293
- #: modules/user-listing/userlisting.php:13
5294
- msgid "Add New"
5295
- msgstr ""
5296
-
5297
- #: modules/multiple-forms/edit-profile-forms.php:14
5298
- msgid "Add new Edit-profile Form"
5299
- msgstr ""
5300
-
5301
- #: modules/multiple-forms/edit-profile-forms.php:15
5302
- msgid "Edit the Edit-profile Forms"
5303
- msgstr ""
5304
-
5305
- #: modules/multiple-forms/edit-profile-forms.php:16
5306
- msgid "New Edit-profile Form"
5307
- msgstr ""
5308
-
5309
- #: modules/multiple-forms/edit-profile-forms.php:17
5310
- #: modules/multiple-forms/edit-profile-forms.php:23
5311
- msgid "Edit-profile Forms"
5312
- msgstr ""
5313
-
5314
- #: modules/multiple-forms/edit-profile-forms.php:18
5315
- msgid "View the Edit-profile Form"
5316
- msgstr ""
5317
-
5318
- #: modules/multiple-forms/edit-profile-forms.php:19
5319
- msgid "Search the Edit-profile Forms"
5320
- msgstr ""
5321
-
5322
- #: modules/multiple-forms/edit-profile-forms.php:20
5323
- msgid "No Edit-profile Form found"
5324
- msgstr ""
5325
-
5326
- #: modules/multiple-forms/edit-profile-forms.php:21
5327
- msgid "No Edit-profile Forms found in trash"
5328
- msgstr ""
5329
-
5330
- #: modules/multiple-forms/edit-profile-forms.php:135
5331
- #: modules/multiple-forms/register-forms.php:138
5332
- #: modules/user-listing/userlisting.php:2160
5333
- msgid "Shortcode"
5334
- msgstr ""
5335
-
5336
- #: modules/multiple-forms/edit-profile-forms.php:155
5337
- #: modules/multiple-forms/register-forms.php:159
5338
- #: modules/user-listing/userlisting.php:2181
5339
- msgid "(no title)"
5340
- msgstr ""
5341
-
5342
- #: modules/multiple-forms/edit-profile-forms.php:175
5343
- #: modules/multiple-forms/register-forms.php:178
5344
- #: modules/user-listing/userlisting.php:2201
5345
- msgid "The shortcode will be available after you publish this form."
5346
- msgstr ""
5347
-
5348
- #: modules/multiple-forms/edit-profile-forms.php:177
5349
- #: modules/multiple-forms/register-forms.php:180
5350
- #: modules/user-listing/userlisting.php:2203
5351
- msgid "Use this shortcode on the page you want the form to be displayed:"
5352
- msgstr ""
5353
-
5354
- #: modules/multiple-forms/edit-profile-forms.php:181
5355
- #: modules/multiple-forms/register-forms.php:184
5356
- #: modules/user-listing/userlisting.php:2207
5357
- msgid ""
5358
- "<span style=\"color:red;\">Note:</span> changing the form title also changes "
5359
- "the shortcode!"
5360
- msgstr ""
5361
-
5362
- #: modules/multiple-forms/edit-profile-forms.php:187
5363
- #: modules/multiple-forms/register-forms.php:190
5364
- #: modules/user-listing/userlisting.php:2240
5365
- msgid "Form Shortcode"
5366
- msgstr ""
5367
-
5368
- #: modules/multiple-forms/edit-profile-forms.php:206
5369
- #: modules/multiple-forms/register-forms.php:230
5370
- msgid "Whether to redirect the user to a specific page or not"
5371
- msgstr ""
5372
-
5373
- #: modules/multiple-forms/edit-profile-forms.php:207
5374
- #: modules/multiple-forms/register-forms.php:231
5375
- msgid "Display Messages"
5376
- msgstr ""
5377
-
5378
- #: modules/multiple-forms/edit-profile-forms.php:207
5379
- #: modules/multiple-forms/register-forms.php:231
5380
- msgid "Allowed time to display any success messages (in seconds)"
5381
- msgstr ""
5382
-
5383
- #: modules/multiple-forms/edit-profile-forms.php:208
5384
- #: modules/multiple-forms/register-forms.php:232
5385
- msgid "URL"
5386
- msgstr ""
5387
-
5388
- #: modules/multiple-forms/edit-profile-forms.php:208
5389
- msgid ""
5390
- "Specify the URL of the page users will be redirected once they updated their "
5391
- "profile using this form<br/>Use the following format: http://www.mysite.com"
5392
- msgstr ""
5393
-
5394
- #: modules/multiple-forms/edit-profile-forms.php:215
5395
- msgid "After Profile Update..."
5396
- msgstr ""
5397
-
5398
- #: modules/multiple-forms/edit-profile-forms.php:241
5399
- #: modules/multiple-forms/register-forms.php:262
5400
- msgid "Add New Field to the List"
5401
- msgstr ""
5402
-
5403
- #: modules/multiple-forms/edit-profile-forms.php:274
5404
- msgid "This form is empty."
5405
- msgstr ""
5406
-
5407
- #: modules/multiple-forms/multiple-forms.php:222
5408
- msgid "You need to specify the title of the form before creating it"
5409
- msgstr ""
5410
-
5411
- #: modules/multiple-forms/multiple-forms.php:406
5412
- msgid "<pre>Title (Type)</pre>"
5413
- msgstr ""
5414
-
5415
- #: modules/multiple-forms/multiple-forms.php:406
5416
- msgid "Delete all items"
5417
- msgstr ""
5418
-
5419
- #: modules/multiple-forms/multiple-forms.php:406
5420
- msgid "Delete all"
5421
- msgstr ""
5422
-
5423
- #: modules/multiple-forms/register-forms.php:11
5424
- #: modules/multiple-forms/register-forms.php:12
5425
- msgid "Registration Form"
5426
- msgstr ""
5427
-
5428
- #: modules/multiple-forms/register-forms.php:14
5429
- msgid "Add new Registration Form"
5430
- msgstr ""
5431
-
5432
- #: modules/multiple-forms/register-forms.php:15
5433
- msgid "Edit the Registration Forms"
5434
- msgstr ""
5435
-
5436
- #: modules/multiple-forms/register-forms.php:16
5437
- msgid "New Registration Form"
5438
- msgstr ""
5439
-
5440
- #: modules/multiple-forms/register-forms.php:17
5441
- #: modules/multiple-forms/register-forms.php:23
5442
- msgid "Registration Forms"
5443
- msgstr ""
5444
-
5445
- #: modules/multiple-forms/register-forms.php:18
5446
- msgid "View the Registration Form"
5447
- msgstr ""
5448
-
5449
- #: modules/multiple-forms/register-forms.php:19
5450
- msgid "Search the Registration Forms"
5451
- msgstr ""
5452
-
5453
- #: modules/multiple-forms/register-forms.php:20
5454
- msgid "No Registration Form found"
5455
- msgstr ""
5456
-
5457
- #: modules/multiple-forms/register-forms.php:21
5458
- msgid "No Registration Forms found in trash"
5459
- msgstr ""
5460
-
5461
- #: modules/multiple-forms/register-forms.php:228
5462
- msgid "Set Role"
5463
- msgstr ""
5464
-
5465
- #: modules/multiple-forms/register-forms.php:228
5466
- msgid ""
5467
- "Choose what role the user will have after (s)he registered<br/>If not "
5468
- "specified, defaults to the role set in the WordPress settings"
5469
- msgstr ""
5470
-
5471
- #: modules/multiple-forms/register-forms.php:229
5472
- msgid "Automatically Log In"
5473
- msgstr ""
5474
-
5475
- #: modules/multiple-forms/register-forms.php:229
5476
- msgid ""
5477
- "Whether to automatically log in the newly registered user or not<br/>Only "
5478
- "works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
5479
- "features activated<br/>WARNING: Caching the registration form will make "
5480
- "automatic login not work"
5481
- msgstr ""
5482
-
5483
- #: modules/multiple-forms/register-forms.php:232
5484
- msgid ""
5485
- "Specify the URL of the page users will be redirected once registered using "
5486
- "this form<br/>Use the following format: http://www.mysite.com"
5487
- msgstr ""
5488
-
5489
- #: modules/multiple-forms/register-forms.php:238
5490
- msgid "After Registration..."
5491
- msgstr ""
5492
-
5493
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
5494
- msgid "Limit"
5495
- msgstr ""
5496
-
5497
- #: modules/repeater-field/admin/repeater-manage-fields.php:190
5498
- msgid ""
5499
- "Enable limit to the number of fields to be generated by users in front end "
5500
- "forms "
5501
- msgstr ""
5502
-
5503
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
5504
- msgid "General Limit"
5505
- msgstr ""
5506
-
5507
- #: modules/repeater-field/admin/repeater-manage-fields.php:191
5508
- msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
5509
- msgstr ""
5510
-
5511
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
5512
- msgid "Limit reached message"
5513
- msgstr ""
5514
-
5515
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
5516
- msgid "The maximum number of fields has been reached."
5517
- msgstr ""
5518
-
5519
- #: modules/repeater-field/admin/repeater-manage-fields.php:192
5520
- msgid ""
5521
- "The popup message to display when the limit of repeater groups is reached."
5522
- msgstr ""
5523
-
5524
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
5525
- msgid "Limit per Role"
5526
- msgstr ""
5527
-
5528
- #: modules/repeater-field/admin/repeater-manage-fields.php:193
5529
- msgid "Leave 0 for unlimited."
5530
- msgstr ""
5531
-
5532
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
5533
- msgid "Repeated field group"
5534
- msgstr ""
5535
-
5536
- #: modules/repeater-field/admin/repeater-manage-fields.php:194
5537
- msgid "Manage field or group of fields that will be repeatable."
5538
- msgstr ""
5539
-
5540
- #: modules/repeater-field/admin/repeater-manage-fields.php:259
5541
- msgid "Edit field group"
5542
- msgstr ""
5543
-
5544
- #: modules/repeater-field/admin/repeater-manage-fields.php:260
5545
- msgid "Repeatable fields saved!"
5546
- msgstr ""
5547
-
5548
- #: modules/repeater-field/admin/repeater-manage-fields.php:277
5549
- #: modules/repeater-field/admin/repeater-manage-fields.php:326
5550
- msgid "Please enter a unique field title.\n"
5551
- msgstr ""
5552
-
5553
- #: modules/repeater-field/repeater-field.php:267
5554
- msgid "Are you sure you want to delete this?"
5555
- msgstr ""
5556
-
5557
- #: modules/user-listing/userlisting.php:14
5558
- msgid "Add new User Listing"
5559
- msgstr ""
5560
-
5561
- #: modules/user-listing/userlisting.php:15
5562
- msgid "Edit the User Listing"
5563
- msgstr ""
5564
-
5565
- #: modules/user-listing/userlisting.php:16
5566
- msgid "New User Listing"
5567
- msgstr ""
5568
-
5569
- #: modules/user-listing/userlisting.php:18
5570
- msgid "View the User Listing"
5571
- msgstr ""
5572
-
5573
- #: modules/user-listing/userlisting.php:19
5574
- msgid "Search the User Listing"
5575
- msgstr ""
5576
-
5577
- #: modules/user-listing/userlisting.php:20
5578
- msgid "No User Listing found"
5579
- msgstr ""
5580
-
5581
- #: modules/user-listing/userlisting.php:21
5582
- msgid "No User Listing found in trash"
5583
- msgstr ""
5584
-
5585
- #: modules/user-listing/userlisting.php:114
5586
- msgid "Display name as"
5587
- msgstr ""
5588
-
5589
- #: modules/user-listing/userlisting.php:161
5590
- #: modules/user-listing/userlisting.php:2268
5591
- msgid "Registration Date"
5592
- msgstr ""
5593
-
5594
- #: modules/user-listing/userlisting.php:162
5595
- #: modules/user-listing/userlisting.php:2273
5596
- msgid "Number of Posts"
5597
- msgstr ""
5598
-
5599
- #: modules/user-listing/userlisting.php:166
5600
- msgid "More Info"
5601
- msgstr ""
5602
-
5603
- #: modules/user-listing/userlisting.php:167
5604
- msgid "More Info Url"
5605
- msgstr ""
5606
-
5607
- #: modules/user-listing/userlisting.php:168
5608
- msgid "Avatar or Gravatar"
5609
- msgstr ""
5610
-
5611
- #: modules/user-listing/userlisting.php:170
5612
- msgid "User Nicename"
5613
- msgstr ""
5614
-
5615
- #: modules/user-listing/userlisting.php:218
5616
- msgid "Sort Tags"
5617
- msgstr ""
5618
-
5619
- #: modules/user-listing/userlisting.php:222
5620
- #: modules/user-listing/userlisting.php:253
5621
- msgid "Extra Functions"
5622
- msgstr ""
5623
-
5624
- #: modules/user-listing/userlisting.php:225
5625
- msgid "Pagination"
5626
- msgstr ""
5627
-
5628
- #: modules/user-listing/userlisting.php:226
5629
- msgid "Search all Fields"
5630
- msgstr ""
5631
-
5632
- #: modules/user-listing/userlisting.php:227
5633
- #: modules/user-listing/userlisting.php:2353
5634
- msgid "Faceted Menus"
5635
- msgstr ""
5636
-
5637
- #: modules/user-listing/userlisting.php:228
5638
- msgid "User Count"
5639
- msgstr ""
5640
-
5641
- #: modules/user-listing/userlisting.php:255
5642
- msgid "Go Back Link"
5643
- msgstr ""
5644
-
5645
- #: modules/user-listing/userlisting.php:273
5646
- msgid "All-userlisting Template"
5647
- msgstr ""
5648
-
5649
- #: modules/user-listing/userlisting.php:276
5650
- msgid "Single-userlisting Template"
5651
- msgstr ""
5652
-
5653
- #: modules/user-listing/userlisting.php:302
5654
- msgid "Avatar"
5655
- msgstr ""
5656
-
5657
- #: modules/user-listing/userlisting.php:307
5658
- #: modules/user-listing/userlisting.php:783
5659
- msgid "Sign-up Date"
5660
- msgstr ""
5661
-
5662
- #: modules/user-listing/userlisting.php:308
5663
- msgid "More"
5664
- msgstr ""
5665
-
5666
- #: modules/user-listing/userlisting.php:402
5667
- msgid "You do not have permission to view this user list."
5668
- msgstr ""
5669
-
5670
- #: modules/user-listing/userlisting.php:415
5671
- msgid "You do not have the required user role to view this user list."
5672
- msgstr ""
5673
-
5674
- #: modules/user-listing/userlisting.php:439
5675
- msgid "User not found"
5676
- msgstr ""
5677
-
5678
- #: modules/user-listing/userlisting.php:777
5679
- msgid "First/Lastname"
5680
- msgstr ""
5681
-
5682
- #: modules/user-listing/userlisting.php:792
5683
- #: modules/user-listing/userlisting.php:2271
5684
- msgid "Display Name"
5685
- msgstr ""
5686
-
5687
- #: modules/user-listing/userlisting.php:804
5688
- #: modules/user-listing/userlisting.php:2278
5689
- msgid "Aim"
5690
- msgstr ""
5691
-
5692
- #: modules/user-listing/userlisting.php:807
5693
- #: modules/user-listing/userlisting.php:2279
5694
- msgid "Yim"
5695
- msgstr ""
5696
-
5697
- #: modules/user-listing/userlisting.php:810
5698
- #: modules/user-listing/userlisting.php:2280
5699
- msgid "Jabber"
5700
- msgstr ""
5701
-
5702
- #: modules/user-listing/userlisting.php:1082
5703
- #: modules/user-listing/userlisting.php:1530
5704
- #: modules/user-listing/userlisting.php:1998
5705
- #: modules/user-listing/userlisting.php:2471
5706
- msgid "Search Users by All Fields"
5707
- msgstr ""
5708
-
5709
- #: modules/user-listing/userlisting.php:1335
5710
- msgid "Click here to see more information about this user"
5711
- msgstr ""
5712
-
5713
- #: modules/user-listing/userlisting.php:1335
5714
- msgid "More..."
5715
- msgstr ""
5716
-
5717
- #: modules/user-listing/userlisting.php:1338
5718
- msgid "Click here to see more information about this user."
5719
- msgstr ""
5720
-
5721
- #: modules/user-listing/userlisting.php:1365
5722
- msgid "View Map"
5723
- msgstr ""
5724
-
5725
- #: modules/user-listing/userlisting.php:1484
5726
- #: modules/user-listing/userlisting.php:1487
5727
- msgid "Click here to go back"
5728
- msgstr ""
5729
-
5730
- #: modules/user-listing/userlisting.php:1484
5731
- msgid "Back"
5732
- msgstr ""
5733
-
5734
- #: modules/user-listing/userlisting.php:1517
5735
- msgid "&laquo;&laquo; First"
5736
- msgstr ""
5737
-
5738
- #: modules/user-listing/userlisting.php:1518
5739
- msgid "&laquo; Prev"
5740
- msgstr ""
5741
-
5742
- #: modules/user-listing/userlisting.php:1519
5743
- msgid "Next &raquo; "
5744
- msgstr ""
5745
-
5746
- #: modules/user-listing/userlisting.php:1520
5747
- msgid "Last &raquo;&raquo;"
5748
- msgstr ""
5749
-
5750
- #: modules/user-listing/userlisting.php:1549
5751
- msgid "You don't have any pagination settings on this userlisting!"
5752
- msgstr ""
5753
-
5754
- #: modules/user-listing/userlisting.php:1598
5755
- msgid "Show All"
5756
- msgstr ""
5757
-
5758
- #: modules/user-listing/userlisting.php:1666
5759
- msgid "Choose..."
5760
- msgstr ""
5761
-
5762
- #: modules/user-listing/userlisting.php:1755
5763
- msgid "No options available"
5764
- msgstr ""
5765
-
5766
- #: modules/user-listing/userlisting.php:1906
5767
- msgid "Remove All Filters"
5768
- msgstr ""
5769
-
5770
- #: modules/user-listing/userlisting.php:2015
5771
- msgid "Search"
5772
- msgstr ""
5773
-
5774
- #: modules/user-listing/userlisting.php:2016
5775
- msgid "Clear Results"
5776
- msgstr ""
5777
-
5778
- #: modules/user-listing/userlisting.php:2210
5779
- #: modules/user-listing/userlisting.php:2214
5780
- msgid "Extra shortcode parameters"
5781
- msgstr ""
5782
-
5783
- #: modules/user-listing/userlisting.php:2212
5784
- msgid "View all extra shortcode parameters"
5785
- msgstr ""
5786
-
5787
- #: modules/user-listing/userlisting.php:2217
5788
- msgid ""
5789
- "displays users having a certain meta-value within a certain (extra) meta-"
5790
- "field"
5791
- msgstr ""
5792
-
5793
- #: modules/user-listing/userlisting.php:2218
5794
- msgid "Example:"
5795
- msgstr ""
5796
-
5797
- #: modules/user-listing/userlisting.php:2220
5798
- msgid ""
5799
- "Remember though, that the field-value combination must exist in the database."
5800
- msgstr ""
5801
-
5802
- #: modules/user-listing/userlisting.php:2226
5803
- msgid "displays only the users that you specified the user_id for"
5804
- msgstr ""
5805
-
5806
- #: modules/user-listing/userlisting.php:2232
5807
- msgid "displays all users except the ones you specified the user_id for"
5808
- msgstr ""
5809
-
5810
- #: modules/user-listing/userlisting.php:2295
5811
- msgid "Random (very slow on large databases > 10K user)"
5812
- msgstr ""
5813
-
5814
- #: modules/user-listing/userlisting.php:2298
5815
- msgid "Ascending"
5816
- msgstr ""
5817
-
5818
- #: modules/user-listing/userlisting.php:2299
5819
- msgid "Descending"
5820
- msgstr ""
5821
-
5822
- #: modules/user-listing/userlisting.php:2307
5823
- msgid "Roles to Display"
5824
- msgstr ""
5825
-
5826
- #: modules/user-listing/userlisting.php:2307
5827
- msgid ""
5828
- "Restrict the userlisting to these selected roles only<br/>If not specified, "
5829
- "defaults to all existing roles"
5830
- msgstr ""
5831
-
5832
- #: modules/user-listing/userlisting.php:2308
5833
- msgid "Number of Users/Page"
5834
- msgstr ""
5835
-
5836
- #: modules/user-listing/userlisting.php:2308
5837
- msgid ""
5838
- "Set the number of users to be displayed on every paginated part of the all-"
5839
- "userlisting"
5840
- msgstr ""
5841
-
5842
- #: modules/user-listing/userlisting.php:2309
5843
- msgid "Default Sorting Criteria"
5844
- msgstr ""
5845
-
5846
- #: modules/user-listing/userlisting.php:2309
5847
- msgid ""
5848
- "Set the default sorting criteria<br/>This can temporarily be changed for "
5849
- "each new session"
5850
- msgstr ""
5851
-
5852
- #: modules/user-listing/userlisting.php:2310
5853
- msgid "Default Sorting Order"
5854
- msgstr ""
5855
-
5856
- #: modules/user-listing/userlisting.php:2310
5857
- msgid ""
5858
- "Set the default sorting order<br/>This can temporarily be changed for each "
5859
- "new session"
5860
- msgstr ""
5861
-
5862
- #: modules/user-listing/userlisting.php:2311
5863
- msgid "Avatar Size (All-userlisting)"
5864
- msgstr ""
5865
-
5866
- #: modules/user-listing/userlisting.php:2311
5867
- msgid "Set the avatar size on the all-userlisting only"
5868
- msgstr ""
5869
-
5870
- #: modules/user-listing/userlisting.php:2312
5871
- msgid "Avatar Size (Single-userlisting)"
5872
- msgstr ""
5873
-
5874
- #: modules/user-listing/userlisting.php:2312
5875
- msgid "Set the avatar size on the single-userlisting only"
5876
- msgstr ""
5877
-
5878
- #: modules/user-listing/userlisting.php:2313
5879
- msgid "Visible only to logged in users?"
5880
- msgstr ""
5881
-
5882
- #: modules/user-listing/userlisting.php:2313
5883
- msgid "The userlisting will only be visible only to the logged in users"
5884
- msgstr ""
5885
-
5886
- #: modules/user-listing/userlisting.php:2314
5887
- msgid "Visible to following Roles"
5888
- msgstr ""
5889
-
5890
- #: modules/user-listing/userlisting.php:2314
5891
- msgid "The userlisting will only be visible to the following roles"
5892
- msgstr ""
5893
-
5894
- #: modules/user-listing/userlisting.php:2320
5895
- msgid "Userlisting Settings"
5896
- msgstr ""
5897
-
5898
- #: modules/user-listing/userlisting.php:2343
5899
- msgid "Label"
5900
- msgstr ""
5901
-
5902
- #: modules/user-listing/userlisting.php:2343
5903
- msgid "Choose the facet name that appears on the frontend"
5904
- msgstr ""
5905
-
5906
- #: modules/user-listing/userlisting.php:2344
5907
- msgid "Facet Type"
5908
- msgstr ""
5909
-
5910
- #: modules/user-listing/userlisting.php:2344
5911
- msgid "Choose the facet menu type"
5912
- msgstr ""
5913
-
5914
- #: modules/user-listing/userlisting.php:2345
5915
- msgid "Facet Meta"
5916
- msgstr ""
5917
-
5918
- #: modules/user-listing/userlisting.php:2345
5919
- msgid "Choose the meta field for the facet menu"
5920
- msgstr ""
5921
-
5922
- #: modules/user-listing/userlisting.php:2346
5923
- msgid "Behaviour"
5924
- msgstr ""
5925
-
5926
- #: modules/user-listing/userlisting.php:2346
5927
- msgid "Narrow the results"
5928
- msgstr ""
5929
-
5930
- #: modules/user-listing/userlisting.php:2346
5931
- msgid "Expand the results"
5932
- msgstr ""
5933
-
5934
- #: modules/user-listing/userlisting.php:2346
5935
- msgid "Choose how multiple selections affect the results"
5936
- msgstr ""
5937
-
5938
- #: modules/user-listing/userlisting.php:2347
5939
- msgid "Visible choices"
5940
- msgstr ""
5941
-
5942
- #: modules/user-listing/userlisting.php:2347
5943
- msgid "Show a toggle link after this many choices. Leave blank for all"
5944
- msgstr ""
5945
-
5946
- #: modules/user-listing/userlisting.php:2370
5947
- msgid "Search Fields"
5948
- msgstr ""
5949
-
5950
- #: modules/user-listing/userlisting.php:2370
5951
- msgid "Choose the fields in which the Search Field will look in"
5952
- msgstr ""
5953
-
5954
- #: modules/user-listing/userlisting.php:2375
5955
- msgid "Search Settings"
5956
- msgstr ""
5957
-
5958
- #: modules/user-listing/userlisting.php:2447
5959
- msgid ""
5960
- "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5961
- msgstr ""
5962
-
5963
- #: modules/user-listing/userlisting.php:2447
5964
- msgid "You can find it in the Profile Builder menu."
5965
- msgstr ""
5966
-
5967
- #: modules/user-listing/userlisting.php:2610
5968
- msgid "No results found!"
5969
- msgstr ""
5970
-
5971
- #. Plugin Name of the plugin/theme
5972
- msgid "Profile Builder Pro"
5973
- msgstr ""
5974
-
5975
- #. Plugin URI of the plugin/theme
5976
- msgid "https://www.cozmoslabs.com/wordpress-profile-builder/"
5977
- msgstr ""
5978
-
5979
- #. Description of the plugin/theme
5980
- msgid ""
5981
- "Login, registration and edit profile shortcodes for the front-end. Also you "
5982
- "can choose what fields should be displayed or add new (custom) ones both in "
5983
- "the front-end and in the dashboard."
5984
- msgstr ""
5985
-
5986
- #. Author of the plugin/theme
5987
- msgid ""
5988
- "Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova"
5989
- msgstr ""
5990
-
5991
- #. Author URI of the plugin/theme
5992
- msgid "https://www.cozmoslabs.com/"
5993
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2018 Profile Builder
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Profile Builder\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "X-Poedit-Basepath: ..\n"
10
+ "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
11
+ "X-Poedit-SearchPath-0: .\n"
12
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+
16
+ #: ../pb-add-on-bbpress/bbpress-page.php:24, ../pb-add-on-bbpress/bbpress-page.php:24
17
+ msgid "bbPress"
18
+ msgstr ""
19
+
20
+ #: ../pb-add-on-bbpress/bbpress-page.php:69
21
+ msgid "bbPress Integration"
22
+ msgstr ""
23
+
24
+ #: ../pb-add-on-bbpress/bbpress-page.php:78
25
+ msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
26
+ msgstr ""
27
+
28
+ #: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, woosync-page.php:80, woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:91
29
+ msgid "None"
30
+ msgstr ""
31
+
32
+ #: ../pb-add-on-bbpress/bbpress-page.php:105
33
+ msgid "Select which Single User-listing managed via Profile Builder should replace the default bbPress user profile."
34
+ msgstr ""
35
+
36
+ #: ../pb-add-on-bbpress/bbpress-page.php:113
37
+ msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
38
+ msgstr ""
39
+
40
+ #: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, woosync-page.php:116
41
+ msgid "Default Edit Profile"
42
+ msgstr ""
43
+
44
+ #: ../pb-add-on-bbpress/bbpress-page.php:141
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:163, ../pb-add-on-bbpress/index.php:169, ../pb-add-on-bbpress/index.php:184, ../pb-add-on-bbpress/index.php:234
49
+ msgid "Topics Started"
50
+ msgstr ""
51
+
52
+ #: ../pb-add-on-bbpress/index.php:164, ../pb-add-on-bbpress/index.php:170, ../pb-add-on-bbpress/index.php:185, ../pb-add-on-bbpress/index.php:236
53
+ msgid "Replies Created"
54
+ msgstr ""
55
+
56
+ #: ../pb-add-on-bbpress/index.php:168, ../pb-add-on-bbpress/index.php:183
57
+ msgid "Forum Role"
58
+ msgstr ""
59
+
60
+ #: ../pb-add-on-bbpress/index.php:308
61
+ msgid "bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!"
62
+ msgstr ""
63
+
64
+ #: ../pb-add-on-buddypress/buddypress-page.php:26, ../pb-add-on-buddypress/buddypress-page.php:26
65
+ msgid "BuddyPress"
66
+ msgstr ""
67
+
68
+ #: ../pb-add-on-buddypress/buddypress-page.php:45
69
+ msgid "BuddyPress Integration"
70
+ msgstr ""
71
+
72
+ #: ../pb-add-on-buddypress/buddypress-page.php:50
73
+ msgid "Import BuddyPress Fields to Profile Builder"
74
+ msgstr ""
75
+
76
+ #: ../pb-add-on-buddypress/buddypress-page.php:53
77
+ msgid "Import BuddyPress Fields"
78
+ msgstr ""
79
+
80
+ #: ../pb-add-on-buddypress/buddypress-page.php:55
81
+ msgid "Create fields in Profile Builder that match the existing ones in BuddyPress and import all the user field entries.<br><a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/add-ons/buddypress/#Import_BuddyPress_Fields_to_Profile_Builder\">Learn more about importing BuddyPress fields</a>."
82
+ msgstr ""
83
+
84
+ #: ../pb-add-on-buddypress/buddypress-page.php:61
85
+ msgid "Registration form:"
86
+ msgstr ""
87
+
88
+ #: ../pb-add-on-buddypress/buddypress-page.php:65, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:82
89
+ msgid "Default Registration"
90
+ msgstr ""
91
+
92
+ #: ../pb-add-on-buddypress/buddypress-page.php:87
93
+ msgid "Select Profile Builder Registration form to replace the BuddyPress Registration form.<br>Registration emails will now be managed in Profile Builder -> User Email Customizer"
94
+ msgstr ""
95
+
96
+ #: ../pb-add-on-buddypress/buddypress-page.php:94
97
+ msgid "Edit Profile form:"
98
+ msgstr ""
99
+
100
+ #: ../pb-add-on-buddypress/buddypress-page.php:120
101
+ msgid "Select Profile Builder Edit Profile form to replace the BuddyPress Profile Edit tab."
102
+ msgstr ""
103
+
104
+ #: ../pb-add-on-buddypress/buddypress-page.php:131
105
+ msgid "User Listing template:"
106
+ msgstr ""
107
+
108
+ #: ../pb-add-on-buddypress/buddypress-page.php:157
109
+ msgid "Select which User Listing template managed by Profile Builder should replace the default BuddyPress user profile view."
110
+ msgstr ""
111
+
112
+ #: ../pb-add-on-buddypress/buddypress-page.php:164
113
+ msgid "Use All-User Listing?"
114
+ msgstr ""
115
+
116
+ #: ../pb-add-on-buddypress/buddypress-page.php:170
117
+ msgid "Enable PB User Listing on BuddyPress Members page"
118
+ msgstr ""
119
+
120
+ #: ../pb-add-on-buddypress/buddypress-page.php:172
121
+ msgid "Check this if All User-listing managed via Profile Builder should replace the default BuddyPress Members page.<br>The template used will be the one selected above."
122
+ msgstr ""
123
+
124
+ #: ../pb-add-on-buddypress/field-visibility.php:20
125
+ msgid "Allow members to override"
126
+ msgstr ""
127
+
128
+ #: ../pb-add-on-buddypress/field-visibility.php:20
129
+ msgid "Enforce field visibility"
130
+ msgstr ""
131
+
132
+ #: ../pb-add-on-buddypress/field-visibility.php:22
133
+ msgid "BuddyPress Default Field Visibility"
134
+ msgstr ""
135
+
136
+ #: ../pb-add-on-buddypress/field-visibility.php:23
137
+ msgid "BuddyPress Allow Custom Visibility"
138
+ msgstr ""
139
+
140
+ #: ../pb-add-on-buddypress/field-visibility.php:105, ../pb-add-on-buddypress/field-visibility.php:119
141
+ msgid "This field can be seen by: "
142
+ msgstr ""
143
+
144
+ #: ../pb-add-on-buddypress/field-visibility.php:105
145
+ msgid "Change"
146
+ msgstr ""
147
+
148
+ #: ../pb-add-on-buddypress/field-visibility.php:110
149
+ msgid "Who can see this field?"
150
+ msgstr ""
151
+
152
+ #: ../pb-add-on-buddypress/field-visibility.php:115
153
+ msgid "Close"
154
+ msgstr ""
155
+
156
+ #: ../pb-add-on-buddypress/field-visibility.php:216, ../pb-add-on-custom-profile-menus/index.php:266
157
+ msgid "Everyone"
158
+ msgstr ""
159
+
160
+ #: ../pb-add-on-buddypress/field-visibility.php:220
161
+ msgid "Only Me"
162
+ msgstr ""
163
+
164
+ #: ../pb-add-on-buddypress/field-visibility.php:224, ../pb-add-on-buddypress/mustache-vars.php:335
165
+ msgid "All Members"
166
+ msgstr ""
167
+
168
+ #: ../pb-add-on-buddypress/field-visibility.php:228, ../pb-add-on-buddypress/mustache-vars.php:339
169
+ msgid "My Friends"
170
+ msgstr ""
171
+
172
+ #: ../pb-add-on-buddypress/import-bp-fields.php:34
173
+ msgid "<h2>Import BuddyPress Fields to Profile Builder</h2>"
174
+ msgstr ""
175
+
176
+ #: ../pb-add-on-buddypress/import-bp-fields.php:40
177
+ msgid "BuddyPress is not installed and active. Import aborted!"
178
+ msgstr ""
179
+
180
+ #: ../pb-add-on-buddypress/import-bp-fields.php:44
181
+ msgid "Importing BuddyPress Field Settings to Profile Builder...<br><br>"
182
+ msgstr ""
183
+
184
+ #: ../pb-add-on-buddypress/import-bp-fields.php:51, ../pb-add-on-buddypress/import-bp-fields.php:328
185
+ msgid "If the page does not redirect automatically"
186
+ msgstr ""
187
+
188
+ #: ../pb-add-on-buddypress/import-bp-fields.php:51, ../pb-add-on-buddypress/import-bp-fields.php:328
189
+ msgid "click here"
190
+ msgstr ""
191
+
192
+ #: ../pb-add-on-buddypress/import-bp-fields.php:53
193
+ msgid "Importing User entries BuddyPress Fields to Profile Builder...<br><br>"
194
+ msgstr ""
195
+
196
+ #: ../pb-add-on-buddypress/import-bp-fields.php:55
197
+ msgid "Done."
198
+ msgstr ""
199
+
200
+ #: ../pb-add-on-buddypress/import-bp-fields.php:55
201
+ msgid "Back to BuddyPress Settings page"
202
+ msgstr ""
203
+
204
+ #: ../pb-add-on-buddypress/index.php:225
205
+ msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
206
+ msgstr ""
207
+
208
+ #: ../pb-add-on-buddypress/index.php:382
209
+ msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
210
+ msgstr ""
211
+
212
+ #: ../pb-add-on-buddypress/index.php:511, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, ../profile-builder-2.0/admin/manage-fields.php:211
213
+ msgid "Name"
214
+ msgstr ""
215
+
216
+ #: ../pb-add-on-buddypress/index.php:514
217
+ msgid "Username:"
218
+ msgstr ""
219
+
220
+ #: ../pb-add-on-buddypress/index.php:518
221
+ msgid "First Name:"
222
+ msgstr ""
223
+
224
+ #: ../pb-add-on-buddypress/index.php:522
225
+ msgid "Last Name:"
226
+ msgstr ""
227
+
228
+ #: ../pb-add-on-buddypress/index.php:526
229
+ msgid "Nickname:"
230
+ msgstr ""
231
+
232
+ #: ../pb-add-on-buddypress/index.php:530
233
+ msgid "Display name:"
234
+ msgstr ""
235
+
236
+ #: ../pb-add-on-buddypress/index.php:534, ../profile-builder-2.0/admin/manage-fields.php:217
237
+ msgid "Contact Info"
238
+ msgstr ""
239
+
240
+ #: ../pb-add-on-buddypress/index.php:537
241
+ msgid "Website:"
242
+ msgstr ""
243
+
244
+ #: ../pb-add-on-buddypress/index.php:541, ../profile-builder-2.0/admin/manage-fields.php:228
245
+ msgid "About Yourself"
246
+ msgstr ""
247
+
248
+ #: ../pb-add-on-buddypress/index.php:544
249
+ msgid "Biographical Info:"
250
+ msgstr ""
251
+
252
+ #: ../pb-add-on-buddypress/mustache-vars.php:15, ../pb-add-on-buddypress/mustache-vars.php:53
253
+ msgid "BuddyPress Avatar"
254
+ msgstr ""
255
+
256
+ #: ../pb-add-on-buddypress/mustache-vars.php:16, ../pb-add-on-buddypress/mustache-vars.php:54
257
+ msgid "BuddyPress Cover Photo"
258
+ msgstr ""
259
+
260
+ #: ../pb-add-on-buddypress/mustache-vars.php:17, ../pb-add-on-buddypress/mustache-vars.php:35, ../pb-add-on-buddypress/mustache-vars.php:262
261
+ msgid "BuddyPress Last Active"
262
+ msgstr ""
263
+
264
+ #: ../pb-add-on-buddypress/mustache-vars.php:21
265
+ msgid "BuddyPress Add Friend Button"
266
+ msgstr ""
267
+
268
+ #: ../pb-add-on-buddypress/mustache-vars.php:24
269
+ msgid "BuddyPress Latest Update"
270
+ msgstr ""
271
+
272
+ #: ../pb-add-on-buddypress/mustache-vars.php:140
273
+ msgid "Never active"
274
+ msgstr ""
275
+
276
+ #: ../pb-add-on-buddypress/mustache-vars.php:245
277
+ msgid "Last Active"
278
+ msgstr ""
279
+
280
+ #: ../pb-add-on-buddypress/mustache-vars.php:278
281
+ msgid "My BuddyPress Friends Tab"
282
+ msgstr ""
283
+
284
+ #: ../pb-add-on-buddypress/mustache-vars.php:379
285
+ msgid "BuddyPress field visibility syntax"
286
+ msgstr ""
287
+
288
+ #: ../pb-add-on-buddypress/mustache-vars.php:399
289
+ msgid "Are you sure you want to reset this template?"
290
+ msgstr ""
291
+
292
+ #: ../pb-add-on-buddypress/mustache-vars.php:399
293
+ msgid "Reset to Default BuddyPress User Listing Templates"
294
+ msgstr ""
295
+
296
+ #: ../pb-add-on-buddypress/mustache-vars.php:400
297
+ msgid "<b>Note:</b> This action is not reversible. All modifications to this template will be lost!"
298
+ msgstr ""
299
+
300
+ #: ../pb-add-on-buddypress/mustache-vars.php:414
301
+ msgid "Reset template"
302
+ msgstr ""
303
+
304
+ #: ../pb-add-on-custom-css-classes-on-fields/index.php:50
305
+ msgid "CSS Class"
306
+ msgstr ""
307
+
308
+ #: ../pb-add-on-custom-css-classes-on-fields/index.php:51
309
+ msgid "Add a class to a field. Should not contain dots(.) and for multiple classes separate by space."
310
+ msgstr ""
311
+
312
+ #: ../pb-add-on-custom-profile-menus/index.php:175
313
+ msgid "Login Label"
314
+ msgstr ""
315
+
316
+ #: ../pb-add-on-custom-profile-menus/index.php:180, ../pb-add-on-custom-profile-menus/index.php:302, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:13, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:60, ../profile-builder-2.0/admin/basic-info.php:36, ../profile-builder-2.0/features/login-widget/login-widget.php:59
317
+ msgid "Login"
318
+ msgstr ""
319
+
320
+ #: ../pb-add-on-custom-profile-menus/index.php:183
321
+ msgid "Logout Label"
322
+ msgstr ""
323
+
324
+ #: ../pb-add-on-custom-profile-menus/index.php:188, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, ../profile-builder-2.0/front-end/class-formbuilder.php:169
325
+ msgid "Logout"
326
+ msgstr ""
327
+
328
+ #: ../pb-add-on-custom-profile-menus/index.php:194
329
+ msgid "Form page URL"
330
+ msgstr ""
331
+
332
+ #: ../pb-add-on-custom-profile-menus/index.php:197
333
+ msgid "Login page URL"
334
+ msgstr ""
335
+
336
+ #: ../pb-add-on-custom-profile-menus/index.php:200
337
+ msgid "Login Form page URL"
338
+ msgstr ""
339
+
340
+ #: ../pb-add-on-custom-profile-menus/index.php:203
341
+ msgid "Edit Profile Form page URL"
342
+ msgstr ""
343
+
344
+ #: ../pb-add-on-custom-profile-menus/index.php:206
345
+ msgid "Register Form page URL"
346
+ msgstr ""
347
+
348
+ #: ../pb-add-on-custom-profile-menus/index.php:245
349
+ msgid "Display Mode"
350
+ msgstr ""
351
+
352
+ #: ../pb-add-on-custom-profile-menus/index.php:252, ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:67
353
+ msgid "Logged In Users"
354
+ msgstr ""
355
+
356
+ #: ../pb-add-on-custom-profile-menus/index.php:259
357
+ msgid "Logged Out Users"
358
+ msgstr ""
359
+
360
+ #: ../pb-add-on-custom-profile-menus/index.php:273
361
+ msgid "Restrict menu item to a minimum role"
362
+ msgstr ""
363
+
364
+ #: ../pb-add-on-custom-profile-menus/index.php:274
365
+ msgid "Works only if Display Mode: Logged In Users is selected"
366
+ msgstr ""
367
+
368
+ #: ../pb-add-on-custom-profile-menus/index.php:305, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:67, ../profile-builder-2.0/admin/basic-info.php:44
369
+ msgid "Edit Profile"
370
+ msgstr ""
371
+
372
+ #: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, ../profile-builder-2.0/front-end/class-formbuilder.php:420, ../profile-builder-2.0/front-end/login.php:263
373
+ msgid "Register"
374
+ msgstr ""
375
+
376
+ #: ../pb-add-on-custom-profile-menus/index.php:314
377
+ msgid "iFrame Title"
378
+ msgstr ""
379
+
380
+ #: ../pb-add-on-custom-profile-menus/index.php:324
381
+ msgid "iFrame Size"
382
+ msgstr ""
383
+
384
+ #: ../pb-add-on-custom-profile-menus/index.php:327
385
+ msgid "Height (px)"
386
+ msgstr ""
387
+
388
+ #: ../pb-add-on-custom-profile-menus/index.php:334
389
+ msgid "Width (px)"
390
+ msgstr ""
391
+
392
+ #: ../pb-add-on-email-confirmation-field/index.php:83
393
+ msgid "The email confirmation does not match your email address."
394
+ msgstr ""
395
+
396
+ #: ../pb-add-on-field-visibility/index.php:202, ../profile-builder-2.0/admin/admin-bar.php:58
397
+ msgid "Visibility"
398
+ msgstr ""
399
+
400
+ #: ../pb-add-on-field-visibility/index.php:202
401
+ msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
402
+ msgstr ""
403
+
404
+ #: ../pb-add-on-field-visibility/index.php:203
405
+ msgid "User Role Visibility"
406
+ msgstr ""
407
+
408
+ #: ../pb-add-on-field-visibility/index.php:203
409
+ msgid "Select which user roles see this field"
410
+ msgstr ""
411
+
412
+ #: ../pb-add-on-field-visibility/index.php:204
413
+ msgid "Location Visibility"
414
+ msgstr ""
415
+
416
+ #: ../pb-add-on-field-visibility/index.php:204
417
+ msgid "Select the locations you wish the field to appear"
418
+ msgstr ""
419
+
420
+ #: ../pb-add-on-field-visibility/index.php:222
421
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
422
+ msgstr ""
423
+
424
+ #: ../pb-add-on-field-visibility/index.php:222, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1204, ../profile-builder-2.0/features/functions.php:743, ../profile-builder-2.0/features/functions.php:750, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:108, ../profile-builder-2.0/features/roles-editor/roles-editor.php:866, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225, ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
425
+ msgid "Edit"
426
+ msgstr ""
427
+
428
+ #: ../pb-add-on-field-visibility/index.php:222, ../profile-builder-2.0/admin/manage-fields.php:1204, ../profile-builder-2.0/features/functions.php:736, ../profile-builder-2.0/features/functions.php:750, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:113, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218, ../profile-builder-2.0/features/roles-editor/roles-editor.php:179, ../profile-builder-2.0/features/roles-editor/roles-editor.php:884, ../profile-builder-2.0/features/roles-editor/roles-editor.php:893, ../profile-builder-2.0/features/roles-editor/roles-editor.php:904, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225
429
+ msgid "Delete"
430
+ msgstr ""
431
+
432
+ #: ../pb-add-on-field-visibility/index.php:243
433
+ msgid "This field is visible only for administrators."
434
+ msgstr ""
435
+
436
+ #: ../pb-add-on-field-visibility/index.php:246
437
+ msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
438
+ msgstr ""
439
+
440
+ #: ../pb-add-on-field-visibility/index.php:269
441
+ msgid "This field is visible only for the following user roles: %1$s"
442
+ msgstr ""
443
+
444
+ #: ../pb-add-on-field-visibility/index.php:315
445
+ msgid "This field is visible only in the following locations: %1$s"
446
+ msgstr ""
447
+
448
+ #: ../pb-add-on-field-visibility/index.php:457
449
+ msgid "Get file"
450
+ msgstr ""
451
+
452
+ #: ../pb-add-on-field-visibility/index.php:586
453
+ msgid "You do not have the capabilities necessary to edit this field."
454
+ msgstr ""
455
+
456
+ #: ../pb-add-on-import-export/pbie-export.php:102
457
+ msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
458
+ msgstr ""
459
+
460
+ #: ../pb-add-on-import-export/pbie-export.php:104, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:318
461
+ msgid "Export"
462
+ msgstr ""
463
+
464
+ #: ../pb-add-on-import-export/pbie-import.php:32
465
+ msgid "Import Profile Builder options from a .json file. This allows you to easily import the configuration from another site. "
466
+ msgstr ""
467
+
468
+ #: ../pb-add-on-import-export/pbie-import.php:38, ../pb-add-on-import-export/pbie.php:54, ../pb-add-on-labels-edit/pble.php:308
469
+ msgid "Import"
470
+ msgstr ""
471
+
472
+ #: ../pb-add-on-import-export/pbie-import.php:38
473
+ msgid "This will overwrite your old PB settings! Are you sure you want to continue?"
474
+ msgstr ""
475
+
476
+ #: ../pb-add-on-import-export/pbie.php:40, ../pb-add-on-import-export/pbie.php:40, ../pb-add-on-import-export/pbie.php:74
477
+ msgid "Import and Export"
478
+ msgstr ""
479
+
480
+ #: ../pb-add-on-labels-edit/pble.php:135
481
+ msgid " labels scanned."
482
+ msgstr ""
483
+
484
+ #: ../pb-add-on-labels-edit/pble.php:184, ../pb-add-on-labels-edit/pble.php:185
485
+ msgid "Labels Edit"
486
+ msgstr ""
487
+
488
+ #: ../pb-add-on-labels-edit/pble.php:203
489
+ msgid "Label to Edit"
490
+ msgstr ""
491
+
492
+ #: ../pb-add-on-labels-edit/pble.php:204
493
+ msgid "New Label"
494
+ msgstr ""
495
+
496
+ #: ../pb-add-on-labels-edit/pble.php:210
497
+ msgid "Edit Labels"
498
+ msgstr ""
499
+
500
+ #: ../pb-add-on-labels-edit/pble.php:226
501
+ msgid "Rescan Lables"
502
+ msgstr ""
503
+
504
+ #: ../pb-add-on-labels-edit/pble.php:251
505
+ msgid "Informations"
506
+ msgstr ""
507
+
508
+ #: ../pb-add-on-labels-edit/pble.php:285
509
+ msgid "Import and Export Labels"
510
+ msgstr ""
511
+
512
+ #: ../pb-add-on-labels-edit/pble.php:299
513
+ msgid "Import Labels from a .json file."
514
+ msgstr ""
515
+
516
+ #: ../pb-add-on-labels-edit/pble.php:301
517
+ msgid "Easily import the labels from another site."
518
+ msgstr ""
519
+
520
+ #: ../pb-add-on-labels-edit/pble.php:308
521
+ msgid ""
522
+ "This will overwrite all your old edited labels!\n"
523
+ "Are you sure you want to continue?"
524
+ msgstr ""
525
+
526
+ #: ../pb-add-on-labels-edit/pble.php:313
527
+ msgid "Export Labels as a .json file."
528
+ msgstr ""
529
+
530
+ #: ../pb-add-on-labels-edit/pble.php:315
531
+ msgid "Easily import the labels into another site."
532
+ msgstr ""
533
+
534
+ #: ../pb-add-on-labels-edit/pble.php:343
535
+ msgid "You must select a label to edit!"
536
+ msgstr ""
537
+
538
+ #: ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:140
539
+ msgid "Labels"
540
+ msgstr ""
541
+
542
+ #: ../pb-add-on-labels-edit/pble.php:354, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
543
+ msgid "Delete all"
544
+ msgstr ""
545
+
546
+ #: ../pb-add-on-labels-edit/pble.php:406
547
+ msgid "No labels edited, nothing to export!"
548
+ msgstr ""
549
+
550
+ #: ../pb-add-on-mailpoet-integration/index.php:127
551
+ msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
552
+ msgstr ""
553
+
554
+ #: ../pb-add-on-maximum-character-length/index.php:47
555
+ msgid "Maximum Character Length"
556
+ msgstr ""
557
+
558
+ #: ../pb-add-on-maximum-character-length/index.php:47
559
+ msgid "Specify the maximum number of characters a user can type in this field"
560
+ msgstr ""
561
+
562
+ #: ../pb-add-on-maximum-character-length/index.php:68
563
+ msgid ""
564
+ "The entered character number is not numerical\n"
565
+ ""
566
+ msgstr ""
567
+
568
+ #: ../pb-add-on-multi-step-forms/index.php:102, ../pb-add-on-multi-step-forms/index.php:534
569
+ msgid "Step"
570
+ msgstr ""
571
+
572
+ #: ../pb-add-on-multi-step-forms/index.php:103
573
+ msgid "Title for Tab"
574
+ msgstr ""
575
+
576
+ #: ../pb-add-on-multi-step-forms/index.php:104
577
+ msgid "Add Break Points to edit tabs title."
578
+ msgstr ""
579
+
580
+ #: ../pb-add-on-multi-step-forms/index.php:105
581
+ msgid "Publish the form to edit tabs title."
582
+ msgstr ""
583
+
584
+ #: ../pb-add-on-multi-step-forms/index.php:106, ../pb-add-on-multi-step-forms/index.php:224
585
+ msgid "Publish the form before adding Break Points!"
586
+ msgstr ""
587
+
588
+ #: ../pb-add-on-multi-step-forms/index.php:107
589
+ msgid "Request in process, please wait a few seconds before a new one!"
590
+ msgstr ""
591
+
592
+ #: ../pb-add-on-multi-step-forms/index.php:152
593
+ msgid "Multi-Step Forms"
594
+ msgstr ""
595
+
596
+ #: ../pb-add-on-multi-step-forms/index.php:196
597
+ msgid "Multi-Step Forms options updated."
598
+ msgstr ""
599
+
600
+ #: ../pb-add-on-multi-step-forms/index.php:201
601
+ msgid "Enable on:"
602
+ msgstr ""
603
+
604
+ #: ../pb-add-on-multi-step-forms/index.php:202
605
+ msgid "PB Default Register Form"
606
+ msgstr ""
607
+
608
+ #: ../pb-add-on-multi-step-forms/index.php:203
609
+ msgid "PB Default Edit Profile Form"
610
+ msgstr ""
611
+
612
+ #: ../pb-add-on-multi-step-forms/index.php:204
613
+ msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
614
+ msgstr ""
615
+
616
+ #: ../pb-add-on-multi-step-forms/index.php:205, ../pb-add-on-multi-step-forms/index.php:230
617
+ msgid "Pagination and Tabs:"
618
+ msgstr ""
619
+
620
+ #: ../pb-add-on-multi-step-forms/index.php:206, ../pb-add-on-multi-step-forms/index.php:231
621
+ msgid "Enable Pagination"
622
+ msgstr ""
623
+
624
+ #: ../pb-add-on-multi-step-forms/index.php:207, ../pb-add-on-multi-step-forms/index.php:232
625
+ msgid "Enable Tabs"
626
+ msgstr ""
627
+
628
+ #: ../pb-add-on-multi-step-forms/index.php:207, ../pb-add-on-multi-step-forms/index.php:232
629
+ msgid "Edit Tabs Title"
630
+ msgstr ""
631
+
632
+ #: ../pb-add-on-multi-step-forms/index.php:209
633
+ msgid "Update Multi-Step"
634
+ msgstr ""
635
+
636
+ #: ../pb-add-on-multi-step-forms/index.php:229
637
+ msgid "To enable MSF you must add Break Points."
638
+ msgstr ""
639
+
640
+ #: ../pb-add-on-multi-step-forms/index.php:463
641
+ msgid "Next"
642
+ msgstr ""
643
+
644
+ #: ../pb-add-on-multi-step-forms/index.php:464
645
+ msgid "Previous"
646
+ msgstr ""
647
+
648
+ #: ../pb-add-on-placeholder-labels/pbpl.php:142, ../pb-add-on-placeholder-labels/pbpl.php:146
649
+ msgid "Placeholder Labels"
650
+ msgstr ""
651
+
652
+ #: ../pb-add-on-placeholder-labels/pbpl.php:168
653
+ msgid "Replace labels with placeholders:"
654
+ msgstr ""
655
+
656
+ #: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
657
+ msgid "Yes"
658
+ msgstr ""
659
+
660
+ #: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:324, ../profile-builder-2.0/admin/general-settings.php:56, ../profile-builder-2.0/admin/general-settings.php:105, ../profile-builder-2.0/admin/general-settings.php:150, ../profile-builder-2.0/admin/general-settings.php:169, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
661
+ msgid "No"
662
+ msgstr ""
663
+
664
+ #: ../pb-add-on-social-connect/index.php:184, ../pb-add-on-social-connect/index.php:185, ../pb-add-on-social-connect/index.php:291, ../pb-add-on-social-connect/index.php:295
665
+ msgid "Social Connect"
666
+ msgstr ""
667
+
668
+ #: ../pb-add-on-social-connect/index.php:204
669
+ msgid "Display on the Following Forms"
670
+ msgstr ""
671
+
672
+ #: ../pb-add-on-social-connect/index.php:205
673
+ msgid "Disable Registration on"
674
+ msgstr ""
675
+
676
+ #: ../pb-add-on-social-connect/index.php:205
677
+ msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
678
+ msgstr ""
679
+
680
+ #: ../pb-add-on-social-connect/index.php:206
681
+ msgid "Facebook Login"
682
+ msgstr ""
683
+
684
+ #: ../pb-add-on-social-connect/index.php:207
685
+ msgid "Facebook App ID"
686
+ msgstr ""
687
+
688
+ #: ../pb-add-on-social-connect/index.php:208
689
+ msgid "Google+ Login"
690
+ msgstr ""
691
+
692
+ #: ../pb-add-on-social-connect/index.php:209
693
+ msgid "Google+ Client ID"
694
+ msgstr ""
695
+
696
+ #: ../pb-add-on-social-connect/index.php:210
697
+ msgid "Twitter Login"
698
+ msgstr ""
699
+
700
+ #: ../pb-add-on-social-connect/index.php:211
701
+ msgid "Twitter API Key"
702
+ msgstr ""
703
+
704
+ #: ../pb-add-on-social-connect/index.php:212
705
+ msgid "Twitter API Secret"
706
+ msgstr ""
707
+
708
+ #: ../pb-add-on-social-connect/index.php:213
709
+ msgid "LinkedIn Login"
710
+ msgstr ""
711
+
712
+ #: ../pb-add-on-social-connect/index.php:214
713
+ msgid "LinkedIn Client ID"
714
+ msgstr ""
715
+
716
+ #: ../pb-add-on-social-connect/index.php:215
717
+ msgid "Buttons Order"
718
+ msgstr ""
719
+
720
+ #: ../pb-add-on-social-connect/index.php:215
721
+ msgid "Drag and drop the dots to re-order."
722
+ msgstr ""
723
+
724
+ #: ../pb-add-on-social-connect/index.php:216
725
+ msgid "Buttons Re-Order"
726
+ msgstr ""
727
+
728
+ #: ../pb-add-on-social-connect/index.php:216
729
+ msgid "Save the buttons order from the buttons order checkboxes"
730
+ msgstr ""
731
+
732
+ #: ../pb-add-on-social-connect/index.php:217
733
+ msgid "Buttons Location"
734
+ msgstr ""
735
+
736
+ #: ../pb-add-on-social-connect/index.php:217
737
+ msgid "Display social buttons before or after the forms fields."
738
+ msgstr ""
739
+
740
+ #: ../pb-add-on-social-connect/index.php:218
741
+ msgid "Buttons Style"
742
+ msgstr ""
743
+
744
+ #: ../pb-add-on-social-connect/index.php:219
745
+ msgid "Heading Before Buttons (Login/Register)"
746
+ msgstr ""
747
+
748
+ #: ../pb-add-on-social-connect/index.php:219, ../pb-add-on-social-connect/index.php:220
749
+ msgid "Empty field will remove the heading."
750
+ msgstr ""
751
+
752
+ #: ../pb-add-on-social-connect/index.php:220
753
+ msgid "Heading Before Buttons (Edit Profile)"
754
+ msgstr ""
755
+
756
+ #: ../pb-add-on-social-connect/index.php:221
757
+ msgid "Facebook Button Text (Login/Register)"
758
+ msgstr ""
759
+
760
+ #: ../pb-add-on-social-connect/index.php:222
761
+ msgid "Google+ Button Text (Login/Register)"
762
+ msgstr ""
763
+
764
+ #: ../pb-add-on-social-connect/index.php:223
765
+ msgid "Twitter Button Text (Login/Register)"
766
+ msgstr ""
767
+
768
+ #: ../pb-add-on-social-connect/index.php:224
769
+ msgid "LinkedIn Button Text (Login/Register)"
770
+ msgstr ""
771
+
772
+ #: ../pb-add-on-social-connect/index.php:225
773
+ msgid "Facebook Button Text (Edit Profile)"
774
+ msgstr ""
775
+
776
+ #: ../pb-add-on-social-connect/index.php:226
777
+ msgid "Google+ Button Text (Edit Profile)"
778
+ msgstr ""
779
+
780
+ #: ../pb-add-on-social-connect/index.php:227
781
+ msgid "Twitter Button Text (Edit Profile)"
782
+ msgstr ""
783
+
784
+ #: ../pb-add-on-social-connect/index.php:228
785
+ msgid "LinkedIn Button Text (Edit Profile)"
786
+ msgstr ""
787
+
788
+ #: ../pb-add-on-social-connect/index.php:229
789
+ msgid "Unlink Accounts (Edit Profile)"
790
+ msgstr ""
791
+
792
+ #: ../pb-add-on-social-connect/index.php:229
793
+ msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
794
+ msgstr ""
795
+
796
+ #: ../pb-add-on-social-connect/index.php:230
797
+ msgid "Default Social Connect CSS in the Front-end"
798
+ msgstr ""
799
+
800
+ #: ../pb-add-on-social-connect/index.php:236
801
+ msgid "Settings"
802
+ msgstr ""
803
+
804
+ #: ../pb-add-on-social-connect/index.php:250
805
+ msgid "Help"
806
+ msgstr ""
807
+
808
+ #: ../pb-add-on-social-connect/index.php:320
809
+ msgid "Display Social Connect buttons:"
810
+ msgstr ""
811
+
812
+ #: ../pb-add-on-social-connect/index.php:369
813
+ msgid "You have successfully unlinked %% from your account."
814
+ msgstr ""
815
+
816
+ #: ../pb-add-on-social-connect/index.php:380
817
+ msgid "An account with this email address already exists.<br> Do you want to connect it?"
818
+ msgstr ""
819
+
820
+ #: ../pb-add-on-social-connect/index.php:381
821
+ msgid "Please enter your website account password"
822
+ msgstr ""
823
+
824
+ #: ../pb-add-on-social-connect/index.php:382
825
+ msgid "Please enter a new email"
826
+ msgstr ""
827
+
828
+ #: ../pb-add-on-social-connect/index.php:383
829
+ msgid "You have successfully linked your account to %%."
830
+ msgstr ""
831
+
832
+ #: ../pb-add-on-social-connect/index.php:384
833
+ msgid "Something went wrong. Please try again later!"
834
+ msgstr ""
835
+
836
+ #: ../pb-add-on-social-connect/index.php:385
837
+ msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
838
+ msgstr ""
839
+
840
+ #: ../pb-add-on-social-connect/index.php:386
841
+ msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
842
+ msgstr ""
843
+
844
+ #: ../pb-add-on-social-connect/index.php:387
845
+ msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
846
+ msgstr ""
847
+
848
+ #: ../pb-add-on-social-connect/index.php:388, ../profile-builder-2.0/features/admin-approval/admin-approval.php:180
849
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
850
+ msgstr ""
851
+
852
+ #: ../pb-add-on-social-connect/index.php:389
853
+ msgid "You will be redirected in 5 seconds. If not, click %%."
854
+ msgstr ""
855
+
856
+ #: ../pb-add-on-social-connect/index.php:390, ../profile-builder-2.0/features/functions.php:1028
857
+ msgid "here"
858
+ msgstr ""
859
+
860
+ #: ../pb-add-on-social-connect/index.php:391
861
+ msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
862
+ msgstr ""
863
+
864
+ #: ../pb-add-on-social-connect/index.php:392
865
+ msgid "Wrong password!"
866
+ msgstr ""
867
+
868
+ #: ../pb-add-on-social-connect/index.php:393
869
+ msgid "Please enter a valid email!"
870
+ msgstr ""
871
+
872
+ #: ../pb-add-on-social-connect/index.php:394
873
+ msgid "You can only login on this form.<br>Register with your social account on the register form."
874
+ msgstr ""
875
+
876
+ #: ../pb-add-on-social-connect/index.php:400
877
+ msgid "Please enter your Facebook email"
878
+ msgstr ""
879
+
880
+ #: ../pb-add-on-social-connect/index.php:401
881
+ msgid "Please enter your Facebook email!"
882
+ msgstr ""
883
+
884
+ #: ../pb-add-on-social-connect/index.php:413
885
+ msgid "Waiting for Twitter..."
886
+ msgstr ""
887
+
888
+ #: ../pb-add-on-social-connect/index.php:414
889
+ msgid "Please enter your Twitter email"
890
+ msgstr ""
891
+
892
+ #: ../pb-add-on-social-connect/index.php:415
893
+ msgid "Please enter your Twitter email!"
894
+ msgstr ""
895
+
896
+ #: ../pb-add-on-social-connect/index.php:688
897
+ msgid "Profile Builder not active!"
898
+ msgstr ""
899
+
900
+ #: ../pb-add-on-social-connect/index.php:825, ../profile-builder-2.0/admin/admin-functions.php:37, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:35
901
+ msgid "General Settings"
902
+ msgstr ""
903
+
904
+ #: ../pb-add-on-social-connect/index.php:829
905
+ msgid "Application Settings"
906
+ msgstr ""
907
+
908
+ #: ../pb-add-on-social-connect/index.php:833
909
+ msgid "Appearance Settings"
910
+ msgstr ""
911
+
912
+ #: ../pb-add-on-social-connect/index.php:897
913
+ msgid "Unlink"
914
+ msgstr ""
915
+
916
+ #: ../pb-add-on-social-connect/index.php:904
917
+ msgid "Your account is linked with:"
918
+ msgstr ""
919
+
920
+ #: billing-fields.php:5, shipping-fields.php:5
921
+ msgid "Country"
922
+ msgstr ""
923
+
924
+ #: billing-fields.php:6, shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:213
925
+ msgid "First Name"
926
+ msgstr ""
927
+
928
+ #: billing-fields.php:7, shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:214
929
+ msgid "Last Name"
930
+ msgstr ""
931
+
932
+ #: billing-fields.php:8, shipping-fields.php:8
933
+ msgid "Company Name"
934
+ msgstr ""
935
+
936
+ #: billing-fields.php:9, shipping-fields.php:9
937
+ msgid "Address"
938
+ msgstr ""
939
+
940
+ #: billing-fields.php:11, shipping-fields.php:11
941
+ msgid "Town / City"
942
+ msgstr ""
943
+
944
+ #: billing-fields.php:12, shipping-fields.php:12
945
+ msgid "State / County"
946
+ msgstr ""
947
+
948
+ #: billing-fields.php:13, shipping-fields.php:13
949
+ msgid "Postcode / Zip"
950
+ msgstr ""
951
+
952
+ #: billing-fields.php:14
953
+ msgid "Email Address"
954
+ msgstr ""
955
+
956
+ #: billing-fields.php:15
957
+ msgid "Phone"
958
+ msgstr ""
959
+
960
+ #: billing-fields.php:278
961
+ msgid "Ship to a different address?"
962
+ msgstr ""
963
+
964
+ #: index.php:160, index.php:729
965
+ msgid "Billing Address"
966
+ msgstr ""
967
+
968
+ #: index.php:160
969
+ msgid "Displays customer billing fields in front-end. "
970
+ msgstr ""
971
+
972
+ #: index.php:164, index.php:730
973
+ msgid "Shipping Address"
974
+ msgstr ""
975
+
976
+ #: index.php:164
977
+ msgid "Displays customer shipping fields in front-end. "
978
+ msgstr ""
979
+
980
+ #: index.php:239, index.php:258, index.php:355, index.php:358, index.php:785
981
+ msgid "Address line 2"
982
+ msgstr ""
983
+
984
+ #: index.php:247
985
+ msgid "Billing Fields"
986
+ msgstr ""
987
+
988
+ #: index.php:247
989
+ msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
990
+ msgstr ""
991
+
992
+ #: index.php:248
993
+ msgid "Billing Fields Order"
994
+ msgstr ""
995
+
996
+ #: index.php:248
997
+ msgid "Save the billing fields order from the billing fields checkboxes"
998
+ msgstr ""
999
+
1000
+ #: index.php:249
1001
+ msgid "Billing Fields Name"
1002
+ msgstr ""
1003
+
1004
+ #: index.php:249
1005
+ msgid "Save the billing fields names"
1006
+ msgstr ""
1007
+
1008
+ #: index.php:266
1009
+ msgid "Shipping Fields"
1010
+ msgstr ""
1011
+
1012
+ #: index.php:266
1013
+ msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
1014
+ msgstr ""
1015
+
1016
+ #: index.php:267
1017
+ msgid "Shipping Fields Order"
1018
+ msgstr ""
1019
+
1020
+ #: index.php:267
1021
+ msgid "Save the shipping fields order from the billing fields checkboxes"
1022
+ msgstr ""
1023
+
1024
+ #: index.php:268
1025
+ msgid "Shipping Fields Name"
1026
+ msgstr ""
1027
+
1028
+ #: index.php:268
1029
+ msgid "Save the shipping fields names"
1030
+ msgstr ""
1031
+
1032
+ #: index.php:296
1033
+ msgid "Field Name"
1034
+ msgstr ""
1035
+
1036
+ #: index.php:297, ../profile-builder-2.0/admin/manage-fields.php:171
1037
+ msgid "Required"
1038
+ msgstr ""
1039
+
1040
+ #: index.php:360
1041
+ msgid "Click to edit "
1042
+ msgstr ""
1043
+
1044
+ #: index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
1045
+ msgid "The email you entered is not a valid email address."
1046
+ msgstr ""
1047
+
1048
+ #: index.php:642
1049
+ msgid "No options available. Please select one country."
1050
+ msgstr ""
1051
+
1052
+ #: index.php:661, index.php:686
1053
+ msgid "Billing "
1054
+ msgstr ""
1055
+
1056
+ #: index.php:669, index.php:693
1057
+ msgid "Shipping "
1058
+ msgstr ""
1059
+
1060
+ #: index.php:846
1061
+ msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1062
+ msgstr ""
1063
+
1064
+ #: woo-checkout-field-support.php:63
1065
+ msgid "Display on WooCommerce Checkout"
1066
+ msgstr ""
1067
+
1068
+ #: woo-checkout-field-support.php:63
1069
+ msgid "Whether the field should be added to the WooCommerce checkout form or not"
1070
+ msgstr ""
1071
+
1072
+ #: woosync-page.php:23, woosync-page.php:23, woosync-page.php:70
1073
+ msgid "WooCommerce Sync"
1074
+ msgstr ""
1075
+
1076
+ #: woosync-page.php:76
1077
+ msgid "Choose Register form to display on My Account page:"
1078
+ msgstr ""
1079
+
1080
+ #: woosync-page.php:81
1081
+ msgid "Default Register"
1082
+ msgstr ""
1083
+
1084
+ #: woosync-page.php:104
1085
+ msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1086
+ msgstr ""
1087
+
1088
+ #: woosync-page.php:111
1089
+ msgid "Choose Edit Profile form to display on My Account page:"
1090
+ msgstr ""
1091
+
1092
+ #: woosync-page.php:139
1093
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1094
+ msgstr ""
1095
+
1096
+ #: ../profile-builder-2.0/index.php:36
1097
+ msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
1098
+ msgstr ""
1099
+
1100
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46
1101
+ msgid "Campaign Monitor"
1102
+ msgstr ""
1103
+
1104
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:38
1105
+ msgid "Campaign Monitor Integration"
1106
+ msgstr ""
1107
+
1108
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:332
1109
+ msgid "Save"
1110
+ msgstr ""
1111
+
1112
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:85
1113
+ msgid "Campaign Monitor API key:"
1114
+ msgstr ""
1115
+
1116
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:92, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:124
1117
+ msgid "The API key was successfully validated!"
1118
+ msgstr ""
1119
+
1120
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:96
1121
+ msgid "Either the API key is not valid or we could not connect to Campaign Monitor to validate it!"
1122
+ msgstr ""
1123
+
1124
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:100
1125
+ msgid "Enter your Campaign Monitor account API key."
1126
+ msgstr ""
1127
+
1128
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:126
1129
+ msgid "Select client:"
1130
+ msgstr ""
1131
+
1132
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:136
1133
+ msgid "Loading clients..."
1134
+ msgstr ""
1135
+
1136
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:148
1137
+ msgid "Select a client that you would like to edit."
1138
+ msgstr ""
1139
+
1140
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:186
1141
+ msgid "No clients found"
1142
+ msgstr ""
1143
+
1144
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:188
1145
+ msgid "Select a client..."
1146
+ msgstr ""
1147
+
1148
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:266, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:274
1149
+ msgid "Client List"
1150
+ msgstr ""
1151
+
1152
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:267, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:275, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:61, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:68
1153
+ msgid "Fields Count"
1154
+ msgstr ""
1155
+
1156
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348
1157
+ msgid "Retrieves changes made in your Campaign Monitor account and matches it with the saved data from the add-on. This does not save the new data, so you will have to manually save."
1158
+ msgstr ""
1159
+
1160
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348
1161
+ msgid "Synchronize client data"
1162
+ msgstr ""
1163
+
1164
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:349
1165
+ msgid "Change client"
1166
+ msgstr ""
1167
+
1168
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:413
1169
+ msgid "No lists were found."
1170
+ msgstr ""
1171
+
1172
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:437
1173
+ msgid "Click to edit"
1174
+ msgstr ""
1175
+
1176
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:729, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:395
1177
+ msgid "Cancel"
1178
+ msgstr ""
1179
+
1180
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:523, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:203
1181
+ msgid "Field Associations:"
1182
+ msgstr ""
1183
+
1184
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:580
1185
+ msgid "Associate each Campaign Monitor field with a Profile Builder field"
1186
+ msgstr ""
1187
+
1188
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:602, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:358
1189
+ msgid "Extra Options:"
1190
+ msgstr ""
1191
+
1192
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:610, ../pb-add-on-campaign-monitor-integration/admin/widget.php:236
1193
+ msgid "Resubscribe"
1194
+ msgstr ""
1195
+
1196
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:613, ../pb-add-on-campaign-monitor-integration/admin/widget.php:239
1197
+ msgid "If the subscriber is in an inactive state or has previously been unsubscribed and you check the Resubscribe option, they will be re-added to the list. Therefore, this method should be used with caution and only where suitable."
1198
+ msgstr ""
1199
+
1200
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:657
1201
+ msgid "Campaign Monitor API key is empty"
1202
+ msgstr ""
1203
+
1204
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:659
1205
+ msgid "Campaign Monitor API key is invalid"
1206
+ msgstr ""
1207
+
1208
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63
1209
+ msgid "Campaign Monitor List"
1210
+ msgstr ""
1211
+
1212
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42
1213
+ msgid "Please enter a Campaign Monitor API key <a href=\"%s\">here</a>."
1214
+ msgstr ""
1215
+
1216
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46
1217
+ msgid "Something went wrong. Either the API key is invalid or we could not connect to Campaign Monitor to validate the key."
1218
+ msgstr ""
1219
+
1220
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:52, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:52, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:38
1221
+ msgid "Select a list..."
1222
+ msgstr ""
1223
+
1224
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60
1225
+ msgid "Select in which Campaign Monitor list you wish to add a new subscriber"
1226
+ msgstr ""
1227
+
1228
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
1229
+ msgid "Hide on Edit Profile"
1230
+ msgstr ""
1231
+
1232
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
1233
+ msgid "If checked this field will not be displayed on edit profile forms"
1234
+ msgstr ""
1235
+
1236
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63
1237
+ msgid "We couldn't find any lists in your Campaign Monitor settings."
1238
+ msgstr ""
1239
+
1240
+ #: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:83
1241
+ msgid ""
1242
+ "Please select at least one Campaign Monitor list \n"
1243
+ ""
1244
+ msgstr ""
1245
+
1246
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:14
1247
+ msgid "Profile Builder Campaign Monitor Widget"
1248
+ msgstr ""
1249
+
1250
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:15
1251
+ msgid "Adds a basic subscribe form so that your users can subscribe to your Campaign Monitor lists"
1252
+ msgstr ""
1253
+
1254
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:68
1255
+ msgid "Something went wrong. Either the Campaign Monitor API key is missing or it is invalid."
1256
+ msgstr ""
1257
+
1258
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:89, ../pb-add-on-mailchimp-integration/admin/widget.php:91
1259
+ msgid "%s"
1260
+ msgstr ""
1261
+
1262
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:157, ../pb-add-on-mailchimp-integration/admin/widget.php:147
1263
+ msgid "Submit"
1264
+ msgstr ""
1265
+
1266
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:182, ../pb-add-on-mailchimp-integration/admin/widget.php:174
1267
+ msgid "Subscribe to Newsletter"
1268
+ msgstr ""
1269
+
1270
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:191, ../pb-add-on-mailchimp-integration/admin/widget.php:182
1271
+ msgid "Title"
1272
+ msgstr ""
1273
+
1274
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:197, ../pb-add-on-mailchimp-integration/admin/widget.php:187
1275
+ msgid "Select the list your new subscriber will be added to"
1276
+ msgstr ""
1277
+
1278
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:202
1279
+ msgid "Select list..."
1280
+ msgstr ""
1281
+
1282
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:208
1283
+ msgid "No lists found"
1284
+ msgstr ""
1285
+
1286
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:213, ../pb-add-on-mailchimp-integration/admin/widget.php:205
1287
+ msgid "Select which fields to show"
1288
+ msgstr ""
1289
+
1290
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:219, ../pb-add-on-campaign-monitor-integration/admin/widget.php:221
1291
+ msgid "E-mail address"
1292
+ msgstr ""
1293
+
1294
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:225
1295
+ msgid "fullname"
1296
+ msgstr ""
1297
+
1298
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:231
1299
+ msgid "Extra options"
1300
+ msgstr ""
1301
+
1302
+ #: ../pb-add-on-campaign-monitor-integration/admin/widget.php:245
1303
+ msgid "The Campaign Monitor API key is either missing or is invalid."
1304
+ msgstr ""
1305
+
1306
+ #: ../pb-add-on-import-export/inc/class-pbie-import.php:64, ../pb-add-on-labels-edit/inc/class-pble-import.php:34
1307
+ msgid "Uploaded file is not valid json!"
1308
+ msgstr ""
1309
+
1310
+ #: ../pb-add-on-import-export/inc/class-pbie-import.php:82, ../pb-add-on-labels-edit/inc/class-pble-import.php:48
1311
+ msgid "Import successfully!"
1312
+ msgstr ""
1313
+
1314
+ #: ../pb-add-on-import-export/inc/class-pbie-import.php:88, ../pb-add-on-labels-edit/inc/class-pble-import.php:54
1315
+ msgid "Please select a .json file to import!"
1316
+ msgstr ""
1317
+
1318
+ #: ../pb-add-on-labels-edit/inc/class-pble-import.php:48
1319
+ msgid "Page will refresh in 3 seconds..."
1320
+ msgstr ""
1321
+
1322
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:11, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:11
1323
+ msgid "MailChimp"
1324
+ msgstr ""
1325
+
1326
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:35
1327
+ msgid "MailChimp Integration"
1328
+ msgstr ""
1329
+
1330
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:44
1331
+ msgid "Before you can make any changes you will need to add a MailChimp API key."
1332
+ msgstr ""
1333
+
1334
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:60, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:67, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64
1335
+ msgid "MailChimp List"
1336
+ msgstr ""
1337
+
1338
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:82
1339
+ msgid "We couldn't find any lists"
1340
+ msgstr ""
1341
+
1342
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:119
1343
+ msgid "MailChimp API Key:"
1344
+ msgstr ""
1345
+
1346
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:126
1347
+ msgid "Either the API key is not valid or we could not connect to MailChimp to validate it!"
1348
+ msgstr ""
1349
+
1350
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:129
1351
+ msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
1352
+ msgstr ""
1353
+
1354
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:540, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:533
1355
+ msgid "Edit this item"
1356
+ msgstr ""
1357
+
1358
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:212
1359
+ msgid "This field is required in MailChimp"
1360
+ msgstr ""
1361
+
1362
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:262
1363
+ msgid "Associate each MailChimp field with a Profile Builder field"
1364
+ msgstr ""
1365
+
1366
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:296
1367
+ msgid "Group Associations:"
1368
+ msgstr ""
1369
+
1370
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:335
1371
+ msgid "Associate each MailChimp group with a Profile Builder field"
1372
+ msgstr ""
1373
+
1374
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:367, ../pb-add-on-mailchimp-integration/admin/widget.php:218
1375
+ msgid "Double Opt-In"
1376
+ msgstr ""
1377
+
1378
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:368
1379
+ msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscription"
1380
+ msgstr ""
1381
+
1382
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:383, ../pb-add-on-mailchimp-integration/admin/widget.php:230
1383
+ msgid "Send Welcome E-mail"
1384
+ msgstr ""
1385
+
1386
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:384, ../pb-add-on-mailchimp-integration/admin/widget.php:231
1387
+ msgid "If checked will send an e-mail to welcome the user to the subscribtion area"
1388
+ msgstr ""
1389
+
1390
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:429
1391
+ msgid "MailChimp API key is empty"
1392
+ msgstr ""
1393
+
1394
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:431
1395
+ msgid "MailChimp API key is invalid"
1396
+ msgstr ""
1397
+
1398
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:438, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46
1399
+ msgid "Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key."
1400
+ msgstr ""
1401
+
1402
+ #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42
1403
+ msgid "Please enter a MailChimp API key <a href=\"%s\">here</a>."
1404
+ msgstr ""
1405
+
1406
+ #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60
1407
+ msgid "Select in which MailChimp list you wish to add a new subscriber"
1408
+ msgstr ""
1409
+
1410
+ #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:61, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:48
1411
+ msgid "Checked by Default"
1412
+ msgstr ""
1413
+
1414
+ #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:61, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:48
1415
+ msgid "If checked the Subscribe checkbox in the front-end will be checked by default on register forms"
1416
+ msgstr ""
1417
+
1418
+ #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64
1419
+ msgid "We couldn't find any lists in your MailChimp settings."
1420
+ msgstr ""
1421
+
1422
+ #: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:84
1423
+ msgid ""
1424
+ "Please select at least one MailChimp list \n"
1425
+ ""
1426
+ msgstr ""
1427
+
1428
+ #: ../pb-add-on-mailchimp-integration/admin/widget.php:14
1429
+ msgid "Profile Builder MailChimp Widget"
1430
+ msgstr ""
1431
+
1432
+ #: ../pb-add-on-mailchimp-integration/admin/widget.php:15
1433
+ msgid "Adds a basic subscribe form so that your users can subscribe to your MailChimp lists"
1434
+ msgstr ""
1435
+
1436
+ #: ../pb-add-on-mailchimp-integration/admin/widget.php:68, ../pb-add-on-mailchimp-integration/admin/widget.php:239
1437
+ msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
1438
+ msgstr ""
1439
+
1440
+ #: ../pb-add-on-mailchimp-integration/admin/widget.php:190
1441
+ msgid "Select..."
1442
+ msgstr ""
1443
+
1444
+ #: ../pb-add-on-mailchimp-integration/admin/widget.php:214
1445
+ msgid "Extra Options"
1446
+ msgstr ""
1447
+
1448
+ #: ../pb-add-on-mailchimp-integration/admin/widget.php:219
1449
+ msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscribtion"
1450
+ msgstr ""
1451
+
1452
+ #: ../pb-add-on-mailchimp-integration/admin/widget.php:372
1453
+ msgid "Please select a list first"
1454
+ msgstr ""
1455
+
1456
+ #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:43
1457
+ msgid "No list was found."
1458
+ msgstr ""
1459
+
1460
+ #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53
1461
+ msgid "MailPoet List"
1462
+ msgstr ""
1463
+
1464
+ #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47
1465
+ msgid "Select in which MailPoet list you wish to add a new subscriber"
1466
+ msgstr ""
1467
+
1468
+ #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51
1469
+ msgid "We couldn't find any lists in your MailPoet settings."
1470
+ msgstr ""
1471
+
1472
+ #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53
1473
+ msgid "Please install and activate MailPoet plugin."
1474
+ msgstr ""
1475
+
1476
+ #: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:73
1477
+ msgid ""
1478
+ "Please select at least one MailPoet list \n"
1479
+ ""
1480
+ msgstr ""
1481
+
1482
+ #: ../pb-add-on-select2/admin/manage-fields.php:52
1483
+ msgid "Maximum Selections"
1484
+ msgstr ""
1485
+
1486
+ #: ../pb-add-on-select2/admin/manage-fields.php:52
1487
+ msgid "Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected."
1488
+ msgstr ""
1489
+
1490
+ #: ../pb-add-on-select2/admin/manage-fields.php:53
1491
+ msgid "User Inputted Options"
1492
+ msgstr ""
1493
+
1494
+ #: ../pb-add-on-select2/admin/manage-fields.php:53
1495
+ msgid "Check this to allow users to create their own options beside the pre-existing ones."
1496
+ msgstr ""
1497
+
1498
+ #: ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:85, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:74, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45, ../profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45, ../profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40, ../profile-builder-2.0/front-end/extra-fields/input/input.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/map/map.php:51, ../profile-builder-2.0/front-end/extra-fields/number/number.php:30, ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:39, ../profile-builder-2.0/front-end/extra-fields/radio/radio.php:44, ../profile-builder-2.0/front-end/extra-fields/select/select.php:51, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:58, ../profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46, ../profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49, ../profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30, ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:70, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
1499
+ msgid "required"
1500
+ msgstr ""
1501
+
1502
+ #: ../pb-add-on-social-connect/facebook/facebook.php:32
1503
+ msgid "Link with Facebook"
1504
+ msgstr ""
1505
+
1506
+ #: ../pb-add-on-social-connect/facebook/facebook.php:38
1507
+ msgid "Sign in with Facebook"
1508
+ msgstr ""
1509
+
1510
+ #: ../pb-add-on-social-connect/google/google.php:39
1511
+ msgid "Link with Google+"
1512
+ msgstr ""
1513
+
1514
+ #: ../pb-add-on-social-connect/google/google.php:45
1515
+ msgid "Sign in with Google+"
1516
+ msgstr ""
1517
+
1518
+ #: ../pb-add-on-social-connect/linkedin/linkedin.php:40
1519
+ msgid "Link with LinkedIn"
1520
+ msgstr ""
1521
+
1522
+ #: ../pb-add-on-social-connect/linkedin/linkedin.php:46
1523
+ msgid "Sign in with LinkedIn"
1524
+ msgstr ""
1525
+
1526
+ #: ../pb-add-on-social-connect/twitter/twitter.php:52
1527
+ msgid "Connection with twitter Failed"
1528
+ msgstr ""
1529
+
1530
+ #: ../pb-add-on-social-connect/twitter/twitter.php:57
1531
+ msgid "Error Receiving Request Token"
1532
+ msgstr ""
1533
+
1534
+ #: ../pb-add-on-social-connect/twitter/twitter.php:108
1535
+ msgid "Something went wrong. Please try again later."
1536
+ msgstr ""
1537
+
1538
+ #: ../pb-add-on-social-connect/twitter/twitter.php:141
1539
+ msgid "Link with Twitter"
1540
+ msgstr ""
1541
+
1542
+ #: ../pb-add-on-social-connect/twitter/twitter.php:147
1543
+ msgid "Sign in with Twitter"
1544
+ msgstr ""
1545
+
1546
+ #: ../profile-builder-2.0/admin/add-ons.php:10, ../profile-builder-2.0/admin/add-ons.php:10, ../profile-builder-2.0/admin/add-ons.php:193
1547
+ msgid "Add-Ons"
1548
+ msgstr ""
1549
+
1550
+ #: ../profile-builder-2.0/admin/add-ons.php:41
1551
+ msgid "Recommended Plugins"
1552
+ msgstr ""
1553
+
1554
+ #: ../profile-builder-2.0/admin/add-ons.php:72, ../profile-builder-2.0/admin/add-ons.php:143, ../profile-builder-2.0/admin/pms-cross-promotion.php:102
1555
+ msgid "Free"
1556
+ msgstr ""
1557
+
1558
+ #: ../profile-builder-2.0/admin/add-ons.php:74
1559
+ msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
1560
+ msgstr ""
1561
+
1562
+ #: ../profile-builder-2.0/admin/add-ons.php:84, ../profile-builder-2.0/admin/add-ons.php:155, ../profile-builder-2.0/admin/add-ons.php:195, ../profile-builder-2.0/admin/add-ons.php:284, ../profile-builder-2.0/admin/pms-cross-promotion.php:78, ../profile-builder-2.0/admin/pms-cross-promotion.php:114, ../profile-builder-2.0/admin/pms-cross-promotion.php:193
1563
+ msgid "Activate"
1564
+ msgstr ""
1565
+
1566
+ #: ../profile-builder-2.0/admin/add-ons.php:88, ../profile-builder-2.0/admin/add-ons.php:159, ../profile-builder-2.0/admin/add-ons.php:207, ../profile-builder-2.0/admin/add-ons.php:288, ../profile-builder-2.0/admin/pms-cross-promotion.php:90, ../profile-builder-2.0/admin/pms-cross-promotion.php:118, ../profile-builder-2.0/admin/pms-cross-promotion.php:197
1567
+ msgid "Deactivate"
1568
+ msgstr ""
1569
+
1570
+ #: ../profile-builder-2.0/admin/add-ons.php:93, ../profile-builder-2.0/admin/add-ons.php:164, ../profile-builder-2.0/admin/pms-cross-promotion.php:88, ../profile-builder-2.0/admin/pms-cross-promotion.php:123, ../profile-builder-2.0/admin/pms-cross-promotion.php:202
1571
+ msgid "Plugin is <strong>inactive</strong>"
1572
+ msgstr ""
1573
+
1574
+ #: ../profile-builder-2.0/admin/add-ons.php:95, ../profile-builder-2.0/admin/add-ons.php:166, ../profile-builder-2.0/admin/pms-cross-promotion.php:87, ../profile-builder-2.0/admin/pms-cross-promotion.php:125, ../profile-builder-2.0/admin/pms-cross-promotion.php:204
1575
+ msgid "Plugin is <strong>active</strong>"
1576
+ msgstr ""
1577
+
1578
+ #: ../profile-builder-2.0/admin/add-ons.php:101, ../profile-builder-2.0/admin/add-ons.php:172, ../profile-builder-2.0/admin/pms-cross-promotion.php:137, ../profile-builder-2.0/admin/pms-cross-promotion.php:216
1579
+ msgid "Install Now"
1580
+ msgstr ""
1581
+
1582
+ #: ../profile-builder-2.0/admin/add-ons.php:104, ../profile-builder-2.0/admin/add-ons.php:175, ../profile-builder-2.0/admin/add-ons.php:308, ../profile-builder-2.0/admin/pms-cross-promotion.php:141, ../profile-builder-2.0/admin/pms-cross-promotion.php:220
1583
+ msgid "Compatible with your version of Profile Builder."
1584
+ msgstr ""
1585
+
1586
+ #: ../profile-builder-2.0/admin/add-ons.php:109, ../profile-builder-2.0/admin/add-ons.php:180, ../profile-builder-2.0/admin/pms-cross-promotion.php:146
1587
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1588
+ msgstr ""
1589
+
1590
+ #: ../profile-builder-2.0/admin/add-ons.php:145
1591
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1592
+ msgstr ""
1593
+
1594
+ #: ../profile-builder-2.0/admin/add-ons.php:197, ../profile-builder-2.0/admin/pms-cross-promotion.php:80
1595
+ msgid "Downloading and installing..."
1596
+ msgstr ""
1597
+
1598
+ #: ../profile-builder-2.0/admin/add-ons.php:198, ../profile-builder-2.0/admin/pms-cross-promotion.php:81
1599
+ msgid "Installation complete"
1600
+ msgstr ""
1601
+
1602
+ #: ../profile-builder-2.0/admin/add-ons.php:200
1603
+ msgid "Add-On is Active"
1604
+ msgstr ""
1605
+
1606
+ #: ../profile-builder-2.0/admin/add-ons.php:201
1607
+ msgid "Add-On has been activated"
1608
+ msgstr ""
1609
+
1610
+ #: ../profile-builder-2.0/admin/add-ons.php:202, ../profile-builder-2.0/admin/pms-cross-promotion.php:85
1611
+ msgid "Retry Install"
1612
+ msgstr ""
1613
+
1614
+ #: ../profile-builder-2.0/admin/add-ons.php:204, ../profile-builder-2.0/admin/add-ons.php:295
1615
+ msgid "Add-On is <strong>active</strong>"
1616
+ msgstr ""
1617
+
1618
+ #: ../profile-builder-2.0/admin/add-ons.php:205, ../profile-builder-2.0/admin/add-ons.php:293
1619
+ msgid "Add-On is <strong>inactive</strong>"
1620
+ msgstr ""
1621
+
1622
+ #: ../profile-builder-2.0/admin/add-ons.php:208
1623
+ msgid "Add-On has been deactivated."
1624
+ msgstr ""
1625
+
1626
+ #: ../profile-builder-2.0/admin/add-ons.php:216
1627
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
1628
+ msgstr ""
1629
+
1630
+ #: ../profile-builder-2.0/admin/add-ons.php:260
1631
+ msgid "Available in Hobbyist and Pro Versions"
1632
+ msgstr ""
1633
+
1634
+ #: ../profile-builder-2.0/admin/add-ons.php:262
1635
+ msgid "Available in All Versions"
1636
+ msgstr ""
1637
+
1638
+ #: ../profile-builder-2.0/admin/add-ons.php:303
1639
+ msgid "Learn More"
1640
+ msgstr ""
1641
+
1642
+ #: ../profile-builder-2.0/admin/add-ons.php:303, ../profile-builder-2.0/admin/pms-cross-promotion.php:134, ../profile-builder-2.0/admin/pms-cross-promotion.php:213
1643
+ msgid "Download Now"
1644
+ msgstr ""
1645
+
1646
+ #: ../profile-builder-2.0/admin/add-ons.php:317
1647
+ msgid "Upgrade Profile Builder"
1648
+ msgstr ""
1649
+
1650
+ #: ../profile-builder-2.0/admin/add-ons.php:318
1651
+ msgid "Not compatible with Profile Builder"
1652
+ msgstr ""
1653
+
1654
+ #: ../profile-builder-2.0/admin/add-ons.php:325, ../profile-builder-2.0/front-end/class-formbuilder.php:423
1655
+ msgid "Update"
1656
+ msgstr ""
1657
+
1658
+ #: ../profile-builder-2.0/admin/add-ons.php:326
1659
+ msgid "Not compatible with your version of Profile Builder."
1660
+ msgstr ""
1661
+
1662
+ #: ../profile-builder-2.0/admin/add-ons.php:327
1663
+ msgid "Minimum required Profile Builder version:"
1664
+ msgstr ""
1665
+
1666
+ #: ../profile-builder-2.0/admin/add-ons.php:332
1667
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1668
+ msgstr ""
1669
+
1670
+ #: ../profile-builder-2.0/admin/admin-bar.php:10
1671
+ msgid "Show/Hide the Admin Bar on the Front-End"
1672
+ msgstr ""
1673
+
1674
+ #: ../profile-builder-2.0/admin/admin-bar.php:10, ../profile-builder-2.0/admin/admin-bar.php:47
1675
+ msgid "Admin Bar Settings"
1676
+ msgstr ""
1677
+
1678
+ #: ../profile-builder-2.0/admin/admin-bar.php:48
1679
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
1680
+ msgstr ""
1681
+
1682
+ #: ../profile-builder-2.0/admin/admin-bar.php:57
1683
+ msgid "User-Role"
1684
+ msgstr ""
1685
+
1686
+ #: ../profile-builder-2.0/admin/admin-bar.php:73, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
1687
+ msgid "Default"
1688
+ msgstr ""
1689
+
1690
+ #: ../profile-builder-2.0/admin/admin-bar.php:74
1691
+ msgid "Show"
1692
+ msgstr ""
1693
+
1694
+ #: ../profile-builder-2.0/admin/admin-bar.php:75, ../profile-builder-2.0/modules/user-listing/userlisting.php:1606
1695
+ msgid "Hide"
1696
+ msgstr ""
1697
+
1698
+ #: ../profile-builder-2.0/admin/admin-functions.php:37
1699
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
1700
+ msgstr ""
1701
+
1702
+ #: ../profile-builder-2.0/admin/admin-functions.php:41
1703
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1704
+ msgstr ""
1705
+
1706
+ #: ../profile-builder-2.0/admin/admin-functions.php:44
1707
+ msgid "Blog Details - only appears on the Registration page!"
1708
+ msgstr ""
1709
+
1710
+ #: ../profile-builder-2.0/admin/admin-functions.php:132
1711
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1712
+ msgstr ""
1713
+
1714
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:229
1715
+ msgid "Very weak"
1716
+ msgstr ""
1717
+
1718
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:230, ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
1719
+ msgid "Weak"
1720
+ msgstr ""
1721
+
1722
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:231, ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
1723
+ msgid "Medium"
1724
+ msgstr ""
1725
+
1726
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:232, ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
1727
+ msgid "Strong"
1728
+ msgstr ""
1729
+
1730
+ #: ../profile-builder-2.0/admin/admin-functions.php:148
1731
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1732
+ msgstr ""
1733
+
1734
+ #: ../profile-builder-2.0/admin/admin-functions.php:187
1735
+ msgid "Add Field"
1736
+ msgstr ""
1737
+
1738
+ #: ../profile-builder-2.0/admin/admin-functions.php:189, ../profile-builder-2.0/features/content-restriction/content-restriction.php:117, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
1739
+ msgid "Save Settings"
1740
+ msgstr ""
1741
+
1742
+ #: ../profile-builder-2.0/admin/admin-functions.php:200
1743
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1744
+ msgstr ""
1745
+
1746
+ #: ../profile-builder-2.0/admin/admin-functions.php:220
1747
+ msgid "Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder."
1748
+ msgstr ""
1749
+
1750
+ #: ../profile-builder-2.0/admin/admin-functions.php:222
1751
+ msgid "Check it out!"
1752
+ msgstr ""
1753
+
1754
+ #: ../profile-builder-2.0/admin/admin-functions.php:223
1755
+ msgid "Dismiss this notice."
1756
+ msgstr ""
1757
+
1758
+ #: ../profile-builder-2.0/admin/basic-info.php:10, ../profile-builder-2.0/admin/basic-info.php:10
1759
+ msgid "Basic Information"
1760
+ msgstr ""
1761
+
1762
+ #: ../profile-builder-2.0/admin/basic-info.php:30
1763
+ msgid "<strong>Profile Builder </strong> %s"
1764
+ msgstr ""
1765
+
1766
+ #: ../profile-builder-2.0/admin/basic-info.php:31
1767
+ msgid "The best way to add front-end registration, edit profile and login forms."
1768
+ msgstr ""
1769
+
1770
+ #: ../profile-builder-2.0/admin/basic-info.php:33
1771
+ msgid "For Modern User Interaction"
1772
+ msgstr ""
1773
+
1774
+ #: ../profile-builder-2.0/admin/basic-info.php:37
1775
+ msgid "Friction-less login using %s shortcode or a widget."
1776
+ msgstr ""
1777
+
1778
+ #: ../profile-builder-2.0/admin/basic-info.php:40
1779
+ msgid "Registration"
1780
+ msgstr ""
1781
+
1782
+ #: ../profile-builder-2.0/admin/basic-info.php:41
1783
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1784
+ msgstr ""
1785
+
1786
+ #: ../profile-builder-2.0/admin/basic-info.php:45
1787
+ msgid "Straight forward edit profile forms using %s shortcode."
1788
+ msgstr ""
1789
+
1790
+ #: ../profile-builder-2.0/admin/basic-info.php:51
1791
+ msgid "Extra Features"
1792
+ msgstr ""
1793
+
1794
+ #: ../profile-builder-2.0/admin/basic-info.php:52
1795
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
1796
+ msgstr ""
1797
+
1798
+ #: ../profile-builder-2.0/admin/basic-info.php:53
1799
+ msgid "Enable extra features"
1800
+ msgstr ""
1801
+
1802
+ #: ../profile-builder-2.0/admin/basic-info.php:57
1803
+ msgid "Recover Password"
1804
+ msgstr ""
1805
+
1806
+ #: ../profile-builder-2.0/admin/basic-info.php:58
1807
+ msgid "Allow users to recover their password in the front-end using the %s."
1808
+ msgstr ""
1809
+
1810
+ #: ../profile-builder-2.0/admin/basic-info.php:61
1811
+ msgid "Admin Approval (*)"
1812
+ msgstr ""
1813
+
1814
+ #: ../profile-builder-2.0/admin/basic-info.php:62
1815
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
1816
+ msgstr ""
1817
+
1818
+ #: ../profile-builder-2.0/admin/basic-info.php:65
1819
+ msgid "Email Confirmation"
1820
+ msgstr ""
1821
+
1822
+ #: ../profile-builder-2.0/admin/basic-info.php:66
1823
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
1824
+ msgstr ""
1825
+
1826
+ #: ../profile-builder-2.0/admin/basic-info.php:69, ../profile-builder-2.0/features/content-restriction/content-restriction.php:17, ../profile-builder-2.0/features/content-restriction/content-restriction.php:17, ../profile-builder-2.0/features/content-restriction/content-restriction.php:44
1827
+ msgid "Content Restriction"
1828
+ msgstr ""
1829
+
1830
+ #: ../profile-builder-2.0/admin/basic-info.php:70
1831
+ msgid "Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status."
1832
+ msgstr ""
1833
+
1834
+ #: ../profile-builder-2.0/admin/basic-info.php:73
1835
+ msgid "Minimum Password Length and Strength Meter"
1836
+ msgstr ""
1837
+
1838
+ #: ../profile-builder-2.0/admin/basic-info.php:74
1839
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
1840
+ msgstr ""
1841
+
1842
+ #: ../profile-builder-2.0/admin/basic-info.php:77
1843
+ msgid "Login with Email or Username"
1844
+ msgstr ""
1845
+
1846
+ #: ../profile-builder-2.0/admin/basic-info.php:78
1847
+ msgid "Allow users to log in with their email or username when accessing your site."
1848
+ msgstr ""
1849
+
1850
+ #: ../profile-builder-2.0/admin/basic-info.php:81, ../profile-builder-2.0/features/roles-editor/roles-editor.php:244, ../profile-builder-2.0/features/roles-editor/roles-editor.php:245, ../profile-builder-2.0/features/roles-editor/roles-editor.php:250, ../profile-builder-2.0/features/roles-editor/roles-editor.php:257
1851
+ msgid "Roles Editor"
1852
+ msgstr ""
1853
+
1854
+ #: ../profile-builder-2.0/admin/basic-info.php:82
1855
+ msgid "Add, remove, clone and edit roles and also capabilities for these roles."
1856
+ msgstr ""
1857
+
1858
+ #: ../profile-builder-2.0/admin/basic-info.php:95
1859
+ msgid "Customize Your Forms The Way You Want (*)"
1860
+ msgstr ""
1861
+
1862
+ #: ../profile-builder-2.0/admin/basic-info.php:96
1863
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
1864
+ msgstr ""
1865
+
1866
+ #: ../profile-builder-2.0/admin/basic-info.php:98
1867
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
1868
+ msgstr ""
1869
+
1870
+ #: ../profile-builder-2.0/admin/basic-info.php:100
1871
+ msgid "Get started with extra fields"
1872
+ msgstr ""
1873
+
1874
+ #: ../profile-builder-2.0/admin/basic-info.php:103
1875
+ msgid "Avatar Upload"
1876
+ msgstr ""
1877
+
1878
+ #: ../profile-builder-2.0/admin/basic-info.php:104
1879
+ msgid "Generic Uploads"
1880
+ msgstr ""
1881
+
1882
+ #: ../profile-builder-2.0/admin/basic-info.php:105
1883
+ msgid "Agree To Terms Checkbox"
1884
+ msgstr ""
1885
+
1886
+ #: ../profile-builder-2.0/admin/basic-info.php:106
1887
+ msgid "Datepicker"
1888
+ msgstr ""
1889
+
1890
+ #: ../profile-builder-2.0/admin/basic-info.php:107
1891
+ msgid "Timepicker"
1892
+ msgstr ""
1893
+
1894
+ #: ../profile-builder-2.0/admin/basic-info.php:108
1895
+ msgid "Colorpicker"
1896
+ msgstr ""
1897
+
1898
+ #: ../profile-builder-2.0/admin/basic-info.php:109
1899
+ msgid "reCAPTCHA"
1900
+ msgstr ""
1901
+
1902
+ #: ../profile-builder-2.0/admin/basic-info.php:110
1903
+ msgid "Country Select"
1904
+ msgstr ""
1905
+
1906
+ #: ../profile-builder-2.0/admin/basic-info.php:111
1907
+ msgid "Currency Select"
1908
+ msgstr ""
1909
+
1910
+ #: ../profile-builder-2.0/admin/basic-info.php:112
1911
+ msgid "Timezone Select"
1912
+ msgstr ""
1913
+
1914
+ #: ../profile-builder-2.0/admin/basic-info.php:116
1915
+ msgid "Input / Hidden Input"
1916
+ msgstr ""
1917
+
1918
+ #: ../profile-builder-2.0/admin/basic-info.php:117
1919
+ msgid "Number"
1920
+ msgstr ""
1921
+
1922
+ #: ../profile-builder-2.0/admin/basic-info.php:118
1923
+ msgid "Checkbox"
1924
+ msgstr ""
1925
+
1926
+ #: ../profile-builder-2.0/admin/basic-info.php:119
1927
+ msgid "Select"
1928
+ msgstr ""
1929
+
1930
+ #: ../profile-builder-2.0/admin/basic-info.php:120
1931
+ msgid "Radio Buttons"
1932
+ msgstr ""
1933
+
1934
+ #: ../profile-builder-2.0/admin/basic-info.php:121
1935
+ msgid "Textarea"
1936
+ msgstr ""
1937
+
1938
+ #: ../profile-builder-2.0/admin/basic-info.php:122
1939
+ msgid "Validation"
1940
+ msgstr ""
1941
+
1942
+ #: ../profile-builder-2.0/admin/basic-info.php:123
1943
+ msgid "Map"
1944
+ msgstr ""
1945
+
1946
+ #: ../profile-builder-2.0/admin/basic-info.php:124
1947
+ msgid "HTML"
1948
+ msgstr ""
1949
+
1950
+ #: ../profile-builder-2.0/admin/basic-info.php:133
1951
+ msgid "Powerful Modules (**)"
1952
+ msgstr ""
1953
+
1954
+ #: ../profile-builder-2.0/admin/basic-info.php:134
1955
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
1956
+ msgstr ""
1957
+
1958
+ #: ../profile-builder-2.0/admin/basic-info.php:136
1959
+ msgid "Enable your modules"
1960
+ msgstr ""
1961
+
1962
+ #: ../profile-builder-2.0/admin/basic-info.php:139
1963
+ msgid "Find out more about PRO Modules"
1964
+ msgstr ""
1965
+
1966
+ #: ../profile-builder-2.0/admin/basic-info.php:144, ../profile-builder-2.0/modules/modules.php:89, ../profile-builder-2.0/modules/user-listing/userlisting.php:11, ../profile-builder-2.0/modules/user-listing/userlisting.php:12, ../profile-builder-2.0/modules/user-listing/userlisting.php:17, ../profile-builder-2.0/modules/user-listing/userlisting.php:23
1967
+ msgid "User Listing"
1968
+ msgstr ""
1969
+
1970
+ #: ../profile-builder-2.0/admin/basic-info.php:146
1971
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
1972
+ msgstr ""
1973
+
1974
+ #: ../profile-builder-2.0/admin/basic-info.php:148
1975
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1976
+ msgstr ""
1977
+
1978
+ #: ../profile-builder-2.0/admin/basic-info.php:152
1979
+ msgid "Email Customizer"
1980
+ msgstr ""
1981
+
1982
+ #: ../profile-builder-2.0/admin/basic-info.php:153
1983
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
1984
+ msgstr ""
1985
+
1986
+ #: ../profile-builder-2.0/admin/basic-info.php:156, ../profile-builder-2.0/modules/modules.php:110, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:34
1987
+ msgid "Custom Redirects"
1988
+ msgstr ""
1989
+
1990
+ #: ../profile-builder-2.0/admin/basic-info.php:157
1991
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
1992
+ msgstr ""
1993
+
1994
+ #: ../profile-builder-2.0/admin/basic-info.php:162, ../profile-builder-2.0/modules/modules.php:75
1995
+ msgid "Multiple Registration Forms"
1996
+ msgstr ""
1997
+
1998
+ #: ../profile-builder-2.0/admin/basic-info.php:163
1999
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
2000
+ msgstr ""
2001
+
2002
+ #: ../profile-builder-2.0/admin/basic-info.php:166, ../profile-builder-2.0/modules/modules.php:82
2003
+ msgid "Multiple Edit-profile Forms"
2004
+ msgstr ""
2005
+
2006
+ #: ../profile-builder-2.0/admin/basic-info.php:167
2007
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
2008
+ msgstr ""
2009
+
2010
+ #: ../profile-builder-2.0/admin/basic-info.php:170, ../profile-builder-2.0/modules/modules.php:117
2011
+ msgid "Repeater Fields"
2012
+ msgstr ""
2013
+
2014
+ #: ../profile-builder-2.0/admin/basic-info.php:171
2015
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
2016
+ msgstr ""
2017
+
2018
+ #: ../profile-builder-2.0/admin/basic-info.php:207
2019
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
2020
+ msgstr ""
2021
+
2022
+ #: ../profile-builder-2.0/admin/basic-info.php:208
2023
+ msgid "** only available in the %1$sPro version%2$s."
2024
+ msgstr ""
2025
+
2026
+ #: ../profile-builder-2.0/admin/general-settings.php:39
2027
+ msgid "Load Profile Builder's own CSS file in the front-end:"
2028
+ msgstr ""
2029
+
2030
+ #: ../profile-builder-2.0/admin/general-settings.php:44
2031
+ msgid "You can find the default file here: %1$s"
2032
+ msgstr ""
2033
+
2034
+ #: ../profile-builder-2.0/admin/general-settings.php:51
2035
+ msgid "\"Email Confirmation\" Activated:"
2036
+ msgstr ""
2037
+
2038
+ #: ../profile-builder-2.0/admin/general-settings.php:59
2039
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
2040
+ msgstr ""
2041
+
2042
+ #: ../profile-builder-2.0/admin/general-settings.php:61
2043
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2044
+ msgstr ""
2045
+
2046
+ #: ../profile-builder-2.0/admin/general-settings.php:69
2047
+ msgid "\"Email Confirmation\" Landing Page:"
2048
+ msgstr ""
2049
+
2050
+ #: ../profile-builder-2.0/admin/general-settings.php:74
2051
+ msgid "Existing Pages"
2052
+ msgstr ""
2053
+
2054
+ #: ../profile-builder-2.0/admin/general-settings.php:89
2055
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
2056
+ msgstr ""
2057
+
2058
+ #: ../profile-builder-2.0/admin/general-settings.php:100
2059
+ msgid "\"Admin Approval\" Activated:"
2060
+ msgstr ""
2061
+
2062
+ #: ../profile-builder-2.0/admin/general-settings.php:108
2063
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2064
+ msgstr ""
2065
+
2066
+ #: ../profile-builder-2.0/admin/general-settings.php:115
2067
+ msgid "\"Admin Approval\" on User Role:"
2068
+ msgstr ""
2069
+
2070
+ #: ../profile-builder-2.0/admin/general-settings.php:134
2071
+ msgid "Select on what user roles to activate Admin Approval."
2072
+ msgstr ""
2073
+
2074
+ #: ../profile-builder-2.0/admin/general-settings.php:146
2075
+ msgid "\"Roles Editor\" Activated:"
2076
+ msgstr ""
2077
+
2078
+ #: ../profile-builder-2.0/admin/general-settings.php:154
2079
+ msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
2080
+ msgstr ""
2081
+
2082
+ #: ../profile-builder-2.0/admin/general-settings.php:165
2083
+ msgid "\"Content Restriction\" Activated:"
2084
+ msgstr ""
2085
+
2086
+ #: ../profile-builder-2.0/admin/general-settings.php:173
2087
+ msgid "Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content."
2088
+ msgstr ""
2089
+
2090
+ #: ../profile-builder-2.0/admin/general-settings.php:184
2091
+ msgid "\"Admin Approval\" Feature:"
2092
+ msgstr ""
2093
+
2094
+ #: ../profile-builder-2.0/admin/general-settings.php:187
2095
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
2096
+ msgstr ""
2097
+
2098
+ #: ../profile-builder-2.0/admin/general-settings.php:194
2099
+ msgid "Allow Users to Log in With:"
2100
+ msgstr ""
2101
+
2102
+ #: ../profile-builder-2.0/admin/general-settings.php:198
2103
+ msgid "Username and Email"
2104
+ msgstr ""
2105
+
2106
+ #: ../profile-builder-2.0/admin/general-settings.php:199, ../profile-builder-2.0/admin/manage-fields.php:212, ../profile-builder-2.0/front-end/login.php:88, ../profile-builder-2.0/front-end/login.php:102, ../profile-builder-2.0/front-end/login.php:231, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:769, ../profile-builder-2.0/modules/user-listing/userlisting.php:2271
2107
+ msgid "Username"
2108
+ msgstr ""
2109
+
2110
+ #: ../profile-builder-2.0/admin/general-settings.php:200, ../profile-builder-2.0/front-end/login.php:228, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:775, ../profile-builder-2.0/modules/user-listing/userlisting.php:2272
2111
+ msgid "Email"
2112
+ msgstr ""
2113
+
2114
+ #: ../profile-builder-2.0/admin/general-settings.php:203
2115
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2116
+ msgstr ""
2117
+
2118
+ #: ../profile-builder-2.0/admin/general-settings.php:204
2119
+ msgid "\"Username\" - users can Log In only with Username."
2120
+ msgstr ""
2121
+
2122
+ #: ../profile-builder-2.0/admin/general-settings.php:205
2123
+ msgid "\"Email\" - users can Log In only with Email."
2124
+ msgstr ""
2125
+
2126
+ #: ../profile-builder-2.0/admin/general-settings.php:212
2127
+ msgid "Minimum Password Length:"
2128
+ msgstr ""
2129
+
2130
+ #: ../profile-builder-2.0/admin/general-settings.php:217
2131
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2132
+ msgstr ""
2133
+
2134
+ #: ../profile-builder-2.0/admin/general-settings.php:224
2135
+ msgid "Minimum Password Strength:"
2136
+ msgstr ""
2137
+
2138
+ #: ../profile-builder-2.0/admin/general-settings.php:228
2139
+ msgid "Disabled"
2140
+ msgstr ""
2141
+
2142
+ #: ../profile-builder-2.0/admin/manage-fields.php:12
2143
+ msgid "Manage Fields"
2144
+ msgstr ""
2145
+
2146
+ #: ../profile-builder-2.0/admin/manage-fields.php:13
2147
+ msgid "Manage Default and Extra Fields"
2148
+ msgstr ""
2149
+
2150
+ #: ../profile-builder-2.0/admin/manage-fields.php:84
2151
+ msgid "Choose one of the supported field types"
2152
+ msgstr ""
2153
+
2154
+ #: ../profile-builder-2.0/admin/manage-fields.php:86
2155
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2156
+ msgstr ""
2157
+
2158
+ #: ../profile-builder-2.0/admin/manage-fields.php:119
2159
+ 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"
2160
+ msgstr ""
2161
+
2162
+ #: ../profile-builder-2.0/admin/manage-fields.php:122
2163
+ 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"
2164
+ msgstr ""
2165
+
2166
+ #: ../profile-builder-2.0/admin/manage-fields.php:128
2167
+ msgid "Field Title"
2168
+ msgstr ""
2169
+
2170
+ #: ../profile-builder-2.0/admin/manage-fields.php:128
2171
+ msgid "Title of the field"
2172
+ msgstr ""
2173
+
2174
+ #: ../profile-builder-2.0/admin/manage-fields.php:129, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:266
2175
+ msgid "Field"
2176
+ msgstr ""
2177
+
2178
+ #: ../profile-builder-2.0/admin/manage-fields.php:130
2179
+ msgid "Meta-name"
2180
+ msgstr ""
2181
+
2182
+ #: ../profile-builder-2.0/admin/manage-fields.php:131, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:69, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:99, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:118, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:143, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:267
2183
+ msgid "ID"
2184
+ msgstr ""
2185
+
2186
+ #: ../profile-builder-2.0/admin/manage-fields.php:131, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:267
2187
+ 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"
2188
+ msgstr ""
2189
+
2190
+ #: ../profile-builder-2.0/admin/manage-fields.php:132
2191
+ msgid "Description"
2192
+ msgstr ""
2193
+
2194
+ #: ../profile-builder-2.0/admin/manage-fields.php:132
2195
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2196
+ msgstr ""
2197
+
2198
+ #: ../profile-builder-2.0/admin/manage-fields.php:133
2199
+ msgid "Row Count"
2200
+ msgstr ""
2201
+
2202
+ #: ../profile-builder-2.0/admin/manage-fields.php:133
2203
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2204
+ msgstr ""
2205
+
2206
+ #: ../profile-builder-2.0/admin/manage-fields.php:134
2207
+ msgid "Allowed Image Extensions"
2208
+ msgstr ""
2209
+
2210
+ #: ../profile-builder-2.0/admin/manage-fields.php:134
2211
+ 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 (.*)"
2212
+ msgstr ""
2213
+
2214
+ #: ../profile-builder-2.0/admin/manage-fields.php:135
2215
+ msgid "Allowed Upload Extensions"
2216
+ msgstr ""
2217
+
2218
+ #: ../profile-builder-2.0/admin/manage-fields.php:135
2219
+ 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 (.*)"
2220
+ msgstr ""
2221
+
2222
+ #: ../profile-builder-2.0/admin/manage-fields.php:136
2223
+ msgid "Avatar Size"
2224
+ msgstr ""
2225
+
2226
+ #: ../profile-builder-2.0/admin/manage-fields.php:136
2227
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2228
+ msgstr ""
2229
+
2230
+ #: ../profile-builder-2.0/admin/manage-fields.php:137
2231
+ msgid "Date-format"
2232
+ msgstr ""
2233
+
2234
+ #: ../profile-builder-2.0/admin/manage-fields.php:137
2235
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
2236
+ msgstr ""
2237
+
2238
+ #: ../profile-builder-2.0/admin/manage-fields.php:138
2239
+ msgid "Terms of Agreement"
2240
+ msgstr ""
2241
+
2242
+ #: ../profile-builder-2.0/admin/manage-fields.php:138
2243
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
2244
+ msgstr ""
2245
+
2246
+ #: ../profile-builder-2.0/admin/manage-fields.php:139
2247
+ msgid "Options"
2248
+ msgstr ""
2249
+
2250
+ #: ../profile-builder-2.0/admin/manage-fields.php:139
2251
+ 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"
2252
+ msgstr ""
2253
+
2254
+ #: ../profile-builder-2.0/admin/manage-fields.php:140
2255
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
2256
+ msgstr ""
2257
+
2258
+ #: ../profile-builder-2.0/admin/manage-fields.php:141
2259
+ msgid "reCAPTCHA Type"
2260
+ msgstr ""
2261
+
2262
+ #: ../profile-builder-2.0/admin/manage-fields.php:141
2263
+ 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."
2264
+ msgstr ""
2265
+
2266
+ #: ../profile-builder-2.0/admin/manage-fields.php:142
2267
+ msgid "Site Key"
2268
+ msgstr ""
2269
+
2270
+ #: ../profile-builder-2.0/admin/manage-fields.php:142
2271
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2272
+ msgstr ""
2273
+
2274
+ #: ../profile-builder-2.0/admin/manage-fields.php:143
2275
+ msgid "Secret Key"
2276
+ msgstr ""
2277
+
2278
+ #: ../profile-builder-2.0/admin/manage-fields.php:143
2279
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2280
+ msgstr ""
2281
+
2282
+ #: ../profile-builder-2.0/admin/manage-fields.php:144
2283
+ msgid "Display on PB forms"
2284
+ msgstr ""
2285
+
2286
+ #: ../profile-builder-2.0/admin/manage-fields.php:144
2287
+ msgid "PB Login"
2288
+ msgstr ""
2289
+
2290
+ #: ../profile-builder-2.0/admin/manage-fields.php:144
2291
+ msgid "PB Register"
2292
+ msgstr ""
2293
+
2294
+ #: ../profile-builder-2.0/admin/manage-fields.php:144
2295
+ msgid "PB Recover Password"
2296
+ msgstr ""
2297
+
2298
+ #: ../profile-builder-2.0/admin/manage-fields.php:144
2299
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
2300
+ msgstr ""
2301
+
2302
+ #: ../profile-builder-2.0/admin/manage-fields.php:145
2303
+ msgid "Display on default WP forms"
2304
+ msgstr ""
2305
+
2306
+ #: ../profile-builder-2.0/admin/manage-fields.php:145
2307
+ msgid "Default WP Login"
2308
+ msgstr ""
2309
+
2310
+ #: ../profile-builder-2.0/admin/manage-fields.php:145
2311
+ msgid "Default WP Register"
2312
+ msgstr ""
2313
+
2314
+ #: ../profile-builder-2.0/admin/manage-fields.php:145
2315
+ msgid "Default WP Recover Password"
2316
+ msgstr ""
2317
+
2318
+ #: ../profile-builder-2.0/admin/manage-fields.php:145
2319
+ msgid "Select on which default WP forms to display reCAPTCHA"
2320
+ msgstr ""
2321
+
2322
+ #: ../profile-builder-2.0/admin/manage-fields.php:146
2323
+ msgid "User Roles"
2324
+ msgstr ""
2325
+
2326
+ #: ../profile-builder-2.0/admin/manage-fields.php:146
2327
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
2328
+ msgstr ""
2329
+
2330
+ #: ../profile-builder-2.0/admin/manage-fields.php:147
2331
+ msgid "User Roles Order"
2332
+ msgstr ""
2333
+
2334
+ #: ../profile-builder-2.0/admin/manage-fields.php:147
2335
+ msgid "Save the user role order from the user roles checkboxes"
2336
+ msgstr ""
2337
+
2338
+ #: ../profile-builder-2.0/admin/manage-fields.php:148
2339
+ msgid "Default Value"
2340
+ msgstr ""
2341
+
2342
+ #: ../profile-builder-2.0/admin/manage-fields.php:148
2343
+ msgid "Default value of the field"
2344
+ msgstr ""
2345
+
2346
+ #: ../profile-builder-2.0/admin/manage-fields.php:149, ../profile-builder-2.0/admin/manage-fields.php:151, ../profile-builder-2.0/admin/manage-fields.php:152, ../profile-builder-2.0/admin/manage-fields.php:153
2347
+ msgid "Default Option"
2348
+ msgstr ""
2349
+
2350
+ #: ../profile-builder-2.0/admin/manage-fields.php:149
2351
+ msgid "Specify the option which should be selected by default"
2352
+ msgstr ""
2353
+
2354
+ #: ../profile-builder-2.0/admin/manage-fields.php:150
2355
+ msgid "Default Option(s)"
2356
+ msgstr ""
2357
+
2358
+ #: ../profile-builder-2.0/admin/manage-fields.php:150
2359
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2360
+ msgstr ""
2361
+
2362
+ #: ../profile-builder-2.0/admin/manage-fields.php:151, ../profile-builder-2.0/admin/manage-fields.php:152, ../profile-builder-2.0/admin/manage-fields.php:153
2363
+ msgid "Default option of the field"
2364
+ msgstr ""
2365
+
2366
+ #: ../profile-builder-2.0/admin/manage-fields.php:154
2367
+ msgid "Show Currency Symbol"
2368
+ msgstr ""
2369
+
2370
+ #: ../profile-builder-2.0/admin/manage-fields.php:154
2371
+ msgid "Whether the currency symbol should be displayed after the currency name in the select option."
2372
+ msgstr ""
2373
+
2374
+ #: ../profile-builder-2.0/admin/manage-fields.php:155
2375
+ msgid "Show Post Type"
2376
+ msgstr ""
2377
+
2378
+ #: ../profile-builder-2.0/admin/manage-fields.php:155
2379
+ msgid "Posts from what post type will be displayed in the select."
2380
+ msgstr ""
2381
+
2382
+ #: ../profile-builder-2.0/admin/manage-fields.php:156
2383
+ msgid "Allowable Values"
2384
+ msgstr ""
2385
+
2386
+ #: ../profile-builder-2.0/admin/manage-fields.php:156
2387
+ 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."
2388
+ msgstr ""
2389
+
2390
+ #: ../profile-builder-2.0/admin/manage-fields.php:157
2391
+ msgid "Error Message"
2392
+ msgstr ""
2393
+
2394
+ #: ../profile-builder-2.0/admin/manage-fields.php:157
2395
+ msgid "Set a custom error message that will be displayed to the user."
2396
+ msgstr ""
2397
+
2398
+ #: ../profile-builder-2.0/admin/manage-fields.php:158
2399
+ msgid "Time Format"
2400
+ msgstr ""
2401
+
2402
+ #: ../profile-builder-2.0/admin/manage-fields.php:158
2403
+ msgid "Specify the time format."
2404
+ msgstr ""
2405
+
2406
+ #: ../profile-builder-2.0/admin/manage-fields.php:159
2407
+ msgid "Google Maps API Key"
2408
+ msgstr ""
2409
+
2410
+ #: ../profile-builder-2.0/admin/manage-fields.php:159
2411
+ 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."
2412
+ msgstr ""
2413
+
2414
+ #: ../profile-builder-2.0/admin/manage-fields.php:160
2415
+ msgid "Default Latitude"
2416
+ msgstr ""
2417
+
2418
+ #: ../profile-builder-2.0/admin/manage-fields.php:160
2419
+ msgid "The latitude at which the map should be displayed when no pins are attached."
2420
+ msgstr ""
2421
+
2422
+ #: ../profile-builder-2.0/admin/manage-fields.php:161
2423
+ msgid "Default Longitude"
2424
+ msgstr ""
2425
+
2426
+ #: ../profile-builder-2.0/admin/manage-fields.php:161
2427
+ msgid "The longitude at which the map should be displayed when no pins are attached."
2428
+ msgstr ""
2429
+
2430
+ #: ../profile-builder-2.0/admin/manage-fields.php:162
2431
+ msgid "Default Zoom Level"
2432
+ msgstr ""
2433
+
2434
+ #: ../profile-builder-2.0/admin/manage-fields.php:162
2435
+ msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
2436
+ msgstr ""
2437
+
2438
+ #: ../profile-builder-2.0/admin/manage-fields.php:163
2439
+ msgid "Map Height"
2440
+ msgstr ""
2441
+
2442
+ #: ../profile-builder-2.0/admin/manage-fields.php:163
2443
+ msgid "The height of the map."
2444
+ msgstr ""
2445
+
2446
+ #: ../profile-builder-2.0/admin/manage-fields.php:164
2447
+ msgid "Default Content"
2448
+ msgstr ""
2449
+
2450
+ #: ../profile-builder-2.0/admin/manage-fields.php:164
2451
+ msgid "Default value of the textarea"
2452
+ msgstr ""
2453
+
2454
+ #: ../profile-builder-2.0/admin/manage-fields.php:165
2455
+ msgid "HTML Content"
2456
+ msgstr ""
2457
+
2458
+ #: ../profile-builder-2.0/admin/manage-fields.php:165
2459
+ msgid "Add your HTML (or text) content"
2460
+ msgstr ""
2461
+
2462
+ #: ../profile-builder-2.0/admin/manage-fields.php:166
2463
+ msgid "Phone Format"
2464
+ msgstr ""
2465
+
2466
+ #: ../profile-builder-2.0/admin/manage-fields.php:166
2467
+ msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
2468
+ msgstr ""
2469
+
2470
+ #: ../profile-builder-2.0/admin/manage-fields.php:166
2471
+ msgid "Eg. (###) ###-####"
2472
+ msgstr ""
2473
+
2474
+ #: ../profile-builder-2.0/admin/manage-fields.php:166
2475
+ msgid "Empty field won't check for correct phone number."
2476
+ msgstr ""
2477
+
2478
+ #: ../profile-builder-2.0/admin/manage-fields.php:167
2479
+ msgid "Heading Tag"
2480
+ msgstr ""
2481
+
2482
+ #: ../profile-builder-2.0/admin/manage-fields.php:167
2483
+ msgid "Change heading field size on front-end forms"
2484
+ msgstr ""
2485
+
2486
+ #: ../profile-builder-2.0/admin/manage-fields.php:168
2487
+ msgid "Min Number Value"
2488
+ msgstr ""
2489
+
2490
+ #: ../profile-builder-2.0/admin/manage-fields.php:168
2491
+ msgid "Min allowed number value (0 to allow only positive numbers)"
2492
+ msgstr ""
2493
+
2494
+ #: ../profile-builder-2.0/admin/manage-fields.php:168
2495
+ msgid "Leave it empty for no min value"
2496
+ msgstr ""
2497
+
2498
+ #: ../profile-builder-2.0/admin/manage-fields.php:169
2499
+ msgid "Max Number Value"
2500
+ msgstr ""
2501
+
2502
+ #: ../profile-builder-2.0/admin/manage-fields.php:169
2503
+ msgid "Max allowed number value (0 to allow only negative numbers)"
2504
+ msgstr ""
2505
+
2506
+ #: ../profile-builder-2.0/admin/manage-fields.php:169
2507
+ msgid "Leave it empty for no max value"
2508
+ msgstr ""
2509
+
2510
+ #: ../profile-builder-2.0/admin/manage-fields.php:170
2511
+ msgid "Number Step Value"
2512
+ msgstr ""
2513
+
2514
+ #: ../profile-builder-2.0/admin/manage-fields.php:170
2515
+ msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
2516
+ msgstr ""
2517
+
2518
+ #: ../profile-builder-2.0/admin/manage-fields.php:170
2519
+ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
2520
+ msgstr ""
2521
+
2522
+ #: ../profile-builder-2.0/admin/manage-fields.php:170
2523
+ 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)"
2524
+ msgstr ""
2525
+
2526
+ #: ../profile-builder-2.0/admin/manage-fields.php:170
2527
+ msgid "Leave it empty for no restriction"
2528
+ msgstr ""
2529
+
2530
+ #: ../profile-builder-2.0/admin/manage-fields.php:171
2531
+ msgid "Whether the field is required or not"
2532
+ msgstr ""
2533
+
2534
+ #: ../profile-builder-2.0/admin/manage-fields.php:172
2535
+ msgid "Overwrite Existing"
2536
+ msgstr ""
2537
+
2538
+ #: ../profile-builder-2.0/admin/manage-fields.php:172
2539
+ 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"
2540
+ msgstr ""
2541
+
2542
+ #: ../profile-builder-2.0/admin/manage-fields.php:178
2543
+ msgid "Field Properties"
2544
+ msgstr ""
2545
+
2546
+ #: ../profile-builder-2.0/admin/manage-fields.php:192
2547
+ msgid "Registration & Edit Profile"
2548
+ msgstr ""
2549
+
2550
+ #: ../profile-builder-2.0/admin/manage-fields.php:212
2551
+ msgid "Usernames cannot be changed."
2552
+ msgstr ""
2553
+
2554
+ #: ../profile-builder-2.0/admin/manage-fields.php:215, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2279
2555
+ msgid "Nickname"
2556
+ msgstr ""
2557
+
2558
+ #: ../profile-builder-2.0/admin/manage-fields.php:216
2559
+ msgid "Display name publicly as"
2560
+ msgstr ""
2561
+
2562
+ #: ../profile-builder-2.0/admin/manage-fields.php:218, ../profile-builder-2.0/front-end/recover.php:119, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:169, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169, ../profile-builder-2.0/modules/user-listing/userlisting.php:117
2563
+ msgid "E-mail"
2564
+ msgstr ""
2565
+
2566
+ #: ../profile-builder-2.0/admin/manage-fields.php:219, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:2273
2567
+ msgid "Website"
2568
+ msgstr ""
2569
+
2570
+ #: ../profile-builder-2.0/admin/manage-fields.php:223
2571
+ msgid "AIM"
2572
+ msgstr ""
2573
+
2574
+ #: ../profile-builder-2.0/admin/manage-fields.php:224
2575
+ msgid "Yahoo IM"
2576
+ msgstr ""
2577
+
2578
+ #: ../profile-builder-2.0/admin/manage-fields.php:225
2579
+ msgid "Jabber / Google Talk"
2580
+ msgstr ""
2581
+
2582
+ #: ../profile-builder-2.0/admin/manage-fields.php:229, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:2274
2583
+ msgid "Biographical Info"
2584
+ msgstr ""
2585
+
2586
+ #: ../profile-builder-2.0/admin/manage-fields.php:229
2587
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2588
+ msgstr ""
2589
+
2590
+ #: ../profile-builder-2.0/admin/manage-fields.php:230, ../profile-builder-2.0/front-end/recover.php:73, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:30
2591
+ msgid "Password"
2592
+ msgstr ""
2593
+
2594
+ #: ../profile-builder-2.0/admin/manage-fields.php:230
2595
+ msgid "Type your password."
2596
+ msgstr ""
2597
+
2598
+ #: ../profile-builder-2.0/admin/manage-fields.php:231, ../profile-builder-2.0/front-end/recover.php:74
2599
+ msgid "Repeat Password"
2600
+ msgstr ""
2601
+
2602
+ #: ../profile-builder-2.0/admin/manage-fields.php:231
2603
+ msgid "Type your password again. "
2604
+ msgstr ""
2605
+
2606
+ #: ../profile-builder-2.0/admin/manage-fields.php:233
2607
+ msgid "Blog Details"
2608
+ msgstr ""
2609
+
2610
+ #: ../profile-builder-2.0/admin/manage-fields.php:293, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2611
+ msgid "Afghanistan"
2612
+ msgstr ""
2613
+
2614
+ #: ../profile-builder-2.0/admin/manage-fields.php:294, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2615
+ msgid "Aland Islands"
2616
+ msgstr ""
2617
+
2618
+ #: ../profile-builder-2.0/admin/manage-fields.php:295, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
+ msgid "Albania"
2620
+ msgstr ""
2621
+
2622
+ #: ../profile-builder-2.0/admin/manage-fields.php:296, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2623
+ msgid "Algeria"
2624
+ msgstr ""
2625
+
2626
+ #: ../profile-builder-2.0/admin/manage-fields.php:297, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2627
+ msgid "American Samoa"
2628
+ msgstr ""
2629
+
2630
+ #: ../profile-builder-2.0/admin/manage-fields.php:298, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2631
+ msgid "Andorra"
2632
+ msgstr ""
2633
+
2634
+ #: ../profile-builder-2.0/admin/manage-fields.php:299, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2635
+ msgid "Angola"
2636
+ msgstr ""
2637
+
2638
+ #: ../profile-builder-2.0/admin/manage-fields.php:300, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
+ msgid "Anguilla"
2640
+ msgstr ""
2641
+
2642
+ #: ../profile-builder-2.0/admin/manage-fields.php:301, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2643
+ msgid "Antarctica"
2644
+ msgstr ""
2645
+
2646
+ #: ../profile-builder-2.0/admin/manage-fields.php:302, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2647
+ msgid "Antigua and Barbuda"
2648
+ msgstr ""
2649
+
2650
+ #: ../profile-builder-2.0/admin/manage-fields.php:303, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2651
+ msgid "Argentina"
2652
+ msgstr ""
2653
+
2654
+ #: ../profile-builder-2.0/admin/manage-fields.php:304, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2655
+ msgid "Armenia"
2656
+ msgstr ""
2657
+
2658
+ #: ../profile-builder-2.0/admin/manage-fields.php:305, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2659
+ msgid "Aruba"
2660
+ msgstr ""
2661
+
2662
+ #: ../profile-builder-2.0/admin/manage-fields.php:306, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
+ msgid "Australia"
2664
+ msgstr ""
2665
+
2666
+ #: ../profile-builder-2.0/admin/manage-fields.php:307, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2667
+ msgid "Austria"
2668
+ msgstr ""
2669
+
2670
+ #: ../profile-builder-2.0/admin/manage-fields.php:308, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2671
+ msgid "Azerbaijan"
2672
+ msgstr ""
2673
+
2674
+ #: ../profile-builder-2.0/admin/manage-fields.php:309, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2675
+ msgid "Bahamas"
2676
+ msgstr ""
2677
+
2678
+ #: ../profile-builder-2.0/admin/manage-fields.php:310, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2679
+ msgid "Bahrain"
2680
+ msgstr ""
2681
+
2682
+ #: ../profile-builder-2.0/admin/manage-fields.php:311, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2683
+ msgid "Bangladesh"
2684
+ msgstr ""
2685
+
2686
+ #: ../profile-builder-2.0/admin/manage-fields.php:312, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2687
+ msgid "Barbados"
2688
+ msgstr ""
2689
+
2690
+ #: ../profile-builder-2.0/admin/manage-fields.php:313, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2691
+ msgid "Belarus"
2692
+ msgstr ""
2693
+
2694
+ #: ../profile-builder-2.0/admin/manage-fields.php:314, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2695
+ msgid "Belgium"
2696
+ msgstr ""
2697
+
2698
+ #: ../profile-builder-2.0/admin/manage-fields.php:315, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2699
+ msgid "Belize"
2700
+ msgstr ""
2701
+
2702
+ #: ../profile-builder-2.0/admin/manage-fields.php:316, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2703
+ msgid "Benin"
2704
+ msgstr ""
2705
+
2706
+ #: ../profile-builder-2.0/admin/manage-fields.php:317, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2707
+ msgid "Bermuda"
2708
+ msgstr ""
2709
+
2710
+ #: ../profile-builder-2.0/admin/manage-fields.php:318, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2711
+ msgid "Bhutan"
2712
+ msgstr ""
2713
+
2714
+ #: ../profile-builder-2.0/admin/manage-fields.php:319
2715
+ msgid "Bolivia"
2716
+ msgstr ""
2717
+
2718
+ #: ../profile-builder-2.0/admin/manage-fields.php:320
2719
+ msgid "Bonaire, Saint Eustatius and Saba"
2720
+ msgstr ""
2721
+
2722
+ #: ../profile-builder-2.0/admin/manage-fields.php:321, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2723
+ msgid "Bosnia and Herzegovina"
2724
+ msgstr ""
2725
+
2726
+ #: ../profile-builder-2.0/admin/manage-fields.php:322, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
+ msgid "Botswana"
2728
+ msgstr ""
2729
+
2730
+ #: ../profile-builder-2.0/admin/manage-fields.php:323, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2731
+ msgid "Bouvet Island"
2732
+ msgstr ""
2733
+
2734
+ #: ../profile-builder-2.0/admin/manage-fields.php:324, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2735
+ msgid "Brazil"
2736
+ msgstr ""
2737
+
2738
+ #: ../profile-builder-2.0/admin/manage-fields.php:325, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2739
+ msgid "British Indian Ocean Territory"
2740
+ msgstr ""
2741
+
2742
+ #: ../profile-builder-2.0/admin/manage-fields.php:326
2743
+ msgid "British Virgin Islands"
2744
+ msgstr ""
2745
+
2746
+ #: ../profile-builder-2.0/admin/manage-fields.php:327
2747
+ msgid "Brunei"
2748
+ msgstr ""
2749
+
2750
+ #: ../profile-builder-2.0/admin/manage-fields.php:328, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2751
+ msgid "Bulgaria"
2752
+ msgstr ""
2753
+
2754
+ #: ../profile-builder-2.0/admin/manage-fields.php:329, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2755
+ msgid "Burkina Faso"
2756
+ msgstr ""
2757
+
2758
+ #: ../profile-builder-2.0/admin/manage-fields.php:330, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2759
+ msgid "Burundi"
2760
+ msgstr ""
2761
+
2762
+ #: ../profile-builder-2.0/admin/manage-fields.php:331, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2763
+ msgid "Cambodia"
2764
+ msgstr ""
2765
+
2766
+ #: ../profile-builder-2.0/admin/manage-fields.php:332, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2767
+ msgid "Cameroon"
2768
+ msgstr ""
2769
+
2770
+ #: ../profile-builder-2.0/admin/manage-fields.php:333, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2771
+ msgid "Canada"
2772
+ msgstr ""
2773
+
2774
+ #: ../profile-builder-2.0/admin/manage-fields.php:334
2775
+ msgid "Cape Verde"
2776
+ msgstr ""
2777
+
2778
+ #: ../profile-builder-2.0/admin/manage-fields.php:335, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2779
+ msgid "Cayman Islands"
2780
+ msgstr ""
2781
+
2782
+ #: ../profile-builder-2.0/admin/manage-fields.php:336, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2783
+ msgid "Central African Republic"
2784
+ msgstr ""
2785
+
2786
+ #: ../profile-builder-2.0/admin/manage-fields.php:337, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2787
+ msgid "Chad"
2788
+ msgstr ""
2789
+
2790
+ #: ../profile-builder-2.0/admin/manage-fields.php:338, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2791
+ msgid "Chile"
2792
+ msgstr ""
2793
+
2794
+ #: ../profile-builder-2.0/admin/manage-fields.php:339, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2795
+ msgid "China"
2796
+ msgstr ""
2797
+
2798
+ #: ../profile-builder-2.0/admin/manage-fields.php:340, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2799
+ msgid "Christmas Island"
2800
+ msgstr ""
2801
+
2802
+ #: ../profile-builder-2.0/admin/manage-fields.php:341
2803
+ msgid "Cocos Islands"
2804
+ msgstr ""
2805
+
2806
+ #: ../profile-builder-2.0/admin/manage-fields.php:342, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2807
+ msgid "Colombia"
2808
+ msgstr ""
2809
+
2810
+ #: ../profile-builder-2.0/admin/manage-fields.php:343, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2811
+ msgid "Comoros"
2812
+ msgstr ""
2813
+
2814
+ #: ../profile-builder-2.0/admin/manage-fields.php:344, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2815
+ msgid "Cook Islands"
2816
+ msgstr ""
2817
+
2818
+ #: ../profile-builder-2.0/admin/manage-fields.php:345, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2819
+ msgid "Costa Rica"
2820
+ msgstr ""
2821
+
2822
+ #: ../profile-builder-2.0/admin/manage-fields.php:346, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2823
+ msgid "Croatia"
2824
+ msgstr ""
2825
+
2826
+ #: ../profile-builder-2.0/admin/manage-fields.php:347, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2827
+ msgid "Cuba"
2828
+ msgstr ""
2829
+
2830
+ #: ../profile-builder-2.0/admin/manage-fields.php:348, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2831
+ msgid "Curacao"
2832
+ msgstr ""
2833
+
2834
+ #: ../profile-builder-2.0/admin/manage-fields.php:349, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2835
+ msgid "Cyprus"
2836
+ msgstr ""
2837
+
2838
+ #: ../profile-builder-2.0/admin/manage-fields.php:350, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2839
+ msgid "Czech Republic"
2840
+ msgstr ""
2841
+
2842
+ #: ../profile-builder-2.0/admin/manage-fields.php:351
2843
+ msgid "Democratic Republic of the Congo"
2844
+ msgstr ""
2845
+
2846
+ #: ../profile-builder-2.0/admin/manage-fields.php:352, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2847
+ msgid "Denmark"
2848
+ msgstr ""
2849
+
2850
+ #: ../profile-builder-2.0/admin/manage-fields.php:353, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2851
+ msgid "Djibouti"
2852
+ msgstr ""
2853
+
2854
+ #: ../profile-builder-2.0/admin/manage-fields.php:354, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2855
+ msgid "Dominica"
2856
+ msgstr ""
2857
+
2858
+ #: ../profile-builder-2.0/admin/manage-fields.php:355, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2859
+ msgid "Dominican Republic"
2860
+ msgstr ""
2861
+
2862
+ #: ../profile-builder-2.0/admin/manage-fields.php:356
2863
+ msgid "East Timor"
2864
+ msgstr ""
2865
+
2866
+ #: ../profile-builder-2.0/admin/manage-fields.php:357, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2867
+ msgid "Ecuador"
2868
+ msgstr ""
2869
+
2870
+ #: ../profile-builder-2.0/admin/manage-fields.php:358, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2871
+ msgid "Egypt"
2872
+ msgstr ""
2873
+
2874
+ #: ../profile-builder-2.0/admin/manage-fields.php:359, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2875
+ msgid "El Salvador"
2876
+ msgstr ""
2877
+
2878
+ #: ../profile-builder-2.0/admin/manage-fields.php:360, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2879
+ msgid "Equatorial Guinea"
2880
+ msgstr ""
2881
+
2882
+ #: ../profile-builder-2.0/admin/manage-fields.php:361, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2883
+ msgid "Eritrea"
2884
+ msgstr ""
2885
+
2886
+ #: ../profile-builder-2.0/admin/manage-fields.php:362, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2887
+ msgid "Estonia"
2888
+ msgstr ""
2889
+
2890
+ #: ../profile-builder-2.0/admin/manage-fields.php:363, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2891
+ msgid "Ethiopia"
2892
+ msgstr ""
2893
+
2894
+ #: ../profile-builder-2.0/admin/manage-fields.php:364
2895
+ msgid "Falkland Islands"
2896
+ msgstr ""
2897
+
2898
+ #: ../profile-builder-2.0/admin/manage-fields.php:365, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2899
+ msgid "Faroe Islands"
2900
+ msgstr ""
2901
+
2902
+ #: ../profile-builder-2.0/admin/manage-fields.php:366, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2903
+ msgid "Fiji"
2904
+ msgstr ""
2905
+
2906
+ #: ../profile-builder-2.0/admin/manage-fields.php:367, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2907
+ msgid "Finland"
2908
+ msgstr ""
2909
+
2910
+ #: ../profile-builder-2.0/admin/manage-fields.php:368, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2911
+ msgid "France"
2912
+ msgstr ""
2913
+
2914
+ #: ../profile-builder-2.0/admin/manage-fields.php:369, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2915
+ msgid "French Guiana"
2916
+ msgstr ""
2917
+
2918
+ #: ../profile-builder-2.0/admin/manage-fields.php:370, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2919
+ msgid "French Polynesia"
2920
+ msgstr ""
2921
+
2922
+ #: ../profile-builder-2.0/admin/manage-fields.php:371, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2923
+ msgid "French Southern Territories"
2924
+ msgstr ""
2925
+
2926
+ #: ../profile-builder-2.0/admin/manage-fields.php:372, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2927
+ msgid "Gabon"
2928
+ msgstr ""
2929
+
2930
+ #: ../profile-builder-2.0/admin/manage-fields.php:373, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2931
+ msgid "Gambia"
2932
+ msgstr ""
2933
+
2934
+ #: ../profile-builder-2.0/admin/manage-fields.php:374, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2935
+ msgid "Georgia"
2936
+ msgstr ""
2937
+
2938
+ #: ../profile-builder-2.0/admin/manage-fields.php:375, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2939
+ msgid "Germany"
2940
+ msgstr ""
2941
+
2942
+ #: ../profile-builder-2.0/admin/manage-fields.php:376, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2943
+ msgid "Ghana"
2944
+ msgstr ""
2945
+
2946
+ #: ../profile-builder-2.0/admin/manage-fields.php:377, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2947
+ msgid "Gibraltar"
2948
+ msgstr ""
2949
+
2950
+ #: ../profile-builder-2.0/admin/manage-fields.php:378, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2951
+ msgid "Greece"
2952
+ msgstr ""
2953
+
2954
+ #: ../profile-builder-2.0/admin/manage-fields.php:379, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2955
+ msgid "Greenland"
2956
+ msgstr ""
2957
+
2958
+ #: ../profile-builder-2.0/admin/manage-fields.php:380, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2959
+ msgid "Grenada"
2960
+ msgstr ""
2961
+
2962
+ #: ../profile-builder-2.0/admin/manage-fields.php:381, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2963
+ msgid "Guadeloupe"
2964
+ msgstr ""
2965
+
2966
+ #: ../profile-builder-2.0/admin/manage-fields.php:382, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2967
+ msgid "Guam"
2968
+ msgstr ""
2969
+
2970
+ #: ../profile-builder-2.0/admin/manage-fields.php:383, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2971
+ msgid "Guatemala"
2972
+ msgstr ""
2973
+
2974
+ #: ../profile-builder-2.0/admin/manage-fields.php:384, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2975
+ msgid "Guernsey"
2976
+ msgstr ""
2977
+
2978
+ #: ../profile-builder-2.0/admin/manage-fields.php:385, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2979
+ msgid "Guinea"
2980
+ msgstr ""
2981
+
2982
+ #: ../profile-builder-2.0/admin/manage-fields.php:386, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2983
+ msgid "Guinea-Bissau"
2984
+ msgstr ""
2985
+
2986
+ #: ../profile-builder-2.0/admin/manage-fields.php:387, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2987
+ msgid "Guyana"
2988
+ msgstr ""
2989
+
2990
+ #: ../profile-builder-2.0/admin/manage-fields.php:388, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2991
+ msgid "Haiti"
2992
+ msgstr ""
2993
+
2994
+ #: ../profile-builder-2.0/admin/manage-fields.php:389, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2995
+ msgid "Heard Island and McDonald Islands"
2996
+ msgstr ""
2997
+
2998
+ #: ../profile-builder-2.0/admin/manage-fields.php:390, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2999
+ msgid "Honduras"
3000
+ msgstr ""
3001
+
3002
+ #: ../profile-builder-2.0/admin/manage-fields.php:391, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3003
+ msgid "Hong Kong"
3004
+ msgstr ""
3005
+
3006
+ #: ../profile-builder-2.0/admin/manage-fields.php:392, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3007
+ msgid "Hungary"
3008
+ msgstr ""
3009
+
3010
+ #: ../profile-builder-2.0/admin/manage-fields.php:393, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3011
+ msgid "Iceland"
3012
+ msgstr ""
3013
+
3014
+ #: ../profile-builder-2.0/admin/manage-fields.php:394, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3015
+ msgid "India"
3016
+ msgstr ""
3017
+
3018
+ #: ../profile-builder-2.0/admin/manage-fields.php:395, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3019
+ msgid "Indonesia"
3020
+ msgstr ""
3021
+
3022
+ #: ../profile-builder-2.0/admin/manage-fields.php:396
3023
+ msgid "Iran"
3024
+ msgstr ""
3025
+
3026
+ #: ../profile-builder-2.0/admin/manage-fields.php:397, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3027
+ msgid "Iraq"
3028
+ msgstr ""
3029
+
3030
+ #: ../profile-builder-2.0/admin/manage-fields.php:398, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3031
+ msgid "Ireland"
3032
+ msgstr ""
3033
+
3034
+ #: ../profile-builder-2.0/admin/manage-fields.php:399, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3035
+ msgid "Isle of Man"
3036
+ msgstr ""
3037
+
3038
+ #: ../profile-builder-2.0/admin/manage-fields.php:400, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3039
+ msgid "Israel"
3040
+ msgstr ""
3041
+
3042
+ #: ../profile-builder-2.0/admin/manage-fields.php:401, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3043
+ msgid "Italy"
3044
+ msgstr ""
3045
+
3046
+ #: ../profile-builder-2.0/admin/manage-fields.php:402
3047
+ msgid "Ivory Coast"
3048
+ msgstr ""
3049
+
3050
+ #: ../profile-builder-2.0/admin/manage-fields.php:403, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3051
+ msgid "Jamaica"
3052
+ msgstr ""
3053
+
3054
+ #: ../profile-builder-2.0/admin/manage-fields.php:404, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3055
+ msgid "Japan"
3056
+ msgstr ""
3057
+
3058
+ #: ../profile-builder-2.0/admin/manage-fields.php:405, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3059
+ msgid "Jersey"
3060
+ msgstr ""
3061
+
3062
+ #: ../profile-builder-2.0/admin/manage-fields.php:406, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3063
+ msgid "Jordan"
3064
+ msgstr ""
3065
+
3066
+ #: ../profile-builder-2.0/admin/manage-fields.php:407, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3067
+ msgid "Kazakhstan"
3068
+ msgstr ""
3069
+
3070
+ #: ../profile-builder-2.0/admin/manage-fields.php:408, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3071
+ msgid "Kenya"
3072
+ msgstr ""
3073
+
3074
+ #: ../profile-builder-2.0/admin/manage-fields.php:409, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3075
+ msgid "Kiribati"
3076
+ msgstr ""
3077
+
3078
+ #: ../profile-builder-2.0/admin/manage-fields.php:410
3079
+ msgid "Kosovo"
3080
+ msgstr ""
3081
+
3082
+ #: ../profile-builder-2.0/admin/manage-fields.php:411, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3083
+ msgid "Kuwait"
3084
+ msgstr ""
3085
+
3086
+ #: ../profile-builder-2.0/admin/manage-fields.php:412, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3087
+ msgid "Kyrgyzstan"
3088
+ msgstr ""
3089
+
3090
+ #: ../profile-builder-2.0/admin/manage-fields.php:413
3091
+ msgid "Laos"
3092
+ msgstr ""
3093
+
3094
+ #: ../profile-builder-2.0/admin/manage-fields.php:414, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3095
+ msgid "Latvia"
3096
+ msgstr ""
3097
+
3098
+ #: ../profile-builder-2.0/admin/manage-fields.php:415, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3099
+ msgid "Lebanon"
3100
+ msgstr ""
3101
+
3102
+ #: ../profile-builder-2.0/admin/manage-fields.php:416, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3103
+ msgid "Lesotho"
3104
+ msgstr ""
3105
+
3106
+ #: ../profile-builder-2.0/admin/manage-fields.php:417, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3107
+ msgid "Liberia"
3108
+ msgstr ""
3109
+
3110
+ #: ../profile-builder-2.0/admin/manage-fields.php:418, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3111
+ msgid "Libya"
3112
+ msgstr ""
3113
+
3114
+ #: ../profile-builder-2.0/admin/manage-fields.php:419, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3115
+ msgid "Liechtenstein"
3116
+ msgstr ""
3117
+
3118
+ #: ../profile-builder-2.0/admin/manage-fields.php:420, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3119
+ msgid "Lithuania"
3120
+ msgstr ""
3121
+
3122
+ #: ../profile-builder-2.0/admin/manage-fields.php:421, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3123
+ msgid "Luxembourg"
3124
+ msgstr ""
3125
+
3126
+ #: ../profile-builder-2.0/admin/manage-fields.php:422, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3127
+ msgid "Macao"
3128
+ msgstr ""
3129
+
3130
+ #: ../profile-builder-2.0/admin/manage-fields.php:423
3131
+ msgid "Macedonia"
3132
+ msgstr ""
3133
+
3134
+ #: ../profile-builder-2.0/admin/manage-fields.php:424, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3135
+ msgid "Madagascar"
3136
+ msgstr ""
3137
+
3138
+ #: ../profile-builder-2.0/admin/manage-fields.php:425, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3139
+ msgid "Malawi"
3140
+ msgstr ""
3141
+
3142
+ #: ../profile-builder-2.0/admin/manage-fields.php:426, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3143
+ msgid "Malaysia"
3144
+ msgstr ""
3145
+
3146
+ #: ../profile-builder-2.0/admin/manage-fields.php:427, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3147
+ msgid "Maldives"
3148
+ msgstr ""
3149
+
3150
+ #: ../profile-builder-2.0/admin/manage-fields.php:428, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3151
+ msgid "Mali"
3152
+ msgstr ""
3153
+
3154
+ #: ../profile-builder-2.0/admin/manage-fields.php:429, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3155
+ msgid "Malta"
3156
+ msgstr ""
3157
+
3158
+ #: ../profile-builder-2.0/admin/manage-fields.php:430, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3159
+ msgid "Marshall Islands"
3160
+ msgstr ""
3161
+
3162
+ #: ../profile-builder-2.0/admin/manage-fields.php:431, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3163
+ msgid "Martinique"
3164
+ msgstr ""
3165
+
3166
+ #: ../profile-builder-2.0/admin/manage-fields.php:432, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3167
+ msgid "Mauritania"
3168
+ msgstr ""
3169
+
3170
+ #: ../profile-builder-2.0/admin/manage-fields.php:433, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3171
+ msgid "Mauritius"
3172
+ msgstr ""
3173
+
3174
+ #: ../profile-builder-2.0/admin/manage-fields.php:434, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3175
+ msgid "Mayotte"
3176
+ msgstr ""
3177
+
3178
+ #: ../profile-builder-2.0/admin/manage-fields.php:435, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3179
+ msgid "Mexico"
3180
+ msgstr ""
3181
+
3182
+ #: ../profile-builder-2.0/admin/manage-fields.php:436
3183
+ msgid "Micronesia"
3184
+ msgstr ""
3185
+
3186
+ #: ../profile-builder-2.0/admin/manage-fields.php:437
3187
+ msgid "Moldova"
3188
+ msgstr ""
3189
+
3190
+ #: ../profile-builder-2.0/admin/manage-fields.php:438, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3191
+ msgid "Monaco"
3192
+ msgstr ""
3193
+
3194
+ #: ../profile-builder-2.0/admin/manage-fields.php:439, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3195
+ msgid "Mongolia"
3196
+ msgstr ""
3197
+
3198
+ #: ../profile-builder-2.0/admin/manage-fields.php:440, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3199
+ msgid "Montenegro"
3200
+ msgstr ""
3201
+
3202
+ #: ../profile-builder-2.0/admin/manage-fields.php:441, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3203
+ msgid "Montserrat"
3204
+ msgstr ""
3205
+
3206
+ #: ../profile-builder-2.0/admin/manage-fields.php:442, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3207
+ msgid "Morocco"
3208
+ msgstr ""
3209
+
3210
+ #: ../profile-builder-2.0/admin/manage-fields.php:443, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3211
+ msgid "Mozambique"
3212
+ msgstr ""
3213
+
3214
+ #: ../profile-builder-2.0/admin/manage-fields.php:444, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3215
+ msgid "Myanmar"
3216
+ msgstr ""
3217
+
3218
+ #: ../profile-builder-2.0/admin/manage-fields.php:445, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3219
+ msgid "Namibia"
3220
+ msgstr ""
3221
+
3222
+ #: ../profile-builder-2.0/admin/manage-fields.php:446, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3223
+ msgid "Nauru"
3224
+ msgstr ""
3225
+
3226
+ #: ../profile-builder-2.0/admin/manage-fields.php:447, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3227
+ msgid "Nepal"
3228
+ msgstr ""
3229
+
3230
+ #: ../profile-builder-2.0/admin/manage-fields.php:448, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3231
+ msgid "Netherlands"
3232
+ msgstr ""
3233
+
3234
+ #: ../profile-builder-2.0/admin/manage-fields.php:449, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3235
+ msgid "New Caledonia"
3236
+ msgstr ""
3237
+
3238
+ #: ../profile-builder-2.0/admin/manage-fields.php:450, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3239
+ msgid "New Zealand"
3240
+ msgstr ""
3241
+
3242
+ #: ../profile-builder-2.0/admin/manage-fields.php:451, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3243
+ msgid "Nicaragua"
3244
+ msgstr ""
3245
+
3246
+ #: ../profile-builder-2.0/admin/manage-fields.php:452, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3247
+ msgid "Niger"
3248
+ msgstr ""
3249
+
3250
+ #: ../profile-builder-2.0/admin/manage-fields.php:453, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3251
+ msgid "Nigeria"
3252
+ msgstr ""
3253
+
3254
+ #: ../profile-builder-2.0/admin/manage-fields.php:454, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3255
+ msgid "Niue"
3256
+ msgstr ""
3257
+
3258
+ #: ../profile-builder-2.0/admin/manage-fields.php:455, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3259
+ msgid "Norfolk Island"
3260
+ msgstr ""
3261
+
3262
+ #: ../profile-builder-2.0/admin/manage-fields.php:456
3263
+ msgid "North Korea"
3264
+ msgstr ""
3265
+
3266
+ #: ../profile-builder-2.0/admin/manage-fields.php:457, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3267
+ msgid "Northern Mariana Islands"
3268
+ msgstr ""
3269
+
3270
+ #: ../profile-builder-2.0/admin/manage-fields.php:458, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3271
+ msgid "Norway"
3272
+ msgstr ""
3273
+
3274
+ #: ../profile-builder-2.0/admin/manage-fields.php:459, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3275
+ msgid "Oman"
3276
+ msgstr ""
3277
+
3278
+ #: ../profile-builder-2.0/admin/manage-fields.php:460, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3279
+ msgid "Pakistan"
3280
+ msgstr ""
3281
+
3282
+ #: ../profile-builder-2.0/admin/manage-fields.php:461, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3283
+ msgid "Palau"
3284
+ msgstr ""
3285
+
3286
+ #: ../profile-builder-2.0/admin/manage-fields.php:462
3287
+ msgid "Palestinian Territory"
3288
+ msgstr ""
3289
+
3290
+ #: ../profile-builder-2.0/admin/manage-fields.php:463, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3291
+ msgid "Panama"
3292
+ msgstr ""
3293
+
3294
+ #: ../profile-builder-2.0/admin/manage-fields.php:464, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3295
+ msgid "Papua New Guinea"
3296
+ msgstr ""
3297
+
3298
+ #: ../profile-builder-2.0/admin/manage-fields.php:465, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3299
+ msgid "Paraguay"
3300
+ msgstr ""
3301
+
3302
+ #: ../profile-builder-2.0/admin/manage-fields.php:466, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3303
+ msgid "Peru"
3304
+ msgstr ""
3305
+
3306
+ #: ../profile-builder-2.0/admin/manage-fields.php:467, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3307
+ msgid "Philippines"
3308
+ msgstr ""
3309
+
3310
+ #: ../profile-builder-2.0/admin/manage-fields.php:468, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3311
+ msgid "Pitcairn"
3312
+ msgstr ""
3313
+
3314
+ #: ../profile-builder-2.0/admin/manage-fields.php:469, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3315
+ msgid "Poland"
3316
+ msgstr ""
3317
+
3318
+ #: ../profile-builder-2.0/admin/manage-fields.php:470, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3319
+ msgid "Portugal"
3320
+ msgstr ""
3321
+
3322
+ #: ../profile-builder-2.0/admin/manage-fields.php:471, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3323
+ msgid "Puerto Rico"
3324
+ msgstr ""
3325
+
3326
+ #: ../profile-builder-2.0/admin/manage-fields.php:472, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3327
+ msgid "Qatar"
3328
+ msgstr ""
3329
+
3330
+ #: ../profile-builder-2.0/admin/manage-fields.php:473
3331
+ msgid "Republic of the Congo"
3332
+ msgstr ""
3333
+
3334
+ #: ../profile-builder-2.0/admin/manage-fields.php:474, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3335
+ msgid "Reunion"
3336
+ msgstr ""
3337
+
3338
+ #: ../profile-builder-2.0/admin/manage-fields.php:475, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3339
+ msgid "Romania"
3340
+ msgstr ""
3341
+
3342
+ #: ../profile-builder-2.0/admin/manage-fields.php:476
3343
+ msgid "Russia"
3344
+ msgstr ""
3345
+
3346
+ #: ../profile-builder-2.0/admin/manage-fields.php:477, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3347
+ msgid "Rwanda"
3348
+ msgstr ""
3349
+
3350
+ #: ../profile-builder-2.0/admin/manage-fields.php:478, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3351
+ msgid "Saint Barthelemy"
3352
+ msgstr ""
3353
+
3354
+ #: ../profile-builder-2.0/admin/manage-fields.php:479
3355
+ msgid "Saint Helena"
3356
+ msgstr ""
3357
+
3358
+ #: ../profile-builder-2.0/admin/manage-fields.php:480, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3359
+ msgid "Saint Kitts and Nevis"
3360
+ msgstr ""
3361
+
3362
+ #: ../profile-builder-2.0/admin/manage-fields.php:481, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3363
+ msgid "Saint Lucia"
3364
+ msgstr ""
3365
+
3366
+ #: ../profile-builder-2.0/admin/manage-fields.php:482
3367
+ msgid "Saint Martin"
3368
+ msgstr ""
3369
+
3370
+ #: ../profile-builder-2.0/admin/manage-fields.php:483, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3371
+ msgid "Saint Pierre and Miquelon"
3372
+ msgstr ""
3373
+
3374
+ #: ../profile-builder-2.0/admin/manage-fields.php:484, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3375
+ msgid "Saint Vincent and the Grenadines"
3376
+ msgstr ""
3377
+
3378
+ #: ../profile-builder-2.0/admin/manage-fields.php:485, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3379
+ msgid "Samoa"
3380
+ msgstr ""
3381
+
3382
+ #: ../profile-builder-2.0/admin/manage-fields.php:486, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3383
+ msgid "San Marino"
3384
+ msgstr ""
3385
+
3386
+ #: ../profile-builder-2.0/admin/manage-fields.php:487, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3387
+ msgid "Sao Tome and Principe"
3388
+ msgstr ""
3389
+
3390
+ #: ../profile-builder-2.0/admin/manage-fields.php:488, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3391
+ msgid "Saudi Arabia"
3392
+ msgstr ""
3393
+
3394
+ #: ../profile-builder-2.0/admin/manage-fields.php:489, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3395
+ msgid "Senegal"
3396
+ msgstr ""
3397
+
3398
+ #: ../profile-builder-2.0/admin/manage-fields.php:490, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3399
+ msgid "Serbia"
3400
+ msgstr ""
3401
+
3402
+ #: ../profile-builder-2.0/admin/manage-fields.php:491, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3403
+ msgid "Seychelles"
3404
+ msgstr ""
3405
+
3406
+ #: ../profile-builder-2.0/admin/manage-fields.php:492, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3407
+ msgid "Sierra Leone"
3408
+ msgstr ""
3409
+
3410
+ #: ../profile-builder-2.0/admin/manage-fields.php:493, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3411
+ msgid "Singapore"
3412
+ msgstr ""
3413
+
3414
+ #: ../profile-builder-2.0/admin/manage-fields.php:494
3415
+ msgid "Sint Maarten"
3416
+ msgstr ""
3417
+
3418
+ #: ../profile-builder-2.0/admin/manage-fields.php:495, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3419
+ msgid "Slovakia"
3420
+ msgstr ""
3421
+
3422
+ #: ../profile-builder-2.0/admin/manage-fields.php:496, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3423
+ msgid "Slovenia"
3424
+ msgstr ""
3425
+
3426
+ #: ../profile-builder-2.0/admin/manage-fields.php:497, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3427
+ msgid "Solomon Islands"
3428
+ msgstr ""
3429
+
3430
+ #: ../profile-builder-2.0/admin/manage-fields.php:498, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3431
+ msgid "Somalia"
3432
+ msgstr ""
3433
+
3434
+ #: ../profile-builder-2.0/admin/manage-fields.php:499, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3435
+ msgid "South Africa"
3436
+ msgstr ""
3437
+
3438
+ #: ../profile-builder-2.0/admin/manage-fields.php:500, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3439
+ msgid "South Georgia and the South Sandwich Islands"
3440
+ msgstr ""
3441
+
3442
+ #: ../profile-builder-2.0/admin/manage-fields.php:501
3443
+ msgid "South Korea"
3444
+ msgstr ""
3445
+
3446
+ #: ../profile-builder-2.0/admin/manage-fields.php:502, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3447
+ msgid "South Sudan"
3448
+ msgstr ""
3449
+
3450
+ #: ../profile-builder-2.0/admin/manage-fields.php:503, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3451
+ msgid "Spain"
3452
+ msgstr ""
3453
+
3454
+ #: ../profile-builder-2.0/admin/manage-fields.php:504, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3455
+ msgid "Sri Lanka"
3456
+ msgstr ""
3457
+
3458
+ #: ../profile-builder-2.0/admin/manage-fields.php:505, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3459
+ msgid "Sudan"
3460
+ msgstr ""
3461
+
3462
+ #: ../profile-builder-2.0/admin/manage-fields.php:506, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3463
+ msgid "Suriname"
3464
+ msgstr ""
3465
+
3466
+ #: ../profile-builder-2.0/admin/manage-fields.php:507, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3467
+ msgid "Svalbard and Jan Mayen"
3468
+ msgstr ""
3469
+
3470
+ #: ../profile-builder-2.0/admin/manage-fields.php:508, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3471
+ msgid "Swaziland"
3472
+ msgstr ""
3473
+
3474
+ #: ../profile-builder-2.0/admin/manage-fields.php:509, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3475
+ msgid "Sweden"
3476
+ msgstr ""
3477
+
3478
+ #: ../profile-builder-2.0/admin/manage-fields.php:510, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3479
+ msgid "Switzerland"
3480
+ msgstr ""
3481
+
3482
+ #: ../profile-builder-2.0/admin/manage-fields.php:511
3483
+ msgid "Syria"
3484
+ msgstr ""
3485
+
3486
+ #: ../profile-builder-2.0/admin/manage-fields.php:512
3487
+ msgid "Taiwan"
3488
+ msgstr ""
3489
+
3490
+ #: ../profile-builder-2.0/admin/manage-fields.php:513, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3491
+ msgid "Tajikistan"
3492
+ msgstr ""
3493
+
3494
+ #: ../profile-builder-2.0/admin/manage-fields.php:514
3495
+ msgid "Tanzania"
3496
+ msgstr ""
3497
+
3498
+ #: ../profile-builder-2.0/admin/manage-fields.php:515, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3499
+ msgid "Thailand"
3500
+ msgstr ""
3501
+
3502
+ #: ../profile-builder-2.0/admin/manage-fields.php:516, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3503
+ msgid "Togo"
3504
+ msgstr ""
3505
+
3506
+ #: ../profile-builder-2.0/admin/manage-fields.php:517, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3507
+ msgid "Tokelau"
3508
+ msgstr ""
3509
+
3510
+ #: ../profile-builder-2.0/admin/manage-fields.php:518, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3511
+ msgid "Tonga"
3512
+ msgstr ""
3513
+
3514
+ #: ../profile-builder-2.0/admin/manage-fields.php:519, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3515
+ msgid "Trinidad and Tobago"
3516
+ msgstr ""
3517
+
3518
+ #: ../profile-builder-2.0/admin/manage-fields.php:520, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3519
+ msgid "Tunisia"
3520
+ msgstr ""
3521
+
3522
+ #: ../profile-builder-2.0/admin/manage-fields.php:521, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3523
+ msgid "Turkey"
3524
+ msgstr ""
3525
+
3526
+ #: ../profile-builder-2.0/admin/manage-fields.php:522, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3527
+ msgid "Turkmenistan"
3528
+ msgstr ""
3529
+
3530
+ #: ../profile-builder-2.0/admin/manage-fields.php:523, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3531
+ msgid "Turks and Caicos Islands"
3532
+ msgstr ""
3533
+
3534
+ #: ../profile-builder-2.0/admin/manage-fields.php:524, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3535
+ msgid "Tuvalu"
3536
+ msgstr ""
3537
+
3538
+ #: ../profile-builder-2.0/admin/manage-fields.php:525
3539
+ msgid "U.S. Virgin Islands"
3540
+ msgstr ""
3541
+
3542
+ #: ../profile-builder-2.0/admin/manage-fields.php:526, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3543
+ msgid "Uganda"
3544
+ msgstr ""
3545
+
3546
+ #: ../profile-builder-2.0/admin/manage-fields.php:527, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3547
+ msgid "Ukraine"
3548
+ msgstr ""
3549
+
3550
+ #: ../profile-builder-2.0/admin/manage-fields.php:528, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3551
+ msgid "United Arab Emirates"
3552
+ msgstr ""
3553
+
3554
+ #: ../profile-builder-2.0/admin/manage-fields.php:529, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3555
+ msgid "United Kingdom"
3556
+ msgstr ""
3557
+
3558
+ #: ../profile-builder-2.0/admin/manage-fields.php:530, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3559
+ msgid "United States"
3560
+ msgstr ""
3561
+
3562
+ #: ../profile-builder-2.0/admin/manage-fields.php:531, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3563
+ msgid "United States Minor Outlying Islands"
3564
+ msgstr ""
3565
+
3566
+ #: ../profile-builder-2.0/admin/manage-fields.php:532, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3567
+ msgid "Uruguay"
3568
+ msgstr ""
3569
+
3570
+ #: ../profile-builder-2.0/admin/manage-fields.php:533, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3571
+ msgid "Uzbekistan"
3572
+ msgstr ""
3573
+
3574
+ #: ../profile-builder-2.0/admin/manage-fields.php:534, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3575
+ msgid "Vanuatu"
3576
+ msgstr ""
3577
+
3578
+ #: ../profile-builder-2.0/admin/manage-fields.php:535
3579
+ msgid "Vatican"
3580
+ msgstr ""
3581
+
3582
+ #: ../profile-builder-2.0/admin/manage-fields.php:536
3583
+ msgid "Venezuela"
3584
+ msgstr ""
3585
+
3586
+ #: ../profile-builder-2.0/admin/manage-fields.php:537
3587
+ msgid "Vietnam"
3588
+ msgstr ""
3589
+
3590
+ #: ../profile-builder-2.0/admin/manage-fields.php:538, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3591
+ msgid "Wallis and Futuna"
3592
+ msgstr ""
3593
+
3594
+ #: ../profile-builder-2.0/admin/manage-fields.php:539, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3595
+ msgid "Western Sahara"
3596
+ msgstr ""
3597
+
3598
+ #: ../profile-builder-2.0/admin/manage-fields.php:540, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3599
+ msgid "Yemen"
3600
+ msgstr ""
3601
+
3602
+ #: ../profile-builder-2.0/admin/manage-fields.php:541, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3603
+ msgid "Zambia"
3604
+ msgstr ""
3605
+
3606
+ #: ../profile-builder-2.0/admin/manage-fields.php:542, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3607
+ msgid "Zimbabwe"
3608
+ msgstr ""
3609
+
3610
+ #: ../profile-builder-2.0/admin/manage-fields.php:575
3611
+ msgid "Albania Lek"
3612
+ msgstr ""
3613
+
3614
+ #: ../profile-builder-2.0/admin/manage-fields.php:576
3615
+ msgid "Afghanistan Afghani"
3616
+ msgstr ""
3617
+
3618
+ #: ../profile-builder-2.0/admin/manage-fields.php:577
3619
+ msgid "Argentina Peso"
3620
+ msgstr ""
3621
+
3622
+ #: ../profile-builder-2.0/admin/manage-fields.php:579
3623
+ msgid "Australia Dollar"
3624
+ msgstr ""
3625
+
3626
+ #: ../profile-builder-2.0/admin/manage-fields.php:580
3627
+ msgid "Azerbaijan New Manat"
3628
+ msgstr ""
3629
+
3630
+ #: ../profile-builder-2.0/admin/manage-fields.php:581
3631
+ msgid "Bahamas Dollar"
3632
+ msgstr ""
3633
+
3634
+ #: ../profile-builder-2.0/admin/manage-fields.php:582
3635
+ msgid "Barbados Dollar"
3636
+ msgstr ""
3637
+
3638
+ #: ../profile-builder-2.0/admin/manage-fields.php:583
3639
+ msgid "Bangladeshi taka"
3640
+ msgstr ""
3641
+
3642
+ #: ../profile-builder-2.0/admin/manage-fields.php:584
3643
+ msgid "Belarus Ruble"
3644
+ msgstr ""
3645
+
3646
+ #: ../profile-builder-2.0/admin/manage-fields.php:585
3647
+ msgid "Belize Dollar"
3648
+ msgstr ""
3649
+
3650
+ #: ../profile-builder-2.0/admin/manage-fields.php:586
3651
+ msgid "Bermuda Dollar"
3652
+ msgstr ""
3653
+
3654
+ #: ../profile-builder-2.0/admin/manage-fields.php:587
3655
+ msgid "Bolivia Boliviano"
3656
+ msgstr ""
3657
+
3658
+ #: ../profile-builder-2.0/admin/manage-fields.php:588
3659
+ msgid "Bosnia and Herzegovina Convertible Marka"
3660
+ msgstr ""
3661
+
3662
+ #: ../profile-builder-2.0/admin/manage-fields.php:589
3663
+ msgid "Botswana Pula"
3664
+ msgstr ""
3665
+
3666
+ #: ../profile-builder-2.0/admin/manage-fields.php:590
3667
+ msgid "Bulgaria Lev"
3668
+ msgstr ""
3669
+
3670
+ #: ../profile-builder-2.0/admin/manage-fields.php:591
3671
+ msgid "Brazil Real"
3672
+ msgstr ""
3673
+
3674
+ #: ../profile-builder-2.0/admin/manage-fields.php:592
3675
+ msgid "Brunei Darussalam Dollar"
3676
+ msgstr ""
3677
+
3678
+ #: ../profile-builder-2.0/admin/manage-fields.php:593
3679
+ msgid "Cambodia Riel"
3680
+ msgstr ""
3681
+
3682
+ #: ../profile-builder-2.0/admin/manage-fields.php:594
3683
+ msgid "Canada Dollar"
3684
+ msgstr ""
3685
+
3686
+ #: ../profile-builder-2.0/admin/manage-fields.php:595
3687
+ msgid "Cayman Islands Dollar"
3688
+ msgstr ""
3689
+
3690
+ #: ../profile-builder-2.0/admin/manage-fields.php:596
3691
+ msgid "Chile Peso"
3692
+ msgstr ""
3693
+
3694
+ #: ../profile-builder-2.0/admin/manage-fields.php:597
3695
+ msgid "China Yuan Renminbi"
3696
+ msgstr ""
3697
+
3698
+ #: ../profile-builder-2.0/admin/manage-fields.php:598
3699
+ msgid "Colombia Peso"
3700
+ msgstr ""
3701
+
3702
+ #: ../profile-builder-2.0/admin/manage-fields.php:599
3703
+ msgid "Costa Rica Colon"
3704
+ msgstr ""
3705
+
3706
+ #: ../profile-builder-2.0/admin/manage-fields.php:600
3707
+ msgid "Croatia Kuna"
3708
+ msgstr ""
3709
+
3710
+ #: ../profile-builder-2.0/admin/manage-fields.php:601
3711
+ msgid "Cuba Peso"
3712
+ msgstr ""
3713
+
3714
+ #: ../profile-builder-2.0/admin/manage-fields.php:602
3715
+ msgid "Czech Republic Koruna"
3716
+ msgstr ""
3717
+
3718
+ #: ../profile-builder-2.0/admin/manage-fields.php:603
3719
+ msgid "Denmark Krone"
3720
+ msgstr ""
3721
+
3722
+ #: ../profile-builder-2.0/admin/manage-fields.php:604
3723
+ msgid "Dominican Republic Peso"
3724
+ msgstr ""
3725
+
3726
+ #: ../profile-builder-2.0/admin/manage-fields.php:605
3727
+ msgid "East Caribbean Dollar"
3728
+ msgstr ""
3729
+
3730
+ #: ../profile-builder-2.0/admin/manage-fields.php:606
3731
+ msgid "Egypt Pound"
3732
+ msgstr ""
3733
+
3734
+ #: ../profile-builder-2.0/admin/manage-fields.php:607
3735
+ msgid "El Salvador Colon"
3736
+ msgstr ""
3737
+
3738
+ #: ../profile-builder-2.0/admin/manage-fields.php:608
3739
+ msgid "Estonia Kroon"
3740
+ msgstr ""
3741
+
3742
+ #: ../profile-builder-2.0/admin/manage-fields.php:609
3743
+ msgid "Euro"
3744
+ msgstr ""
3745
+
3746
+ #: ../profile-builder-2.0/admin/manage-fields.php:610
3747
+ msgid "Falkland Islands (Malvinas) Pound"
3748
+ msgstr ""
3749
+
3750
+ #: ../profile-builder-2.0/admin/manage-fields.php:611
3751
+ msgid "Fiji Dollar"
3752
+ msgstr ""
3753
+
3754
+ #: ../profile-builder-2.0/admin/manage-fields.php:612
3755
+ msgid "Ghana Cedis"
3756
+ msgstr ""
3757
+
3758
+ #: ../profile-builder-2.0/admin/manage-fields.php:613
3759
+ msgid "Gibraltar Pound"
3760
+ msgstr ""
3761
+
3762
+ #: ../profile-builder-2.0/admin/manage-fields.php:614
3763
+ msgid "Guatemala Quetzal"
3764
+ msgstr ""
3765
+
3766
+ #: ../profile-builder-2.0/admin/manage-fields.php:615
3767
+ msgid "Guernsey Pound"
3768
+ msgstr ""
3769
+
3770
+ #: ../profile-builder-2.0/admin/manage-fields.php:616
3771
+ msgid "Guyana Dollar"
3772
+ msgstr ""
3773
+
3774
+ #: ../profile-builder-2.0/admin/manage-fields.php:617
3775
+ msgid "Honduras Lempira"
3776
+ msgstr ""
3777
+
3778
+ #: ../profile-builder-2.0/admin/manage-fields.php:618
3779
+ msgid "Hong Kong Dollar"
3780
+ msgstr ""
3781
+
3782
+ #: ../profile-builder-2.0/admin/manage-fields.php:619
3783
+ msgid "Hungary Forint"
3784
+ msgstr ""
3785
+
3786
+ #: ../profile-builder-2.0/admin/manage-fields.php:620
3787
+ msgid "Iceland Krona"
3788
+ msgstr ""
3789
+
3790
+ #: ../profile-builder-2.0/admin/manage-fields.php:621
3791
+ msgid "India Rupee"
3792
+ msgstr ""
3793
+
3794
+ #: ../profile-builder-2.0/admin/manage-fields.php:622
3795
+ msgid "Indonesia Rupiah"
3796
+ msgstr ""
3797
+
3798
+ #: ../profile-builder-2.0/admin/manage-fields.php:623
3799
+ msgid "Iran Rial"
3800
+ msgstr ""
3801
+
3802
+ #: ../profile-builder-2.0/admin/manage-fields.php:624
3803
+ msgid "Isle of Man Pound"
3804
+ msgstr ""
3805
+
3806
+ #: ../profile-builder-2.0/admin/manage-fields.php:625
3807
+ msgid "Israel Shekel"
3808
+ msgstr ""
3809
+
3810
+ #: ../profile-builder-2.0/admin/manage-fields.php:626
3811
+ msgid "Jamaica Dollar"
3812
+ msgstr ""
3813
+
3814
+ #: ../profile-builder-2.0/admin/manage-fields.php:627
3815
+ msgid "Japan Yen"
3816
+ msgstr ""
3817
+
3818
+ #: ../profile-builder-2.0/admin/manage-fields.php:628
3819
+ msgid "Jersey Pound"
3820
+ msgstr ""
3821
+
3822
+ #: ../profile-builder-2.0/admin/manage-fields.php:629
3823
+ msgid "Kazakhstan Tenge"
3824
+ msgstr ""
3825
+
3826
+ #: ../profile-builder-2.0/admin/manage-fields.php:630
3827
+ msgid "Korea (North) Won"
3828
+ msgstr ""
3829
+
3830
+ #: ../profile-builder-2.0/admin/manage-fields.php:631
3831
+ msgid "Korea (South) Won"
3832
+ msgstr ""
3833
+
3834
+ #: ../profile-builder-2.0/admin/manage-fields.php:632
3835
+ msgid "Kyrgyzstan Som"
3836
+ msgstr ""
3837
+
3838
+ #: ../profile-builder-2.0/admin/manage-fields.php:633
3839
+ msgid "Laos Kip"
3840
+ msgstr ""
3841
+
3842
+ #: ../profile-builder-2.0/admin/manage-fields.php:634
3843
+ msgid "Latvia Lat"
3844
+ msgstr ""
3845
+
3846
+ #: ../profile-builder-2.0/admin/manage-fields.php:635
3847
+ msgid "Lebanon Pound"
3848
+ msgstr ""
3849
+
3850
+ #: ../profile-builder-2.0/admin/manage-fields.php:636
3851
+ msgid "Liberia Dollar"
3852
+ msgstr ""
3853
+
3854
+ #: ../profile-builder-2.0/admin/manage-fields.php:637
3855
+ msgid "Lithuania Litas"
3856
+ msgstr ""
3857
+
3858
+ #: ../profile-builder-2.0/admin/manage-fields.php:638
3859
+ msgid "Macedonia Denar"
3860
+ msgstr ""
3861
+
3862
+ #: ../profile-builder-2.0/admin/manage-fields.php:639
3863
+ msgid "Malaysia Ringgit"
3864
+ msgstr ""
3865
+
3866
+ #: ../profile-builder-2.0/admin/manage-fields.php:640
3867
+ msgid "Mauritius Rupee"
3868
+ msgstr ""
3869
+
3870
+ #: ../profile-builder-2.0/admin/manage-fields.php:641
3871
+ msgid "Mexico Peso"
3872
+ msgstr ""
3873
+
3874
+ #: ../profile-builder-2.0/admin/manage-fields.php:642
3875
+ msgid "Mongolia Tughrik"
3876
+ msgstr ""
3877
+
3878
+ #: ../profile-builder-2.0/admin/manage-fields.php:643
3879
+ msgid "Mozambique Metical"
3880
+ msgstr ""
3881
+
3882
+ #: ../profile-builder-2.0/admin/manage-fields.php:644
3883
+ msgid "Namibia Dollar"
3884
+ msgstr ""
3885
+
3886
+ #: ../profile-builder-2.0/admin/manage-fields.php:645
3887
+ msgid "Nepal Rupee"
3888
+ msgstr ""
3889
+
3890
+ #: ../profile-builder-2.0/admin/manage-fields.php:646
3891
+ msgid "Netherlands Antilles Guilder"
3892
+ msgstr ""
3893
+
3894
+ #: ../profile-builder-2.0/admin/manage-fields.php:647
3895
+ msgid "New Zealand Dollar"
3896
+ msgstr ""
3897
+
3898
+ #: ../profile-builder-2.0/admin/manage-fields.php:648
3899
+ msgid "Nicaragua Cordoba"
3900
+ msgstr ""
3901
+
3902
+ #: ../profile-builder-2.0/admin/manage-fields.php:649
3903
+ msgid "Nigeria Naira"
3904
+ msgstr ""
3905
+
3906
+ #: ../profile-builder-2.0/admin/manage-fields.php:650
3907
+ msgid "Norway Krone"
3908
+ msgstr ""
3909
+
3910
+ #: ../profile-builder-2.0/admin/manage-fields.php:651
3911
+ msgid "Oman Rial"
3912
+ msgstr ""
3913
+
3914
+ #: ../profile-builder-2.0/admin/manage-fields.php:652
3915
+ msgid "Pakistan Rupee"
3916
+ msgstr ""
3917
+
3918
+ #: ../profile-builder-2.0/admin/manage-fields.php:653
3919
+ msgid "Panama Balboa"
3920
+ msgstr ""
3921
+
3922
+ #: ../profile-builder-2.0/admin/manage-fields.php:654
3923
+ msgid "Paraguay Guarani"
3924
+ msgstr ""
3925
+
3926
+ #: ../profile-builder-2.0/admin/manage-fields.php:655
3927
+ msgid "Peru Nuevo Sol"
3928
+ msgstr ""
3929
+
3930
+ #: ../profile-builder-2.0/admin/manage-fields.php:656
3931
+ msgid "Philippines Peso"
3932
+ msgstr ""
3933
+
3934
+ #: ../profile-builder-2.0/admin/manage-fields.php:657
3935
+ msgid "Poland Zloty"
3936
+ msgstr ""
3937
+
3938
+ #: ../profile-builder-2.0/admin/manage-fields.php:658
3939
+ msgid "Qatar Riyal"
3940
+ msgstr ""
3941
+
3942
+ #: ../profile-builder-2.0/admin/manage-fields.php:659
3943
+ msgid "Romania New Leu"
3944
+ msgstr ""
3945
+
3946
+ #: ../profile-builder-2.0/admin/manage-fields.php:660
3947
+ msgid "Russia Ruble"
3948
+ msgstr ""
3949
+
3950
+ #: ../profile-builder-2.0/admin/manage-fields.php:661
3951
+ msgid "Saint Helena Pound"
3952
+ msgstr ""
3953
+
3954
+ #: ../profile-builder-2.0/admin/manage-fields.php:662
3955
+ msgid "Saudi Arabia Riyal"
3956
+ msgstr ""
3957
+
3958
+ #: ../profile-builder-2.0/admin/manage-fields.php:663
3959
+ msgid "Serbia Dinar"
3960
+ msgstr ""
3961
+
3962
+ #: ../profile-builder-2.0/admin/manage-fields.php:664
3963
+ msgid "Seychelles Rupee"
3964
+ msgstr ""
3965
+
3966
+ #: ../profile-builder-2.0/admin/manage-fields.php:665
3967
+ msgid "Singapore Dollar"
3968
+ msgstr ""
3969
+
3970
+ #: ../profile-builder-2.0/admin/manage-fields.php:666
3971
+ msgid "Solomon Islands Dollar"
3972
+ msgstr ""
3973
+
3974
+ #: ../profile-builder-2.0/admin/manage-fields.php:667
3975
+ msgid "Somalia Shilling"
3976
+ msgstr ""
3977
+
3978
+ #: ../profile-builder-2.0/admin/manage-fields.php:668
3979
+ msgid "South Africa Rand"
3980
+ msgstr ""
3981
+
3982
+ #: ../profile-builder-2.0/admin/manage-fields.php:669
3983
+ msgid "Sri Lanka Rupee"
3984
+ msgstr ""
3985
+
3986
+ #: ../profile-builder-2.0/admin/manage-fields.php:670
3987
+ msgid "Sweden Krona"
3988
+ msgstr ""
3989
+
3990
+ #: ../profile-builder-2.0/admin/manage-fields.php:671
3991
+ msgid "Switzerland Franc"
3992
+ msgstr ""
3993
+
3994
+ #: ../profile-builder-2.0/admin/manage-fields.php:672
3995
+ msgid "Suriname Dollar"
3996
+ msgstr ""
3997
+
3998
+ #: ../profile-builder-2.0/admin/manage-fields.php:673
3999
+ msgid "Syria Pound"
4000
+ msgstr ""
4001
+
4002
+ #: ../profile-builder-2.0/admin/manage-fields.php:674
4003
+ msgid "Taiwan New Dollar"
4004
+ msgstr ""
4005
+
4006
+ #: ../profile-builder-2.0/admin/manage-fields.php:675
4007
+ msgid "Thailand Baht"
4008
+ msgstr ""
4009
+
4010
+ #: ../profile-builder-2.0/admin/manage-fields.php:676
4011
+ msgid "Trinidad and Tobago Dollar"
4012
+ msgstr ""
4013
+
4014
+ #: ../profile-builder-2.0/admin/manage-fields.php:677, ../profile-builder-2.0/admin/manage-fields.php:678
4015
+ msgid "Turkey Lira"
4016
+ msgstr ""
4017
+
4018
+ #: ../profile-builder-2.0/admin/manage-fields.php:679
4019
+ msgid "Tuvalu Dollar"
4020
+ msgstr ""
4021
+
4022
+ #: ../profile-builder-2.0/admin/manage-fields.php:680
4023
+ msgid "Ukraine Hryvna"
4024
+ msgstr ""
4025
+
4026
+ #: ../profile-builder-2.0/admin/manage-fields.php:681
4027
+ msgid "United Kingdom Pound"
4028
+ msgstr ""
4029
+
4030
+ #: ../profile-builder-2.0/admin/manage-fields.php:682
4031
+ msgid "Uganda Shilling"
4032
+ msgstr ""
4033
+
4034
+ #: ../profile-builder-2.0/admin/manage-fields.php:683
4035
+ msgid "US Dollar"
4036
+ msgstr ""
4037
+
4038
+ #: ../profile-builder-2.0/admin/manage-fields.php:684
4039
+ msgid "Uruguay Peso"
4040
+ msgstr ""
4041
+
4042
+ #: ../profile-builder-2.0/admin/manage-fields.php:685
4043
+ msgid "Uzbekistan Som"
4044
+ msgstr ""
4045
+
4046
+ #: ../profile-builder-2.0/admin/manage-fields.php:686
4047
+ msgid "Venezuela Bolivar"
4048
+ msgstr ""
4049
+
4050
+ #: ../profile-builder-2.0/admin/manage-fields.php:687
4051
+ msgid "Viet Nam Dong"
4052
+ msgstr ""
4053
+
4054
+ #: ../profile-builder-2.0/admin/manage-fields.php:688
4055
+ msgid "Yemen Rial"
4056
+ msgstr ""
4057
+
4058
+ #: ../profile-builder-2.0/admin/manage-fields.php:689
4059
+ msgid "Zimbabwe Dollar"
4060
+ msgstr ""
4061
+
4062
+ #: ../profile-builder-2.0/admin/manage-fields.php:991, ../profile-builder-2.0/admin/manage-fields.php:1148
4063
+ msgid ""
4064
+ "You must select a field\n"
4065
+ ""
4066
+ msgstr ""
4067
+
4068
+ #: ../profile-builder-2.0/admin/manage-fields.php:1001
4069
+ msgid ""
4070
+ "Please choose a different field type as this one already exists in your form (must be unique)\n"
4071
+ ""
4072
+ msgstr ""
4073
+
4074
+ #: ../profile-builder-2.0/admin/manage-fields.php:1012
4075
+ msgid ""
4076
+ "The entered avatar size is not between 20 and 200\n"
4077
+ ""
4078
+ msgstr ""
4079
+
4080
+ #: ../profile-builder-2.0/admin/manage-fields.php:1015
4081
+ msgid ""
4082
+ "The entered avatar size is not numerical\n"
4083
+ ""
4084
+ msgstr ""
4085
+
4086
+ #: ../profile-builder-2.0/admin/manage-fields.php:1023
4087
+ msgid ""
4088
+ "The entered row number is not numerical\n"
4089
+ ""
4090
+ msgstr ""
4091
+
4092
+ #: ../profile-builder-2.0/admin/manage-fields.php:1026
4093
+ msgid ""
4094
+ "You must enter a value for the row number\n"
4095
+ ""
4096
+ msgstr ""
4097
+
4098
+ #: ../profile-builder-2.0/admin/manage-fields.php:1034
4099
+ msgid ""
4100
+ "You must enter the site key\n"
4101
+ ""
4102
+ msgstr ""
4103
+
4104
+ #: ../profile-builder-2.0/admin/manage-fields.php:1036
4105
+ msgid ""
4106
+ "You must enter the secret key\n"
4107
+ ""
4108
+ msgstr ""
4109
+
4110
+ #: ../profile-builder-2.0/admin/manage-fields.php:1047
4111
+ msgid ""
4112
+ "The entered value for the Datepicker is not a valid date-format\n"
4113
+ ""
4114
+ msgstr ""
4115
+
4116
+ #: ../profile-builder-2.0/admin/manage-fields.php:1050
4117
+ msgid ""
4118
+ "You must enter a value for the date-format\n"
4119
+ ""
4120
+ msgstr ""
4121
+
4122
+ #: ../profile-builder-2.0/admin/manage-fields.php:1066
4123
+ msgid ""
4124
+ "The meta-name cannot be empty\n"
4125
+ ""
4126
+ msgstr ""
4127
+
4128
+ #: ../profile-builder-2.0/admin/manage-fields.php:1078, ../profile-builder-2.0/admin/manage-fields.php:1086, ../profile-builder-2.0/admin/manage-fields.php:1097
4129
+ msgid ""
4130
+ "That meta-name is already in use\n"
4131
+ ""
4132
+ msgstr ""
4133
+
4134
+ #: ../profile-builder-2.0/admin/manage-fields.php:1108
4135
+ msgid ""
4136
+ "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
4137
+ ""
4138
+ msgstr ""
4139
+
4140
+ #: ../profile-builder-2.0/admin/manage-fields.php:1128
4141
+ msgid ""
4142
+ "The following option(s) did not coincide with the ones in the options list: %s\n"
4143
+ ""
4144
+ msgstr ""
4145
+
4146
+ #: ../profile-builder-2.0/admin/manage-fields.php:1132
4147
+ msgid ""
4148
+ "The following option did not coincide with the ones in the options list: %s\n"
4149
+ ""
4150
+ msgstr ""
4151
+
4152
+ #: ../profile-builder-2.0/admin/manage-fields.php:1139
4153
+ msgid ""
4154
+ "Please select at least one user role\n"
4155
+ ""
4156
+ msgstr ""
4157
+
4158
+ #: ../profile-builder-2.0/admin/manage-fields.php:1155
4159
+ msgid ""
4160
+ "That field is already added in this form\n"
4161
+ ""
4162
+ msgstr ""
4163
+
4164
+ #: ../profile-builder-2.0/admin/manage-fields.php:1204
4165
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4166
+ msgstr ""
4167
+
4168
+ #: ../profile-builder-2.0/admin/manage-fields.php:1219
4169
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4170
+ msgstr ""
4171
+
4172
+ #: ../profile-builder-2.0/admin/manage-fields.php:1228
4173
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
4174
+ msgstr ""
4175
+
4176
+ #: ../profile-builder-2.0/admin/manage-fields.php:1230
4177
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
4178
+ msgstr ""
4179
+
4180
+ #: ../profile-builder-2.0/admin/manage-fields.php:1325
4181
+ msgid "Search Location"
4182
+ msgstr ""
4183
+
4184
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:10, ../profile-builder-2.0/admin/pms-cross-promotion.php:10
4185
+ msgid "Paid Accounts"
4186
+ msgstr ""
4187
+
4188
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:33
4189
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
4190
+ msgstr ""
4191
+
4192
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:37
4193
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
4194
+ msgstr ""
4195
+
4196
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:40
4197
+ msgid "Paid & Free Subscriptions"
4198
+ msgstr ""
4199
+
4200
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:41
4201
+ msgid "Restrict Content"
4202
+ msgstr ""
4203
+
4204
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:42
4205
+ msgid "Member Management"
4206
+ msgstr ""
4207
+
4208
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:43
4209
+ msgid "Email Templates"
4210
+ msgstr ""
4211
+
4212
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:44
4213
+ msgid "Account Management"
4214
+ msgstr ""
4215
+
4216
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:45
4217
+ msgid "Subscription Management"
4218
+ msgstr ""
4219
+
4220
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:46
4221
+ msgid "Payment Management"
4222
+ msgstr ""
4223
+
4224
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:83
4225
+ msgid "Plugin is Active"
4226
+ msgstr ""
4227
+
4228
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:84
4229
+ msgid "Plugin has been activated"
4230
+ msgstr ""
4231
+
4232
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:91
4233
+ msgid "Plugin has been deactivated."
4234
+ msgstr ""
4235
+
4236
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:104
4237
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
4238
+ msgstr ""
4239
+
4240
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:155
4241
+ msgid "Step by Step Quick Setup"
4242
+ msgstr ""
4243
+
4244
+ #: ../profile-builder-2.0/admin/pms-cross-promotion.php:239
4245
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
4246
+ msgstr ""
4247
+
4248
+ #: ../profile-builder-2.0/admin/register-version.php:14
4249
+ msgid "Register Your Version"
4250
+ msgstr ""
4251
+
4252
+ #: ../profile-builder-2.0/admin/register-version.php:14
4253
+ msgid "Register Version"
4254
+ msgstr ""
4255
+
4256
+ #: ../profile-builder-2.0/admin/register-version.php:22, ../profile-builder-2.0/admin/register-version.php:22
4257
+ msgid "Profile Builder Register"
4258
+ msgstr ""
4259
+
4260
+ #: ../profile-builder-2.0/admin/register-version.php:61
4261
+ msgid "Register your version of %s"
4262
+ msgstr ""
4263
+
4264
+ #: ../profile-builder-2.0/admin/register-version.php:69
4265
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
4266
+ msgstr ""
4267
+
4268
+ #: ../profile-builder-2.0/admin/register-version.php:70
4269
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4270
+ msgstr ""
4271
+
4272
+ #: ../profile-builder-2.0/admin/register-version.php:72
4273
+ msgid " Serial Number:"
4274
+ msgstr ""
4275
+
4276
+ #: ../profile-builder-2.0/admin/register-version.php:77
4277
+ msgid "The serial number was successfully validated!"
4278
+ msgstr ""
4279
+
4280
+ #: ../profile-builder-2.0/admin/register-version.php:79
4281
+ msgid "The serial number entered couldn't be validated!"
4282
+ msgstr ""
4283
+
4284
+ #: ../profile-builder-2.0/admin/register-version.php:81
4285
+ msgid "The serial number is about to expire soon!"
4286
+ msgstr ""
4287
+
4288
+ #: ../profile-builder-2.0/admin/register-version.php:81
4289
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
4290
+ msgstr ""
4291
+
4292
+ #: ../profile-builder-2.0/admin/register-version.php:83
4293
+ msgid "The serial number couldn't be validated because it expired!"
4294
+ msgstr ""
4295
+
4296
+ #: ../profile-builder-2.0/admin/register-version.php:83
4297
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
4298
+ msgstr ""
4299
+
4300
+ #: ../profile-builder-2.0/admin/register-version.php:85
4301
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4302
+ msgstr ""
4303
+
4304
+ #: ../profile-builder-2.0/admin/register-version.php:87
4305
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4306
+ msgstr ""
4307
+
4308
+ #: ../profile-builder-2.0/admin/register-version.php:243
4309
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
4310
+ msgstr ""
4311
+
4312
+ #: ../profile-builder-2.0/admin/register-version.php:246
4313
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
4314
+ msgstr ""
4315
+
4316
+ #: ../profile-builder-2.0/admin/register-version.php:251
4317
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
4318
+ msgstr ""
4319
+
4320
+ #: ../profile-builder-2.0/features/functions.php:537
4321
+ msgid "Strength indicator"
4322
+ msgstr ""
4323
+
4324
+ #: ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
4325
+ msgid "Very Weak"
4326
+ msgstr ""
4327
+
4328
+ #: ../profile-builder-2.0/features/functions.php:577
4329
+ msgid "Minimum length of %d characters."
4330
+ msgstr ""
4331
+
4332
+ #: ../profile-builder-2.0/features/functions.php:588
4333
+ msgid "The password must have a minimum strength of %s."
4334
+ msgstr ""
4335
+
4336
+ #: ../profile-builder-2.0/features/functions.php:665
4337
+ msgid "This field is required"
4338
+ msgstr ""
4339
+
4340
+ #: ../profile-builder-2.0/features/functions.php:703, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:465, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:516, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:561
4341
+ msgid "Please enter a (valid) reCAPTCHA value"
4342
+ msgstr ""
4343
+
4344
+ #: ../profile-builder-2.0/features/functions.php:710
4345
+ msgid "Incorrect phone number"
4346
+ msgstr ""
4347
+
4348
+ #: ../profile-builder-2.0/features/functions.php:722, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:394
4349
+ msgid "Save Changes"
4350
+ msgstr ""
4351
+
4352
+ #: ../profile-builder-2.0/features/functions.php:750, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:436
4353
+ msgid "Content"
4354
+ msgstr ""
4355
+
4356
+ #: ../profile-builder-2.0/features/functions.php:761
4357
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
4358
+ msgstr ""
4359
+
4360
+ #: ../profile-builder-2.0/features/functions.php:765
4361
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
4362
+ msgstr ""
4363
+
4364
+ #: ../profile-builder-2.0/features/functions.php:930
4365
+ msgid "<br><br>Also, you will be able to visit your site at "
4366
+ msgstr ""
4367
+
4368
+ #: ../profile-builder-2.0/features/functions.php:943
4369
+ msgid "<br><br>You can visit your site at "
4370
+ msgstr ""
4371
+
4372
+ #: ../profile-builder-2.0/features/functions.php:1029
4373
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4374
+ msgstr ""
4375
+
4376
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:124
4377
+ msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
4378
+ msgstr ""
4379
+
4380
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:136
4381
+ msgid "Only an administrator can add new users."
4382
+ msgstr ""
4383
+
4384
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:146
4385
+ msgid "Users can register themselves or you can manually create users here."
4386
+ msgstr ""
4387
+
4388
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:146, ../profile-builder-2.0/front-end/class-formbuilder.php:149
4389
+ msgid "This message is only visible by administrators"
4390
+ msgstr ""
4391
+
4392
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:149
4393
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4394
+ msgstr ""
4395
+
4396
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:169
4397
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4398
+ msgstr ""
4399
+
4400
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:169
4401
+ msgid "Log out of this account."
4402
+ msgstr ""
4403
+
4404
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:175
4405
+ msgid "You must be logged in to edit your profile."
4406
+ msgstr ""
4407
+
4408
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:263, ../profile-builder-2.0/front-end/login.php:321
4409
+ msgid "You are not allowed to do this."
4410
+ msgstr ""
4411
+
4412
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:320, ../profile-builder-2.0/front-end/class-formbuilder.php:327
4413
+ msgid "The account %1s has been successfully created!"
4414
+ msgstr ""
4415
+
4416
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:323, ../profile-builder-2.0/front-end/class-formbuilder.php:333
4417
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4418
+ msgstr ""
4419
+
4420
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:329
4421
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4422
+ msgstr ""
4423
+
4424
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:352
4425
+ msgid "Your profile has been successfully updated!"
4426
+ msgstr ""
4427
+
4428
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:363
4429
+ msgid "There was an error in the submitted form"
4430
+ msgstr ""
4431
+
4432
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:420
4433
+ msgid "Add User"
4434
+ msgstr ""
4435
+
4436
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:486
4437
+ msgid "Send these credentials via email."
4438
+ msgstr ""
4439
+
4440
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:680
4441
+ msgid "User to edit:"
4442
+ msgstr ""
4443
+
4444
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:714
4445
+ msgid "Something went wrong. Please try again!"
4446
+ msgstr ""
4447
+
4448
+ #: ../profile-builder-2.0/front-end/login.php:150, ../profile-builder-2.0/front-end/login.php:157, ../profile-builder-2.0/front-end/login.php:171, ../profile-builder-2.0/front-end/recover.php:17, ../profile-builder-2.0/front-end/recover.php:249, ../profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4449
+ msgid "ERROR"
4450
+ msgstr ""
4451
+
4452
+ #: ../profile-builder-2.0/front-end/login.php:150
4453
+ msgid "The password you entered is incorrect."
4454
+ msgstr ""
4455
+
4456
+ #: ../profile-builder-2.0/front-end/login.php:151, ../profile-builder-2.0/front-end/login.php:158
4457
+ msgid "Password Lost and Found."
4458
+ msgstr ""
4459
+
4460
+ #: ../profile-builder-2.0/front-end/login.php:151, ../profile-builder-2.0/front-end/login.php:158
4461
+ msgid "Lost your password"
4462
+ msgstr ""
4463
+
4464
+ #: ../profile-builder-2.0/front-end/login.php:157
4465
+ msgid "Invalid username."
4466
+ msgstr ""
4467
+
4468
+ #: ../profile-builder-2.0/front-end/login.php:162, ../profile-builder-2.0/front-end/login.php:166
4469
+ msgid "username"
4470
+ msgstr ""
4471
+
4472
+ #: ../profile-builder-2.0/front-end/login.php:162
4473
+ msgid "email"
4474
+ msgstr ""
4475
+
4476
+ #: ../profile-builder-2.0/front-end/login.php:166
4477
+ msgid "username or email"
4478
+ msgstr ""
4479
+
4480
+ #: ../profile-builder-2.0/front-end/login.php:171
4481
+ msgid "Both fields are empty."
4482
+ msgstr ""
4483
+
4484
+ #: ../profile-builder-2.0/front-end/login.php:235
4485
+ msgid "Username or Email"
4486
+ msgstr ""
4487
+
4488
+ #: ../profile-builder-2.0/front-end/login.php:269
4489
+ msgid "Lost your password?"
4490
+ msgstr ""
4491
+
4492
+ #: ../profile-builder-2.0/front-end/login.php:308, ../profile-builder-2.0/front-end/logout.php:25
4493
+ msgid "Log out of this account"
4494
+ msgstr ""
4495
+
4496
+ #: ../profile-builder-2.0/front-end/login.php:308
4497
+ msgid "Log out"
4498
+ msgstr ""
4499
+
4500
+ #: ../profile-builder-2.0/front-end/login.php:309
4501
+ msgid "You are currently logged in as %1$s. %2$s"
4502
+ msgstr ""
4503
+
4504
+ #: ../profile-builder-2.0/front-end/logout.php:15
4505
+ msgid "You are currently logged in as %s. "
4506
+ msgstr ""
4507
+
4508
+ #: ../profile-builder-2.0/front-end/logout.php:15
4509
+ msgid "Log out &raquo;"
4510
+ msgstr ""
4511
+
4512
+ #: ../profile-builder-2.0/front-end/recover.php:17
4513
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4514
+ msgstr ""
4515
+
4516
+ #: ../profile-builder-2.0/front-end/recover.php:95
4517
+ msgid "Reset Password"
4518
+ msgstr ""
4519
+
4520
+ #: ../profile-builder-2.0/front-end/recover.php:118
4521
+ msgid "Please enter your email address."
4522
+ msgstr ""
4523
+
4524
+ #: ../profile-builder-2.0/front-end/recover.php:122
4525
+ msgid "Please enter your username or email address."
4526
+ msgstr ""
4527
+
4528
+ #: ../profile-builder-2.0/front-end/recover.php:123
4529
+ msgid "Username or E-mail"
4530
+ msgstr ""
4531
+
4532
+ #: ../profile-builder-2.0/front-end/recover.php:126
4533
+ msgid "You will receive a link to create a new password via email."
4534
+ msgstr ""
4535
+
4536
+ #: ../profile-builder-2.0/front-end/recover.php:139
4537
+ msgid "Get New Password"
4538
+ msgstr ""
4539
+
4540
+ #: ../profile-builder-2.0/front-end/recover.php:160
4541
+ msgid "You are already logged in. You can change your password on the edit profile form."
4542
+ msgstr ""
4543
+
4544
+ #: ../profile-builder-2.0/front-end/recover.php:186
4545
+ msgid "The username entered wasn't found in the database!"
4546
+ msgstr ""
4547
+
4548
+ #: ../profile-builder-2.0/front-end/recover.php:186
4549
+ msgid "Please check that you entered the correct username."
4550
+ msgstr ""
4551
+
4552
+ #: ../profile-builder-2.0/front-end/recover.php:201
4553
+ msgid "Check your e-mail for the confirmation link."
4554
+ msgstr ""
4555
+
4556
+ #: ../profile-builder-2.0/front-end/recover.php:208
4557
+ msgid "The email address entered wasn't found in the database!"
4558
+ msgstr ""
4559
+
4560
+ #: ../profile-builder-2.0/front-end/recover.php:208
4561
+ msgid "Please check that you entered the correct email address."
4562
+ msgstr ""
4563
+
4564
+ #: ../profile-builder-2.0/front-end/recover.php:236
4565
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4566
+ msgstr ""
4567
+
4568
+ #: ../profile-builder-2.0/front-end/recover.php:239
4569
+ msgid "Password Reset from \"%1$s\""
4570
+ msgstr ""
4571
+
4572
+ #: ../profile-builder-2.0/front-end/recover.php:249
4573
+ msgid "There was an error while trying to send the activation link to %1$s!"
4574
+ msgstr ""
4575
+
4576
+ #: ../profile-builder-2.0/front-end/recover.php:266, ../profile-builder-2.0/front-end/default-fields/password/password.php:47
4577
+ msgid "The password must have the minimum length of %s characters"
4578
+ msgstr ""
4579
+
4580
+ #: ../profile-builder-2.0/front-end/recover.php:270, ../profile-builder-2.0/front-end/default-fields/password/password.php:51
4581
+ msgid "The password must have a minimum strength of %s"
4582
+ msgstr ""
4583
+
4584
+ #: ../profile-builder-2.0/front-end/recover.php:277
4585
+ msgid "Your password has been successfully changed!"
4586
+ msgstr ""
4587
+
4588
+ #: ../profile-builder-2.0/front-end/recover.php:301
4589
+ msgid "You have successfully reset your password."
4590
+ msgstr ""
4591
+
4592
+ #: ../profile-builder-2.0/front-end/recover.php:304, ../profile-builder-2.0/front-end/recover.php:318
4593
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4594
+ msgstr ""
4595
+
4596
+ #: ../profile-builder-2.0/front-end/recover.php:315
4597
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4598
+ msgstr ""
4599
+
4600
+ #: ../profile-builder-2.0/front-end/recover.php:334
4601
+ msgid "The entered passwords don't match!"
4602
+ msgstr ""
4603
+
4604
+ #: ../profile-builder-2.0/front-end/recover.php:389
4605
+ msgid "ERROR:"
4606
+ msgstr ""
4607
+
4608
+ #: ../profile-builder-2.0/front-end/recover.php:389
4609
+ msgid "Invalid key!"
4610
+ msgstr ""
4611
+
4612
+ #: ../profile-builder-2.0/front-end/register.php:56
4613
+ msgid "Invalid activation key!"
4614
+ msgstr ""
4615
+
4616
+ #: ../profile-builder-2.0/front-end/register.php:60
4617
+ msgid "This username is now active!"
4618
+ msgstr ""
4619
+
4620
+ #: ../profile-builder-2.0/front-end/register.php:71, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:448
4621
+ msgid "Could not create user!"
4622
+ msgstr ""
4623
+
4624
+ #: ../profile-builder-2.0/front-end/register.php:74
4625
+ msgid "This username is already activated!"
4626
+ msgstr ""
4627
+
4628
+ #: ../profile-builder-2.0/front-end/register.php:124
4629
+ msgid "Your email was successfully confirmed."
4630
+ msgstr ""
4631
+
4632
+ #: ../profile-builder-2.0/front-end/register.php:125, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:648
4633
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4634
+ msgstr ""
4635
+
4636
+ #: ../profile-builder-2.0/front-end/register.php:153
4637
+ msgid "There was an error while trying to activate the user."
4638
+ msgstr ""
4639
+
4640
+ #: ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:58
4641
+ msgid "Modules"
4642
+ msgstr ""
4643
+
4644
+ #: ../profile-builder-2.0/modules/modules.php:59
4645
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4646
+ msgstr ""
4647
+
4648
+ #: ../profile-builder-2.0/modules/modules.php:69
4649
+ msgid "Name/Description"
4650
+ msgstr ""
4651
+
4652
+ #: ../profile-builder-2.0/modules/modules.php:70
4653
+ msgid "Status"
4654
+ msgstr ""
4655
+
4656
+ #: ../profile-builder-2.0/modules/modules.php:77, ../profile-builder-2.0/modules/modules.php:84, ../profile-builder-2.0/modules/modules.php:91, ../profile-builder-2.0/modules/modules.php:98, ../profile-builder-2.0/modules/modules.php:105, ../profile-builder-2.0/modules/modules.php:112, ../profile-builder-2.0/modules/modules.php:119
4657
+ msgid "Active"
4658
+ msgstr ""
4659
+
4660
+ #: ../profile-builder-2.0/modules/modules.php:78, ../profile-builder-2.0/modules/modules.php:85, ../profile-builder-2.0/modules/modules.php:92, ../profile-builder-2.0/modules/modules.php:99, ../profile-builder-2.0/modules/modules.php:106, ../profile-builder-2.0/modules/modules.php:113, ../profile-builder-2.0/modules/modules.php:120
4661
+ msgid "Inactive"
4662
+ msgstr ""
4663
+
4664
+ #: ../profile-builder-2.0/modules/modules.php:96, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4665
+ msgid "Admin Email Customizer"
4666
+ msgstr ""
4667
+
4668
+ #: ../profile-builder-2.0/modules/modules.php:103, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4669
+ msgid "User Email Customizer"
4670
+ msgstr ""
4671
+
4672
+ #: ../profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
4673
+ msgid "Your account has to be confirmed by an administrator before you can log in."
4674
+ msgstr ""
4675
+
4676
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:14, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:454
4677
+ msgid "Admin Approval"
4678
+ msgstr ""
4679
+
4680
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:28, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4681
+ msgid "Do you want to"
4682
+ msgstr ""
4683
+
4684
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:51
4685
+ msgid "Your session has expired! Please refresh the page and try again"
4686
+ msgstr ""
4687
+
4688
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:67, ../profile-builder-2.0/features/admin-approval/admin-approval.php:279
4689
+ msgid "User successfully approved!"
4690
+ msgstr ""
4691
+
4692
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:77
4693
+ msgid "User successfully unapproved!"
4694
+ msgstr ""
4695
+
4696
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:83
4697
+ msgid "User successfully deleted!"
4698
+ msgstr ""
4699
+
4700
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:88, ../profile-builder-2.0/features/admin-approval/admin-approval.php:134, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4701
+ msgid "You either don't have permission for that action or there was an error!"
4702
+ msgstr ""
4703
+
4704
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:99
4705
+ msgid "Your session has expired! Please refresh the page and try again."
4706
+ msgstr ""
4707
+
4708
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:112
4709
+ msgid "Users successfully approved!"
4710
+ msgstr ""
4711
+
4712
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:122
4713
+ msgid "Users successfully unapproved!"
4714
+ msgstr ""
4715
+
4716
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:130
4717
+ msgid "Users successfully deleted!"
4718
+ msgstr ""
4719
+
4720
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:150
4721
+ msgid "Your account on %1$s has been approved!"
4722
+ msgstr ""
4723
+
4724
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:151, ../profile-builder-2.0/features/admin-approval/admin-approval.php:154
4725
+ msgid "approved"
4726
+ msgstr ""
4727
+
4728
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:153
4729
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4730
+ msgstr ""
4731
+
4732
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:158
4733
+ msgid "Your account on %1$s has been unapproved!"
4734
+ msgstr ""
4735
+
4736
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:159, ../profile-builder-2.0/features/admin-approval/admin-approval.php:162
4737
+ msgid "unapproved"
4738
+ msgstr ""
4739
+
4740
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:161
4741
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4742
+ msgstr ""
4743
+
4744
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:192
4745
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4746
+ msgstr ""
4747
+
4748
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:227
4749
+ msgid "Your account has been successfully created!"
4750
+ msgstr ""
4751
+
4752
+ #: ../profile-builder-2.0/features/admin-approval/admin-approval.php:295
4753
+ msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
4754
+ msgstr ""
4755
+
4756
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4757
+ msgid "delete this user?"
4758
+ msgstr ""
4759
+
4760
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4761
+ msgid "unapprove this user?"
4762
+ msgstr ""
4763
+
4764
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:116, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4765
+ msgid "Unapprove"
4766
+ msgstr ""
4767
+
4768
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4769
+ msgid "approve this user?"
4770
+ msgstr ""
4771
+
4772
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:118, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4773
+ msgid "Approve"
4774
+ msgstr ""
4775
+
4776
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:781, ../profile-builder-2.0/modules/user-listing/userlisting.php:2276
4777
+ msgid "Firstname"
4778
+ msgstr ""
4779
+
4780
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2277
4781
+ msgid "Lastname"
4782
+ msgstr ""
4783
+
4784
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:2281
4785
+ msgid "Role"
4786
+ msgstr ""
4787
+
4788
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:171, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
4789
+ msgid "Registered"
4790
+ msgstr ""
4791
+
4792
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4793
+ msgid "User-status"
4794
+ msgstr ""
4795
+
4796
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4797
+ msgid "Do you want to bulk approve the selected users?"
4798
+ msgstr ""
4799
+
4800
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4801
+ msgid "Do you want to bulk unapprove the selected users?"
4802
+ msgstr ""
4803
+
4804
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4805
+ msgid "Do you want to bulk delete the selected users?"
4806
+ msgstr ""
4807
+
4808
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:274, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:279
4809
+ msgid "Sorry, but you don't have permission to do that!"
4810
+ msgstr ""
4811
+
4812
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4813
+ msgid "Approved"
4814
+ msgstr ""
4815
+
4816
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4817
+ msgid "Unapproved"
4818
+ msgstr ""
4819
+
4820
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:457, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:455
4821
+ msgid "All Users"
4822
+ msgstr ""
4823
+
4824
+ #: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
4825
+ msgid "Conditional Logic"
4826
+ msgstr ""
4827
+
4828
+ #: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
4829
+ msgid "Conditional Rules"
4830
+ msgstr ""
4831
+
4832
+ #: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
4833
+ msgid "This field has conditional logic enabled."
4834
+ msgstr ""
4835
+
4836
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:40
4837
+ msgid "You must be logged in to view this content."
4838
+ msgstr ""
4839
+
4840
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:42
4841
+ msgid "This content is restricted for your user role."
4842
+ msgstr ""
4843
+
4844
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:18
4845
+ msgid "Profile Builder Content Restriction"
4846
+ msgstr ""
4847
+
4848
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:32
4849
+ msgid "Display Options"
4850
+ msgstr ""
4851
+
4852
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:56
4853
+ msgid "Message"
4854
+ msgstr ""
4855
+
4856
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:61, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4857
+ msgid "Redirect"
4858
+ msgstr ""
4859
+
4860
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:41, ../profile-builder-2.0/features/content-restriction/content-restriction.php:51
4861
+ msgid "Type of Restriction"
4862
+ msgstr ""
4863
+
4864
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:45
4865
+ msgid "Settings Default"
4866
+ msgstr ""
4867
+
4868
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:57
4869
+ msgid "Display For"
4870
+ msgstr ""
4871
+
4872
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:81
4873
+ msgid "Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role."
4874
+ msgstr ""
4875
+
4876
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:85
4877
+ msgid "Checking any user role will show this %s only to users that have one of those user roles assigned."
4878
+ msgstr ""
4879
+
4880
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:92
4881
+ msgid "Restriction Redirect URL"
4882
+ msgstr ""
4883
+
4884
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:98
4885
+ msgid "Enable Custom Redirect URL"
4886
+ msgstr ""
4887
+
4888
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:102
4889
+ msgid "Check if you wish to add a custom redirect URL for this %s."
4890
+ msgstr ""
4891
+
4892
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:109
4893
+ msgid "Custom Redirect URL"
4894
+ msgstr ""
4895
+
4896
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:113
4897
+ msgid "Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly."
4898
+ msgstr ""
4899
+
4900
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:119
4901
+ msgid "Restriction Messages"
4902
+ msgstr ""
4903
+
4904
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:125
4905
+ msgid "Enable Custom Messages"
4906
+ msgstr ""
4907
+
4908
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:129
4909
+ msgid "Check if you wish to add custom messages for this %s."
4910
+ msgstr ""
4911
+
4912
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:136
4913
+ msgid "Messages for logged-out users"
4914
+ msgstr ""
4915
+
4916
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:139
4917
+ msgid "Messages for logged-in users"
4918
+ msgstr ""
4919
+
4920
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:64
4921
+ msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
4922
+ msgstr ""
4923
+
4924
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:65
4925
+ msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
4926
+ msgstr ""
4927
+
4928
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:70, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:68, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:98, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:117, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:142
4929
+ msgid "Redirect URL"
4930
+ msgstr ""
4931
+
4932
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:75
4933
+ msgid "Message for logged-out users"
4934
+ msgstr ""
4935
+
4936
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:80
4937
+ msgid "Message for logged-in users"
4938
+ msgstr ""
4939
+
4940
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:85
4941
+ msgid "Restricted Posts Preview"
4942
+ msgstr ""
4943
+
4944
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:100
4945
+ msgid "Show the first %s words of the post's content"
4946
+ msgstr ""
4947
+
4948
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:108
4949
+ msgid "Show the content before the \"more\" tag"
4950
+ msgstr ""
4951
+
4952
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:112
4953
+ msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
4954
+ msgstr ""
4955
+
4956
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:92, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:171
4957
+ msgid "User Meta"
4958
+ msgstr ""
4959
+
4960
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:92
4961
+ msgid "show"
4962
+ msgstr ""
4963
+
4964
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4965
+ msgid "delete this user from the _signups table?"
4966
+ msgstr ""
4967
+
4968
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4969
+ msgid "confirm this email yourself?"
4970
+ msgstr ""
4971
+
4972
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4973
+ msgid "Confirm Email"
4974
+ msgstr ""
4975
+
4976
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:123
4977
+ msgid "resend the activation link?"
4978
+ msgstr ""
4979
+
4980
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:123, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:220
4981
+ msgid "Resend Activation Email"
4982
+ msgstr ""
4983
+
4984
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:250
4985
+ msgid "%s couldn't be deleted"
4986
+ msgstr ""
4987
+
4988
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:254
4989
+ msgid "All users have been successfully deleted"
4990
+ msgstr ""
4991
+
4992
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:264
4993
+ msgid "The selected users have been activated"
4994
+ msgstr ""
4995
+
4996
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:275
4997
+ msgid "The selected users have had their activation emails resent"
4998
+ msgstr ""
4999
+
5000
+ #: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:452, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
5001
+ msgid "Users with Unconfirmed Email Address"
5002
+ msgstr ""
5003
+
5004
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
5005
+ msgid "There was an error performing that action!"
5006
+ msgstr ""
5007
+
5008
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
5009
+ msgid "The selected user couldn't be deleted"
5010
+ msgstr ""
5011
+
5012
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
5013
+ msgid "Email notification resent to user"
5014
+ msgstr ""
5015
+
5016
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:404
5017
+ msgid "[%1$s] Activate %2$s"
5018
+ msgstr ""
5019
+
5020
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:407
5021
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
5022
+ msgstr ""
5023
+
5024
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:451
5025
+ msgid "That username is already activated!"
5026
+ msgstr ""
5027
+
5028
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:474
5029
+ msgid "There was an error while trying to activate the user"
5030
+ msgstr ""
5031
+
5032
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:522, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
5033
+ msgid "A new subscriber has (been) registered!"
5034
+ msgstr ""
5035
+
5036
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:525
5037
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
5038
+ msgstr ""
5039
+
5040
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:576
5041
+ msgid "[%1$s] Your new account information"
5042
+ msgstr ""
5043
+
5044
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:580, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:589, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:493, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:500, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:514
5045
+ msgid "Your selected password at signup"
5046
+ msgstr ""
5047
+
5048
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:585
5049
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
5050
+ msgstr ""
5051
+
5052
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:587
5053
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
5054
+ msgstr ""
5055
+
5056
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:640
5057
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
5058
+ msgstr ""
5059
+
5060
+ #: ../profile-builder-2.0/features/login-widget/login-widget.php:10
5061
+ msgid "This login widget lets you add a login form in the sidebar."
5062
+ msgstr ""
5063
+
5064
+ #: ../profile-builder-2.0/features/login-widget/login-widget.php:15
5065
+ msgid "Profile Builder Login Widget"
5066
+ msgstr ""
5067
+
5068
+ #: ../profile-builder-2.0/features/login-widget/login-widget.php:63
5069
+ msgid "Title:"
5070
+ msgstr ""
5071
+
5072
+ #: ../profile-builder-2.0/features/login-widget/login-widget.php:68
5073
+ msgid "After login redirect URL (optional):"
5074
+ msgstr ""
5075
+
5076
+ #: ../profile-builder-2.0/features/login-widget/login-widget.php:73
5077
+ msgid "Register page URL (optional):"
5078
+ msgstr ""
5079
+
5080
+ #: ../profile-builder-2.0/features/login-widget/login-widget.php:78
5081
+ msgid "Password Recovery page URL (optional):"
5082
+ msgstr ""
5083
+
5084
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:182
5085
+ msgid "Capability"
5086
+ msgstr ""
5087
+
5088
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:183
5089
+ msgid "You can't delete this capability from your role."
5090
+ msgstr ""
5091
+
5092
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:246, ../profile-builder-2.0/features/roles-editor/roles-editor.php:247
5093
+ msgid "Add New Role"
5094
+ msgstr ""
5095
+
5096
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:248
5097
+ msgid "Edit Role"
5098
+ msgstr ""
5099
+
5100
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:249
5101
+ msgid "New Role"
5102
+ msgstr ""
5103
+
5104
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:251
5105
+ msgid "View Role"
5106
+ msgstr ""
5107
+
5108
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:252
5109
+ msgid "Search the Roles Editor"
5110
+ msgstr ""
5111
+
5112
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:253
5113
+ msgid "No roles found"
5114
+ msgstr ""
5115
+
5116
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:254
5117
+ msgid "No roles found in trash"
5118
+ msgstr ""
5119
+
5120
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:296, ../profile-builder-2.0/features/roles-editor/roles-editor.php:299
5121
+ msgid "Role updated."
5122
+ msgstr ""
5123
+
5124
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:297
5125
+ msgid "Custom field updated."
5126
+ msgstr ""
5127
+
5128
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:298
5129
+ msgid "Custom field deleted."
5130
+ msgstr ""
5131
+
5132
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:301
5133
+ msgid "Role created."
5134
+ msgstr ""
5135
+
5136
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:302
5137
+ msgid "Role saved."
5138
+ msgstr ""
5139
+
5140
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:303
5141
+ msgid "Role submitted."
5142
+ msgstr ""
5143
+
5144
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:304
5145
+ msgid "Role scheduled for: <strong>%1$s</strong>"
5146
+ msgstr ""
5147
+
5148
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:305
5149
+ msgid "Role draft updated."
5150
+ msgstr ""
5151
+
5152
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:364
5153
+ msgid "Role Name"
5154
+ msgstr ""
5155
+
5156
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:365, ../profile-builder-2.0/modules/user-listing/userlisting.php:160
5157
+ msgid "Role Slug"
5158
+ msgstr ""
5159
+
5160
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:366
5161
+ msgid "Capabilities"
5162
+ msgstr ""
5163
+
5164
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:367
5165
+ msgid "Users"
5166
+ msgstr ""
5167
+
5168
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:877
5169
+ msgid "Clone"
5170
+ msgstr ""
5171
+
5172
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:884
5173
+ msgid "You can't delete your role."
5174
+ msgstr ""
5175
+
5176
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:892
5177
+ msgid "Change Default"
5178
+ msgstr ""
5179
+
5180
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:893
5181
+ msgid "You can't delete the default role. Change it first."
5182
+ msgstr ""
5183
+
5184
+ #: ../profile-builder-2.0/features/roles-editor/roles-editor.php:1116
5185
+ msgid "Edit User Roles"
5186
+ msgstr ""
5187
+
5188
+ #: ../profile-builder-2.0/features/upgrades/upgrades-functions.php:91, ../profile-builder-2.0/features/upgrades/upgrades-functions.php:134
5189
+ msgid "The usernames cannot be changed."
5190
+ msgstr ""
5191
+
5192
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
5193
+ msgid "After Login"
5194
+ msgstr ""
5195
+
5196
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
5197
+ msgid "After Logout"
5198
+ msgstr ""
5199
+
5200
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
5201
+ msgid "After Registration"
5202
+ msgstr ""
5203
+
5204
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:52
5205
+ msgid "After Edit Profile"
5206
+ msgstr ""
5207
+
5208
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:53
5209
+ msgid "After Successful Email Confirmation"
5210
+ msgstr ""
5211
+
5212
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:54
5213
+ msgid "After Successful Password Reset"
5214
+ msgstr ""
5215
+
5216
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
5217
+ msgid "Dashboard (redirect users from accessing the dashboard)"
5218
+ msgstr ""
5219
+
5220
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:59
5221
+ msgid "User ID"
5222
+ msgstr ""
5223
+
5224
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
5225
+ msgid "User ID or Username"
5226
+ msgstr ""
5227
+
5228
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:66
5229
+ msgid "User ID / Username"
5230
+ msgstr ""
5231
+
5232
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:66
5233
+ msgid "Please select and enter the ID or username of your user."
5234
+ msgstr ""
5235
+
5236
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:67, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:97, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:116, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
5237
+ msgid "Redirect Type"
5238
+ msgstr ""
5239
+
5240
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:68, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:98, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:117, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:142
5241
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
5242
+ msgstr ""
5243
+
5244
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:75, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:245
5245
+ msgid "Individual User Redirects"
5246
+ msgstr ""
5247
+
5248
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:96, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:31
5249
+ msgid "User Role"
5250
+ msgstr ""
5251
+
5252
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:96
5253
+ msgid "Select a user role."
5254
+ msgstr ""
5255
+
5256
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:105, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
5257
+ msgid "User Role based Redirects"
5258
+ msgstr ""
5259
+
5260
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:124, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
5261
+ msgid "Global Redirects"
5262
+ msgstr ""
5263
+
5264
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:137
5265
+ msgid "Login ( wp_login.php )"
5266
+ msgstr ""
5267
+
5268
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
5269
+ msgid "Register ( wp-login.php?action=register )"
5270
+ msgstr ""
5271
+
5272
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
5273
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
5274
+ msgstr ""
5275
+
5276
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:140
5277
+ msgid "Author Archive ( http://sitename.com/author/admin )"
5278
+ msgstr ""
5279
+
5280
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:149
5281
+ msgid "Redirect Default WordPress Forms and Pages"
5282
+ msgstr ""
5283
+
5284
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:161
5285
+ msgid "How does this work?"
5286
+ msgstr ""
5287
+
5288
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183
5289
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
5290
+ msgstr ""
5291
+
5292
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197
5293
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
5294
+ msgstr ""
5295
+
5296
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225
5297
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
5298
+ msgstr ""
5299
+
5300
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
5301
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
5302
+ msgstr ""
5303
+
5304
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
5305
+ msgid "Which redirect happens depends on the following priority:"
5306
+ msgstr ""
5307
+
5308
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
5309
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
5310
+ msgstr ""
5311
+
5312
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
5313
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
5314
+ msgstr ""
5315
+
5316
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
5317
+ msgid "Redirect Default WordPress forms and pages"
5318
+ msgstr ""
5319
+
5320
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
5321
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
5322
+ msgstr ""
5323
+
5324
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
5325
+ msgid "Available tags for dynamic URLs"
5326
+ msgstr ""
5327
+
5328
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
5329
+ msgid "You use the following tags in your URLs to redirect users to various pages."
5330
+ msgstr ""
5331
+
5332
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
5333
+ msgid "generates a url of the current website homepage."
5334
+ msgstr ""
5335
+
5336
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:258
5337
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
5338
+ msgstr ""
5339
+
5340
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:259
5341
+ msgid "the ID of the user"
5342
+ msgstr ""
5343
+
5344
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:260
5345
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
5346
+ msgstr ""
5347
+
5348
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:261
5349
+ msgid "the URL of the previously visited page"
5350
+ msgstr ""
5351
+
5352
+ #: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:344, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:350, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:356
5353
+ msgid "You can't add duplicate redirects!"
5354
+ msgstr ""
5355
+
5356
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
5357
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
5358
+ msgstr ""
5359
+
5360
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
5361
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
5362
+ msgstr ""
5363
+
5364
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
5365
+ msgid "From (name)"
5366
+ msgstr ""
5367
+
5368
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
5369
+ msgid "From (reply-to email)"
5370
+ msgstr ""
5371
+
5372
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
5373
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
5374
+ msgstr ""
5375
+
5376
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
5377
+ msgid "Common Settings"
5378
+ msgstr ""
5379
+
5380
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
5381
+ msgid ""
5382
+ "<p>New subscriber on {{site_name}}.</p>\n"
5383
+ "<p>Username:{{username}}</p>\n"
5384
+ "<p>E-mail:{{user_email}}</p>\n"
5385
+ ""
5386
+ msgstr ""
5387
+
5388
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:65, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:89, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:113, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:68, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:92, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:117, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:141, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:166, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:191, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:216, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:243
5389
+ msgid "Email Subject"
5390
+ msgstr ""
5391
+
5392
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:80
5393
+ msgid "Default Registration & Registration with Email Confirmation"
5394
+ msgstr ""
5395
+
5396
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:83
5397
+ msgid ""
5398
+ "<p>New subscriber on {{site_name}}.</p>\n"
5399
+ "<p>Username:{{username}}</p>\n"
5400
+ "<p>E-mail:{{user_email}}</p>\n"
5401
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
5402
+ "so please remember that you need to approve this user before he/she can log in!</p>"
5403
+ msgstr ""
5404
+
5405
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:104, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5406
+ msgid "Registration with Admin Approval"
5407
+ msgstr ""
5408
+
5409
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:107
5410
+ msgid ""
5411
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
5412
+ "<p>His/her new password is: {{password}}</p>\n"
5413
+ ""
5414
+ msgstr ""
5415
+
5416
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:128
5417
+ msgid "Admin Notification for User Password Reset"
5418
+ msgstr ""
5419
+
5420
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5421
+ msgid "Available Tags"
5422
+ msgstr ""
5423
+
5424
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:11, ../profile-builder-2.0/modules/user-listing/userlisting.php:212
5425
+ msgid "User Fields Tags"
5426
+ msgstr ""
5427
+
5428
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5429
+ msgid "Site Url"
5430
+ msgstr ""
5431
+
5432
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5433
+ msgid "Site Name"
5434
+ msgstr ""
5435
+
5436
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:25, ../profile-builder-2.0/modules/user-listing/userlisting.php:169
5437
+ msgid "User Id"
5438
+ msgstr ""
5439
+
5440
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:32
5441
+ msgid "User Role Label"
5442
+ msgstr ""
5443
+
5444
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:34
5445
+ msgid "Reply To"
5446
+ msgstr ""
5447
+
5448
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:37, ../profile-builder-2.0/modules/user-listing/userlisting.php:127
5449
+ msgid "Blog URL"
5450
+ msgstr ""
5451
+
5452
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5453
+ msgid "Activation Key"
5454
+ msgstr ""
5455
+
5456
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5457
+ msgid "Activation Url"
5458
+ msgstr ""
5459
+
5460
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:43
5461
+ msgid "Activation Link"
5462
+ msgstr ""
5463
+
5464
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:47
5465
+ msgid "Reset Key"
5466
+ msgstr ""
5467
+
5468
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:48
5469
+ msgid "Reset Url"
5470
+ msgstr ""
5471
+
5472
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:49
5473
+ msgid "Reset Link"
5474
+ msgstr ""
5475
+
5476
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:53
5477
+ msgid "Approve User Url"
5478
+ msgstr ""
5479
+
5480
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:54
5481
+ msgid "Approve User Link"
5482
+ msgstr ""
5483
+
5484
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:485
5485
+ msgid "The users selected password at signup"
5486
+ msgstr ""
5487
+
5488
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
5489
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
5490
+ msgstr ""
5491
+
5492
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5493
+ msgid ""
5494
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5495
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5496
+ ""
5497
+ msgstr ""
5498
+
5499
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:88
5500
+ msgid ""
5501
+ "<p>To activate your user, please click the following link:<br/>\n"
5502
+ "{{{activation_link}}}</p>\n"
5503
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
5504
+ ""
5505
+ msgstr ""
5506
+
5507
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:96
5508
+ msgid "[{{site_name}}] Activate {{username}}"
5509
+ msgstr ""
5510
+
5511
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:107
5512
+ msgid "Registration with Email Confirmation"
5513
+ msgstr ""
5514
+
5515
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:113
5516
+ msgid ""
5517
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5518
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5519
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5520
+ ""
5521
+ msgstr ""
5522
+
5523
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:121
5524
+ msgid "A new account has been created for you on {{site_name}}"
5525
+ msgstr ""
5526
+
5527
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:137
5528
+ msgid ""
5529
+ "<h3>Good News!</h3>\n"
5530
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5531
+ ""
5532
+ msgstr ""
5533
+
5534
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:145
5535
+ msgid "Your account on {{site_name}} has been approved!"
5536
+ msgstr ""
5537
+
5538
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:156
5539
+ msgid "User Approval Notification"
5540
+ msgstr ""
5541
+
5542
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:161
5543
+ msgid ""
5544
+ "<h3>Hello,</h3>\n"
5545
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5546
+ ""
5547
+ msgstr ""
5548
+
5549
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5550
+ msgid "Your account on {{site_name}} has been unapproved!"
5551
+ msgstr ""
5552
+
5553
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:181
5554
+ msgid "Unapproved User Notification"
5555
+ msgstr ""
5556
+
5557
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5558
+ msgid ""
5559
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
5560
+ "Username: {{username}}</p>\n"
5561
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
5562
+ "<p>To reset your password, visit the following address:<br/>\n"
5563
+ "{{{reset_link}}}</p>\n"
5564
+ ""
5565
+ msgstr ""
5566
+
5567
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:195
5568
+ msgid "[{{site_name}}] Password Reset"
5569
+ msgstr ""
5570
+
5571
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:206
5572
+ msgid "Password Reset Email"
5573
+ msgstr ""
5574
+
5575
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:212
5576
+ msgid ""
5577
+ "<p>You have successfully reset your password.</p>\n"
5578
+ ""
5579
+ msgstr ""
5580
+
5581
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:220
5582
+ msgid "[{{site_name}}] Password Reset Successfully"
5583
+ msgstr ""
5584
+
5585
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:231
5586
+ msgid "Password Reset Success Email"
5587
+ msgstr ""
5588
+
5589
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:239
5590
+ msgid ""
5591
+ "<h3>Hi {{username}},</h3>\n"
5592
+ "<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
5593
+ "<p>If you did not change your email, please contact the Site Administrator at %s</p>\n"
5594
+ "<p>This email has been sent to {{user_email}}</p>\n"
5595
+ "<p>Regards,<br>\n"
5596
+ "All at {{site_name}}<br>\n"
5597
+ "<a href=\"{{site_url}}\">{{site_url}}</a></p>"
5598
+ msgstr ""
5599
+
5600
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:247
5601
+ msgid "[{{site_name}}] Notice of Email Change"
5602
+ msgstr ""
5603
+
5604
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:258
5605
+ msgid "Changed Email Address Notification"
5606
+ msgstr ""
5607
+
5608
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5609
+ msgid "Edit-profile Form"
5610
+ msgstr ""
5611
+
5612
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:13, ../profile-builder-2.0/modules/user-listing/userlisting.php:13
5613
+ msgid "Add New"
5614
+ msgstr ""
5615
+
5616
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5617
+ msgid "Add new Edit-profile Form"
5618
+ msgstr ""
5619
+
5620
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5621
+ msgid "Edit the Edit-profile Forms"
5622
+ msgstr ""
5623
+
5624
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5625
+ msgid "New Edit-profile Form"
5626
+ msgstr ""
5627
+
5628
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5629
+ msgid "Edit-profile Forms"
5630
+ msgstr ""
5631
+
5632
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5633
+ msgid "View the Edit-profile Form"
5634
+ msgstr ""
5635
+
5636
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5637
+ msgid "Search the Edit-profile Forms"
5638
+ msgstr ""
5639
+
5640
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5641
+ msgid "No Edit-profile Form found"
5642
+ msgstr ""
5643
+
5644
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5645
+ msgid "No Edit-profile Forms found in trash"
5646
+ msgstr ""
5647
+
5648
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2167
5649
+ msgid "Shortcode"
5650
+ msgstr ""
5651
+
5652
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2188
5653
+ msgid "(no title)"
5654
+ msgstr ""
5655
+
5656
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2208
5657
+ msgid "The shortcode will be available after you publish this form."
5658
+ msgstr ""
5659
+
5660
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2210
5661
+ msgid "Use this shortcode on the page you want the form to be displayed:"
5662
+ msgstr ""
5663
+
5664
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2214
5665
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5666
+ msgstr ""
5667
+
5668
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2247
5669
+ msgid "Form Shortcode"
5670
+ msgstr ""
5671
+
5672
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5673
+ msgid "Whether to redirect the user to a specific page or not"
5674
+ msgstr ""
5675
+
5676
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5677
+ msgid "Display Messages"
5678
+ msgstr ""
5679
+
5680
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5681
+ msgid "Allowed time to display any success messages (in seconds)"
5682
+ msgstr ""
5683
+
5684
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5685
+ msgid "URL"
5686
+ msgstr ""
5687
+
5688
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5689
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5690
+ msgstr ""
5691
+
5692
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5693
+ msgid "After Profile Update..."
5694
+ msgstr ""
5695
+
5696
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5697
+ msgid "Add New Field to the List"
5698
+ msgstr ""
5699
+
5700
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5701
+ msgid "Choose one of the supported fields you manage <a href=\"%s\">here</a>"
5702
+ msgstr ""
5703
+
5704
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
5705
+ msgid "This form is empty."
5706
+ msgstr ""
5707
+
5708
+ #: ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5709
+ msgid "You need to specify the title of the form before creating it"
5710
+ msgstr ""
5711
+
5712
+ #: ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5713
+ msgid "<pre>Title (Type)</pre>"
5714
+ msgstr ""
5715
+
5716
+ #: ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5717
+ msgid "Delete all items"
5718
+ msgstr ""
5719
+
5720
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:11, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5721
+ msgid "Registration Form"
5722
+ msgstr ""
5723
+
5724
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5725
+ msgid "Add new Registration Form"
5726
+ msgstr ""
5727
+
5728
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5729
+ msgid "Edit the Registration Forms"
5730
+ msgstr ""
5731
+
5732
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5733
+ msgid "New Registration Form"
5734
+ msgstr ""
5735
+
5736
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:17, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5737
+ msgid "Registration Forms"
5738
+ msgstr ""
5739
+
5740
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5741
+ msgid "View the Registration Form"
5742
+ msgstr ""
5743
+
5744
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5745
+ msgid "Search the Registration Forms"
5746
+ msgstr ""
5747
+
5748
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5749
+ msgid "No Registration Form found"
5750
+ msgstr ""
5751
+
5752
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5753
+ msgid "No Registration Forms found in trash"
5754
+ msgstr ""
5755
+
5756
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5757
+ msgid "Default Role"
5758
+ msgstr ""
5759
+
5760
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5761
+ msgid "Set Role"
5762
+ msgstr ""
5763
+
5764
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5765
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5766
+ msgstr ""
5767
+
5768
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5769
+ msgid "Automatically Log In"
5770
+ msgstr ""
5771
+
5772
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5773
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5774
+ msgstr ""
5775
+
5776
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5777
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5778
+ msgstr ""
5779
+
5780
+ #: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5781
+ msgid "After Registration..."
5782
+ msgstr ""
5783
+
5784
+ #: ../profile-builder-2.0/modules/repeater-field/repeater-field.php:267
5785
+ msgid "Are you sure you want to delete this?"
5786
+ msgstr ""
5787
+
5788
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:14
5789
+ msgid "Add new User Listing"
5790
+ msgstr ""
5791
+
5792
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:15
5793
+ msgid "Edit the User Listing"
5794
+ msgstr ""
5795
+
5796
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:16
5797
+ msgid "New User Listing"
5798
+ msgstr ""
5799
+
5800
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:18
5801
+ msgid "View the User Listing"
5802
+ msgstr ""
5803
+
5804
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:19
5805
+ msgid "Search the User Listing"
5806
+ msgstr ""
5807
+
5808
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:20
5809
+ msgid "No User Listing found"
5810
+ msgstr ""
5811
+
5812
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:21
5813
+ msgid "No User Listing found in trash"
5814
+ msgstr ""
5815
+
5816
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:114
5817
+ msgid "Display name as"
5818
+ msgstr ""
5819
+
5820
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2275
5821
+ msgid "Registration Date"
5822
+ msgstr ""
5823
+
5824
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2280
5825
+ msgid "Number of Posts"
5826
+ msgstr ""
5827
+
5828
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:166
5829
+ msgid "More Info"
5830
+ msgstr ""
5831
+
5832
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:167
5833
+ msgid "More Info Url"
5834
+ msgstr ""
5835
+
5836
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:168
5837
+ msgid "Avatar or Gravatar"
5838
+ msgstr ""
5839
+
5840
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:170
5841
+ msgid "User Nicename"
5842
+ msgstr ""
5843
+
5844
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:218
5845
+ msgid "Sort Tags"
5846
+ msgstr ""
5847
+
5848
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:222, ../profile-builder-2.0/modules/user-listing/userlisting.php:253
5849
+ msgid "Extra Functions"
5850
+ msgstr ""
5851
+
5852
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:225
5853
+ msgid "Pagination"
5854
+ msgstr ""
5855
+
5856
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:226
5857
+ msgid "Search all Fields"
5858
+ msgstr ""
5859
+
5860
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2362
5861
+ msgid "Faceted Menus"
5862
+ msgstr ""
5863
+
5864
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:228
5865
+ msgid "User Count"
5866
+ msgstr ""
5867
+
5868
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:255
5869
+ msgid "Go Back Link"
5870
+ msgstr ""
5871
+
5872
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:273
5873
+ msgid "All-userlisting Template"
5874
+ msgstr ""
5875
+
5876
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:276
5877
+ msgid "Single-userlisting Template"
5878
+ msgstr ""
5879
+
5880
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:302
5881
+ msgid "Avatar"
5882
+ msgstr ""
5883
+
5884
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:306, ../profile-builder-2.0/modules/user-listing/userlisting.php:796
5885
+ msgid "Posts"
5886
+ msgstr ""
5887
+
5888
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:307, ../profile-builder-2.0/modules/user-listing/userlisting.php:778
5889
+ msgid "Sign-up Date"
5890
+ msgstr ""
5891
+
5892
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:308
5893
+ msgid "More"
5894
+ msgstr ""
5895
+
5896
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:402
5897
+ msgid "You do not have permission to view this user list."
5898
+ msgstr ""
5899
+
5900
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:415
5901
+ msgid "You do not have the required user role to view this user list."
5902
+ msgstr ""
5903
+
5904
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:439
5905
+ msgid "User not found"
5906
+ msgstr ""
5907
+
5908
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:772
5909
+ msgid "First/Lastname"
5910
+ msgstr ""
5911
+
5912
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:787, ../profile-builder-2.0/modules/user-listing/userlisting.php:2278
5913
+ msgid "Display Name"
5914
+ msgstr ""
5915
+
5916
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2285
5917
+ msgid "Aim"
5918
+ msgstr ""
5919
+
5920
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2286
5921
+ msgid "Yim"
5922
+ msgstr ""
5923
+
5924
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:805, ../profile-builder-2.0/modules/user-listing/userlisting.php:2287
5925
+ msgid "Jabber"
5926
+ msgstr ""
5927
+
5928
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1077, ../profile-builder-2.0/modules/user-listing/userlisting.php:1537, ../profile-builder-2.0/modules/user-listing/userlisting.php:2005, ../profile-builder-2.0/modules/user-listing/userlisting.php:2482
5929
+ msgid "Search Users by All Fields"
5930
+ msgstr ""
5931
+
5932
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1342
5933
+ msgid "Click here to see more information about this user"
5934
+ msgstr ""
5935
+
5936
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1342, ../profile-builder-2.0/modules/user-listing/userlisting.php:1342
5937
+ msgid "More..."
5938
+ msgstr ""
5939
+
5940
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1345
5941
+ msgid "Click here to see more information about this user."
5942
+ msgstr ""
5943
+
5944
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1372
5945
+ msgid "View Map"
5946
+ msgstr ""
5947
+
5948
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1491, ../profile-builder-2.0/modules/user-listing/userlisting.php:1494
5949
+ msgid "Click here to go back"
5950
+ msgstr ""
5951
+
5952
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1491, ../profile-builder-2.0/modules/user-listing/userlisting.php:1491
5953
+ msgid "Back"
5954
+ msgstr ""
5955
+
5956
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1524
5957
+ msgid "&laquo;&laquo; First"
5958
+ msgstr ""
5959
+
5960
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1525
5961
+ msgid "&laquo; Prev"
5962
+ msgstr ""
5963
+
5964
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1526
5965
+ msgid "Next &raquo; "
5966
+ msgstr ""
5967
+
5968
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1527
5969
+ msgid "Last &raquo;&raquo;"
5970
+ msgstr ""
5971
+
5972
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1556
5973
+ msgid "You don't have any pagination settings on this userlisting!"
5974
+ msgstr ""
5975
+
5976
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1605
5977
+ msgid "Show All"
5978
+ msgstr ""
5979
+
5980
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1673
5981
+ msgid "Choose..."
5982
+ msgstr ""
5983
+
5984
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1762
5985
+ msgid "No options available"
5986
+ msgstr ""
5987
+
5988
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1913
5989
+ msgid "Remove All Filters"
5990
+ msgstr ""
5991
+
5992
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2022
5993
+ msgid "Search"
5994
+ msgstr ""
5995
+
5996
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2023
5997
+ msgid "Clear Results"
5998
+ msgstr ""
5999
+
6000
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2217, ../profile-builder-2.0/modules/user-listing/userlisting.php:2221
6001
+ msgid "Extra shortcode parameters"
6002
+ msgstr ""
6003
+
6004
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2219
6005
+ msgid "View all extra shortcode parameters"
6006
+ msgstr ""
6007
+
6008
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2224
6009
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6010
+ msgstr ""
6011
+
6012
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2225
6013
+ msgid "Example:"
6014
+ msgstr ""
6015
+
6016
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2227
6017
+ msgid "Remember though, that the field-value combination must exist in the database."
6018
+ msgstr ""
6019
+
6020
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2233
6021
+ msgid "displays only the users that you specified the user_id for"
6022
+ msgstr ""
6023
+
6024
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2239
6025
+ msgid "displays all users except the ones you specified the user_id for"
6026
+ msgstr ""
6027
+
6028
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2302
6029
+ msgid "Random (very slow on large databases > 10K user)"
6030
+ msgstr ""
6031
+
6032
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2305
6033
+ msgid "Ascending"
6034
+ msgstr ""
6035
+
6036
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2306
6037
+ msgid "Descending"
6038
+ msgstr ""
6039
+
6040
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
6041
+ msgid "Roles to Display"
6042
+ msgstr ""
6043
+
6044
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
6045
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
6046
+ msgstr ""
6047
+
6048
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
6049
+ msgid "Number of Users/Page"
6050
+ msgstr ""
6051
+
6052
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
6053
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
6054
+ msgstr ""
6055
+
6056
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
6057
+ msgid "Default Sorting Criteria"
6058
+ msgstr ""
6059
+
6060
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
6061
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
6062
+ msgstr ""
6063
+
6064
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
6065
+ msgid "Default Sorting Order"
6066
+ msgstr ""
6067
+
6068
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
6069
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
6070
+ msgstr ""
6071
+
6072
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
6073
+ msgid "Avatar Size (All-userlisting)"
6074
+ msgstr ""
6075
+
6076
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
6077
+ msgid "Set the avatar size on the all-userlisting only"
6078
+ msgstr ""
6079
+
6080
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
6081
+ msgid "Avatar Size (Single-userlisting)"
6082
+ msgstr ""
6083
+
6084
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
6085
+ msgid "Set the avatar size on the single-userlisting only"
6086
+ msgstr ""
6087
+
6088
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
6089
+ msgid "Visible only to logged in users?"
6090
+ msgstr ""
6091
+
6092
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
6093
+ msgid "The userlisting will only be visible only to the logged in users"
6094
+ msgstr ""
6095
+
6096
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2321
6097
+ msgid "Visible to following Roles"
6098
+ msgstr ""
6099
+
6100
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2321
6101
+ msgid "The userlisting will only be visible to the following roles"
6102
+ msgstr ""
6103
+
6104
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2327
6105
+ msgid "Userlisting Settings"
6106
+ msgstr ""
6107
+
6108
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
6109
+ msgid "Label"
6110
+ msgstr ""
6111
+
6112
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
6113
+ msgid "Choose the facet name that appears on the frontend"
6114
+ msgstr ""
6115
+
6116
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
6117
+ msgid "Facet Type"
6118
+ msgstr ""
6119
+
6120
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
6121
+ msgid "Choose the facet menu type"
6122
+ msgstr ""
6123
+
6124
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
6125
+ msgid "Facet Meta"
6126
+ msgstr ""
6127
+
6128
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
6129
+ msgid "Choose the meta field for the facet menu"
6130
+ msgstr ""
6131
+
6132
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
6133
+ msgid "Behaviour"
6134
+ msgstr ""
6135
+
6136
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
6137
+ msgid "Narrow the results"
6138
+ msgstr ""
6139
+
6140
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
6141
+ msgid "Expand the results"
6142
+ msgstr ""
6143
+
6144
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
6145
+ msgid "Choose how multiple selections affect the results"
6146
+ msgstr ""
6147
+
6148
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2356
6149
+ msgid "Visible choices"
6150
+ msgstr ""
6151
+
6152
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2356
6153
+ msgid "Show a toggle link after this many choices. Leave blank for all"
6154
+ msgstr ""
6155
+
6156
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2381
6157
+ msgid "Search Fields"
6158
+ msgstr ""
6159
+
6160
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2381
6161
+ msgid "Choose the fields in which the Search Field will look in"
6162
+ msgstr ""
6163
+
6164
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2386
6165
+ msgid "Search Settings"
6166
+ msgstr ""
6167
+
6168
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2458
6169
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6170
+ msgstr ""
6171
+
6172
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2458
6173
+ msgid "You can find it in the Profile Builder menu."
6174
+ msgstr ""
6175
+
6176
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2621
6177
+ msgid "No results found!"
6178
+ msgstr ""
6179
+
6180
+ #: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:541, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:534
6181
+ msgid "Delete this item"
6182
+ msgstr ""
6183
+
6184
+ #: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:1286
6185
+ msgid "Syncronize WCK"
6186
+ msgstr ""
6187
+
6188
+ #: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:1298
6189
+ msgid "Syncronize WCK Translation"
6190
+ msgstr ""
6191
+
6192
+ #: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
6193
+ msgid "Yes, I'd like to create a new site"
6194
+ msgstr ""
6195
+
6196
+ #: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
6197
+ msgid "Your site url will look like this:<br>"
6198
+ msgstr ""
6199
+
6200
+ #: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
6201
+ msgid "Site URL slug"
6202
+ msgstr ""
6203
+
6204
+ #: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
6205
+ msgid "Site Title"
6206
+ msgstr ""
6207
+
6208
+ #: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
6209
+ msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
6210
+ msgstr ""
6211
+
6212
+ #: ../profile-builder-2.0/front-end/default-fields/email/email.php:51
6213
+ msgid "You must enter a valid email address."
6214
+ msgstr ""
6215
+
6216
+ #: ../profile-builder-2.0/front-end/default-fields/email/email.php:60, ../profile-builder-2.0/front-end/default-fields/email/email.php:67
6217
+ msgid "This email is already reserved to be used soon."
6218
+ msgstr ""
6219
+
6220
+ #: ../profile-builder-2.0/front-end/default-fields/email/email.php:60, ../profile-builder-2.0/front-end/default-fields/email/email.php:67, ../profile-builder-2.0/front-end/default-fields/email/email.php:77, ../profile-builder-2.0/front-end/default-fields/email/email.php:95, ../profile-builder-2.0/front-end/default-fields/username/username.php:49, ../profile-builder-2.0/front-end/default-fields/username/username.php:65
6221
+ msgid "Please try a different one!"
6222
+ msgstr ""
6223
+
6224
+ #: ../profile-builder-2.0/front-end/default-fields/email/email.php:77, ../profile-builder-2.0/front-end/default-fields/email/email.php:95
6225
+ msgid "This email is already in use."
6226
+ msgstr ""
6227
+
6228
+ #: ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37, ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
6229
+ msgid "The passwords do not match"
6230
+ msgstr ""
6231
+
6232
+ #: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:53
6233
+ msgid "To use reCAPTCHA you must get an API key from"
6234
+ msgstr ""
6235
+
6236
+ #: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:173
6237
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
6238
+ msgstr ""
6239
+
6240
+ #: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:238
6241
+ msgid "To use reCAPTCHA you must get an API public key from:"
6242
+ msgstr ""
6243
+
6244
+ #: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:516
6245
+ msgid "Click the BACK button on your browser, and try again."
6246
+ msgstr ""
6247
+
6248
+ #: ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:92, ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:105
6249
+ msgid "Only administrators can see this field on edit profile forms."
6250
+ msgstr ""
6251
+
6252
+ #: ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:101
6253
+ msgid "As an administrator you cannot change your role."
6254
+ msgstr ""
6255
+
6256
+ #: ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:137, ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:161, ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:166
6257
+ msgid "You cannot register this user role"
6258
+ msgstr ""
6259
+
6260
+ #: ../profile-builder-2.0/front-end/default-fields/username/username.php:49
6261
+ msgid "This username already exists."
6262
+ msgstr ""
6263
+
6264
+ #: ../profile-builder-2.0/front-end/default-fields/username/username.php:52, ../profile-builder-2.0/front-end/default-fields/username/username.php:60
6265
+ msgid "This username is invalid because it uses illegal characters."
6266
+ msgstr ""
6267
+
6268
+ #: ../profile-builder-2.0/front-end/default-fields/username/username.php:52, ../profile-builder-2.0/front-end/default-fields/username/username.php:60
6269
+ msgid "Please enter a valid username."
6270
+ msgstr ""
6271
+
6272
+ #: ../profile-builder-2.0/front-end/default-fields/username/username.php:65
6273
+ msgid "This username is already reserved to be used soon."
6274
+ msgstr ""
6275
+
6276
+ #: ../profile-builder-2.0/front-end/extra-fields/map/map.php:46, ../profile-builder-2.0/front-end/extra-fields/map/map.php:69
6277
+ msgid "Please add the Google Maps API key for this field."
6278
+ msgstr ""
6279
+
6280
+ #: ../profile-builder-2.0/front-end/extra-fields/map/map.php:134
6281
+ msgid "Something went wrong. Please try again."
6282
+ msgstr ""
6283
+
6284
+ #: ../profile-builder-2.0/front-end/extra-fields/number/number.php:69
6285
+ msgid "Please enter numbers only"
6286
+ msgstr ""
6287
+
6288
+ #: ../profile-builder-2.0/front-end/extra-fields/number/number.php:73
6289
+ msgid "Value must be a multiplier of %1$s"
6290
+ msgstr ""
6291
+
6292
+ #: ../profile-builder-2.0/front-end/extra-fields/number/number.php:77
6293
+ msgid "Value must be greater than or equal to %1$s"
6294
+ msgstr ""
6295
+
6296
+ #: ../profile-builder-2.0/front-end/extra-fields/number/number.php:81
6297
+ msgid "Value must be less than or equal to %1$s"
6298
+ msgstr ""
6299
+
6300
+ #: ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
6301
+ msgid "Required phone number format: "
6302
+ msgstr ""
6303
+
6304
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6305
+ msgid "Bolivia, __( Plurinational State of"
6306
+ msgstr ""
6307
+
6308
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6309
+ msgid "Bonaire, __( Sint Eustatius and Saba"
6310
+ msgstr ""
6311
+
6312
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6313
+ msgid "Brunei Darussalam"
6314
+ msgstr ""
6315
+
6316
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6317
+ msgid "Cabo Verde"
6318
+ msgstr ""
6319
+
6320
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6321
+ msgid "Cocos (Keeling) Islands"
6322
+ msgstr ""
6323
+
6324
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6325
+ msgid "Congo"
6326
+ msgstr ""
6327
+
6328
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6329
+ msgid "Congo, __( the Democratic Republic of the"
6330
+ msgstr ""
6331
+
6332
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6333
+ msgid "Cote dIvoire"
6334
+ msgstr ""
6335
+
6336
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6337
+ msgid "Falkland Islands (Malvinas)"
6338
+ msgstr ""
6339
+
6340
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6341
+ msgid "Holy See (Vatican City State)"
6342
+ msgstr ""
6343
+
6344
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6345
+ msgid "Iran, __( Islamic Republic of"
6346
+ msgstr ""
6347
+
6348
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6349
+ msgid "Korea, __( Democratic Peoples Republic of"
6350
+ msgstr ""
6351
+
6352
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6353
+ msgid "Korea, __( Republic of"
6354
+ msgstr ""
6355
+
6356
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6357
+ msgid "Lao Peoples Democratic Republic"
6358
+ msgstr ""
6359
+
6360
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6361
+ msgid "Macedonia, __( the former Yugoslav Republic of"
6362
+ msgstr ""
6363
+
6364
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6365
+ msgid "Micronesia, __( Federated States of"
6366
+ msgstr ""
6367
+
6368
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6369
+ msgid "Moldova, __( Republic of"
6370
+ msgstr ""
6371
+
6372
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6373
+ msgid "Palestine, __( State of"
6374
+ msgstr ""
6375
+
6376
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6377
+ msgid "Russian Federation"
6378
+ msgstr ""
6379
+
6380
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6381
+ msgid "Saint Helena, __( Ascension and Tristan da Cunha"
6382
+ msgstr ""
6383
+
6384
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6385
+ msgid "Saint Martin (French part)"
6386
+ msgstr ""
6387
+
6388
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6389
+ msgid "Sint Maarten (Dutch part)"
6390
+ msgstr ""
6391
+
6392
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6393
+ msgid "Syrian Arab Republic"
6394
+ msgstr ""
6395
+
6396
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6397
+ msgid "Taiwan, __( Province of China"
6398
+ msgstr ""
6399
+
6400
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6401
+ msgid "Tanzania, __( United Republic of"
6402
+ msgstr ""
6403
+
6404
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6405
+ msgid "Timor-Leste"
6406
+ msgstr ""
6407
+
6408
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6409
+ msgid "Venezuela, __( Bolivarian Republic of"
6410
+ msgstr ""
6411
+
6412
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6413
+ msgid "Viet Nam"
6414
+ msgstr ""
6415
+
6416
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6417
+ msgid "Virgin Islands, __( British"
6418
+ msgstr ""
6419
+
6420
+ #: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
6421
+ msgid "Virgin Islands, __( U.S."
6422
+ msgstr ""
6423
+
6424
+ #: ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:42, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:66, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/country select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/cpt select.php:17, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/user select.php:15, ../profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14, ../profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17, ../profile-builder-2.0/assets/lib/wck-api/fields/select.php:14, ../profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
6425
+ msgid "...Choose"
6426
+ msgstr ""
6427
+
6428
+ #: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
6429
+ msgid "Remove"
6430
+ msgstr ""
6431
+
6432
+ #: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
6433
+ msgid "Select File"
6434
+ msgstr ""
6435
+
6436
+ #: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
6437
+ msgid "Upload "
6438
+ msgstr ""
6439
+
6440
+ #: ../profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78, ../profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
6441
+ msgid "Sorry, you cannot upload this file type for this field."
6442
+ msgstr ""
6443
+
6444
+ #: ../profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
6445
+ msgid "An error occurred, please try again later."
6446
+ msgstr ""
6447
+
6448
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
6449
+ msgid "Limit"
6450
+ msgstr ""
6451
+
6452
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
6453
+ msgid "Enable limit to the number of fields to be generated by users in front end forms "
6454
+ msgstr ""
6455
+
6456
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
6457
+ msgid "General Limit"
6458
+ msgstr ""
6459
+
6460
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
6461
+ msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
6462
+ msgstr ""
6463
+
6464
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
6465
+ msgid "Limit reached message"
6466
+ msgstr ""
6467
+
6468
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
6469
+ msgid "The maximum number of fields has been reached."
6470
+ msgstr ""
6471
+
6472
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
6473
+ msgid "The popup message to display when the limit of repeater groups is reached."
6474
+ msgstr ""
6475
+
6476
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
6477
+ msgid "Limit per Role"
6478
+ msgstr ""
6479
+
6480
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
6481
+ msgid "Leave 0 for unlimited."
6482
+ msgstr ""
6483
+
6484
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
6485
+ msgid "Repeated field group"
6486
+ msgstr ""
6487
+
6488
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
6489
+ msgid "Manage field or group of fields that will be repeatable."
6490
+ msgstr ""
6491
+
6492
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
6493
+ msgid "Edit field group"
6494
+ msgstr ""
6495
+
6496
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
6497
+ msgid "Repeatable fields saved!"
6498
+ msgstr ""
6499
+
6500
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
6501
+ msgid "Please enter a unique field title."
6502
+ msgstr ""
6503
+
6504
+ #: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
6505
+ msgid ""
6506
+ "Please enter a unique field title.\n"
6507
+ ""
6508
+ msgstr ""