Version Description
- Added notification to enable user registration via Profile Builder (Anyone can register checkbox).
- Add register_url and lostpassword_url parameters to login shortcode.
- Added filter to allow changing Lost Password link in login shortcode.
Download this release
Release Info
| Developer | reflectionmedia |
| Plugin | |
| Version | 2.0.5 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.4 to 2.0.5
- admin/admin-bar.php +2 -2
- admin/basic-info.php +2 -2
- admin/general-settings.php +2 -2
- admin/manage-fields.php +5 -4
- admin/register-version.php +1 -1
- assets/css/style-back-end.css +13 -3
- assets/css/style-front-end.css +4 -0
- assets/js/jquery-epf-rf.js +37 -0
- assets/js/jquery-manage-fields-live-change.js +1 -3
- assets/lib/wck-api/fields/country select.php +1 -1
- assets/lib/wck-api/fields/cpt select.php +1 -1
- assets/lib/wck-api/fields/select.php +1 -1
- assets/lib/wck-api/fields/user select.php +1 -1
- assets/lib/wck-api/wordpress-creation-kit.js +11 -11
- assets/lib/wck-api/wordpress-creation-kit.php +5 -5
- features/functions.php +46 -2
- features/login-widget/login-widget.php +96 -112
- front-end/class-formbuilder.php +5 -5
- front-end/login.php +78 -47
- index.php +3 -9
- readme.txt +12 -7
- translation/profilebuilder.pot +2744 -2483
admin/admin-bar.php
CHANGED
|
@@ -45,7 +45,7 @@ function wppb_show_hide_admin_bar_content() {
|
|
| 45 |
<div class="wrap wppb-wrap wppb-admin-bar">
|
| 46 |
|
| 47 |
<h2><?php _e( 'Admin Bar Settings', 'profilebuilder' );?></h2>
|
| 48 |
-
<p><?php _e( '
|
| 49 |
<form method="post" action="options.php#show-hide-admin-bar">
|
| 50 |
<?php
|
| 51 |
$admin_bar_settings = get_option( 'wppb_display_admin_settings' );
|
|
@@ -68,7 +68,7 @@ function wppb_show_hide_admin_bar_content() {
|
|
| 68 |
$alt_class = ( ( $alt_i%2 == 0 ) ? ' class="alternate"' : '' );
|
| 69 |
|
| 70 |
echo'<tr'.$alt_class.'>
|
| 71 |
-
<td>'
|
| 72 |
<td>
|
| 73 |
<span><input id="rd'.$key.'" type="radio" name="wppb_display_admin_settings['.$key.']" value="default"'.( ( !$setting_exists || $admin_bar_settings[$key] == 'default' ) ? ' checked' : '' ).'/><label for="rd'.$key.'">'.__( 'Default', 'profilebuilder' ).'</label></span>
|
| 74 |
<span><input id="rs'.$key.'" type="radio" name="wppb_display_admin_settings['.$key.']" value="show"'.( ( $setting_exists && $admin_bar_settings[$key] == 'show') ? ' checked' : '' ).'/><label for="rs'.$key.'">'.__( 'Show', 'profilebuilder' ).'</label></span>
|
| 45 |
<div class="wrap wppb-wrap wppb-admin-bar">
|
| 46 |
|
| 47 |
<h2><?php _e( 'Admin Bar Settings', 'profilebuilder' );?></h2>
|
| 48 |
+
<p><?php _e( 'Choose which user roles view the admin bar in the front-end of the website.', 'profilebuilder' ); ?>
|
| 49 |
<form method="post" action="options.php#show-hide-admin-bar">
|
| 50 |
<?php
|
| 51 |
$admin_bar_settings = get_option( 'wppb_display_admin_settings' );
|
| 68 |
$alt_class = ( ( $alt_i%2 == 0 ) ? ' class="alternate"' : '' );
|
| 69 |
|
| 70 |
echo'<tr'.$alt_class.'>
|
| 71 |
+
<td>'.translate_user_role($key).'</td>
|
| 72 |
<td>
|
| 73 |
<span><input id="rd'.$key.'" type="radio" name="wppb_display_admin_settings['.$key.']" value="default"'.( ( !$setting_exists || $admin_bar_settings[$key] == 'default' ) ? ' checked' : '' ).'/><label for="rd'.$key.'">'.__( 'Default', 'profilebuilder' ).'</label></span>
|
| 74 |
<span><input id="rs'.$key.'" type="radio" name="wppb_display_admin_settings['.$key.']" value="show"'.( ( $setting_exists && $admin_bar_settings[$key] == 'show') ? ' checked' : '' ).'/><label for="rs'.$key.'">'.__( 'Show', 'profilebuilder' ).'</label></span>
|
admin/basic-info.php
CHANGED
|
@@ -87,7 +87,7 @@ function wppb_basic_info_content() {
|
|
| 87 |
<h3><?php _e( 'Customize Your Forms The Way You Want (*)', 'profilebuilder' ); ?></h3>
|
| 88 |
<p><?php _e( 'With Extra Profile Fields you can create the exact registration form your project needs.', 'profilebuilder' ); ?></p>
|
| 89 |
<?php if ($version == 'Free'){ ?>
|
| 90 |
-
<p><a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=basicinfo-extrafields&utm_campaign=PBFree" class="button-free"><?php _e( 'Extra Profile Fields are available in Hobbyist or PRO versions', 'profilebuilder' ); ?></a></p>
|
| 91 |
<?php } else {?>
|
| 92 |
<p><a href="admin.php?page=manage-fields" class="button"><?php _e( 'Get started with extra fields', 'profilebuilder' ); ?></a></p>
|
| 93 |
<?php } ?>
|
|
@@ -118,7 +118,7 @@ function wppb_basic_info_content() {
|
|
| 118 |
<p><a href="admin.php?page=profile-builder-modules" class="button"><?php _e( 'Enable your modules', 'profilebuilder' ); ?></a></p>
|
| 119 |
<?php endif; ?>
|
| 120 |
<?php if ($version == 'Free'){ ?>
|
| 121 |
-
<p><a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=basicinfo-modules&utm_campaign=PBFree" class="button-free"><?php _e( 'Find out more about PRO Modules', 'profilebuilder' ); ?></a></p>
|
| 122 |
<?php }?>
|
| 123 |
</div>
|
| 124 |
<div class="wppb-row wppb-3-col">
|
| 87 |
<h3><?php _e( 'Customize Your Forms The Way You Want (*)', 'profilebuilder' ); ?></h3>
|
| 88 |
<p><?php _e( 'With Extra Profile Fields you can create the exact registration form your project needs.', 'profilebuilder' ); ?></p>
|
| 89 |
<?php if ($version == 'Free'){ ?>
|
| 90 |
+
<p><a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=basicinfo-extrafields&utm_campaign=PBFree" class="wppb-button-free"><?php _e( 'Extra Profile Fields are available in Hobbyist or PRO versions', 'profilebuilder' ); ?></a></p>
|
| 91 |
<?php } else {?>
|
| 92 |
<p><a href="admin.php?page=manage-fields" class="button"><?php _e( 'Get started with extra fields', 'profilebuilder' ); ?></a></p>
|
| 93 |
<?php } ?>
|
| 118 |
<p><a href="admin.php?page=profile-builder-modules" class="button"><?php _e( 'Enable your modules', 'profilebuilder' ); ?></a></p>
|
| 119 |
<?php endif; ?>
|
| 120 |
<?php if ($version == 'Free'){ ?>
|
| 121 |
+
<p><a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=basicinfo-modules&utm_campaign=PBFree" class="wppb-button-free"><?php _e( 'Find out more about PRO Modules', 'profilebuilder' ); ?></a></p>
|
| 122 |
<?php }?>
|
| 123 |
</div>
|
| 124 |
<div class="wppb-row wppb-3-col">
|
admin/general-settings.php
CHANGED
|
@@ -111,8 +111,8 @@ function wppb_general_settings_content() {
|
|
| 111 |
</th>
|
| 112 |
<td>
|
| 113 |
<select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb-select" onchange="wppb_display_page_select_aa(this.value)">
|
| 114 |
-
<option value="yes" <?php if ($wppb_generalSettings['adminApproval'] == 'yes') echo 'selected'; ?>><?php _e( 'Yes', 'profilebuilder' ); ?></option>
|
| 115 |
-
<option value="no" <?php if ($wppb_generalSettings['adminApproval'] == 'no') echo 'selected'; ?>><?php _e( 'No', 'profilebuilder' ); ?></option>
|
| 116 |
</select>
|
| 117 |
<ul>
|
| 118 |
<li class="description dynamic2"><?php printf( __( 'You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.', 'profilebuilder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=admin_approval&orderby=registered&order=desc">', '</a>' )?></li>
|
| 111 |
</th>
|
| 112 |
<td>
|
| 113 |
<select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb-select" onchange="wppb_display_page_select_aa(this.value)">
|
| 114 |
+
<option value="yes" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profilebuilder' ); ?></option>
|
| 115 |
+
<option value="no" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profilebuilder' ); ?></option>
|
| 116 |
</select>
|
| 117 |
<ul>
|
| 118 |
<li class="description dynamic2"><?php printf( __( 'You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.', 'profilebuilder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=admin_approval&orderby=registered&order=desc">', '</a>' )?></li>
|
admin/manage-fields.php
CHANGED
|
@@ -30,7 +30,7 @@ function wppb_manage_fields_submenu(){
|
|
| 30 |
$manage_field_types[] = 'Default - Nickname';
|
| 31 |
$manage_field_types[] = 'Default - E-mail';
|
| 32 |
$manage_field_types[] = 'Default - Website';
|
| 33 |
-
|
| 34 |
// Default contact methods were removed in WP 3.6. A filter dictates contact methods.
|
| 35 |
if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){
|
| 36 |
$manage_field_types[] = 'Default - AIM';
|
|
@@ -165,6 +165,7 @@ function wppb_get_meta_name(){
|
|
| 165 |
$id = 1;
|
| 166 |
|
| 167 |
$wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' );
|
|
|
|
| 168 |
if ( ( $wppb_manage_fields === 'not_found' ) || ( empty( $wppb_manage_fields ) ) ){
|
| 169 |
return 'custom_field'.$id;
|
| 170 |
}
|
|
@@ -190,7 +191,7 @@ function wppb_get_meta_name(){
|
|
| 190 |
$id = $meta_numbers[0]+1;
|
| 191 |
}
|
| 192 |
}
|
| 193 |
-
|
| 194 |
return 'custom_field'.$id;
|
| 195 |
}
|
| 196 |
}
|
|
@@ -234,7 +235,7 @@ function wppb_return_unique_field_list( $only_default_fields = false ){
|
|
| 234 |
$unique_field_list[] = 'Default - Nickname';
|
| 235 |
$unique_field_list[] = 'Default - E-mail';
|
| 236 |
$unique_field_list[] = 'Default - Website';
|
| 237 |
-
|
| 238 |
// Default contact methods were removed in WP 3.6. A filter dictates contact methods.
|
| 239 |
if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){
|
| 240 |
$unique_field_list[] = 'Default - AIM';
|
|
@@ -256,7 +257,7 @@ function wppb_return_unique_field_list( $only_default_fields = false ){
|
|
| 256 |
|
| 257 |
|
| 258 |
/**
|
| 259 |
-
* Function that checks several things when adding/
|
| 260 |
*
|
| 261 |
* @since v.2.0
|
| 262 |
*
|
| 30 |
$manage_field_types[] = 'Default - Nickname';
|
| 31 |
$manage_field_types[] = 'Default - E-mail';
|
| 32 |
$manage_field_types[] = 'Default - Website';
|
| 33 |
+
|
| 34 |
// Default contact methods were removed in WP 3.6. A filter dictates contact methods.
|
| 35 |
if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){
|
| 36 |
$manage_field_types[] = 'Default - AIM';
|
| 165 |
$id = 1;
|
| 166 |
|
| 167 |
$wppb_manage_fields = get_option( 'wppb_manage_fields', 'not_found' );
|
| 168 |
+
|
| 169 |
if ( ( $wppb_manage_fields === 'not_found' ) || ( empty( $wppb_manage_fields ) ) ){
|
| 170 |
return 'custom_field'.$id;
|
| 171 |
}
|
| 191 |
$id = $meta_numbers[0]+1;
|
| 192 |
}
|
| 193 |
}
|
| 194 |
+
|
| 195 |
return 'custom_field'.$id;
|
| 196 |
}
|
| 197 |
}
|
| 235 |
$unique_field_list[] = 'Default - Nickname';
|
| 236 |
$unique_field_list[] = 'Default - E-mail';
|
| 237 |
$unique_field_list[] = 'Default - Website';
|
| 238 |
+
|
| 239 |
// Default contact methods were removed in WP 3.6. A filter dictates contact methods.
|
| 240 |
if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){
|
| 241 |
$unique_field_list[] = 'Default - AIM';
|
| 257 |
|
| 258 |
|
| 259 |
/**
|
| 260 |
+
* Function that checks several things when adding/editing the fields
|
| 261 |
*
|
| 262 |
* @since v.2.0
|
| 263 |
*
|
admin/register-version.php
CHANGED
|
@@ -54,7 +54,7 @@ function wppb_serial_form($version, $fullname){
|
|
| 54 |
<?php $wppb_profile_builder_serial_status = get_option( 'wppb_profile_builder_'.$version.'_serial_status' ); ?>
|
| 55 |
<?php settings_fields( 'wppb_profile_builder_'.$version.'_serial' ); ?>
|
| 56 |
|
| 57 |
-
<p><?php
|
| 58 |
<p><?php _e( "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.", 'profilebuilder' );?></p>
|
| 59 |
<p class="wppb-serial-wrap">
|
| 60 |
<label for="wppb_profile_builder_<?php echo $version; ?>_serial"><?php _e(' Serial Number:', 'profilebuilder' );?></label>
|
| 54 |
<?php $wppb_profile_builder_serial_status = get_option( 'wppb_profile_builder_'.$version.'_serial_status' ); ?>
|
| 55 |
<?php settings_fields( 'wppb_profile_builder_'.$version.'_serial' ); ?>
|
| 56 |
|
| 57 |
+
<p><?php printf( __( "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received", 'profilebuilder'), $fullname);?></p>
|
| 58 |
<p><?php _e( "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.", 'profilebuilder' );?></p>
|
| 59 |
<p class="wppb-serial-wrap">
|
| 60 |
<label for="wppb_profile_builder_<?php echo $version; ?>_serial"><?php _e(' Serial Number:', 'profilebuilder' );?></label>
|
assets/css/style-back-end.css
CHANGED
|
@@ -193,6 +193,16 @@
|
|
| 193 |
#container_wppb_rf_fields thead tr:hover {
|
| 194 |
background: #f1f1f1;
|
| 195 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 196 |
|
| 197 |
#container_wppb_epf_fields tr.update_container_wppb_epf_fields:hover,
|
| 198 |
#container_wppb_rf_fields tr.update_container_wppb_rf_fields:hover{
|
|
@@ -420,7 +430,7 @@
|
|
| 420 |
}
|
| 421 |
}
|
| 422 |
/* Basic Information Buttons - for Free to Pro upgrade*/
|
| 423 |
-
.button-free {
|
| 424 |
border-radius: 3px;
|
| 425 |
border-style: solid;
|
| 426 |
border-width: 1px;
|
|
@@ -440,10 +450,10 @@
|
|
| 440 |
color: #fff;
|
| 441 |
vertical-align:top;
|
| 442 |
}
|
| 443 |
-
p .button-free {
|
| 444 |
vertical-align: baseline;
|
| 445 |
}
|
| 446 |
-
.button-free:hover {
|
| 447 |
background: #e45424;
|
| 448 |
border-color: #6d2811;
|
| 449 |
color: #fff;
|
| 193 |
#container_wppb_rf_fields thead tr:hover {
|
| 194 |
background: #f1f1f1;
|
| 195 |
}
|
| 196 |
+
#container_wppb_epf_fields thead .wppb-delete-all-fields,
|
| 197 |
+
#container_wppb_rf_fields thead .wppb-delete-all-fields {
|
| 198 |
+
color: #333;
|
| 199 |
+
text-decoration: underline;
|
| 200 |
+
}
|
| 201 |
+
|
| 202 |
+
#container_wppb_epf_fields tbody .wck-delete,
|
| 203 |
+
#container_wppb_rf_fields tbody .wck-delete {
|
| 204 |
+
padding: 8px 16px;
|
| 205 |
+
}
|
| 206 |
|
| 207 |
#container_wppb_epf_fields tr.update_container_wppb_epf_fields:hover,
|
| 208 |
#container_wppb_rf_fields tr.update_container_wppb_rf_fields:hover{
|
| 430 |
}
|
| 431 |
}
|
| 432 |
/* Basic Information Buttons - for Free to Pro upgrade*/
|
| 433 |
+
.wppb-button-free {
|
| 434 |
border-radius: 3px;
|
| 435 |
border-style: solid;
|
| 436 |
border-width: 1px;
|
| 450 |
color: #fff;
|
| 451 |
vertical-align:top;
|
| 452 |
}
|
| 453 |
+
p .wppb-button-free {
|
| 454 |
vertical-align: baseline;
|
| 455 |
}
|
| 456 |
+
.wppb-button-free:hover {
|
| 457 |
background: #e45424;
|
| 458 |
border-color: #6d2811;
|
| 459 |
color: #fff;
|
assets/css/style-front-end.css
CHANGED
|
@@ -333,6 +333,10 @@ input#send_credentials_via_email{
|
|
| 333 |
text-align: center;
|
| 334 |
}
|
| 335 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 336 |
ul.wppb-profile{
|
| 337 |
list-style-type: none;
|
| 338 |
margin-left: 0;
|
| 333 |
text-align: center;
|
| 334 |
}
|
| 335 |
|
| 336 |
+
.wppb-avatar img {
|
| 337 |
+
max-width: none;
|
| 338 |
+
}
|
| 339 |
+
|
| 340 |
ul.wppb-profile{
|
| 341 |
list-style-type: none;
|
| 342 |
margin-left: 0;
|
assets/js/jquery-epf-rf.js
CHANGED
|
@@ -116,4 +116,41 @@ function wppb_check_update_field_options_disabled() {
|
|
| 116 |
jQuery(this).parents('.mb-list-entry-fields').find('.button-primary')[0].onclick = null;
|
| 117 |
}
|
| 118 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
}
|
| 116 |
jQuery(this).parents('.mb-list-entry-fields').find('.button-primary')[0].onclick = null;
|
| 117 |
}
|
| 118 |
});
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
/*
|
| 122 |
+
* Function that sends an ajax request to delete all items(fields) from a form
|
| 123 |
+
*
|
| 124 |
+
*/
|
| 125 |
+
function wppb_rf_epf_delete_all_fields(event, delete_all_button_id, nonce) {
|
| 126 |
+
event.preventDefault();
|
| 127 |
+
$deleteButton = jQuery('#' + delete_all_button_id);
|
| 128 |
+
|
| 129 |
+
var response = confirm( "Are you sure you want to delete all items ?" );
|
| 130 |
+
|
| 131 |
+
if( response == true ) {
|
| 132 |
+
$tableParent = $deleteButton.parents('table');
|
| 133 |
+
|
| 134 |
+
var meta = $tableParent.attr('id').replace('container_', '');
|
| 135 |
+
var post_id = parseInt( $tableParent.attr('post') );
|
| 136 |
+
|
| 137 |
+
$tableParent.parent().css({'opacity':'0.4', 'position':'relative'}).append('<div id="mb-ajax-loading"></div>');
|
| 138 |
+
|
| 139 |
+
jQuery.post( ajaxurl, { action: "wppb_rf_epf_delete_all_fields", meta: meta, id: post_id, _ajax_nonce: nonce }, function(response) {
|
| 140 |
+
|
| 141 |
+
/* refresh the list */
|
| 142 |
+
jQuery.post( wckAjaxurl, { action: "wck_refresh_list"+meta, meta: meta, id: post_id}, function(response) {
|
| 143 |
+
jQuery('#container_'+meta).replaceWith(response);
|
| 144 |
+
$tableParent = jQuery('#container_'+meta);
|
| 145 |
+
|
| 146 |
+
$tableParent.find('tbody td').css('width', function(){ return jQuery(this).width() });
|
| 147 |
+
|
| 148 |
+
mb_sortable_elements();
|
| 149 |
+
$tableParent.parent().css('opacity','1');
|
| 150 |
+
|
| 151 |
+
jQuery('#mb-ajax-loading').remove();
|
| 152 |
+
});
|
| 153 |
+
|
| 154 |
+
});
|
| 155 |
+
}
|
| 156 |
}
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
|
@@ -364,9 +364,7 @@ function wppb_hide_properties_for_already_added_fields( container_name ){
|
|
| 364 |
|
| 365 |
jQuery( container_name + ' tr' ).each(function() {
|
| 366 |
|
| 367 |
-
field = jQuery('.row-field', this).text();
|
| 368 |
-
field = jQuery.trim(field.replace('Field: ', ''));
|
| 369 |
-
|
| 370 |
|
| 371 |
jQuery( 'li', this ).each(function() {
|
| 372 |
var class_name = '';
|
| 364 |
|
| 365 |
jQuery( container_name + ' tr' ).each(function() {
|
| 366 |
|
| 367 |
+
field = jQuery('.row-field pre', this).text();
|
|
|
|
|
|
|
| 368 |
|
| 369 |
jQuery( 'li', this ).each(function() {
|
| 370 |
var class_name = '';
|
assets/lib/wck-api/fields/country select.php
CHANGED
|
@@ -11,7 +11,7 @@ $element .= '<select name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_
|
|
| 11 |
if( !empty( $frontend_prefix ) )
|
| 12 |
$element .= $frontend_prefix;
|
| 13 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-country-select mb-field" >';
|
| 14 |
-
$element .= '<option value="">'. __('...
|
| 15 |
if( !empty( $country_list ) ){
|
| 16 |
foreach( $country_list as $option ){
|
| 17 |
$element .= '<option value="'. esc_attr( $option ) .'" '. selected( $option, $value, false ) .' >'. esc_html( $option ) .'</option>';
|
| 11 |
if( !empty( $frontend_prefix ) )
|
| 12 |
$element .= $frontend_prefix;
|
| 13 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-country-select mb-field" >';
|
| 14 |
+
$element .= '<option value="">'. __('...Choose', 'wck') .'</option>';
|
| 15 |
if( !empty( $country_list ) ){
|
| 16 |
foreach( $country_list as $option ){
|
| 17 |
$element .= '<option value="'. esc_attr( $option ) .'" '. selected( $option, $value, false ) .' >'. esc_html( $option ) .'</option>';
|
assets/lib/wck-api/fields/cpt select.php
CHANGED
|
@@ -14,7 +14,7 @@ if( !empty( $cpt_query->posts ) ){
|
|
| 14 |
if( !empty( $frontend_prefix ) )
|
| 15 |
$element .= $frontend_prefix;
|
| 16 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
|
| 17 |
-
$element .= '<option value="">'. __('...
|
| 18 |
foreach( $cpt_query->posts as $cpt ){
|
| 19 |
if ( $cpt->post_title == '' )
|
| 20 |
$cpt->post_title = 'No title. ID: ' . $cpt->ID;
|
| 14 |
if( !empty( $frontend_prefix ) )
|
| 15 |
$element .= $frontend_prefix;
|
| 16 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
|
| 17 |
+
$element .= '<option value="">'. __('...Choose', 'wck') .'</option>';
|
| 18 |
foreach( $cpt_query->posts as $cpt ){
|
| 19 |
if ( $cpt->post_title == '' )
|
| 20 |
$cpt->post_title = 'No title. ID: ' . $cpt->ID;
|
assets/lib/wck-api/fields/select.php
CHANGED
|
@@ -11,7 +11,7 @@ if( !empty( $frontend_prefix ) )
|
|
| 11 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-select mb-field" >';
|
| 12 |
|
| 13 |
if( !empty( $details['default-option'] ) && $details['default-option'] )
|
| 14 |
-
$element .= '<option value="">'. __('...
|
| 15 |
|
| 16 |
$field_name = Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details );
|
| 17 |
|
| 11 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-select mb-field" >';
|
| 12 |
|
| 13 |
if( !empty( $details['default-option'] ) && $details['default-option'] )
|
| 14 |
+
$element .= '<option value="">'. __('...Choose', 'wck') .'</option>';
|
| 15 |
|
| 16 |
$field_name = Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details );
|
| 17 |
|
assets/lib/wck-api/fields/user select.php
CHANGED
|
@@ -12,7 +12,7 @@ if( !empty( $user_query->results ) ){
|
|
| 12 |
if( !empty( $frontend_prefix ) )
|
| 13 |
$element .= $frontend_prefix;
|
| 14 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
|
| 15 |
-
$element .= '<option value="">'. __('...
|
| 16 |
foreach( $user_query->results as $user ){
|
| 17 |
$element .= '<option value="'. esc_attr( $user->ID ) .'" '. selected( $user->ID, $value, false ) .' >'. esc_html( $user->display_name ) .'</option>';
|
| 18 |
}
|
| 12 |
if( !empty( $frontend_prefix ) )
|
| 13 |
$element .= $frontend_prefix;
|
| 14 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
|
| 15 |
+
$element .= '<option value="">'. __('...Choose', 'wck') .'</option>';
|
| 16 |
foreach( $user_query->results as $user ){
|
| 17 |
$element .= '<option value="'. esc_attr( $user->ID ) .'" '. selected( $user->ID, $value, false ) .' >'. esc_html( $user->display_name ) .'</option>';
|
| 18 |
}
|
assets/lib/wck-api/wordpress-creation-kit.js
CHANGED
|
@@ -90,7 +90,7 @@ function addMeta(value, id, nonce){
|
|
| 90 |
/* restore the add form to the original values */
|
| 91 |
if( !jQuery( '#'+value ).hasClass('single') ){
|
| 92 |
jQuery.post( wckAjaxurl , { action:"wck_add_form"+meta, meta:value, id:id }, function(response) {
|
| 93 |
-
jQuery( '#'+value ).replaceWith( response );
|
| 94 |
wck_set_to_widest( '.field-label', '#'+value );
|
| 95 |
});
|
| 96 |
}
|
|
@@ -238,26 +238,26 @@ jQuery(mb_sortable_elements);
|
|
| 238 |
function showUpdateFormMeta(value, id, element_id, nonce){
|
| 239 |
if( jQuery( '#update_container_' + value + '_' + element_id ).length == 0 ){
|
| 240 |
jQuery('#container_'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('<div id="mb-ajax-loading"></div>');
|
| 241 |
-
|
| 242 |
if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') )
|
| 243 |
jQuery( '#container_' + value + " tbody" ).sortable("disable");
|
| 244 |
-
|
| 245 |
-
|
| 246 |
meta = value;
|
| 247 |
-
|
| 248 |
if( value.indexOf("-wcknested-") != -1 ){
|
| 249 |
metaDetails = value.split("-wcknested-");
|
| 250 |
meta = metaDetails[0];
|
| 251 |
}
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
jQuery.post( wckAjaxurl , { action:"wck_show_update"+meta, meta:value, id:id, element_id:element_id, _ajax_nonce:nonce}, function(response) {
|
| 255 |
//jQuery('#container_'+value+' #element_'+element_id).append(response);
|
| 256 |
jQuery(response).insertAfter('#container_'+value+' > tbody > #element_'+element_id);
|
| 257 |
-
|
| 258 |
/* set width of field-label */
|
| 259 |
-
wck_set_to_widest('.field-label', '#update_container_' + value + '_' + element_id );
|
| 260 |
-
|
| 261 |
jQuery('#container_'+value).parent().css('opacity','1');
|
| 262 |
jQuery('#mb-ajax-loading').remove();
|
| 263 |
wckGoToByScroll('update_container_' + value + '_' + element_id);
|
| 90 |
/* restore the add form to the original values */
|
| 91 |
if( !jQuery( '#'+value ).hasClass('single') ){
|
| 92 |
jQuery.post( wckAjaxurl , { action:"wck_add_form"+meta, meta:value, id:id }, function(response) {
|
| 93 |
+
jQuery( '#'+value ).replaceWith( response );
|
| 94 |
wck_set_to_widest( '.field-label', '#'+value );
|
| 95 |
});
|
| 96 |
}
|
| 238 |
function showUpdateFormMeta(value, id, element_id, nonce){
|
| 239 |
if( jQuery( '#update_container_' + value + '_' + element_id ).length == 0 ){
|
| 240 |
jQuery('#container_'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('<div id="mb-ajax-loading"></div>');
|
| 241 |
+
|
| 242 |
if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') )
|
| 243 |
jQuery( '#container_' + value + " tbody" ).sortable("disable");
|
| 244 |
+
|
| 245 |
+
|
| 246 |
meta = value;
|
| 247 |
+
|
| 248 |
if( value.indexOf("-wcknested-") != -1 ){
|
| 249 |
metaDetails = value.split("-wcknested-");
|
| 250 |
meta = metaDetails[0];
|
| 251 |
}
|
| 252 |
+
|
| 253 |
+
|
| 254 |
+
jQuery.post( wckAjaxurl , { action:"wck_show_update"+meta, meta:value, id:id, element_id:element_id, _ajax_nonce:nonce}, function(response) {
|
| 255 |
//jQuery('#container_'+value+' #element_'+element_id).append(response);
|
| 256 |
jQuery(response).insertAfter('#container_'+value+' > tbody > #element_'+element_id);
|
| 257 |
+
|
| 258 |
/* set width of field-label */
|
| 259 |
+
wck_set_to_widest('.field-label', '#update_container_' + value + '_' + element_id );
|
| 260 |
+
|
| 261 |
jQuery('#container_'+value).parent().css('opacity','1');
|
| 262 |
jQuery('#mb-ajax-loading').remove();
|
| 263 |
wckGoToByScroll('update_container_' + value + '_' + element_id);
|
assets/lib/wck-api/wordpress-creation-kit.php
CHANGED
|
@@ -422,7 +422,7 @@ class Wordpress_Creation_Kit_PB{
|
|
| 422 |
$i++;
|
| 423 |
}
|
| 424 |
}
|
| 425 |
-
$list .= apply_filters( 'wck_metabox_content_footer_'.$meta , '' );
|
| 426 |
$list .= '</table>';
|
| 427 |
|
| 428 |
$list = apply_filters('wck_metabox_content_'.$meta, $list, $id);
|
|
@@ -499,8 +499,8 @@ class Wordpress_Creation_Kit_PB{
|
|
| 499 |
}
|
| 500 |
|
| 501 |
$list .= '</td>';
|
| 502 |
-
$list .= '<td style="text-align:center;vertical-align:middle;" class="wck-edit"><a href="javascript:void(0)" class="button-secondary" onclick=\'showUpdateFormMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($edit_nonce).'")\' title="'. __( 'Edit this item', 'wck' ) .'">'.
|
| 503 |
-
$list .= '<td style="text-align:center;vertical-align:middle;" class="wck-delete"><a href="javascript:void(0)" class="mbdelete" onclick=\'removeMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($delete_nonce).'")\' title="'. __( 'Delete this item', 'wck' ) .'">'. __( 'Delete', 'wck' ) .'</a></td>';
|
| 504 |
|
| 505 |
$list .= "</tr> \r\n";
|
| 506 |
|
|
@@ -1337,12 +1337,12 @@ class WCK_Page_Creator_PB{
|
|
| 1337 |
/* Create the page using either add_menu_page or add_submenu_page functions depending on the 'page_type' parameter. */
|
| 1338 |
if( $this->args['page_type'] == 'menu_page' ){
|
| 1339 |
$this->hookname = add_menu_page( $this->args['page_title'], $this->args['menu_title'], $this->args['capability'], $this->args['menu_slug'], array( &$this, 'wck_page_template' ), $this->args['icon_url'], $this->args['position'] );
|
| 1340 |
-
|
| 1341 |
$pb_wck_pages_hooknames[$this->args['menu_slug']] = $this->hookname;
|
| 1342 |
}
|
| 1343 |
else if( $this->args['page_type'] == 'submenu_page' ){
|
| 1344 |
$this->hookname = add_submenu_page( $this->args['parent_slug'], $this->args['page_title'], $this->args['menu_title'], $this->args['capability'], $this->args['menu_slug'], array( &$this, 'wck_page_template' ) );
|
| 1345 |
-
|
| 1346 |
$pb_wck_pages_hooknames[$this->args['menu_slug']] = $this->hookname;
|
| 1347 |
}
|
| 1348 |
|
| 422 |
$i++;
|
| 423 |
}
|
| 424 |
}
|
| 425 |
+
$list .= apply_filters( 'wck_metabox_content_footer_'.$meta , '', $id );
|
| 426 |
$list .= '</table>';
|
| 427 |
|
| 428 |
$list = apply_filters('wck_metabox_content_'.$meta, $list, $id);
|
| 499 |
}
|
| 500 |
|
| 501 |
$list .= '</td>';
|
| 502 |
+
$list .= '<td style="text-align:center;vertical-align:middle;" class="wck-edit"><a href="javascript:void(0)" class="button-secondary" onclick=\'showUpdateFormMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($edit_nonce).'")\' title="'. __( 'Edit this item', 'wck' ) .'">'. apply_filters( 'wck_edit_button', __('Edit','wck'), $meta ) .'</a></td>';
|
| 503 |
+
$list .= '<td style="text-align:center;vertical-align:middle;" class="wck-delete"><a href="javascript:void(0)" class="mbdelete" onclick=\'removeMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($delete_nonce).'")\' title="'. __( 'Delete this item', 'wck' ) .'">'. apply_filters( 'wck_delete_button', __( 'Delete', 'wck' ), $meta) .'</a></td>';
|
| 504 |
|
| 505 |
$list .= "</tr> \r\n";
|
| 506 |
|
| 1337 |
/* Create the page using either add_menu_page or add_submenu_page functions depending on the 'page_type' parameter. */
|
| 1338 |
if( $this->args['page_type'] == 'menu_page' ){
|
| 1339 |
$this->hookname = add_menu_page( $this->args['page_title'], $this->args['menu_title'], $this->args['capability'], $this->args['menu_slug'], array( &$this, 'wck_page_template' ), $this->args['icon_url'], $this->args['position'] );
|
| 1340 |
+
|
| 1341 |
$pb_wck_pages_hooknames[$this->args['menu_slug']] = $this->hookname;
|
| 1342 |
}
|
| 1343 |
else if( $this->args['page_type'] == 'submenu_page' ){
|
| 1344 |
$this->hookname = add_submenu_page( $this->args['parent_slug'], $this->args['page_title'], $this->args['menu_title'], $this->args['capability'], $this->args['menu_slug'], array( &$this, 'wck_page_template' ) );
|
| 1345 |
+
|
| 1346 |
$pb_wck_pages_hooknames[$this->args['menu_slug']] = $this->hookname;
|
| 1347 |
}
|
| 1348 |
|
features/functions.php
CHANGED
|
@@ -130,7 +130,7 @@ if ( is_admin() ){
|
|
| 130 |
|
| 131 |
|
| 132 |
/**
|
| 133 |
-
* Function that
|
| 134 |
*
|
| 135 |
* @since v.2.0
|
| 136 |
*
|
|
@@ -465,7 +465,7 @@ function wppb_check_password_strength(){
|
|
| 465 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
| 466 |
if( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ){
|
| 467 |
$password_strength_array = array( 'short' => 0, 'bad' => 1, 'good' => 2, 'strong' => 3 );
|
| 468 |
-
$password_strength_text = array( 'short' => __( 'Very
|
| 469 |
if( $password_strength_array[$_POST['wppb_password_strength']] < $password_strength_array[$wppb_generalSettings['minimum_password_strength']] ){
|
| 470 |
return $password_strength_text[$wppb_generalSettings['minimum_password_strength']];
|
| 471 |
}
|
|
@@ -563,3 +563,47 @@ function wppb_required_field_error($field_title='') {
|
|
| 563 |
function wppb_get_query_var( $varname ){
|
| 564 |
return apply_filters( 'wppb_get_query_var_'.$varname, get_query_var( $varname ) );
|
| 565 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 130 |
|
| 131 |
|
| 132 |
/**
|
| 133 |
+
* Function that overwrites the default wp_mail function and sends out emails
|
| 134 |
*
|
| 135 |
* @since v.2.0
|
| 136 |
*
|
| 465 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
| 466 |
if( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ){
|
| 467 |
$password_strength_array = array( 'short' => 0, 'bad' => 1, 'good' => 2, 'strong' => 3 );
|
| 468 |
+
$password_strength_text = array( 'short' => __( 'Very Weak', 'profilebuilder' ), 'bad' => __( 'Weak', 'profilebuilder' ), 'good' => __( 'Medium', 'profilebuilder' ), 'strong' => __( 'Strong', 'profilebuilder' ) );
|
| 469 |
if( $password_strength_array[$_POST['wppb_password_strength']] < $password_strength_array[$wppb_generalSettings['minimum_password_strength']] ){
|
| 470 |
return $password_strength_text[$wppb_generalSettings['minimum_password_strength']];
|
| 471 |
}
|
| 563 |
function wppb_get_query_var( $varname ){
|
| 564 |
return apply_filters( 'wppb_get_query_var_'.$varname, get_query_var( $varname ) );
|
| 565 |
}
|
| 566 |
+
|
| 567 |
+
/*Filter the "Save Changes" button text, to make it translatable*/
|
| 568 |
+
function wppb_change_save_changes_button($value){
|
| 569 |
+
$value = __('Save Changes','profilebuilder');
|
| 570 |
+
return $value;
|
| 571 |
+
}
|
| 572 |
+
add_filter( 'wck_save_changes_button', 'wppb_change_save_changes_button', 10, 2);
|
| 573 |
+
|
| 574 |
+
/*Filter the "Cancel" button text, to make it translatable*/
|
| 575 |
+
function wppb_change_cancel_button($value){
|
| 576 |
+
$value = __('Cancel','profilebuilder');
|
| 577 |
+
return $value;
|
| 578 |
+
}
|
| 579 |
+
add_filter( 'wck_cancel_button', 'wppb_change_cancel_button', 10, 2);
|
| 580 |
+
|
| 581 |
+
/*Filter the "Delete" button text, to make it translatable*/
|
| 582 |
+
function wppb_change_delete_button($value){
|
| 583 |
+
$value = __('Delete','profilebuilder');
|
| 584 |
+
return $value;
|
| 585 |
+
}
|
| 586 |
+
add_filter( 'wck_delete_button', 'wppb_change_delete_button', 10, 2);
|
| 587 |
+
|
| 588 |
+
/*Filter the "Edit" button text, to make it translatable*/
|
| 589 |
+
function wppb_change_edit_button($value){
|
| 590 |
+
$value = __('Edit','profilebuilder');
|
| 591 |
+
return $value;
|
| 592 |
+
}
|
| 593 |
+
add_filter( 'wck_edit_button', 'wppb_change_edit_button', 10, 2);
|
| 594 |
+
|
| 595 |
+
/*Filter the User Listing, Register Forms and Edit Profile forms metabox header content, to make it translatable*/
|
| 596 |
+
function wppb_change_metabox_content_header(){
|
| 597 |
+
return '<thead><tr><th class="wck-number">#</th><th class="wck-content">'. __( 'Content', 'profilebuilder' ) .'</th><th class="wck-edit">'. __( 'Edit', 'profilebuilder' ) .'</th><th class="wck-delete">'. __( 'Delete', 'profilebuilder' ) .'</th></tr></thead>';
|
| 598 |
+
}
|
| 599 |
+
add_filter('wck_metabox_content_header_wppb_ul_page_settings', 'wppb_change_metabox_content_header', 1);
|
| 600 |
+
add_filter('wck_metabox_content_header_wppb_rf_page_settings', 'wppb_change_metabox_content_header', 1);
|
| 601 |
+
add_filter('wck_metabox_content_header_wppb_epf_page_settings', 'wppb_change_metabox_content_header', 1);
|
| 602 |
+
|
| 603 |
+
|
| 604 |
+
/* Add a notice if people are not able to register via Profile Builder; Membership -> "Anyone can register" checkbox is not checked under WordPress admin UI -> Settings -> General tab */
|
| 605 |
+
if ( get_option('users_can_register') == false) {
|
| 606 |
+
new WPPB_Add_General_Notices('wppb_anyone_can_register',
|
| 607 |
+
sprintf(__('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', 'profilebuilder'), "<a href='".get_site_url()."/wp-admin/options-general.php'>", "</a>", "<a href='" . add_query_arg('wppb_anyone_can_register_dismiss_notification', '0') . "'>", "</a>"),
|
| 608 |
+
'update-nag');
|
| 609 |
+
}
|
features/login-widget/login-widget.php
CHANGED
|
@@ -1,113 +1,97 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
function wppb_register_login_widget() {
|
| 3 |
-
register_widget( 'wppb_login_widget' );
|
| 4 |
-
}
|
| 5 |
-
add_action( 'widgets_init', 'wppb_register_login_widget' );
|
| 6 |
-
|
| 7 |
-
class wppb_login_widget extends WP_Widget {
|
| 8 |
-
|
| 9 |
-
function wppb_login_widget() {
|
| 10 |
-
$widget_ops = array( 'classname' => 'login', 'description' => __( 'This login widget lets you add a login form in the sidebar.', 'profilebuilder' ) );
|
| 11 |
-
$control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'wppb-login-widget' );
|
| 12 |
-
|
| 13 |
-
do_action( 'wppb_login_widget_settings', $widget_ops, $control_ops);
|
| 14 |
-
|
| 15 |
-
$this->WP_Widget( 'wppb-login-widget', __('Profile Builder Login Widget', 'profilebuilder'), $widget_ops, $control_ops );
|
| 16 |
-
|
| 17 |
-
}
|
| 18 |
-
|
| 19 |
-
function widget( $args, $instance ) {
|
| 20 |
-
extract( $args );
|
| 21 |
-
|
| 22 |
-
$title = apply_filters('wppb_login_widget_title', $instance['title'] );
|
| 23 |
-
$redirect = trim($instance['redirect']);
|
| 24 |
-
$register = trim($instance['register']);
|
| 25 |
-
$lostpass = trim($instance['lostpass']);
|
| 26 |
-
|
| 27 |
-
echo $before_widget;
|
| 28 |
-
|
| 29 |
-
if ( $title )
|
| 30 |
-
echo $before_title . $title . $after_title;
|
| 31 |
-
|
| 32 |
-
echo do_shortcode('[wppb-login display="false" redirect="'.$redirect.'"]');
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
do_action( '
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
$
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
<
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
<?php
|
| 99 |
-
|
| 100 |
-
do_action( 'wppb_login_widget_after_display', $instance);
|
| 101 |
-
}
|
| 102 |
-
}
|
| 103 |
-
|
| 104 |
-
// we can apply this easily, if we need it
|
| 105 |
-
function wppb_scroll_down_to_widget($content){
|
| 106 |
-
return "<script> jQuery('html, body').animate({scrollTop: jQuery('#wppb_login').offset().top }) </script>" . $content;
|
| 107 |
-
}
|
| 108 |
-
//add_filter('wppb_login_wp_error_message', 'wppb_scroll_down_to_widget');
|
| 109 |
-
|
| 110 |
-
function wppb_require_jquery(){
|
| 111 |
-
wp_enqueue_script( 'jquery' );
|
| 112 |
-
}
|
| 113 |
//add_action( 'wp_enqueue_scripts', 'wppb_require_jquery' );
|
| 1 |
+
<?php
|
| 2 |
+
function wppb_register_login_widget() {
|
| 3 |
+
register_widget( 'wppb_login_widget' );
|
| 4 |
+
}
|
| 5 |
+
add_action( 'widgets_init', 'wppb_register_login_widget' );
|
| 6 |
+
|
| 7 |
+
class wppb_login_widget extends WP_Widget {
|
| 8 |
+
|
| 9 |
+
function wppb_login_widget() {
|
| 10 |
+
$widget_ops = array( 'classname' => 'login', 'description' => __( 'This login widget lets you add a login form in the sidebar.', 'profilebuilder' ) );
|
| 11 |
+
$control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'wppb-login-widget' );
|
| 12 |
+
|
| 13 |
+
do_action( 'wppb_login_widget_settings', $widget_ops, $control_ops);
|
| 14 |
+
|
| 15 |
+
$this->WP_Widget( 'wppb-login-widget', __('Profile Builder Login Widget', 'profilebuilder'), $widget_ops, $control_ops );
|
| 16 |
+
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
function widget( $args, $instance ) {
|
| 20 |
+
extract( $args );
|
| 21 |
+
|
| 22 |
+
$title = apply_filters('wppb_login_widget_title', $instance['title'] );
|
| 23 |
+
$redirect = trim($instance['redirect']);
|
| 24 |
+
$register = trim($instance['register']);
|
| 25 |
+
$lostpass = trim($instance['lostpass']);
|
| 26 |
+
|
| 27 |
+
echo $before_widget;
|
| 28 |
+
|
| 29 |
+
if ( $title )
|
| 30 |
+
echo $before_title . $title . $after_title;
|
| 31 |
+
|
| 32 |
+
echo do_shortcode('[wppb-login display="false" register_url="'.$register.'" lostpassword_url="'.$lostpass.'" redirect="'.$redirect.'"]');
|
| 33 |
+
|
| 34 |
+
do_action( 'wppb_login_widget_display', $args, $instance);
|
| 35 |
+
|
| 36 |
+
echo $after_widget;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
/**
|
| 40 |
+
* Update the widget settings.
|
| 41 |
+
*/
|
| 42 |
+
function update( $new_instance, $old_instance ) {
|
| 43 |
+
$instance = $old_instance;
|
| 44 |
+
|
| 45 |
+
$instance['title'] = strip_tags( $new_instance['title'] );
|
| 46 |
+
$instance['redirect'] = strip_tags( $new_instance['redirect'] );
|
| 47 |
+
$instance['register'] = strip_tags( $new_instance['register'] );
|
| 48 |
+
$instance['lostpass'] = strip_tags( $new_instance['lostpass'] );
|
| 49 |
+
|
| 50 |
+
do_action( 'wppb_login_widget_update_action', $new_instance, $old_instance);
|
| 51 |
+
|
| 52 |
+
return $instance;
|
| 53 |
+
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
|
| 57 |
+
function form( $instance ) {
|
| 58 |
+
|
| 59 |
+
$defaults = array( 'title' => __('Login', 'profilebuilder'), 'redirect' => '', 'register' => '', 'lostpass' => '' );
|
| 60 |
+
$instance = wp_parse_args( (array) $instance, $defaults ); ?>
|
| 61 |
+
|
| 62 |
+
<p>
|
| 63 |
+
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'profilebuilder' ); ?></label>
|
| 64 |
+
<input id="<?php echo $this->get_field_id( 'title' ); ?>" class="widefat" type="text" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" style="width:100%;" />
|
| 65 |
+
</p>
|
| 66 |
+
|
| 67 |
+
<p>
|
| 68 |
+
<label for="<?php echo $this->get_field_id( 'redirect' ); ?>"><?php _e( 'After login redirect URL (optional):', 'profilebuilder' ); ?></label>
|
| 69 |
+
<input id="<?php echo $this->get_field_id( 'redirect' ); ?>" class="widefat" type="url" name="<?php echo $this->get_field_name( 'redirect' ); ?>" value="<?php echo $instance['redirect']; ?>" style="width:100%;" />
|
| 70 |
+
</p>
|
| 71 |
+
|
| 72 |
+
<p>
|
| 73 |
+
<label for="<?php echo $this->get_field_id( 'register' ); ?>"><?php _e( 'Register page URL (optional):', 'profilebuilder' ); ?></label>
|
| 74 |
+
<input id="<?php echo $this->get_field_id( 'register' ); ?>" class="widefat" type="url" name="<?php echo $this->get_field_name( 'register' ); ?>" value="<?php echo $instance['register']; ?>" style="width:100%;" />
|
| 75 |
+
</p>
|
| 76 |
+
|
| 77 |
+
<p>
|
| 78 |
+
<label for="<?php echo $this->get_field_id( 'lostpass' ); ?>"><?php _e( 'Password Recovery page URL (optional):', 'profilebuilder' ); ?></label>
|
| 79 |
+
<input id="<?php echo $this->get_field_id( 'lostpass' ); ?>" class="widefat" type="url" name="<?php echo $this->get_field_name( 'lostpass' ); ?>" value="<?php echo $instance['lostpass']; ?>" style="width:100%;" />
|
| 80 |
+
</p>
|
| 81 |
+
|
| 82 |
+
<?php
|
| 83 |
+
|
| 84 |
+
do_action( 'wppb_login_widget_after_display', $instance);
|
| 85 |
+
}
|
| 86 |
+
}
|
| 87 |
+
|
| 88 |
+
// we can apply this easily, if we need it
|
| 89 |
+
function wppb_scroll_down_to_widget($content){
|
| 90 |
+
return "<script> jQuery('html, body').animate({scrollTop: jQuery('#wppb_login').offset().top }) </script>" . $content;
|
| 91 |
+
}
|
| 92 |
+
//add_filter('wppb_login_wp_error_message', 'wppb_scroll_down_to_widget');
|
| 93 |
+
|
| 94 |
+
function wppb_require_jquery(){
|
| 95 |
+
wp_enqueue_script( 'jquery' );
|
| 96 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
//add_action( 'wp_enqueue_scripts', 'wppb_require_jquery' );
|
front-end/class-formbuilder.php
CHANGED
|
@@ -221,16 +221,16 @@ class Profile_Builder_Form_Creator{
|
|
| 221 |
|
| 222 |
switch ( $account_management_settings ){
|
| 223 |
case 'ec-no_aa-no':
|
| 224 |
-
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "The account %1s has been successfully created!", 'profilebuilder' ), $account_name ) );
|
| 225 |
break;
|
| 226 |
case 'ec-yes_aa-no':
|
| 227 |
-
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", 'profilebuilder' ), $account_name ) );
|
| 228 |
break;
|
| 229 |
case 'ec-no_aa-yes':
|
| 230 |
-
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, an administrator has to approve it. You will be notified via email.", 'profilebuilder' ), $account_name ) );
|
| 231 |
break;
|
| 232 |
case 'ec-yes_aa-yes':
|
| 233 |
-
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", 'profilebuilder' ), $account_name ) );
|
| 234 |
break;
|
| 235 |
}
|
| 236 |
$redirect = apply_filters( 'wppb_register_redirect', $this->wppb_get_redirect() );
|
|
@@ -258,7 +258,7 @@ class Profile_Builder_Form_Creator{
|
|
| 258 |
// use this action hook to add extra content before the register form
|
| 259 |
do_action( 'wppb_before_'.$this->args['form_type'].'_fields' );
|
| 260 |
?>
|
| 261 |
-
<form enctype="multipart/form-data" method="post" id="<?php if( $this->args['form_type'] == 'register' ) echo 'wppb-register-user'; else if( $this->args['form_type'] == 'edit_profile' ) echo 'wppb-edit-user' ?>" class="wppb-user-forms" action="<?php echo
|
| 262 |
<?php
|
| 263 |
echo apply_filters( 'wppb_before_form_fields', '<ul>' );
|
| 264 |
$this->wppb_output_form_fields( $_REQUEST, $field_check_errors );
|
| 221 |
|
| 222 |
switch ( $account_management_settings ){
|
| 223 |
case 'ec-no_aa-no':
|
| 224 |
+
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "The account %1s has been successfully created!", 'profilebuilder' ), $account_name ), $account_name );
|
| 225 |
break;
|
| 226 |
case 'ec-yes_aa-no':
|
| 227 |
+
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", 'profilebuilder' ), $account_name ), $account_name );
|
| 228 |
break;
|
| 229 |
case 'ec-no_aa-yes':
|
| 230 |
+
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, an administrator has to approve it. You will be notified via email.", 'profilebuilder' ), $account_name ), $account_name );
|
| 231 |
break;
|
| 232 |
case 'ec-yes_aa-yes':
|
| 233 |
+
$wppb_register_success_message = apply_filters( 'wppb_register_success_message', sprintf( __( "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", 'profilebuilder' ), $account_name ), $account_name );
|
| 234 |
break;
|
| 235 |
}
|
| 236 |
$redirect = apply_filters( 'wppb_register_redirect', $this->wppb_get_redirect() );
|
| 258 |
// use this action hook to add extra content before the register form
|
| 259 |
do_action( 'wppb_before_'.$this->args['form_type'].'_fields' );
|
| 260 |
?>
|
| 261 |
+
<form enctype="multipart/form-data" method="post" id="<?php if( $this->args['form_type'] == 'register' ) echo 'wppb-register-user'; else if( $this->args['form_type'] == 'edit_profile' ) echo 'wppb-edit-user' ?>" class="wppb-user-forms" action="<?php echo apply_filters( 'wppb_form_action', '' ); ?>">
|
| 262 |
<?php
|
| 263 |
echo apply_filters( 'wppb_before_form_fields', '<ul>' );
|
| 264 |
$this->wppb_output_form_fields( $_REQUEST, $field_check_errors );
|
front-end/login.php
CHANGED
|
@@ -11,6 +11,7 @@ function wppb_login_form_bottom( $form_part, $args ){
|
|
| 11 |
$form_part = '<input type="hidden" name="wppb_login" value="true"/>';
|
| 12 |
$form_part .= '<input type="hidden" name="wppb_form_location" value="'. $form_location .'"/>';
|
| 13 |
$form_part .= '<input type="hidden" name="wppb_request_url" value="'.wppb_curpageurl().'"/>';
|
|
|
|
| 14 |
}
|
| 15 |
|
| 16 |
return $form_part;
|
|
@@ -19,7 +20,7 @@ add_filter( 'login_form_bottom', 'wppb_login_form_bottom', 10, 2 );
|
|
| 19 |
|
| 20 |
// when email login is enabled we need to change the post data for the username
|
| 21 |
function wppb_change_login_with_email(){
|
| 22 |
-
|
| 23 |
// only do this for our form
|
| 24 |
if( isset( $_POST['wppb_login'] ) ){
|
| 25 |
global $wpdb, $_POST;
|
|
@@ -47,48 +48,61 @@ add_action( 'login_init', 'wppb_change_login_with_email' );
|
|
| 47 |
function wppb_login_redirect( $redirect_to, $redirect_url, $user ){
|
| 48 |
// if login action initialized by our form
|
| 49 |
if( isset( $_POST['wppb_login'] ) ){
|
| 50 |
-
if( is_wp_error( $user ) ){
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
else{
|
| 87 |
// we don't have an error make sure to remove the error from the query arg
|
| 88 |
$redirect_to = remove_query_arg( 'loginerror', $redirect_to );
|
| 89 |
}
|
| 90 |
}
|
| 91 |
-
|
| 92 |
return $redirect_to;
|
| 93 |
}
|
| 94 |
add_filter( 'login_redirect', 'wppb_login_redirect', 10, 3 );
|
|
@@ -96,16 +110,17 @@ add_filter( 'login_redirect', 'wppb_login_redirect', 10, 3 );
|
|
| 96 |
|
| 97 |
/* shortcode function */
|
| 98 |
function wppb_front_end_login( $atts ){
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
|
|
|
| 103 |
if( !is_user_logged_in() ){
|
| 104 |
// set up the form arguments
|
| 105 |
$form_args = array( 'echo' => false, 'id_submit' => 'wppb-submit' );
|
| 106 |
-
|
| 107 |
// maybe set up the redirect argument
|
| 108 |
-
if( empty( $redirect ) ){
|
| 109 |
$wppb_module_settings = get_option( 'wppb_module_settings' );
|
| 110 |
if( $wppb_module_settings['wppb_customRedirect'] == 'show' ){
|
| 111 |
//check to see if the redirect location is not an empty string and is activated
|
|
@@ -144,12 +159,28 @@ function wppb_front_end_login( $atts ){
|
|
| 144 |
}
|
| 145 |
}
|
| 146 |
}
|
| 147 |
-
|
| 148 |
// build our form
|
| 149 |
$login_form .= '<div id="wppb-login-wrap" class="wppb-user-forms">';
|
|
|
|
| 150 |
$login_form .= wp_login_form( $form_args );
|
| 151 |
-
|
| 152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 153 |
return $login_form;
|
| 154 |
|
| 155 |
}else{
|
| 11 |
$form_part = '<input type="hidden" name="wppb_login" value="true"/>';
|
| 12 |
$form_part .= '<input type="hidden" name="wppb_form_location" value="'. $form_location .'"/>';
|
| 13 |
$form_part .= '<input type="hidden" name="wppb_request_url" value="'.wppb_curpageurl().'"/>';
|
| 14 |
+
$form_part .= '<input type="hidden" name="wppb_lostpassword_url" value="'.$args['lostpassword_url'].'"/>';
|
| 15 |
}
|
| 16 |
|
| 17 |
return $form_part;
|
| 20 |
|
| 21 |
// when email login is enabled we need to change the post data for the username
|
| 22 |
function wppb_change_login_with_email(){
|
| 23 |
+
if( !empty( $_POST['log'] ) ){
|
| 24 |
// only do this for our form
|
| 25 |
if( isset( $_POST['wppb_login'] ) ){
|
| 26 |
global $wpdb, $_POST;
|
| 48 |
function wppb_login_redirect( $redirect_to, $redirect_url, $user ){
|
| 49 |
// if login action initialized by our form
|
| 50 |
if( isset( $_POST['wppb_login'] ) ){
|
| 51 |
+
if( is_wp_error( $user ) ) {
|
| 52 |
+
// if we don't have a successful login we must redirect to the url of the form, so make sure this happens
|
| 53 |
+
$redirect_to = $_POST['wppb_request_url'];
|
| 54 |
+
$request_form_location = $_POST['wppb_form_location'];
|
| 55 |
+
$error_string = $user->get_error_message();
|
| 56 |
+
|
| 57 |
+
$wppb_generalSettings = get_option('wppb_general_settings');
|
| 58 |
+
|
| 59 |
+
if (isset($wppb_generalSettings['loginWith'])) {
|
| 60 |
+
$LostPassURL = home_url('/wp-login.php?action=lostpassword');
|
| 61 |
+
|
| 62 |
+
// if the Login shortcode has a lostpassword argument set, give the lost password error link that value
|
| 63 |
+
if (!empty($_POST['wppb_lostpassword_url'])) {
|
| 64 |
+
if ( wppb_check_missing_http( $_POST['wppb_lostpassword_url'] ) ) $LostPassURL = "http://" . $_POST['wppb_lostpassword_url'];
|
| 65 |
+
else $LostPassURL = $_POST['wppb_lostpassword_url'];
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
//apply filter to allow changing Lost your Password link
|
| 69 |
+
$LostPassURL = apply_filters('wppb_pre_login_url_filter', $LostPassURL);
|
| 70 |
+
|
| 71 |
+
if ($user->get_error_code() == 'incorrect_password') {
|
| 72 |
+
$error_string = '<strong>' . __('ERROR', 'profilebuilder') . '</strong>: ' . __('The password you entered is incorrect.', 'profilebuilder') . ' ';
|
| 73 |
+
$error_string .= '<a href="' . $LostPassURL . '" title="' . __('Password Lost and Found.', 'profilebuilder') . '">' . __('Lost your password', 'profilebuilder') . '</a>?';
|
| 74 |
+
|
| 75 |
+
// change the recover password link
|
| 76 |
+
$error_string = str_replace(home_url('/wp-login.php?action=lostpassword'), $LostPassURL, $error_string);
|
| 77 |
+
}
|
| 78 |
+
if ($user->get_error_code() == 'invalid_username') {
|
| 79 |
+
$error_string = '<strong>' . __('ERROR', 'profilebuilder') . '</strong>: ' . __('Invalid username.', 'profilebuilder') . ' ';
|
| 80 |
+
$error_string .= '<a href="' . $LostPassURL . '" title="' . __('Password Lost and Found.', 'profilebuilder') . '">' . __('Lost your password', 'profilebuilder') . '</a>?';
|
| 81 |
+
}
|
| 82 |
+
// if login with email is enabled change the word username with email
|
| 83 |
+
if ($wppb_generalSettings['loginWith'] == 'email')
|
| 84 |
+
$error_string = str_replace( __('username','profilebuilder'), __('email','profilebuilder'), $error_string);
|
| 85 |
+
|
| 86 |
+
}
|
| 87 |
+
// if the error string is empty it means that none of the fields were completed
|
| 88 |
+
if (empty($error_string)) {
|
| 89 |
+
$error_string = '<strong>' . __('ERROR', 'profilebuilder') . '</strong>: ' . __('Both fields are empty.', 'profilebuilder') . ' ';
|
| 90 |
+
$error_string = apply_filters('wppb_login_empty_fields_error_message', $error_string);
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
$error_string = apply_filters('wppb_login_wp_error_message', $error_string, $user);
|
| 94 |
+
|
| 95 |
+
// encode the error string and send it as a GET parameter
|
| 96 |
+
$arr_params = array('loginerror' => urlencode(base64_encode($error_string)), 'request_form_location' => $request_form_location);
|
| 97 |
+
$redirect_to = add_query_arg($arr_params, $redirect_to);
|
| 98 |
+
wp_safe_redirect($redirect_to);
|
| 99 |
+
}
|
| 100 |
else{
|
| 101 |
// we don't have an error make sure to remove the error from the query arg
|
| 102 |
$redirect_to = remove_query_arg( 'loginerror', $redirect_to );
|
| 103 |
}
|
| 104 |
}
|
| 105 |
+
|
| 106 |
return $redirect_to;
|
| 107 |
}
|
| 108 |
add_filter( 'login_redirect', 'wppb_login_redirect', 10, 3 );
|
| 110 |
|
| 111 |
/* shortcode function */
|
| 112 |
function wppb_front_end_login( $atts ){
|
| 113 |
+
|
| 114 |
+
extract( shortcode_atts( array( 'display' => true, 'redirect' =>'', 'register_url'=>'', 'lostpassword_url'=>'' ), $atts ) );
|
| 115 |
+
|
| 116 |
+
$wppb_generalSettings = get_option('wppb_general_settings');
|
| 117 |
+
|
| 118 |
if( !is_user_logged_in() ){
|
| 119 |
// set up the form arguments
|
| 120 |
$form_args = array( 'echo' => false, 'id_submit' => 'wppb-submit' );
|
| 121 |
+
|
| 122 |
// maybe set up the redirect argument
|
| 123 |
+
if( empty( $redirect ) ){
|
| 124 |
$wppb_module_settings = get_option( 'wppb_module_settings' );
|
| 125 |
if( $wppb_module_settings['wppb_customRedirect'] == 'show' ){
|
| 126 |
//check to see if the redirect location is not an empty string and is activated
|
| 159 |
}
|
| 160 |
}
|
| 161 |
}
|
|
|
|
| 162 |
// build our form
|
| 163 |
$login_form .= '<div id="wppb-login-wrap" class="wppb-user-forms">';
|
| 164 |
+
$form_args['lostpassword_url'] = $lostpassword_url;
|
| 165 |
$login_form .= wp_login_form( $form_args );
|
| 166 |
+
|
| 167 |
+
if ((!empty($register_url)) || (!empty($lostpassword_url))) {
|
| 168 |
+
$login_form .= '<p class="login-register-lost-password">';
|
| 169 |
+
$i = 0;
|
| 170 |
+
if (!empty($register_url)) {
|
| 171 |
+
if ( wppb_check_missing_http( $register_url ) ) $register_url = "http://" . $register_url;
|
| 172 |
+
$login_form .= '<a href="' . esc_url($register_url) . '">'. apply_filters('wppb_login_register_text', __('Register','profilebuilder')) .'</a>';
|
| 173 |
+
$i++;
|
| 174 |
+
}
|
| 175 |
+
if (!empty($lostpassword_url)) {
|
| 176 |
+
if ($i != 0) $login_form .= ' | ';
|
| 177 |
+
if ( wppb_check_missing_http( $lostpassword_url ) ) $lostpassword_url = "http://" . $lostpassword_url;
|
| 178 |
+
$login_form .= '<a href="'. esc_url($lostpassword_url) .'">'. apply_filters('wppb_login_lostpass_text', __('Lost your password?','profilebuilder')) .'</a>';
|
| 179 |
+
}
|
| 180 |
+
$login_form .= '</p>';
|
| 181 |
+
}
|
| 182 |
+
|
| 183 |
+
$login_form .= '</div>';
|
| 184 |
return $login_form;
|
| 185 |
|
| 186 |
}else{
|
index.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Profile Builder
|
| 4 |
Plugin URI: http://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.0.
|
| 7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
|
| 8 |
Author URI: http://www.cozmoslabs.com/
|
| 9 |
License: GPL2
|
|
@@ -52,7 +52,7 @@ function wppb_return_bytes( $val ) {
|
|
| 52 |
*
|
| 53 |
*
|
| 54 |
*/
|
| 55 |
-
define( 'PROFILE_BUILDER_VERSION', '2.0.
|
| 56 |
define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
| 57 |
define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 58 |
define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters( 'wppb_server_max_upload_size_byte_constant', wppb_return_bytes( ini_get( 'upload_max_filesize') ) ) );
|
|
@@ -83,7 +83,7 @@ else
|
|
| 83 |
function wppb_init_translation(){
|
| 84 |
load_plugin_textdomain( 'profilebuilder', false, basename( dirname( __FILE__ ) ) . '/translation/' );
|
| 85 |
}
|
| 86 |
-
add_action( 'init', 'wppb_init_translation' );
|
| 87 |
|
| 88 |
|
| 89 |
/**
|
|
@@ -154,9 +154,3 @@ if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) ){
|
|
| 154 |
register_activation_hook( __FILE__, 'wppb_generate_default_settings_defaults' ); //prepoulate general settings
|
| 155 |
register_activation_hook( __FILE__, 'wppb_prepopulate_fields' ); //prepopulate manage fields list
|
| 156 |
|
| 157 |
-
/* Add a halloween notice */
|
| 158 |
-
new WPPB_Add_General_Notices( 'wppb_halloween',
|
| 159 |
-
sprintf( __( '<p style="position:relative;">Halloween treat: 30% OFF on all Profile Builder purchases 29 - 30 -31 October over at %1$swww.cozmslabs.com%2$s Get your discount code! %3$sDismiss%4$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/' target='_blank' class='button-primary'>", "</a>", "<a href='". add_query_arg( 'wppb_halloween_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification' style='position: absolute;right: 0;top: 50%;margin-top: -7px;'>", "</a>" ),
|
| 160 |
-
'updated halloween',
|
| 161 |
-
'28 October 2014',
|
| 162 |
-
'1 November 2014' );
|
| 3 |
Plugin Name: Profile Builder
|
| 4 |
Plugin URI: http://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.0.5
|
| 7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
|
| 8 |
Author URI: http://www.cozmoslabs.com/
|
| 9 |
License: GPL2
|
| 52 |
*
|
| 53 |
*
|
| 54 |
*/
|
| 55 |
+
define( 'PROFILE_BUILDER_VERSION', '2.0.5' );
|
| 56 |
define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
| 57 |
define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 58 |
define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters( 'wppb_server_max_upload_size_byte_constant', wppb_return_bytes( ini_get( 'upload_max_filesize') ) ) );
|
| 83 |
function wppb_init_translation(){
|
| 84 |
load_plugin_textdomain( 'profilebuilder', false, basename( dirname( __FILE__ ) ) . '/translation/' );
|
| 85 |
}
|
| 86 |
+
add_action( 'init', 'wppb_init_translation', 8);
|
| 87 |
|
| 88 |
|
| 89 |
/**
|
| 154 |
register_activation_hook( __FILE__, 'wppb_generate_default_settings_defaults' ); //prepoulate general settings
|
| 155 |
register_activation_hook( __FILE__, 'wppb_prepopulate_fields' ); //prepopulate manage fields list
|
| 156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
|
@@ -6,7 +6,7 @@ Tags: registration, user profile, user registration, custom field registration,
|
|
| 6 |
|
| 7 |
Requires at least: 3.1
|
| 8 |
Tested up to: 4.0
|
| 9 |
-
Stable tag: 2.0.
|
| 10 |
|
| 11 |
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
| 12 |
|
|
@@ -102,15 +102,20 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
| 102 |
9. Recover Password Page
|
| 103 |
|
| 104 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 105 |
= 2.0.4 =
|
| 106 |
-
Added $account_name as a parameter in the wppb_register_success_message filter
|
| 107 |
-
Fixed typo in password strength meeter.
|
| 108 |
|
| 109 |
= 2.0.3 =
|
| 110 |
-
Fixed bug that made radio buttons field types not to throw error when they are required
|
| 111 |
-
Fixed XSS security vulnerability in fallback-page.php
|
| 112 |
-
Reintroduced the filters:'wppb_generated_random_username', 'wppb_userlisting_extra_meta_email' and 'wppb_userlisting_extra_meta_user_name'
|
| 113 |
-
Fixed the bug when changing the password in a edit profile form we were logged out
|
| 114 |
|
| 115 |
= 2.0.2 =
|
| 116 |
* Brand new user interface.
|
| 6 |
|
| 7 |
Requires at least: 3.1
|
| 8 |
Tested up to: 4.0
|
| 9 |
+
Stable tag: 2.0.5
|
| 10 |
|
| 11 |
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
| 12 |
|
| 102 |
9. Recover Password Page
|
| 103 |
|
| 104 |
== Changelog ==
|
| 105 |
+
= 2.0.5 =
|
| 106 |
+
* Added notification to enable user registration via Profile Builder (Anyone can register checkbox).
|
| 107 |
+
* Add register_url and lostpassword_url parameters to login shortcode.
|
| 108 |
+
* Added filter to allow changing Lost Password link in login shortcode.
|
| 109 |
+
|
| 110 |
= 2.0.4 =
|
| 111 |
+
* Added $account_name as a parameter in the wppb_register_success_message filter
|
| 112 |
+
* Fixed typo in password strength meeter.
|
| 113 |
|
| 114 |
= 2.0.3 =
|
| 115 |
+
* Fixed bug that made radio buttons field types not to throw error when they are required
|
| 116 |
+
* Fixed XSS security vulnerability in fallback-page.php
|
| 117 |
+
* Reintroduced the filters:'wppb_generated_random_username', 'wppb_userlisting_extra_meta_email' and 'wppb_userlisting_extra_meta_user_name'
|
| 118 |
+
* Fixed the bug when changing the password in a edit profile form we were logged out
|
| 119 |
|
| 120 |
= 2.0.2 =
|
| 121 |
* Brand new user interface.
|
translation/profilebuilder.pot
CHANGED
|
@@ -1,2483 +1,2744 @@
|
|
| 1 |
-
msgid ""
|
| 2 |
-
msgstr ""
|
| 3 |
-
"Project-Id-Version: profilebuilder\n"
|
| 4 |
-
"
|
| 5 |
-
"
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
"Language
|
| 9 |
-
"MIME-Version: 1.0\n"
|
| 10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
-
"X-
|
| 13 |
-
"X-Poedit-Basepath: .\n"
|
| 14 |
-
"
|
| 15 |
-
"X-Poedit-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
#: ../admin/admin-bar.php:47
|
| 23 |
-
msgid "Admin Bar Settings"
|
| 24 |
-
msgstr ""
|
| 25 |
-
|
| 26 |
-
#: ../admin/admin-bar.php:48
|
| 27 |
-
msgid "
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
#: ../admin/general-settings.php:181
|
| 52 |
-
#: ../admin/register-version.php:81
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
msgstr ""
|
| 219 |
-
|
| 220 |
-
#: ../admin/basic-info.php:
|
| 221 |
-
msgid "
|
| 222 |
-
msgstr ""
|
| 223 |
-
|
| 224 |
-
#: ../admin/basic-info.php:
|
| 225 |
-
msgid "
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
|
| 241 |
-
|
| 242 |
-
|
| 243 |
-
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
|
| 248 |
-
|
| 249 |
-
|
| 250 |
-
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
-
|
| 259 |
-
|
| 260 |
-
|
| 261 |
-
|
| 262 |
-
|
| 263 |
-
|
| 264 |
-
|
| 265 |
-
|
| 266 |
-
|
| 267 |
-
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
|
| 273 |
-
|
| 274 |
-
|
| 275 |
-
|
| 276 |
-
|
| 277 |
-
|
| 278 |
-
|
| 279 |
-
|
| 280 |
-
|
| 281 |
-
|
| 282 |
-
|
| 283 |
-
|
| 284 |
-
|
| 285 |
-
|
| 286 |
-
|
| 287 |
-
|
| 288 |
-
|
| 289 |
-
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
msgstr ""
|
| 295 |
-
|
| 296 |
-
#: ../admin/basic-info.php:
|
| 297 |
-
msgid "
|
| 298 |
-
msgstr ""
|
| 299 |
-
|
| 300 |
-
#: ../admin/basic-info.php:
|
| 301 |
-
msgid "
|
| 302 |
-
msgstr ""
|
| 303 |
-
|
| 304 |
-
#: ../admin/basic-info.php:
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
#: ../
|
| 309 |
-
msgid "
|
| 310 |
-
msgstr ""
|
| 311 |
-
|
| 312 |
-
#: ../admin/basic-info.php:
|
| 313 |
-
msgid "
|
| 314 |
-
|
| 315 |
-
|
| 316 |
-
|
| 317 |
-
|
| 318 |
-
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
|
| 323 |
-
|
| 324 |
-
|
| 325 |
-
|
| 326 |
-
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
msgid "
|
| 332 |
-
|
| 333 |
-
|
| 334 |
-
|
| 335 |
-
|
| 336 |
-
|
| 337 |
-
|
| 338 |
-
#: ../
|
| 339 |
-
|
| 340 |
-
|
| 341 |
-
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
|
| 345 |
-
|
| 346 |
-
|
| 347 |
-
|
| 348 |
-
|
| 349 |
-
|
| 350 |
-
|
| 351 |
-
|
| 352 |
-
|
| 353 |
-
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
msgstr ""
|
| 357 |
-
|
| 358 |
-
#: ../admin/
|
| 359 |
-
msgid "
|
| 360 |
-
msgstr ""
|
| 361 |
-
|
| 362 |
-
#: ../admin/
|
| 363 |
-
msgid "
|
| 364 |
-
|
| 365 |
-
|
| 366 |
-
|
| 367 |
-
|
| 368 |
-
|
| 369 |
-
|
| 370 |
-
|
| 371 |
-
|
| 372 |
-
|
| 373 |
-
|
| 374 |
-
|
| 375 |
-
|
| 376 |
-
|
| 377 |
-
|
| 378 |
-
|
| 379 |
-
|
| 380 |
-
|
| 381 |
-
|
| 382 |
-
|
| 383 |
-
#: ../admin/general-settings.php:
|
| 384 |
-
|
| 385 |
-
|
| 386 |
-
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
|
| 391 |
-
|
| 392 |
-
|
| 393 |
-
|
| 394 |
-
|
| 395 |
-
|
| 396 |
-
|
| 397 |
-
|
| 398 |
-
|
| 399 |
-
|
| 400 |
-
|
| 401 |
-
#: ../
|
| 402 |
-
msgid "
|
| 403 |
-
msgstr ""
|
| 404 |
-
|
| 405 |
-
#: ../admin/general-settings.php:
|
| 406 |
-
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
msgstr ""
|
| 417 |
-
|
| 418 |
-
#: ../admin/general-settings.php:
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
|
| 447 |
-
msgid "
|
| 448 |
-
|
| 449 |
-
|
| 450 |
-
|
| 451 |
-
|
| 452 |
-
|
| 453 |
-
|
| 454 |
-
|
| 455 |
-
|
| 456 |
-
|
| 457 |
-
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
|
| 462 |
-
|
| 463 |
-
|
| 464 |
-
|
| 465 |
-
|
| 466 |
-
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
|
| 470 |
-
#: ../
|
| 471 |
-
|
| 472 |
-
|
| 473 |
-
|
| 474 |
-
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
#: ../
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
|
| 486 |
-
|
| 487 |
-
|
| 488 |
-
|
| 489 |
-
|
| 490 |
-
|
| 491 |
-
|
| 492 |
-
msgstr ""
|
| 493 |
-
|
| 494 |
-
#: ../admin/
|
| 495 |
-
msgid "
|
| 496 |
-
msgstr ""
|
| 497 |
-
|
| 498 |
-
#: ../admin/
|
| 499 |
-
msgid "
|
| 500 |
-
msgstr ""
|
| 501 |
-
|
| 502 |
-
#: ../admin/manage-fields.php:
|
| 503 |
-
msgid "
|
| 504 |
-
msgstr ""
|
| 505 |
-
|
| 506 |
-
#: ../admin/manage-fields.php:
|
| 507 |
-
msgid "
|
| 508 |
-
msgstr ""
|
| 509 |
-
|
| 510 |
-
#: ../admin/manage-fields.php:
|
| 511 |
-
msgid "
|
| 512 |
-
msgstr ""
|
| 513 |
-
|
| 514 |
-
#: ../admin/manage-fields.php:
|
| 515 |
-
msgid "
|
| 516 |
-
msgstr ""
|
| 517 |
-
|
| 518 |
-
#: ../admin/manage-fields.php:
|
| 519 |
-
|
| 520 |
-
|
| 521 |
-
|
| 522 |
-
|
| 523 |
-
|
| 524 |
-
|
| 525 |
-
|
| 526 |
-
|
| 527 |
-
|
| 528 |
-
|
| 529 |
-
|
| 530 |
-
|
| 531 |
-
|
| 532 |
-
|
| 533 |
-
|
| 534 |
-
|
| 535 |
-
|
| 536 |
-
|
| 537 |
-
|
| 538 |
-
#: ../
|
| 539 |
-
msgid "
|
| 540 |
-
msgstr ""
|
| 541 |
-
|
| 542 |
-
#: ../admin/manage-fields.php:
|
| 543 |
-
|
| 544 |
-
|
| 545 |
-
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
|
| 549 |
-
|
| 550 |
-
|
| 551 |
-
|
| 552 |
-
|
| 553 |
-
|
| 554 |
-
|
| 555 |
-
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
|
| 562 |
-
|
| 563 |
-
|
| 564 |
-
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
|
| 568 |
-
|
| 569 |
-
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
|
| 573 |
-
|
| 574 |
-
|
| 575 |
-
|
| 576 |
-
|
| 577 |
-
|
| 578 |
-
|
| 579 |
-
|
| 580 |
-
msgstr ""
|
| 581 |
-
|
| 582 |
-
#: ../admin/manage-fields.php:
|
| 583 |
-
msgid "
|
| 584 |
-
msgstr ""
|
| 585 |
-
|
| 586 |
-
#: ../admin/manage-fields.php:
|
| 587 |
-
msgid "
|
| 588 |
-
|
| 589 |
-
|
| 590 |
-
|
| 591 |
-
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
|
| 595 |
-
|
| 596 |
-
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
|
| 600 |
-
msgstr ""
|
| 601 |
-
|
| 602 |
-
#: ../admin/manage-fields.php:
|
| 603 |
-
msgid "
|
| 604 |
-
msgstr ""
|
| 605 |
-
|
| 606 |
-
#: ../admin/manage-fields.php:
|
| 607 |
-
msgid "
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
|
| 611 |
-
|
| 612 |
-
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
|
| 617 |
-
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
|
| 622 |
-
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
|
| 626 |
-
|
| 627 |
-
|
| 628 |
-
|
| 629 |
-
|
| 630 |
-
|
| 631 |
-
|
| 632 |
-
|
| 633 |
-
|
| 634 |
-
|
| 635 |
-
|
| 636 |
-
|
| 637 |
-
|
| 638 |
-
|
| 639 |
-
|
| 640 |
-
|
| 641 |
-
|
| 642 |
-
|
| 643 |
-
|
| 644 |
-
|
| 645 |
-
|
| 646 |
-
|
| 647 |
-
|
| 648 |
-
|
| 649 |
-
|
| 650 |
-
|
| 651 |
-
|
| 652 |
-
|
| 653 |
-
|
| 654 |
-
|
| 655 |
-
|
| 656 |
-
|
| 657 |
-
|
| 658 |
-
|
| 659 |
-
|
| 660 |
-
|
| 661 |
-
|
| 662 |
-
|
| 663 |
-
|
| 664 |
-
|
| 665 |
-
|
| 666 |
-
|
| 667 |
-
|
| 668 |
-
|
| 669 |
-
|
| 670 |
-
|
| 671 |
-
|
| 672 |
-
|
| 673 |
-
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
|
| 686 |
-
|
| 687 |
-
|
| 688 |
-
|
| 689 |
-
|
| 690 |
-
|
| 691 |
-
|
| 692 |
-
|
| 693 |
-
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
|
| 697 |
-
|
| 698 |
-
|
| 699 |
-
|
| 700 |
-
|
| 701 |
-
|
| 702 |
-
|
| 703 |
-
|
| 704 |
-
|
| 705 |
-
|
| 706 |
-
|
| 707 |
-
|
| 708 |
-
|
| 709 |
-
|
| 710 |
-
|
| 711 |
-
|
| 712 |
-
|
| 713 |
-
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
|
| 718 |
-
|
| 719 |
-
|
| 720 |
-
|
| 721 |
-
|
| 722 |
-
|
| 723 |
-
|
| 724 |
-
|
| 725 |
-
|
| 726 |
-
|
| 727 |
-
|
| 728 |
-
#: ../admin/manage-fields.php:
|
| 729 |
-
|
| 730 |
-
|
| 731 |
-
|
| 732 |
-
|
| 733 |
-
|
| 734 |
-
|
| 735 |
-
|
| 736 |
-
|
| 737 |
-
|
| 738 |
-
|
| 739 |
-
|
| 740 |
-
|
| 741 |
-
|
| 742 |
-
|
| 743 |
-
|
| 744 |
-
|
| 745 |
-
|
| 746 |
-
|
| 747 |
-
|
| 748 |
-
|
| 749 |
-
|
| 750 |
-
|
| 751 |
-
|
| 752 |
-
|
| 753 |
-
|
| 754 |
-
|
| 755 |
-
#: ../
|
| 756 |
-
msgid "
|
| 757 |
-
msgstr ""
|
| 758 |
-
|
| 759 |
-
#: ../admin/manage-fields.php:
|
| 760 |
-
|
| 761 |
-
|
| 762 |
-
|
| 763 |
-
#: ../
|
| 764 |
-
msgid "
|
| 765 |
-
msgstr ""
|
| 766 |
-
|
| 767 |
-
#: ../admin/
|
| 768 |
-
msgid "
|
| 769 |
-
msgstr ""
|
| 770 |
-
|
| 771 |
-
#: ../admin/
|
| 772 |
-
msgid "
|
| 773 |
-
msgstr ""
|
| 774 |
-
|
| 775 |
-
#: ../admin/
|
| 776 |
-
msgid "
|
| 777 |
-
msgstr ""
|
| 778 |
-
|
| 779 |
-
#: ../admin/
|
| 780 |
-
msgid "
|
| 781 |
-
msgstr ""
|
| 782 |
-
|
| 783 |
-
#: ../admin/
|
| 784 |
-
|
| 785 |
-
|
| 786 |
-
|
| 787 |
-
|
| 788 |
-
|
| 789 |
-
|
| 790 |
-
|
| 791 |
-
|
| 792 |
-
|
| 793 |
-
msgstr ""
|
| 794 |
-
|
| 795 |
-
#: ../admin/
|
| 796 |
-
|
| 797 |
-
|
| 798 |
-
|
| 799 |
-
|
| 800 |
-
|
| 801 |
-
|
| 802 |
-
|
| 803 |
-
|
| 804 |
-
|
| 805 |
-
msgid "
|
| 806 |
-
msgstr ""
|
| 807 |
-
|
| 808 |
-
#: ../admin/
|
| 809 |
-
|
| 810 |
-
|
| 811 |
-
|
| 812 |
-
|
| 813 |
-
|
| 814 |
-
|
| 815 |
-
|
| 816 |
-
|
| 817 |
-
|
| 818 |
-
|
| 819 |
-
|
| 820 |
-
msgstr ""
|
| 821 |
-
|
| 822 |
-
#: ../
|
| 823 |
-
msgid "
|
| 824 |
-
msgstr ""
|
| 825 |
-
|
| 826 |
-
#: ../
|
| 827 |
-
msgid "
|
| 828 |
-
msgstr ""
|
| 829 |
-
|
| 830 |
-
#: ../
|
| 831 |
-
msgid "
|
| 832 |
-
msgstr ""
|
| 833 |
-
|
| 834 |
-
#: ../
|
| 835 |
-
msgid "
|
| 836 |
-
msgstr ""
|
| 837 |
-
|
| 838 |
-
#: ../
|
| 839 |
-
|
| 840 |
-
|
| 841 |
-
|
| 842 |
-
|
| 843 |
-
|
| 844 |
-
|
| 845 |
-
|
| 846 |
-
|
| 847 |
-
|
| 848 |
-
|
| 849 |
-
|
| 850 |
-
|
| 851 |
-
|
| 852 |
-
|
| 853 |
-
|
| 854 |
-
#: ../
|
| 855 |
-
|
| 856 |
-
|
| 857 |
-
|
| 858 |
-
|
| 859 |
-
|
| 860 |
-
|
| 861 |
-
|
| 862 |
-
|
| 863 |
-
|
| 864 |
-
|
| 865 |
-
|
| 866 |
-
|
| 867 |
-
|
| 868 |
-
msgid "
|
| 869 |
-
|
| 870 |
-
|
| 871 |
-
|
| 872 |
-
|
| 873 |
-
|
| 874 |
-
|
| 875 |
-
|
| 876 |
-
|
| 877 |
-
|
| 878 |
-
|
| 879 |
-
|
| 880 |
-
|
| 881 |
-
|
| 882 |
-
|
| 883 |
-
#: ../
|
| 884 |
-
|
| 885 |
-
|
| 886 |
-
|
| 887 |
-
|
| 888 |
-
|
| 889 |
-
|
| 890 |
-
|
| 891 |
-
|
| 892 |
-
#: ../
|
| 893 |
-
|
| 894 |
-
|
| 895 |
-
|
| 896 |
-
#: ../features/class-
|
| 897 |
-
|
| 898 |
-
|
| 899 |
-
|
| 900 |
-
|
| 901 |
-
|
| 902 |
-
|
| 903 |
-
msgid "
|
| 904 |
-
msgstr ""
|
| 905 |
-
|
| 906 |
-
#: ../
|
| 907 |
-
msgid "
|
| 908 |
-
|
| 909 |
-
|
| 910 |
-
|
| 911 |
-
|
| 912 |
-
|
| 913 |
-
|
| 914 |
-
|
| 915 |
-
|
| 916 |
-
|
| 917 |
-
|
| 918 |
-
|
| 919 |
-
|
| 920 |
-
|
| 921 |
-
|
| 922 |
-
|
| 923 |
-
|
| 924 |
-
|
| 925 |
-
|
| 926 |
-
|
| 927 |
-
|
| 928 |
-
|
| 929 |
-
|
| 930 |
-
|
| 931 |
-
|
| 932 |
-
|
| 933 |
-
|
| 934 |
-
|
| 935 |
-
|
| 936 |
-
|
| 937 |
-
|
| 938 |
-
|
| 939 |
-
|
| 940 |
-
|
| 941 |
-
|
| 942 |
-
|
| 943 |
-
|
| 944 |
-
|
| 945 |
-
|
| 946 |
-
|
| 947 |
-
|
| 948 |
-
|
| 949 |
-
|
| 950 |
-
|
| 951 |
-
|
| 952 |
-
|
| 953 |
-
|
| 954 |
-
|
| 955 |
-
|
| 956 |
-
|
| 957 |
-
|
| 958 |
-
|
| 959 |
-
|
| 960 |
-
|
| 961 |
-
|
| 962 |
-
msgid "
|
| 963 |
-
|
| 964 |
-
|
| 965 |
-
|
| 966 |
-
|
| 967 |
-
|
| 968 |
-
|
| 969 |
-
|
| 970 |
-
|
| 971 |
-
|
| 972 |
-
|
| 973 |
-
|
| 974 |
-
|
| 975 |
-
|
| 976 |
-
|
| 977 |
-
|
| 978 |
-
|
| 979 |
-
|
| 980 |
-
|
| 981 |
-
|
| 982 |
-
|
| 983 |
-
|
| 984 |
-
|
| 985 |
-
|
| 986 |
-
|
| 987 |
-
#: ../
|
| 988 |
-
|
| 989 |
-
msgid "
|
| 990 |
-
msgstr ""
|
| 991 |
-
|
| 992 |
-
#: ../
|
| 993 |
-
|
| 994 |
-
msgid "
|
| 995 |
-
msgstr ""
|
| 996 |
-
|
| 997 |
-
#: ../
|
| 998 |
-
|
| 999 |
-
msgid "
|
| 1000 |
-
msgstr ""
|
| 1001 |
-
|
| 1002 |
-
#: ../
|
| 1003 |
-
|
| 1004 |
-
|
| 1005 |
-
|
| 1006 |
-
|
| 1007 |
-
#: ../features/
|
| 1008 |
-
|
| 1009 |
-
|
| 1010 |
-
|
| 1011 |
-
|
| 1012 |
-
|
| 1013 |
-
|
| 1014 |
-
|
| 1015 |
-
|
| 1016 |
-
|
| 1017 |
-
|
| 1018 |
-
|
| 1019 |
-
|
| 1020 |
-
|
| 1021 |
-
|
| 1022 |
-
|
| 1023 |
-
|
| 1024 |
-
|
| 1025 |
-
|
| 1026 |
-
|
| 1027 |
-
|
| 1028 |
-
|
| 1029 |
-
|
| 1030 |
-
|
| 1031 |
-
|
| 1032 |
-
|
| 1033 |
-
|
| 1034 |
-
|
| 1035 |
-
|
| 1036 |
-
|
| 1037 |
-
|
| 1038 |
-
|
| 1039 |
-
|
| 1040 |
-
|
| 1041 |
-
|
| 1042 |
-
|
| 1043 |
-
|
| 1044 |
-
|
| 1045 |
-
|
| 1046 |
-
|
| 1047 |
-
|
| 1048 |
-
|
| 1049 |
-
|
| 1050 |
-
|
| 1051 |
-
|
| 1052 |
-
|
| 1053 |
-
|
| 1054 |
-
|
| 1055 |
-
|
| 1056 |
-
|
| 1057 |
-
|
| 1058 |
-
|
| 1059 |
-
|
| 1060 |
-
|
| 1061 |
-
|
| 1062 |
-
|
| 1063 |
-
#: ../features/
|
| 1064 |
-
|
| 1065 |
-
|
| 1066 |
-
|
| 1067 |
-
|
| 1068 |
-
|
| 1069 |
-
|
| 1070 |
-
|
| 1071 |
-
|
| 1072 |
-
|
| 1073 |
-
|
| 1074 |
-
|
| 1075 |
-
|
| 1076 |
-
|
| 1077 |
-
|
| 1078 |
-
|
| 1079 |
-
|
| 1080 |
-
|
| 1081 |
-
|
| 1082 |
-
|
| 1083 |
-
|
| 1084 |
-
|
| 1085 |
-
|
| 1086 |
-
|
| 1087 |
-
|
| 1088 |
-
|
| 1089 |
-
#: ../features/admin-approval/
|
| 1090 |
-
msgid "
|
| 1091 |
-
msgstr ""
|
| 1092 |
-
|
| 1093 |
-
#: ../features/admin-approval/
|
| 1094 |
-
|
| 1095 |
-
|
| 1096 |
-
|
| 1097 |
-
|
| 1098 |
-
#: ../features/
|
| 1099 |
-
|
| 1100 |
-
|
| 1101 |
-
|
| 1102 |
-
|
| 1103 |
-
|
| 1104 |
-
|
| 1105 |
-
|
| 1106 |
-
|
| 1107 |
-
|
| 1108 |
-
|
| 1109 |
-
|
| 1110 |
-
|
| 1111 |
-
|
| 1112 |
-
|
| 1113 |
-
|
| 1114 |
-
|
| 1115 |
-
|
| 1116 |
-
|
| 1117 |
-
msgstr ""
|
| 1118 |
-
|
| 1119 |
-
#: ../features/
|
| 1120 |
-
|
| 1121 |
-
|
| 1122 |
-
|
| 1123 |
-
|
| 1124 |
-
|
| 1125 |
-
|
| 1126 |
-
msgid "
|
| 1127 |
-
msgstr ""
|
| 1128 |
-
|
| 1129 |
-
#: ../features/
|
| 1130 |
-
msgid "
|
| 1131 |
-
msgstr ""
|
| 1132 |
-
|
| 1133 |
-
#: ../features/
|
| 1134 |
-
msgid "
|
| 1135 |
-
msgstr ""
|
| 1136 |
-
|
| 1137 |
-
#: ../features/
|
| 1138 |
-
|
| 1139 |
-
|
| 1140 |
-
|
| 1141 |
-
|
| 1142 |
-
#: ../features/
|
| 1143 |
-
msgid "
|
| 1144 |
-
msgstr ""
|
| 1145 |
-
|
| 1146 |
-
#: ../features/
|
| 1147 |
-
|
| 1148 |
-
|
| 1149 |
-
|
| 1150 |
-
|
| 1151 |
-
|
| 1152 |
-
|
| 1153 |
-
|
| 1154 |
-
|
| 1155 |
-
|
| 1156 |
-
|
| 1157 |
-
|
| 1158 |
-
#: ../
|
| 1159 |
-
|
| 1160 |
-
msgid "
|
| 1161 |
-
msgstr ""
|
| 1162 |
-
|
| 1163 |
-
#: ../features/
|
| 1164 |
-
|
| 1165 |
-
msgid ""
|
| 1166 |
-
|
| 1167 |
-
|
| 1168 |
-
|
| 1169 |
-
|
| 1170 |
-
|
| 1171 |
-
msgstr ""
|
| 1172 |
-
|
| 1173 |
-
#: ../features/
|
| 1174 |
-
|
| 1175 |
-
|
| 1176 |
-
|
| 1177 |
-
|
| 1178 |
-
|
| 1179 |
-
|
| 1180 |
-
|
| 1181 |
-
|
| 1182 |
-
|
| 1183 |
-
|
| 1184 |
-
|
| 1185 |
-
|
| 1186 |
-
|
| 1187 |
-
|
| 1188 |
-
|
| 1189 |
-
|
| 1190 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
| 1191 |
-
|
| 1192 |
-
|
| 1193 |
-
|
| 1194 |
-
|
| 1195 |
-
|
| 1196 |
-
|
| 1197 |
-
|
| 1198 |
-
|
| 1199 |
-
|
| 1200 |
-
|
| 1201 |
-
|
| 1202 |
-
|
| 1203 |
-
|
| 1204 |
-
|
| 1205 |
-
|
| 1206 |
-
|
| 1207 |
-
|
| 1208 |
-
|
| 1209 |
-
|
| 1210 |
-
|
| 1211 |
-
|
| 1212 |
-
|
| 1213 |
-
|
| 1214 |
-
|
| 1215 |
-
|
| 1216 |
-
|
| 1217 |
-
|
| 1218 |
-
|
| 1219 |
-
|
| 1220 |
-
|
| 1221 |
-
|
| 1222 |
-
|
| 1223 |
-
#: ../
|
| 1224 |
-
|
| 1225 |
-
|
| 1226 |
-
|
| 1227 |
-
|
| 1228 |
-
|
| 1229 |
-
|
| 1230 |
-
|
| 1231 |
-
|
| 1232 |
-
|
| 1233 |
-
|
| 1234 |
-
|
| 1235 |
-
|
| 1236 |
-
|
| 1237 |
-
|
| 1238 |
-
|
| 1239 |
-
|
| 1240 |
-
|
| 1241 |
-
|
| 1242 |
-
|
| 1243 |
-
|
| 1244 |
-
|
| 1245 |
-
|
| 1246 |
-
|
| 1247 |
-
|
| 1248 |
-
|
| 1249 |
-
|
| 1250 |
-
|
| 1251 |
-
|
| 1252 |
-
|
| 1253 |
-
|
| 1254 |
-
|
| 1255 |
-
|
| 1256 |
-
|
| 1257 |
-
|
| 1258 |
-
|
| 1259 |
-
|
| 1260 |
-
|
| 1261 |
-
|
| 1262 |
-
|
| 1263 |
-
|
| 1264 |
-
|
| 1265 |
-
|
| 1266 |
-
|
| 1267 |
-
|
| 1268 |
-
|
| 1269 |
-
|
| 1270 |
-
|
| 1271 |
-
|
| 1272 |
-
#: ../
|
| 1273 |
-
|
| 1274 |
-
|
| 1275 |
-
|
| 1276 |
-
|
| 1277 |
-
|
| 1278 |
-
msgid "
|
| 1279 |
-
msgstr ""
|
| 1280 |
-
|
| 1281 |
-
#: ../
|
| 1282 |
-
msgid "
|
| 1283 |
-
msgstr ""
|
| 1284 |
-
|
| 1285 |
-
#: ../
|
| 1286 |
-
msgid "
|
| 1287 |
-
msgstr ""
|
| 1288 |
-
|
| 1289 |
-
#: ../
|
| 1290 |
-
msgid "
|
| 1291 |
-
msgstr ""
|
| 1292 |
-
|
| 1293 |
-
#: ../
|
| 1294 |
-
|
| 1295 |
-
msgid "
|
| 1296 |
-
msgstr ""
|
| 1297 |
-
|
| 1298 |
-
#: ../
|
| 1299 |
-
|
| 1300 |
-
|
| 1301 |
-
|
| 1302 |
-
|
| 1303 |
-
|
| 1304 |
-
|
| 1305 |
-
|
| 1306 |
-
|
| 1307 |
-
|
| 1308 |
-
|
| 1309 |
-
|
| 1310 |
-
|
| 1311 |
-
|
| 1312 |
-
|
| 1313 |
-
|
| 1314 |
-
|
| 1315 |
-
|
| 1316 |
-
|
| 1317 |
-
|
| 1318 |
-
|
| 1319 |
-
|
| 1320 |
-
|
| 1321 |
-
|
| 1322 |
-
|
| 1323 |
-
|
| 1324 |
-
|
| 1325 |
-
|
| 1326 |
-
#: ../front-end/
|
| 1327 |
-
msgid "
|
| 1328 |
-
msgstr ""
|
| 1329 |
-
|
| 1330 |
-
#: ../
|
| 1331 |
-
msgid "
|
| 1332 |
-
msgstr ""
|
| 1333 |
-
|
| 1334 |
-
#: ../
|
| 1335 |
-
msgid "
|
| 1336 |
-
msgstr ""
|
| 1337 |
-
|
| 1338 |
-
#: ../
|
| 1339 |
-
|
| 1340 |
-
|
| 1341 |
-
|
| 1342 |
-
|
| 1343 |
-
#: ../
|
| 1344 |
-
|
| 1345 |
-
|
| 1346 |
-
|
| 1347 |
-
|
| 1348 |
-
|
| 1349 |
-
|
| 1350 |
-
|
| 1351 |
-
|
| 1352 |
-
|
| 1353 |
-
|
| 1354 |
-
|
| 1355 |
-
|
| 1356 |
-
|
| 1357 |
-
|
| 1358 |
-
|
| 1359 |
-
|
| 1360 |
-
|
| 1361 |
-
|
| 1362 |
-
|
| 1363 |
-
|
| 1364 |
-
|
| 1365 |
-
#: ../front-end/
|
| 1366 |
-
|
| 1367 |
-
|
| 1368 |
-
|
| 1369 |
-
|
| 1370 |
-
|
| 1371 |
-
|
| 1372 |
-
|
| 1373 |
-
|
| 1374 |
-
|
| 1375 |
-
|
| 1376 |
-
|
| 1377 |
-
|
| 1378 |
-
|
| 1379 |
-
|
| 1380 |
-
|
| 1381 |
-
|
| 1382 |
-
|
| 1383 |
-
|
| 1384 |
-
|
| 1385 |
-
|
| 1386 |
-
|
| 1387 |
-
|
| 1388 |
-
|
| 1389 |
-
|
| 1390 |
-
|
| 1391 |
-
|
| 1392 |
-
|
| 1393 |
-
|
| 1394 |
-
|
| 1395 |
-
|
| 1396 |
-
|
| 1397 |
-
|
| 1398 |
-
|
| 1399 |
-
|
| 1400 |
-
|
| 1401 |
-
|
| 1402 |
-
|
| 1403 |
-
|
| 1404 |
-
|
| 1405 |
-
|
| 1406 |
-
|
| 1407 |
-
|
| 1408 |
-
|
| 1409 |
-
|
| 1410 |
-
|
| 1411 |
-
|
| 1412 |
-
|
| 1413 |
-
|
| 1414 |
-
|
| 1415 |
-
|
| 1416 |
-
|
| 1417 |
-
|
| 1418 |
-
|
| 1419 |
-
|
| 1420 |
-
|
| 1421 |
-
msgid "
|
| 1422 |
-
msgstr ""
|
| 1423 |
-
|
| 1424 |
-
#: ../
|
| 1425 |
-
|
| 1426 |
-
|
| 1427 |
-
|
| 1428 |
-
|
| 1429 |
-
|
| 1430 |
-
|
| 1431 |
-
|
| 1432 |
-
|
| 1433 |
-
|
| 1434 |
-
|
| 1435 |
-
|
| 1436 |
-
|
| 1437 |
-
|
| 1438 |
-
|
| 1439 |
-
|
| 1440 |
-
|
| 1441 |
-
#: ../
|
| 1442 |
-
msgid "
|
| 1443 |
-
msgstr ""
|
| 1444 |
-
|
| 1445 |
-
#: ../front-end/
|
| 1446 |
-
msgid "
|
| 1447 |
-
msgstr ""
|
| 1448 |
-
|
| 1449 |
-
#: ../front-end/
|
| 1450 |
-
|
| 1451 |
-
|
| 1452 |
-
|
| 1453 |
-
|
| 1454 |
-
|
| 1455 |
-
|
| 1456 |
-
|
| 1457 |
-
|
| 1458 |
-
|
| 1459 |
-
|
| 1460 |
-
|
| 1461 |
-
|
| 1462 |
-
|
| 1463 |
-
|
| 1464 |
-
|
| 1465 |
-
|
| 1466 |
-
|
| 1467 |
-
|
| 1468 |
-
|
| 1469 |
-
|
| 1470 |
-
|
| 1471 |
-
|
| 1472 |
-
|
| 1473 |
-
|
| 1474 |
-
|
| 1475 |
-
|
| 1476 |
-
|
| 1477 |
-
|
| 1478 |
-
|
| 1479 |
-
|
| 1480 |
-
|
| 1481 |
-
|
| 1482 |
-
msgid "
|
| 1483 |
-
|
| 1484 |
-
|
| 1485 |
-
|
| 1486 |
-
|
| 1487 |
-
|
| 1488 |
-
|
| 1489 |
-
|
| 1490 |
-
|
| 1491 |
-
|
| 1492 |
-
|
| 1493 |
-
#: ../front-end/
|
| 1494 |
-
|
| 1495 |
-
|
| 1496 |
-
|
| 1497 |
-
|
| 1498 |
-
|
| 1499 |
-
|
| 1500 |
-
|
| 1501 |
-
|
| 1502 |
-
msgid "
|
| 1503 |
-
|
| 1504 |
-
|
| 1505 |
-
|
| 1506 |
-
|
| 1507 |
-
#: ../front-end/
|
| 1508 |
-
|
| 1509 |
-
|
| 1510 |
-
|
| 1511 |
-
|
| 1512 |
-
|
| 1513 |
-
|
| 1514 |
-
|
| 1515 |
-
|
| 1516 |
-
|
| 1517 |
-
|
| 1518 |
-
|
| 1519 |
-
#: ../front-end/
|
| 1520 |
-
msgid "
|
| 1521 |
-
msgstr ""
|
| 1522 |
-
|
| 1523 |
-
#: ../front-end/
|
| 1524 |
-
|
| 1525 |
-
|
| 1526 |
-
|
| 1527 |
-
|
| 1528 |
-
|
| 1529 |
-
|
| 1530 |
-
|
| 1531 |
-
|
| 1532 |
-
|
| 1533 |
-
#: ../front-end/
|
| 1534 |
-
|
| 1535 |
-
|
| 1536 |
-
|
| 1537 |
-
|
| 1538 |
-
|
| 1539 |
-
|
| 1540 |
-
|
| 1541 |
-
|
| 1542 |
-
|
| 1543 |
-
|
| 1544 |
-
|
| 1545 |
-
|
| 1546 |
-
|
| 1547 |
-
#: ../front-end/
|
| 1548 |
-
#: ../front-end/
|
| 1549 |
-
#: ../front-end/
|
| 1550 |
-
|
| 1551 |
-
|
| 1552 |
-
|
| 1553 |
-
|
| 1554 |
-
#: ../front-end/
|
| 1555 |
-
|
| 1556 |
-
|
| 1557 |
-
|
| 1558 |
-
|
| 1559 |
-
#: ../front-end/
|
| 1560 |
-
|
| 1561 |
-
|
| 1562 |
-
|
| 1563 |
-
|
| 1564 |
-
#: ../front-end/
|
| 1565 |
-
|
| 1566 |
-
|
| 1567 |
-
|
| 1568 |
-
|
| 1569 |
-
#: ../front-end/
|
| 1570 |
-
|
| 1571 |
-
|
| 1572 |
-
|
| 1573 |
-
#: ../front-end/
|
| 1574 |
-
|
| 1575 |
-
|
| 1576 |
-
|
| 1577 |
-
#: ../front-end/
|
| 1578 |
-
|
| 1579 |
-
|
| 1580 |
-
|
| 1581 |
-
|
| 1582 |
-
|
| 1583 |
-
#: ../front-end/extra-fields/
|
| 1584 |
-
|
| 1585 |
-
|
| 1586 |
-
|
| 1587 |
-
|
| 1588 |
-
|
| 1589 |
-
|
| 1590 |
-
|
| 1591 |
-
|
| 1592 |
-
#: ../front-end/extra-fields/
|
| 1593 |
-
|
| 1594 |
-
|
| 1595 |
-
|
| 1596 |
-
|
| 1597 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
| 1598 |
-
#: ../front-end/extra-fields/
|
| 1599 |
-
#: ../front-end/extra-fields/
|
| 1600 |
-
|
| 1601 |
-
|
| 1602 |
-
|
| 1603 |
-
|
| 1604 |
-
#: ../front-end/extra-fields/
|
| 1605 |
-
|
| 1606 |
-
|
| 1607 |
-
|
| 1608 |
-
|
| 1609 |
-
|
| 1610 |
-
|
| 1611 |
-
|
| 1612 |
-
|
| 1613 |
-
|
| 1614 |
-
|
| 1615 |
-
#: ../front-end/extra-fields/
|
| 1616 |
-
#: ../front-end/extra-fields/
|
| 1617 |
-
|
| 1618 |
-
|
| 1619 |
-
|
| 1620 |
-
|
| 1621 |
-
#: ../front-end/extra-fields/
|
| 1622 |
-
#: ../front-end/extra-fields/
|
| 1623 |
-
|
| 1624 |
-
|
| 1625 |
-
|
| 1626 |
-
#: ../front-end/extra-fields/
|
| 1627 |
-
#: ../front-end/extra-fields/
|
| 1628 |
-
|
| 1629 |
-
|
| 1630 |
-
|
| 1631 |
-
|
| 1632 |
-
|
| 1633 |
-
|
| 1634 |
-
|
| 1635 |
-
|
| 1636 |
-
|
| 1637 |
-
|
| 1638 |
-
|
| 1639 |
-
|
| 1640 |
-
|
| 1641 |
-
|
| 1642 |
-
|
| 1643 |
-
|
| 1644 |
-
|
| 1645 |
-
|
| 1646 |
-
|
| 1647 |
-
|
| 1648 |
-
#: ../front-end/extra-fields/
|
| 1649 |
-
|
| 1650 |
-
|
| 1651 |
-
|
| 1652 |
-
|
| 1653 |
-
|
| 1654 |
-
|
| 1655 |
-
|
| 1656 |
-
|
| 1657 |
-
|
| 1658 |
-
|
| 1659 |
-
|
| 1660 |
-
|
| 1661 |
-
|
| 1662 |
-
|
| 1663 |
-
|
| 1664 |
-
#: ../front-end/extra-fields/
|
| 1665 |
-
|
| 1666 |
-
|
| 1667 |
-
|
| 1668 |
-
#: ../front-end/extra-fields/upload/upload.php:
|
| 1669 |
-
msgid "
|
| 1670 |
-
msgstr ""
|
| 1671 |
-
|
| 1672 |
-
#: ../front-end/extra-fields/
|
| 1673 |
-
#: ../front-end/extra-fields/upload/upload.php:
|
| 1674 |
-
|
| 1675 |
-
|
| 1676 |
-
|
| 1677 |
-
|
| 1678 |
-
|
| 1679 |
-
|
| 1680 |
-
|
| 1681 |
-
|
| 1682 |
-
#: ../front-end/extra-fields/
|
| 1683 |
-
#: ../front-end/extra-fields/upload/upload.php:
|
| 1684 |
-
msgid "
|
| 1685 |
-
msgstr ""
|
| 1686 |
-
|
| 1687 |
-
#: ../front-end/extra-fields/
|
| 1688 |
-
|
| 1689 |
-
|
| 1690 |
-
|
| 1691 |
-
|
| 1692 |
-
#: ../front-end/
|
| 1693 |
-
#: ../front-end/
|
| 1694 |
-
msgid "
|
| 1695 |
-
msgstr ""
|
| 1696 |
-
|
| 1697 |
-
#: ../front-end/extra-fields/
|
| 1698 |
-
|
| 1699 |
-
|
| 1700 |
-
|
| 1701 |
-
|
| 1702 |
-
|
| 1703 |
-
|
| 1704 |
-
|
| 1705 |
-
|
| 1706 |
-
|
| 1707 |
-
|
| 1708 |
-
|
| 1709 |
-
|
| 1710 |
-
|
| 1711 |
-
|
| 1712 |
-
msgstr ""
|
| 1713 |
-
|
| 1714 |
-
#: ../front-end/extra-fields/
|
| 1715 |
-
msgid "
|
| 1716 |
-
|
| 1717 |
-
|
| 1718 |
-
|
| 1719 |
-
|
| 1720 |
-
|
| 1721 |
-
|
| 1722 |
-
|
| 1723 |
-
|
| 1724 |
-
|
| 1725 |
-
|
| 1726 |
-
|
| 1727 |
-
|
| 1728 |
-
|
| 1729 |
-
|
| 1730 |
-
|
| 1731 |
-
|
| 1732 |
-
|
| 1733 |
-
|
| 1734 |
-
|
| 1735 |
-
#: ../
|
| 1736 |
-
#: ../
|
| 1737 |
-
|
| 1738 |
-
|
| 1739 |
-
|
| 1740 |
-
#: ../
|
| 1741 |
-
#: ../
|
| 1742 |
-
#: ../
|
| 1743 |
-
#: ../
|
| 1744 |
-
|
| 1745 |
-
|
| 1746 |
-
|
| 1747 |
-
#: ../
|
| 1748 |
-
|
| 1749 |
-
|
| 1750 |
-
|
| 1751 |
-
|
| 1752 |
-
|
| 1753 |
-
|
| 1754 |
-
#: ../
|
| 1755 |
-
#: ../
|
| 1756 |
-
|
| 1757 |
-
|
| 1758 |
-
|
| 1759 |
-
#: ../
|
| 1760 |
-
#: ../
|
| 1761 |
-
|
| 1762 |
-
|
| 1763 |
-
|
| 1764 |
-
|
| 1765 |
-
|
| 1766 |
-
|
| 1767 |
-
|
| 1768 |
-
#: ../
|
| 1769 |
-
|
| 1770 |
-
|
| 1771 |
-
|
| 1772 |
-
|
| 1773 |
-
|
| 1774 |
-
|
| 1775 |
-
|
| 1776 |
-
|
| 1777 |
-
|
| 1778 |
-
|
| 1779 |
-
|
| 1780 |
-
|
| 1781 |
-
|
| 1782 |
-
|
| 1783 |
-
|
| 1784 |
-
|
| 1785 |
-
|
| 1786 |
-
|
| 1787 |
-
|
| 1788 |
-
#: ../
|
| 1789 |
-
msgid "
|
| 1790 |
-
msgstr ""
|
| 1791 |
-
|
| 1792 |
-
#: ../
|
| 1793 |
-
|
| 1794 |
-
|
| 1795 |
-
|
| 1796 |
-
|
| 1797 |
-
|
| 1798 |
-
|
| 1799 |
-
|
| 1800 |
-
#: ../
|
| 1801 |
-
|
| 1802 |
-
|
| 1803 |
-
|
| 1804 |
-
|
| 1805 |
-
|
| 1806 |
-
|
| 1807 |
-
|
| 1808 |
-
|
| 1809 |
-
|
| 1810 |
-
|
| 1811 |
-
|
| 1812 |
-
|
| 1813 |
-
|
| 1814 |
-
|
| 1815 |
-
|
| 1816 |
-
|
| 1817 |
-
|
| 1818 |
-
|
| 1819 |
-
|
| 1820 |
-
|
| 1821 |
-
|
| 1822 |
-
|
| 1823 |
-
|
| 1824 |
-
|
| 1825 |
-
|
| 1826 |
-
|
| 1827 |
-
|
| 1828 |
-
|
| 1829 |
-
|
| 1830 |
-
|
| 1831 |
-
|
| 1832 |
-
|
| 1833 |
-
|
| 1834 |
-
|
| 1835 |
-
|
| 1836 |
-
|
| 1837 |
-
|
| 1838 |
-
|
| 1839 |
-
|
| 1840 |
-
|
| 1841 |
-
|
| 1842 |
-
|
| 1843 |
-
|
| 1844 |
-
|
| 1845 |
-
|
| 1846 |
-
|
| 1847 |
-
#: ../
|
| 1848 |
-
msgid "
|
| 1849 |
-
msgstr ""
|
| 1850 |
-
|
| 1851 |
-
#: ../
|
| 1852 |
-
|
| 1853 |
-
|
| 1854 |
-
|
| 1855 |
-
|
| 1856 |
-
|
| 1857 |
-
|
| 1858 |
-
|
| 1859 |
-
|
| 1860 |
-
|
| 1861 |
-
|
| 1862 |
-
|
| 1863 |
-
|
| 1864 |
-
|
| 1865 |
-
|
| 1866 |
-
|
| 1867 |
-
|
| 1868 |
-
|
| 1869 |
-
"
|
| 1870 |
-
"
|
| 1871 |
-
|
| 1872 |
-
|
| 1873 |
-
|
| 1874 |
-
|
| 1875 |
-
|
| 1876 |
-
|
| 1877 |
-
#: ../
|
| 1878 |
-
|
| 1879 |
-
|
| 1880 |
-
|
| 1881 |
-
|
| 1882 |
-
|
| 1883 |
-
|
| 1884 |
-
|
| 1885 |
-
|
| 1886 |
-
|
| 1887 |
-
|
| 1888 |
-
|
| 1889 |
-
|
| 1890 |
-
|
| 1891 |
-
"
|
| 1892 |
-
"
|
| 1893 |
-
|
| 1894 |
-
|
| 1895 |
-
|
| 1896 |
-
|
| 1897 |
-
|
| 1898 |
-
|
| 1899 |
-
#: ../
|
| 1900 |
-
|
| 1901 |
-
|
| 1902 |
-
|
| 1903 |
-
|
| 1904 |
-
|
| 1905 |
-
|
| 1906 |
-
|
| 1907 |
-
|
| 1908 |
-
|
| 1909 |
-
|
| 1910 |
-
|
| 1911 |
-
|
| 1912 |
-
|
| 1913 |
-
|
| 1914 |
-
|
| 1915 |
-
|
| 1916 |
-
|
| 1917 |
-
|
| 1918 |
-
|
| 1919 |
-
|
| 1920 |
-
|
| 1921 |
-
|
| 1922 |
-
|
| 1923 |
-
|
| 1924 |
-
|
| 1925 |
-
|
| 1926 |
-
|
| 1927 |
-
|
| 1928 |
-
|
| 1929 |
-
|
| 1930 |
-
|
| 1931 |
-
|
| 1932 |
-
|
| 1933 |
-
|
| 1934 |
-
|
| 1935 |
-
|
| 1936 |
-
|
| 1937 |
-
|
| 1938 |
-
|
| 1939 |
-
|
| 1940 |
-
|
| 1941 |
-
|
| 1942 |
-
"
|
| 1943 |
-
"
|
| 1944 |
-
|
| 1945 |
-
|
| 1946 |
-
|
| 1947 |
-
|
| 1948 |
-
|
| 1949 |
-
|
| 1950 |
-
|
| 1951 |
-
|
| 1952 |
-
|
| 1953 |
-
|
| 1954 |
-
|
| 1955 |
-
|
| 1956 |
-
|
| 1957 |
-
msgstr ""
|
| 1958 |
-
|
| 1959 |
-
#: ../modules/
|
| 1960 |
-
|
| 1961 |
-
|
| 1962 |
-
|
| 1963 |
-
|
| 1964 |
-
|
| 1965 |
-
|
| 1966 |
-
|
| 1967 |
-
#: ../modules/
|
| 1968 |
-
|
| 1969 |
-
|
| 1970 |
-
|
| 1971 |
-
|
| 1972 |
-
|
| 1973 |
-
|
| 1974 |
-
|
| 1975 |
-
|
| 1976 |
-
|
| 1977 |
-
|
| 1978 |
-
|
| 1979 |
-
#: ../modules/
|
| 1980 |
-
|
| 1981 |
-
|
| 1982 |
-
|
| 1983 |
-
|
| 1984 |
-
|
| 1985 |
-
|
| 1986 |
-
#: ../modules/
|
| 1987 |
-
msgid "
|
| 1988 |
-
msgstr ""
|
| 1989 |
-
|
| 1990 |
-
#: ../modules/
|
| 1991 |
-
|
| 1992 |
-
|
| 1993 |
-
|
| 1994 |
-
#: ../modules/
|
| 1995 |
-
|
| 1996 |
-
|
| 1997 |
-
|
| 1998 |
-
|
| 1999 |
-
|
| 2000 |
-
|
| 2001 |
-
|
| 2002 |
-
|
| 2003 |
-
|
| 2004 |
-
|
| 2005 |
-
|
| 2006 |
-
|
| 2007 |
-
|
| 2008 |
-
|
| 2009 |
-
|
| 2010 |
-
|
| 2011 |
-
|
| 2012 |
-
|
| 2013 |
-
|
| 2014 |
-
|
| 2015 |
-
|
| 2016 |
-
|
| 2017 |
-
|
| 2018 |
-
|
| 2019 |
-
|
| 2020 |
-
|
| 2021 |
-
|
| 2022 |
-
|
| 2023 |
-
|
| 2024 |
-
|
| 2025 |
-
|
| 2026 |
-
|
| 2027 |
-
|
| 2028 |
-
|
| 2029 |
-
|
| 2030 |
-
|
| 2031 |
-
|
| 2032 |
-
|
| 2033 |
-
|
| 2034 |
-
|
| 2035 |
-
|
| 2036 |
-
|
| 2037 |
-
|
| 2038 |
-
|
| 2039 |
-
|
| 2040 |
-
|
| 2041 |
-
|
| 2042 |
-
|
| 2043 |
-
|
| 2044 |
-
|
| 2045 |
-
#: ../modules/
|
| 2046 |
-
|
| 2047 |
-
|
| 2048 |
-
|
| 2049 |
-
|
| 2050 |
-
|
| 2051 |
-
|
| 2052 |
-
|
| 2053 |
-
|
| 2054 |
-
|
| 2055 |
-
|
| 2056 |
-
|
| 2057 |
-
|
| 2058 |
-
|
| 2059 |
-
|
| 2060 |
-
|
| 2061 |
-
|
| 2062 |
-
|
| 2063 |
-
|
| 2064 |
-
|
| 2065 |
-
|
| 2066 |
-
|
| 2067 |
-
#: ../modules/
|
| 2068 |
-
|
| 2069 |
-
|
| 2070 |
-
|
| 2071 |
-
|
| 2072 |
-
#: ../modules/
|
| 2073 |
-
|
| 2074 |
-
|
| 2075 |
-
|
| 2076 |
-
|
| 2077 |
-
|
| 2078 |
-
|
| 2079 |
-
|
| 2080 |
-
|
| 2081 |
-
|
| 2082 |
-
|
| 2083 |
-
#: ../modules/
|
| 2084 |
-
#: ../modules/
|
| 2085 |
-
#: ../modules/user-
|
| 2086 |
-
|
| 2087 |
-
|
| 2088 |
-
|
| 2089 |
-
|
| 2090 |
-
#: ../modules/
|
| 2091 |
-
msgid "
|
| 2092 |
-
msgstr ""
|
| 2093 |
-
|
| 2094 |
-
#: ../modules/
|
| 2095 |
-
|
| 2096 |
-
|
| 2097 |
-
|
| 2098 |
-
|
| 2099 |
-
|
| 2100 |
-
|
| 2101 |
-
|
| 2102 |
-
|
| 2103 |
-
|
| 2104 |
-
|
| 2105 |
-
|
| 2106 |
-
|
| 2107 |
-
|
| 2108 |
-
|
| 2109 |
-
|
| 2110 |
-
|
| 2111 |
-
|
| 2112 |
-
|
| 2113 |
-
|
| 2114 |
-
|
| 2115 |
-
|
| 2116 |
-
|
| 2117 |
-
|
| 2118 |
-
#: ../modules/
|
| 2119 |
-
msgid "
|
| 2120 |
-
msgstr ""
|
| 2121 |
-
|
| 2122 |
-
#: ../modules/
|
| 2123 |
-
msgid "
|
| 2124 |
-
msgstr ""
|
| 2125 |
-
|
| 2126 |
-
#: ../modules/
|
| 2127 |
-
|
| 2128 |
-
|
| 2129 |
-
|
| 2130 |
-
|
| 2131 |
-
#: ../modules/
|
| 2132 |
-
msgid "
|
| 2133 |
-
msgstr ""
|
| 2134 |
-
|
| 2135 |
-
#: ../modules/
|
| 2136 |
-
msgid "
|
| 2137 |
-
msgstr ""
|
| 2138 |
-
|
| 2139 |
-
#: ../modules/
|
| 2140 |
-
msgid "
|
| 2141 |
-
msgstr ""
|
| 2142 |
-
|
| 2143 |
-
#: ../modules/
|
| 2144 |
-
msgid "
|
| 2145 |
-
msgstr ""
|
| 2146 |
-
|
| 2147 |
-
#: ../modules/
|
| 2148 |
-
#: ../modules/
|
| 2149 |
-
|
| 2150 |
-
|
| 2151 |
-
|
| 2152 |
-
|
| 2153 |
-
|
| 2154 |
-
|
| 2155 |
-
|
| 2156 |
-
|
| 2157 |
-
|
| 2158 |
-
msgstr ""
|
| 2159 |
-
|
| 2160 |
-
#: ../modules/
|
| 2161 |
-
msgid "
|
| 2162 |
-
msgstr ""
|
| 2163 |
-
|
| 2164 |
-
#: ../modules/
|
| 2165 |
-
msgid "
|
| 2166 |
-
|
| 2167 |
-
|
| 2168 |
-
|
| 2169 |
-
|
| 2170 |
-
|
| 2171 |
-
|
| 2172 |
-
|
| 2173 |
-
|
| 2174 |
-
|
| 2175 |
-
|
| 2176 |
-
|
| 2177 |
-
|
| 2178 |
-
|
| 2179 |
-
|
| 2180 |
-
|
| 2181 |
-
|
| 2182 |
-
|
| 2183 |
-
|
| 2184 |
-
|
| 2185 |
-
|
| 2186 |
-
|
| 2187 |
-
|
| 2188 |
-
|
| 2189 |
-
|
| 2190 |
-
|
| 2191 |
-
|
| 2192 |
-
|
| 2193 |
-
|
| 2194 |
-
|
| 2195 |
-
|
| 2196 |
-
|
| 2197 |
-
|
| 2198 |
-
|
| 2199 |
-
|
| 2200 |
-
|
| 2201 |
-
|
| 2202 |
-
|
| 2203 |
-
|
| 2204 |
-
|
| 2205 |
-
|
| 2206 |
-
|
| 2207 |
-
|
| 2208 |
-
|
| 2209 |
-
|
| 2210 |
-
|
| 2211 |
-
|
| 2212 |
-
|
| 2213 |
-
|
| 2214 |
-
|
| 2215 |
-
|
| 2216 |
-
|
| 2217 |
-
|
| 2218 |
-
|
| 2219 |
-
|
| 2220 |
-
|
| 2221 |
-
|
| 2222 |
-
|
| 2223 |
-
|
| 2224 |
-
|
| 2225 |
-
|
| 2226 |
-
|
| 2227 |
-
|
| 2228 |
-
|
| 2229 |
-
|
| 2230 |
-
|
| 2231 |
-
|
| 2232 |
-
|
| 2233 |
-
|
| 2234 |
-
|
| 2235 |
-
|
| 2236 |
-
|
| 2237 |
-
|
| 2238 |
-
|
| 2239 |
-
|
| 2240 |
-
|
| 2241 |
-
|
| 2242 |
-
|
| 2243 |
-
|
| 2244 |
-
|
| 2245 |
-
|
| 2246 |
-
|
| 2247 |
-
|
| 2248 |
-
|
| 2249 |
-
|
| 2250 |
-
#: ../modules/user-listing/userlisting.php:
|
| 2251 |
-
msgid "
|
| 2252 |
-
msgstr ""
|
| 2253 |
-
|
| 2254 |
-
#: ../modules/
|
| 2255 |
-
msgid "
|
| 2256 |
-
msgstr ""
|
| 2257 |
-
|
| 2258 |
-
#: ../modules/
|
| 2259 |
-
msgid "
|
| 2260 |
-
msgstr ""
|
| 2261 |
-
|
| 2262 |
-
#: ../modules/
|
| 2263 |
-
msgid "
|
| 2264 |
-
msgstr ""
|
| 2265 |
-
|
| 2266 |
-
#: ../modules/
|
| 2267 |
-
|
| 2268 |
-
|
| 2269 |
-
|
| 2270 |
-
|
| 2271 |
-
#: ../modules/
|
| 2272 |
-
msgid "
|
| 2273 |
-
msgstr ""
|
| 2274 |
-
|
| 2275 |
-
#: ../modules/
|
| 2276 |
-
msgid "
|
| 2277 |
-
msgstr ""
|
| 2278 |
-
|
| 2279 |
-
#: ../modules/
|
| 2280 |
-
msgid "
|
| 2281 |
-
msgstr ""
|
| 2282 |
-
|
| 2283 |
-
#: ../modules/
|
| 2284 |
-
msgid "
|
| 2285 |
-
msgstr ""
|
| 2286 |
-
|
| 2287 |
-
#: ../modules/
|
| 2288 |
-
|
| 2289 |
-
|
| 2290 |
-
|
| 2291 |
-
|
| 2292 |
-
|
| 2293 |
-
|
| 2294 |
-
|
| 2295 |
-
#: ../modules/user-listing/userlisting.php:
|
| 2296 |
-
msgid "
|
| 2297 |
-
msgstr ""
|
| 2298 |
-
|
| 2299 |
-
#: ../modules/
|
| 2300 |
-
|
| 2301 |
-
|
| 2302 |
-
|
| 2303 |
-
|
| 2304 |
-
|
| 2305 |
-
|
| 2306 |
-
|
| 2307 |
-
#: ../modules/user-listing/userlisting.php:
|
| 2308 |
-
msgid "
|
| 2309 |
-
msgstr ""
|
| 2310 |
-
|
| 2311 |
-
#: ../modules/
|
| 2312 |
-
#: ../modules/
|
| 2313 |
-
|
| 2314 |
-
|
| 2315 |
-
|
| 2316 |
-
|
| 2317 |
-
|
| 2318 |
-
|
| 2319 |
-
|
| 2320 |
-
#: ../modules/
|
| 2321 |
-
#: ../modules/user-listing/userlisting.php:
|
| 2322 |
-
msgid "
|
| 2323 |
-
msgstr ""
|
| 2324 |
-
|
| 2325 |
-
#: ../modules/
|
| 2326 |
-
#: ../modules/
|
| 2327 |
-
msgid "
|
| 2328 |
-
msgstr ""
|
| 2329 |
-
|
| 2330 |
-
#: ../modules/
|
| 2331 |
-
#: ../modules/
|
| 2332 |
-
msgid "
|
| 2333 |
-
msgstr ""
|
| 2334 |
-
|
| 2335 |
-
#: ../modules/
|
| 2336 |
-
|
| 2337 |
-
|
| 2338 |
-
|
| 2339 |
-
|
| 2340 |
-
|
| 2341 |
-
|
| 2342 |
-
|
| 2343 |
-
|
| 2344 |
-
|
| 2345 |
-
|
| 2346 |
-
|
| 2347 |
-
|
| 2348 |
-
|
| 2349 |
-
|
| 2350 |
-
|
| 2351 |
-
|
| 2352 |
-
|
| 2353 |
-
|
| 2354 |
-
|
| 2355 |
-
|
| 2356 |
-
#: ../modules/
|
| 2357 |
-
msgid "
|
| 2358 |
-
msgstr ""
|
| 2359 |
-
|
| 2360 |
-
#: ../modules/
|
| 2361 |
-
msgid "
|
| 2362 |
-
msgstr ""
|
| 2363 |
-
|
| 2364 |
-
#: ../modules/
|
| 2365 |
-
msgid "
|
| 2366 |
-
msgstr ""
|
| 2367 |
-
|
| 2368 |
-
#: ../modules/
|
| 2369 |
-
|
| 2370 |
-
|
| 2371 |
-
|
| 2372 |
-
|
| 2373 |
-
|
| 2374 |
-
|
| 2375 |
-
|
| 2376 |
-
|
| 2377 |
-
|
| 2378 |
-
|
| 2379 |
-
|
| 2380 |
-
|
| 2381 |
-
|
| 2382 |
-
|
| 2383 |
-
|
| 2384 |
-
|
| 2385 |
-
|
| 2386 |
-
|
| 2387 |
-
|
| 2388 |
-
|
| 2389 |
-
|
| 2390 |
-
|
| 2391 |
-
|
| 2392 |
-
|
| 2393 |
-
|
| 2394 |
-
|
| 2395 |
-
|
| 2396 |
-
|
| 2397 |
-
|
| 2398 |
-
|
| 2399 |
-
|
| 2400 |
-
|
| 2401 |
-
|
| 2402 |
-
|
| 2403 |
-
|
| 2404 |
-
|
| 2405 |
-
|
| 2406 |
-
|
| 2407 |
-
|
| 2408 |
-
|
| 2409 |
-
|
| 2410 |
-
|
| 2411 |
-
|
| 2412 |
-
|
| 2413 |
-
|
| 2414 |
-
|
| 2415 |
-
|
| 2416 |
-
|
| 2417 |
-
|
| 2418 |
-
msgstr ""
|
| 2419 |
-
|
| 2420 |
-
#: ../modules/
|
| 2421 |
-
msgid "
|
| 2422 |
-
msgstr ""
|
| 2423 |
-
|
| 2424 |
-
#: ../modules/
|
| 2425 |
-
msgid "
|
| 2426 |
-
|
| 2427 |
-
|
| 2428 |
-
|
| 2429 |
-
|
| 2430 |
-
msgstr ""
|
| 2431 |
-
|
| 2432 |
-
#: ../modules/
|
| 2433 |
-
msgid "
|
| 2434 |
-
msgstr ""
|
| 2435 |
-
|
| 2436 |
-
#: ../modules/
|
| 2437 |
-
msgid "
|
| 2438 |
-
|
| 2439 |
-
|
| 2440 |
-
|
| 2441 |
-
|
| 2442 |
-
|
| 2443 |
-
|
| 2444 |
-
|
| 2445 |
-
|
| 2446 |
-
|
| 2447 |
-
|
| 2448 |
-
#: ../modules/user-listing/userlisting.php:
|
| 2449 |
-
|
| 2450 |
-
|
| 2451 |
-
|
| 2452 |
-
|
| 2453 |
-
|
| 2454 |
-
|
| 2455 |
-
|
| 2456 |
-
|
| 2457 |
-
|
| 2458 |
-
|
| 2459 |
-
|
| 2460 |
-
|
| 2461 |
-
|
| 2462 |
-
|
| 2463 |
-
|
| 2464 |
-
|
| 2465 |
-
|
| 2466 |
-
|
| 2467 |
-
|
| 2468 |
-
|
| 2469 |
-
|
| 2470 |
-
|
| 2471 |
-
|
| 2472 |
-
|
| 2473 |
-
|
| 2474 |
-
|
| 2475 |
-
|
| 2476 |
-
|
| 2477 |
-
|
| 2478 |
-
|
| 2479 |
-
|
| 2480 |
-
|
| 2481 |
-
|
| 2482 |
-
|
| 2483 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
msgid ""
|
| 2 |
+
msgstr ""
|
| 3 |
+
"Project-Id-Version: profilebuilder\n"
|
| 4 |
+
"POT-Creation-Date: 2014-10-30 16:33+0200\n"
|
| 5 |
+
"PO-Revision-Date: 2014-10-30 16:34+0200\n"
|
| 6 |
+
"Last-Translator: \n"
|
| 7 |
+
"Language-Team: Cozmoslabs\n"
|
| 8 |
+
"Language: en\n"
|
| 9 |
+
"MIME-Version: 1.0\n"
|
| 10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
+
"X-Generator: Poedit 1.6.10\n"
|
| 13 |
+
"X-Poedit-Basepath: .\n"
|
| 14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 15 |
+
"X-Poedit-KeywordsList: __;_e;_x;_n\n"
|
| 16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
| 17 |
+
|
| 18 |
+
#: ../admin/admin-bar.php:10
|
| 19 |
+
msgid "Show/Hide the Admin Bar on the Front-End"
|
| 20 |
+
msgstr ""
|
| 21 |
+
|
| 22 |
+
#: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
|
| 23 |
+
msgid "Admin Bar Settings"
|
| 24 |
+
msgstr ""
|
| 25 |
+
|
| 26 |
+
#: ../admin/admin-bar.php:48
|
| 27 |
+
msgid ""
|
| 28 |
+
"Choose which user roles view the admin bar in the front-end of the website."
|
| 29 |
+
msgstr ""
|
| 30 |
+
|
| 31 |
+
#: ../admin/admin-bar.php:57
|
| 32 |
+
msgid "User-Role"
|
| 33 |
+
msgstr ""
|
| 34 |
+
|
| 35 |
+
#: ../admin/admin-bar.php:58
|
| 36 |
+
msgid "Visibility"
|
| 37 |
+
msgstr ""
|
| 38 |
+
|
| 39 |
+
#: ../admin/admin-bar.php:73
|
| 40 |
+
msgid "Default"
|
| 41 |
+
msgstr ""
|
| 42 |
+
|
| 43 |
+
#: ../admin/admin-bar.php:74
|
| 44 |
+
msgid "Show"
|
| 45 |
+
msgstr ""
|
| 46 |
+
|
| 47 |
+
#: ../admin/admin-bar.php:75
|
| 48 |
+
msgid "Hide"
|
| 49 |
+
msgstr ""
|
| 50 |
+
|
| 51 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:181
|
| 52 |
+
#: ../admin/register-version.php:81 ../features/functions.php:569
|
| 53 |
+
#: ../modules/custom-redirects/custom-redirects.php:136
|
| 54 |
+
#: ../modules/modules.php:142
|
| 55 |
+
msgid "Save Changes"
|
| 56 |
+
msgstr ""
|
| 57 |
+
|
| 58 |
+
#: ../admin/admin-functions.php:34
|
| 59 |
+
#, php-format
|
| 60 |
+
msgid ""
|
| 61 |
+
"Login is set to be done using the E-mail. This field will NOT appear in the "
|
| 62 |
+
"front-end! ( you can change these settings under the \"%s\" tab )"
|
| 63 |
+
msgstr ""
|
| 64 |
+
|
| 65 |
+
#: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
|
| 66 |
+
#: ../admin/general-settings.php:38
|
| 67 |
+
msgid "General Settings"
|
| 68 |
+
msgstr ""
|
| 69 |
+
|
| 70 |
+
#: ../admin/admin-functions.php:106
|
| 71 |
+
msgid "<strong>ERROR</strong>: The password must have the minimum length of "
|
| 72 |
+
msgstr ""
|
| 73 |
+
|
| 74 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
|
| 75 |
+
msgid "Very weak"
|
| 76 |
+
msgstr ""
|
| 77 |
+
|
| 78 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
| 79 |
+
#: ../features/functions.php:468
|
| 80 |
+
msgid "Weak"
|
| 81 |
+
msgstr ""
|
| 82 |
+
|
| 83 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
| 84 |
+
#: ../features/functions.php:468
|
| 85 |
+
msgid "Medium"
|
| 86 |
+
msgstr ""
|
| 87 |
+
|
| 88 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
| 89 |
+
#: ../features/functions.php:468
|
| 90 |
+
msgid "Strong"
|
| 91 |
+
msgstr ""
|
| 92 |
+
|
| 93 |
+
#: ../admin/admin-functions.php:123
|
| 94 |
+
msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
|
| 95 |
+
msgstr ""
|
| 96 |
+
|
| 97 |
+
#: ../admin/admin-functions.php:162
|
| 98 |
+
msgid "Add Field"
|
| 99 |
+
msgstr ""
|
| 100 |
+
|
| 101 |
+
#: ../admin/admin-functions.php:164
|
| 102 |
+
msgid "Save Settings"
|
| 103 |
+
msgstr ""
|
| 104 |
+
|
| 105 |
+
#: ../admin/basic-info.php:10
|
| 106 |
+
msgid "Basic Information"
|
| 107 |
+
msgstr ""
|
| 108 |
+
|
| 109 |
+
#: ../admin/basic-info.php:29
|
| 110 |
+
#, php-format
|
| 111 |
+
msgid "Version %s"
|
| 112 |
+
msgstr ""
|
| 113 |
+
|
| 114 |
+
#: ../admin/basic-info.php:30
|
| 115 |
+
msgid "<strong>Profile Builder </strong>"
|
| 116 |
+
msgstr ""
|
| 117 |
+
|
| 118 |
+
#: ../admin/basic-info.php:31
|
| 119 |
+
msgid ""
|
| 120 |
+
"The best way to add front-end registration, edit profile and login forms."
|
| 121 |
+
msgstr ""
|
| 122 |
+
|
| 123 |
+
#: ../admin/basic-info.php:33
|
| 124 |
+
msgid "For Modern User Interaction"
|
| 125 |
+
msgstr ""
|
| 126 |
+
|
| 127 |
+
#: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:75
|
| 128 |
+
msgid "Login"
|
| 129 |
+
msgstr ""
|
| 130 |
+
|
| 131 |
+
#: ../admin/basic-info.php:37
|
| 132 |
+
msgid ""
|
| 133 |
+
"Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> "
|
| 134 |
+
"shortcode or a widget."
|
| 135 |
+
msgstr ""
|
| 136 |
+
|
| 137 |
+
#: ../admin/basic-info.php:40
|
| 138 |
+
msgid "Registration"
|
| 139 |
+
msgstr ""
|
| 140 |
+
|
| 141 |
+
#: ../admin/basic-info.php:41
|
| 142 |
+
msgid ""
|
| 143 |
+
"Beautiful registration forms fully customizable using the <strong class="
|
| 144 |
+
"\"nowrap\">[wppb-register]</strong> shortcode."
|
| 145 |
+
msgstr ""
|
| 146 |
+
|
| 147 |
+
#: ../admin/basic-info.php:44
|
| 148 |
+
msgid "Edit Profile"
|
| 149 |
+
msgstr ""
|
| 150 |
+
|
| 151 |
+
#: ../admin/basic-info.php:45
|
| 152 |
+
msgid ""
|
| 153 |
+
"Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-"
|
| 154 |
+
"edit-profile]</strong> shortcode."
|
| 155 |
+
msgstr ""
|
| 156 |
+
|
| 157 |
+
#: ../admin/basic-info.php:51
|
| 158 |
+
msgid "Extra Features"
|
| 159 |
+
msgstr ""
|
| 160 |
+
|
| 161 |
+
#: ../admin/basic-info.php:52
|
| 162 |
+
msgid ""
|
| 163 |
+
"Features that give you more control over your users, increased security and "
|
| 164 |
+
"help you fight user registration spam."
|
| 165 |
+
msgstr ""
|
| 166 |
+
|
| 167 |
+
#: ../admin/basic-info.php:53
|
| 168 |
+
msgid "Enable extra features"
|
| 169 |
+
msgstr ""
|
| 170 |
+
|
| 171 |
+
#: ../admin/basic-info.php:57
|
| 172 |
+
msgid "Recover Password"
|
| 173 |
+
msgstr ""
|
| 174 |
+
|
| 175 |
+
#: ../admin/basic-info.php:58
|
| 176 |
+
msgid ""
|
| 177 |
+
"Allow users to recover their password in the front-end using the [wppb-"
|
| 178 |
+
"recover-password]."
|
| 179 |
+
msgstr ""
|
| 180 |
+
|
| 181 |
+
#: ../admin/basic-info.php:61
|
| 182 |
+
msgid "Admin Approval (*)"
|
| 183 |
+
msgstr ""
|
| 184 |
+
|
| 185 |
+
#: ../admin/basic-info.php:62
|
| 186 |
+
msgid ""
|
| 187 |
+
"You decide who is a user on your website. Get notified via email or approve "
|
| 188 |
+
"multiple users at once from the WordPress UI."
|
| 189 |
+
msgstr ""
|
| 190 |
+
|
| 191 |
+
#: ../admin/basic-info.php:65
|
| 192 |
+
msgid "Email Confirmation"
|
| 193 |
+
msgstr ""
|
| 194 |
+
|
| 195 |
+
#: ../admin/basic-info.php:66
|
| 196 |
+
msgid ""
|
| 197 |
+
"Make sure users sign up with genuine emails. On registration users will "
|
| 198 |
+
"receive a notification to confirm their email address."
|
| 199 |
+
msgstr ""
|
| 200 |
+
|
| 201 |
+
#: ../admin/basic-info.php:69
|
| 202 |
+
msgid "Minimum Password Length and Strength Meter"
|
| 203 |
+
msgstr ""
|
| 204 |
+
|
| 205 |
+
#: ../admin/basic-info.php:70
|
| 206 |
+
msgid ""
|
| 207 |
+
"Eliminate weak passwords altogether by setting a minimum password length and "
|
| 208 |
+
"enforcing a certain password strength."
|
| 209 |
+
msgstr ""
|
| 210 |
+
|
| 211 |
+
#: ../admin/basic-info.php:73
|
| 212 |
+
msgid "Login with Email or Username"
|
| 213 |
+
msgstr ""
|
| 214 |
+
|
| 215 |
+
#: ../admin/basic-info.php:74
|
| 216 |
+
msgid ""
|
| 217 |
+
"Allow users to log in with their email or username when accessing your site."
|
| 218 |
+
msgstr ""
|
| 219 |
+
|
| 220 |
+
#: ../admin/basic-info.php:87
|
| 221 |
+
msgid "Customize Your Forms The Way You Want (*)"
|
| 222 |
+
msgstr ""
|
| 223 |
+
|
| 224 |
+
#: ../admin/basic-info.php:88
|
| 225 |
+
msgid ""
|
| 226 |
+
"With Extra Profile Fields you can create the exact registration form your "
|
| 227 |
+
"project needs."
|
| 228 |
+
msgstr ""
|
| 229 |
+
|
| 230 |
+
#: ../admin/basic-info.php:90
|
| 231 |
+
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
| 232 |
+
msgstr ""
|
| 233 |
+
|
| 234 |
+
#: ../admin/basic-info.php:92
|
| 235 |
+
msgid "Get started with extra fields"
|
| 236 |
+
msgstr ""
|
| 237 |
+
|
| 238 |
+
#: ../admin/basic-info.php:95
|
| 239 |
+
msgid "Avatar Upload"
|
| 240 |
+
msgstr ""
|
| 241 |
+
|
| 242 |
+
#: ../admin/basic-info.php:96
|
| 243 |
+
msgid "Generic Uploads"
|
| 244 |
+
msgstr ""
|
| 245 |
+
|
| 246 |
+
#: ../admin/basic-info.php:97
|
| 247 |
+
msgid "Agree To Terms Checkbox"
|
| 248 |
+
msgstr ""
|
| 249 |
+
|
| 250 |
+
#: ../admin/basic-info.php:98
|
| 251 |
+
msgid "Datepicker"
|
| 252 |
+
msgstr ""
|
| 253 |
+
|
| 254 |
+
#: ../admin/basic-info.php:99
|
| 255 |
+
msgid "reCAPTCHA"
|
| 256 |
+
msgstr ""
|
| 257 |
+
|
| 258 |
+
#: ../admin/basic-info.php:100
|
| 259 |
+
msgid "Country Select"
|
| 260 |
+
msgstr ""
|
| 261 |
+
|
| 262 |
+
#: ../admin/basic-info.php:101
|
| 263 |
+
msgid "Timezone Select"
|
| 264 |
+
msgstr ""
|
| 265 |
+
|
| 266 |
+
#: ../admin/basic-info.php:102
|
| 267 |
+
msgid "Input / Hidden Input"
|
| 268 |
+
msgstr ""
|
| 269 |
+
|
| 270 |
+
#: ../admin/basic-info.php:103
|
| 271 |
+
msgid "Checkbox"
|
| 272 |
+
msgstr ""
|
| 273 |
+
|
| 274 |
+
#: ../admin/basic-info.php:104
|
| 275 |
+
msgid "Select"
|
| 276 |
+
msgstr ""
|
| 277 |
+
|
| 278 |
+
#: ../admin/basic-info.php:105
|
| 279 |
+
msgid "Radio Buttons"
|
| 280 |
+
msgstr ""
|
| 281 |
+
|
| 282 |
+
#: ../admin/basic-info.php:106
|
| 283 |
+
msgid "Textarea"
|
| 284 |
+
msgstr ""
|
| 285 |
+
|
| 286 |
+
#: ../admin/basic-info.php:115
|
| 287 |
+
msgid "Powerful Modules (**)"
|
| 288 |
+
msgstr ""
|
| 289 |
+
|
| 290 |
+
#: ../admin/basic-info.php:116
|
| 291 |
+
msgid ""
|
| 292 |
+
"Everything you will need to manage your users is probably already available "
|
| 293 |
+
"using the Pro Modules."
|
| 294 |
+
msgstr ""
|
| 295 |
+
|
| 296 |
+
#: ../admin/basic-info.php:118
|
| 297 |
+
msgid "Enable your modules"
|
| 298 |
+
msgstr ""
|
| 299 |
+
|
| 300 |
+
#: ../admin/basic-info.php:121
|
| 301 |
+
msgid "Find out more about PRO Modules"
|
| 302 |
+
msgstr ""
|
| 303 |
+
|
| 304 |
+
#: ../admin/basic-info.php:126 ../modules/modules.php:111
|
| 305 |
+
#: ../modules/user-listing/userlisting.php:11
|
| 306 |
+
#: ../modules/user-listing/userlisting.php:12
|
| 307 |
+
#: ../modules/user-listing/userlisting.php:17
|
| 308 |
+
#: ../modules/user-listing/userlisting.php:23
|
| 309 |
+
msgid "User Listing"
|
| 310 |
+
msgstr ""
|
| 311 |
+
|
| 312 |
+
#: ../admin/basic-info.php:128
|
| 313 |
+
msgid ""
|
| 314 |
+
"Easy to edit templates for listing your website users as well as creating "
|
| 315 |
+
"single user pages. Shortcode based, offering many options to customize your "
|
| 316 |
+
"listings."
|
| 317 |
+
msgstr ""
|
| 318 |
+
|
| 319 |
+
#: ../admin/basic-info.php:130
|
| 320 |
+
msgid ""
|
| 321 |
+
"To create a page containing the users registered to this current site/blog, "
|
| 322 |
+
"insert the following shortcode in a page of your chosing: <strong class="
|
| 323 |
+
"\"nowrap\">[wppb-list-users]</strong>."
|
| 324 |
+
msgstr ""
|
| 325 |
+
|
| 326 |
+
#: ../admin/basic-info.php:134
|
| 327 |
+
msgid "Email Customizer"
|
| 328 |
+
msgstr ""
|
| 329 |
+
|
| 330 |
+
#: ../admin/basic-info.php:135
|
| 331 |
+
msgid ""
|
| 332 |
+
"Personalize all emails sent to your users or admins. On registration, email "
|
| 333 |
+
"confirmation, admin approval / un-approval."
|
| 334 |
+
msgstr ""
|
| 335 |
+
|
| 336 |
+
#: ../admin/basic-info.php:138
|
| 337 |
+
#: ../modules/custom-redirects/custom-redirects.php:29
|
| 338 |
+
#: ../modules/modules.php:32 ../modules/modules.php:132
|
| 339 |
+
msgid "Custom Redirects"
|
| 340 |
+
msgstr ""
|
| 341 |
+
|
| 342 |
+
#: ../admin/basic-info.php:139
|
| 343 |
+
msgid ""
|
| 344 |
+
"Keep your users out of the WordPress dashboard, redirect them to the front-"
|
| 345 |
+
"page after login or registration, everything is just a few clicks away."
|
| 346 |
+
msgstr ""
|
| 347 |
+
|
| 348 |
+
#: ../admin/basic-info.php:144 ../modules/modules.php:97
|
| 349 |
+
msgid "Multiple Registration Forms"
|
| 350 |
+
msgstr ""
|
| 351 |
+
|
| 352 |
+
#: ../admin/basic-info.php:145
|
| 353 |
+
msgid ""
|
| 354 |
+
"Set up multiple registration forms with different fields for certain user "
|
| 355 |
+
"roles. Capture different information from different types of users."
|
| 356 |
+
msgstr ""
|
| 357 |
+
|
| 358 |
+
#: ../admin/basic-info.php:148 ../modules/modules.php:104
|
| 359 |
+
msgid "Multiple Edit-profile Forms"
|
| 360 |
+
msgstr ""
|
| 361 |
+
|
| 362 |
+
#: ../admin/basic-info.php:149
|
| 363 |
+
msgid ""
|
| 364 |
+
"Allow different user roles to edit their specific information. Set up "
|
| 365 |
+
"multiple edit-profile forms with different fields for certain user roles."
|
| 366 |
+
msgstr ""
|
| 367 |
+
|
| 368 |
+
#: ../admin/basic-info.php:161
|
| 369 |
+
#, php-format
|
| 370 |
+
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
| 371 |
+
msgstr ""
|
| 372 |
+
|
| 373 |
+
#: ../admin/basic-info.php:162
|
| 374 |
+
#, php-format
|
| 375 |
+
msgid "** only available in the %1$sPro version%2$s."
|
| 376 |
+
msgstr ""
|
| 377 |
+
|
| 378 |
+
#: ../admin/general-settings.php:42
|
| 379 |
+
msgid "Load Profile Builder's own CSS file in the front-end:"
|
| 380 |
+
msgstr ""
|
| 381 |
+
|
| 382 |
+
#: ../admin/general-settings.php:45 ../admin/general-settings.php:60
|
| 383 |
+
#: ../admin/general-settings.php:114
|
| 384 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
| 385 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
| 386 |
+
#: ../modules/user-listing/userlisting.php:1150
|
| 387 |
+
msgid "Yes"
|
| 388 |
+
msgstr ""
|
| 389 |
+
|
| 390 |
+
#: ../admin/general-settings.php:47
|
| 391 |
+
#, php-format
|
| 392 |
+
msgid "You can find the default file here: %1$s"
|
| 393 |
+
msgstr ""
|
| 394 |
+
|
| 395 |
+
#: ../admin/general-settings.php:56
|
| 396 |
+
msgid "\"Email Confirmation\" Activated:"
|
| 397 |
+
msgstr ""
|
| 398 |
+
|
| 399 |
+
#: ../admin/general-settings.php:61 ../admin/general-settings.php:115
|
| 400 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
| 401 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
| 402 |
+
msgid "No"
|
| 403 |
+
msgstr ""
|
| 404 |
+
|
| 405 |
+
#: ../admin/general-settings.php:64
|
| 406 |
+
msgid ""
|
| 407 |
+
"On single-site installations this works with front-end forms only. "
|
| 408 |
+
"Recommended to redirect WP default registration to a Profile Builder one "
|
| 409 |
+
"using \"Custom Redirects\" addon."
|
| 410 |
+
msgstr ""
|
| 411 |
+
|
| 412 |
+
#: ../admin/general-settings.php:65
|
| 413 |
+
msgid ""
|
| 414 |
+
"The \"Email Confirmation\" feature is active (by default) on WPMU "
|
| 415 |
+
"installations."
|
| 416 |
+
msgstr ""
|
| 417 |
+
|
| 418 |
+
#: ../admin/general-settings.php:67
|
| 419 |
+
#, php-format
|
| 420 |
+
msgid ""
|
| 421 |
+
"You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
|
| 422 |
+
"Email Confirmation%2$s."
|
| 423 |
+
msgstr ""
|
| 424 |
+
|
| 425 |
+
#: ../admin/general-settings.php:79
|
| 426 |
+
msgid "\"Email Confirmation\" Landing Page:"
|
| 427 |
+
msgstr ""
|
| 428 |
+
|
| 429 |
+
#: ../admin/general-settings.php:84
|
| 430 |
+
msgid "Existing Pages"
|
| 431 |
+
msgstr ""
|
| 432 |
+
|
| 433 |
+
#: ../admin/general-settings.php:99
|
| 434 |
+
msgid ""
|
| 435 |
+
"Specify the page where the users will be directed when confirming the email "
|
| 436 |
+
"account. This page can differ from the register page(s) and can be changed "
|
| 437 |
+
"at any time. If none selected, a simple confirmation page will be displayed "
|
| 438 |
+
"for the user."
|
| 439 |
+
msgstr ""
|
| 440 |
+
|
| 441 |
+
#: ../admin/general-settings.php:110
|
| 442 |
+
msgid "\"Admin Approval\" Activated:"
|
| 443 |
+
msgstr ""
|
| 444 |
+
|
| 445 |
+
#: ../admin/general-settings.php:118
|
| 446 |
+
#, php-format
|
| 447 |
+
msgid ""
|
| 448 |
+
"You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
| 449 |
+
msgstr ""
|
| 450 |
+
|
| 451 |
+
#: ../admin/general-settings.php:130
|
| 452 |
+
msgid "\"Admin Approval\" Feature:"
|
| 453 |
+
msgstr ""
|
| 454 |
+
|
| 455 |
+
#: ../admin/general-settings.php:133
|
| 456 |
+
#, php-format
|
| 457 |
+
msgid ""
|
| 458 |
+
"You decide who is a user on your website. Get notified via email or approve "
|
| 459 |
+
"multiple users at once from the WordPress UI. Enable Admin Approval by "
|
| 460 |
+
"upgrading to %1$sHobbyist or PRO versions%2$s."
|
| 461 |
+
msgstr ""
|
| 462 |
+
|
| 463 |
+
#: ../admin/general-settings.php:140
|
| 464 |
+
msgid "Allow Users to Log in With:"
|
| 465 |
+
msgstr ""
|
| 466 |
+
|
| 467 |
+
#: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
|
| 468 |
+
#: ../features/admin-approval/class-admin-approval.php:177
|
| 469 |
+
#: ../features/email-confirmation/class-email-confirmation.php:153
|
| 470 |
+
#: ../modules/email-customizer/email-customizer.php:28
|
| 471 |
+
#: ../modules/user-listing/userlisting.php:94
|
| 472 |
+
#: ../modules/user-listing/userlisting.php:516
|
| 473 |
+
#: ../modules/user-listing/userlisting.php:1107
|
| 474 |
+
msgid "Username"
|
| 475 |
+
msgstr ""
|
| 476 |
+
|
| 477 |
+
#: ../admin/general-settings.php:145 ../front-end/login.php:134
|
| 478 |
+
#: ../modules/email-customizer/email-customizer.php:29
|
| 479 |
+
#: ../modules/user-listing/userlisting.php:522
|
| 480 |
+
#: ../modules/user-listing/userlisting.php:1108
|
| 481 |
+
msgid "Email"
|
| 482 |
+
msgstr ""
|
| 483 |
+
|
| 484 |
+
#: ../admin/general-settings.php:152
|
| 485 |
+
msgid "Minimum Password Length:"
|
| 486 |
+
msgstr ""
|
| 487 |
+
|
| 488 |
+
#: ../admin/general-settings.php:157
|
| 489 |
+
msgid ""
|
| 490 |
+
"Enter the minimum characters the password should have. Leave empty for no "
|
| 491 |
+
"minimum limit"
|
| 492 |
+
msgstr ""
|
| 493 |
+
|
| 494 |
+
#: ../admin/general-settings.php:164
|
| 495 |
+
msgid "Minimum Password Strength:"
|
| 496 |
+
msgstr ""
|
| 497 |
+
|
| 498 |
+
#: ../admin/general-settings.php:168
|
| 499 |
+
msgid "Disabled"
|
| 500 |
+
msgstr ""
|
| 501 |
+
|
| 502 |
+
#: ../admin/manage-fields.php:12
|
| 503 |
+
msgid "Manage Fields"
|
| 504 |
+
msgstr ""
|
| 505 |
+
|
| 506 |
+
#: ../admin/manage-fields.php:13
|
| 507 |
+
msgid "Manage Default and Extra Fields"
|
| 508 |
+
msgstr ""
|
| 509 |
+
|
| 510 |
+
#: ../admin/manage-fields.php:74
|
| 511 |
+
msgid "Field Title"
|
| 512 |
+
msgstr ""
|
| 513 |
+
|
| 514 |
+
#: ../admin/manage-fields.php:74
|
| 515 |
+
msgid "Title of the field"
|
| 516 |
+
msgstr ""
|
| 517 |
+
|
| 518 |
+
#: ../admin/manage-fields.php:75
|
| 519 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:243
|
| 520 |
+
#: ../modules/multiple-forms/register-forms.php:264
|
| 521 |
+
msgid "Field"
|
| 522 |
+
msgstr ""
|
| 523 |
+
|
| 524 |
+
#: ../admin/manage-fields.php:76
|
| 525 |
+
msgid "Meta-name"
|
| 526 |
+
msgstr ""
|
| 527 |
+
|
| 528 |
+
#: ../admin/manage-fields.php:76
|
| 529 |
+
msgid ""
|
| 530 |
+
"Use this in conjuction with WordPress functions to display the value in the "
|
| 531 |
+
"page of your choosing<br/>Auto-completed but in some cases editable (in "
|
| 532 |
+
"which case it must be uniqe)<br/>Changing this might take long in case of a "
|
| 533 |
+
"very big user-count"
|
| 534 |
+
msgstr ""
|
| 535 |
+
|
| 536 |
+
#: ../admin/manage-fields.php:77
|
| 537 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:244
|
| 538 |
+
#: ../modules/multiple-forms/register-forms.php:265
|
| 539 |
+
msgid "ID"
|
| 540 |
+
msgstr ""
|
| 541 |
+
|
| 542 |
+
#: ../admin/manage-fields.php:77
|
| 543 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:244
|
| 544 |
+
#: ../modules/multiple-forms/register-forms.php:265
|
| 545 |
+
msgid ""
|
| 546 |
+
"A unique, auto-generated ID for this particular field<br/>You can use this "
|
| 547 |
+
"in conjuction with filters to target this element if needed<br/>Can't be "
|
| 548 |
+
"edited"
|
| 549 |
+
msgstr ""
|
| 550 |
+
|
| 551 |
+
#: ../admin/manage-fields.php:78
|
| 552 |
+
msgid "Description"
|
| 553 |
+
msgstr ""
|
| 554 |
+
|
| 555 |
+
#: ../admin/manage-fields.php:78
|
| 556 |
+
msgid ""
|
| 557 |
+
"Enter a (detailed) description of the option for end users to read<br/"
|
| 558 |
+
">Optional"
|
| 559 |
+
msgstr ""
|
| 560 |
+
|
| 561 |
+
#: ../admin/manage-fields.php:79
|
| 562 |
+
msgid "Row Count"
|
| 563 |
+
msgstr ""
|
| 564 |
+
|
| 565 |
+
#: ../admin/manage-fields.php:79
|
| 566 |
+
msgid ""
|
| 567 |
+
"Specify the number of rows for a 'Textarea' field<br/>If not specified, "
|
| 568 |
+
"defaults to 5"
|
| 569 |
+
msgstr ""
|
| 570 |
+
|
| 571 |
+
#: ../admin/manage-fields.php:80
|
| 572 |
+
msgid "Allowed Image Extensions"
|
| 573 |
+
msgstr ""
|
| 574 |
+
|
| 575 |
+
#: ../admin/manage-fields.php:80
|
| 576 |
+
msgid ""
|
| 577 |
+
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
| 578 |
+
"ext2,.ext3<br/>If not specified, defaults to all existing image extensions (."
|
| 579 |
+
"*)"
|
| 580 |
+
msgstr ""
|
| 581 |
+
|
| 582 |
+
#: ../admin/manage-fields.php:81
|
| 583 |
+
msgid "Allowed Upload Extensions"
|
| 584 |
+
msgstr ""
|
| 585 |
+
|
| 586 |
+
#: ../admin/manage-fields.php:81
|
| 587 |
+
msgid ""
|
| 588 |
+
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
| 589 |
+
"ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
|
| 590 |
+
msgstr ""
|
| 591 |
+
|
| 592 |
+
#: ../admin/manage-fields.php:82
|
| 593 |
+
msgid "Avatar Size"
|
| 594 |
+
msgstr ""
|
| 595 |
+
|
| 596 |
+
#: ../admin/manage-fields.php:82
|
| 597 |
+
msgid ""
|
| 598 |
+
"Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
|
| 599 |
+
"specified, defaults to 100"
|
| 600 |
+
msgstr ""
|
| 601 |
+
|
| 602 |
+
#: ../admin/manage-fields.php:83
|
| 603 |
+
msgid "Date-format"
|
| 604 |
+
msgstr ""
|
| 605 |
+
|
| 606 |
+
#: ../admin/manage-fields.php:83
|
| 607 |
+
msgid ""
|
| 608 |
+
"Specify the format of the date when using Datepicker<br/>Valid options: mm/"
|
| 609 |
+
"dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not "
|
| 610 |
+
"specified, defaults to mm/dd/yy"
|
| 611 |
+
msgstr ""
|
| 612 |
+
|
| 613 |
+
#: ../admin/manage-fields.php:84
|
| 614 |
+
msgid "Terms of Agreement"
|
| 615 |
+
msgstr ""
|
| 616 |
+
|
| 617 |
+
#: ../admin/manage-fields.php:84
|
| 618 |
+
msgid ""
|
| 619 |
+
"Enter a detailed description of the temrs of agreement for the user to read."
|
| 620 |
+
"<br/>Links can be inserted by using standard HTML syntax: <a href="
|
| 621 |
+
"\"custom_url\">custom_text</a>"
|
| 622 |
+
msgstr ""
|
| 623 |
+
|
| 624 |
+
#: ../admin/manage-fields.php:85
|
| 625 |
+
msgid "Options"
|
| 626 |
+
msgstr ""
|
| 627 |
+
|
| 628 |
+
#: ../admin/manage-fields.php:85
|
| 629 |
+
msgid ""
|
| 630 |
+
"Enter a comma separated list of values<br/>This can be anything, as it is "
|
| 631 |
+
"hidden from the user, but should not contain special characters or "
|
| 632 |
+
"apostrophes"
|
| 633 |
+
msgstr ""
|
| 634 |
+
|
| 635 |
+
#: ../admin/manage-fields.php:86
|
| 636 |
+
msgid "Labels"
|
| 637 |
+
msgstr ""
|
| 638 |
+
|
| 639 |
+
#: ../admin/manage-fields.php:86
|
| 640 |
+
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
| 641 |
+
msgstr ""
|
| 642 |
+
|
| 643 |
+
#: ../admin/manage-fields.php:87
|
| 644 |
+
msgid "Public Key"
|
| 645 |
+
msgstr ""
|
| 646 |
+
|
| 647 |
+
#: ../admin/manage-fields.php:87
|
| 648 |
+
msgid ""
|
| 649 |
+
"The public key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
| 650 |
+
"target=\"_blank\">www.google.com/recaptcha</a>"
|
| 651 |
+
msgstr ""
|
| 652 |
+
|
| 653 |
+
#: ../admin/manage-fields.php:88
|
| 654 |
+
msgid "Private Key"
|
| 655 |
+
msgstr ""
|
| 656 |
+
|
| 657 |
+
#: ../admin/manage-fields.php:88
|
| 658 |
+
msgid ""
|
| 659 |
+
"The private key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
| 660 |
+
"target=\"_blank\">www.google.com/recaptcha</a>"
|
| 661 |
+
msgstr ""
|
| 662 |
+
|
| 663 |
+
#: ../admin/manage-fields.php:89
|
| 664 |
+
msgid "Default Value"
|
| 665 |
+
msgstr ""
|
| 666 |
+
|
| 667 |
+
#: ../admin/manage-fields.php:89
|
| 668 |
+
msgid "Default value of the field"
|
| 669 |
+
msgstr ""
|
| 670 |
+
|
| 671 |
+
#: ../admin/manage-fields.php:90
|
| 672 |
+
msgid "Default Option"
|
| 673 |
+
msgstr ""
|
| 674 |
+
|
| 675 |
+
#: ../admin/manage-fields.php:90
|
| 676 |
+
msgid "Specify the option which should be selected by default"
|
| 677 |
+
msgstr ""
|
| 678 |
+
|
| 679 |
+
#: ../admin/manage-fields.php:91
|
| 680 |
+
msgid "Default Option(s)"
|
| 681 |
+
msgstr ""
|
| 682 |
+
|
| 683 |
+
#: ../admin/manage-fields.php:91
|
| 684 |
+
msgid ""
|
| 685 |
+
"Specify the option which should be checked by default<br/>If there are "
|
| 686 |
+
"multiple values, separate them with a ',' (comma)"
|
| 687 |
+
msgstr ""
|
| 688 |
+
|
| 689 |
+
#: ../admin/manage-fields.php:92
|
| 690 |
+
msgid "Default Content"
|
| 691 |
+
msgstr ""
|
| 692 |
+
|
| 693 |
+
#: ../admin/manage-fields.php:92
|
| 694 |
+
msgid "Default value of the textarea"
|
| 695 |
+
msgstr ""
|
| 696 |
+
|
| 697 |
+
#: ../admin/manage-fields.php:93
|
| 698 |
+
msgid "Required"
|
| 699 |
+
msgstr ""
|
| 700 |
+
|
| 701 |
+
#: ../admin/manage-fields.php:93
|
| 702 |
+
msgid "Whether the field is required or not"
|
| 703 |
+
msgstr ""
|
| 704 |
+
|
| 705 |
+
#: ../admin/manage-fields.php:94
|
| 706 |
+
msgid "Overwrite Existing"
|
| 707 |
+
msgstr ""
|
| 708 |
+
|
| 709 |
+
#: ../admin/manage-fields.php:94
|
| 710 |
+
msgid ""
|
| 711 |
+
"Selecting 'Yes' will add the field to the list, but will overwrite any other "
|
| 712 |
+
"field in the database that has the same meta-name<br/>Use this at your own "
|
| 713 |
+
"risk"
|
| 714 |
+
msgstr ""
|
| 715 |
+
|
| 716 |
+
#: ../admin/manage-fields.php:100
|
| 717 |
+
msgid "Field Properties"
|
| 718 |
+
msgstr ""
|
| 719 |
+
|
| 720 |
+
#: ../admin/manage-fields.php:113
|
| 721 |
+
msgid "Registration & Edit Profile"
|
| 722 |
+
msgstr ""
|
| 723 |
+
|
| 724 |
+
#: ../admin/manage-fields.php:132
|
| 725 |
+
msgid "Name"
|
| 726 |
+
msgstr ""
|
| 727 |
+
|
| 728 |
+
#: ../admin/manage-fields.php:133
|
| 729 |
+
msgid "Usernames cannot be changed."
|
| 730 |
+
msgstr ""
|
| 731 |
+
|
| 732 |
+
#: ../admin/manage-fields.php:134
|
| 733 |
+
msgid "First Name"
|
| 734 |
+
msgstr ""
|
| 735 |
+
|
| 736 |
+
#: ../admin/manage-fields.php:135
|
| 737 |
+
msgid "Last Name"
|
| 738 |
+
msgstr ""
|
| 739 |
+
|
| 740 |
+
#: ../admin/manage-fields.php:136
|
| 741 |
+
msgid "Nickname"
|
| 742 |
+
msgstr ""
|
| 743 |
+
|
| 744 |
+
#: ../admin/manage-fields.php:137
|
| 745 |
+
msgid "Display name publicly as"
|
| 746 |
+
msgstr ""
|
| 747 |
+
|
| 748 |
+
#: ../admin/manage-fields.php:138
|
| 749 |
+
msgid "Contact Info"
|
| 750 |
+
msgstr ""
|
| 751 |
+
|
| 752 |
+
#: ../admin/manage-fields.php:139
|
| 753 |
+
#: ../features/admin-approval/class-admin-approval.php:180
|
| 754 |
+
#: ../features/email-confirmation/class-email-confirmation.php:154
|
| 755 |
+
#: ../modules/user-listing/userlisting.php:100
|
| 756 |
+
msgid "E-mail"
|
| 757 |
+
msgstr ""
|
| 758 |
+
|
| 759 |
+
#: ../admin/manage-fields.php:140
|
| 760 |
+
#: ../modules/email-customizer/email-customizer.php:31
|
| 761 |
+
#: ../modules/user-listing/userlisting.php:103
|
| 762 |
+
#: ../modules/user-listing/userlisting.php:537
|
| 763 |
+
#: ../modules/user-listing/userlisting.php:1109
|
| 764 |
+
msgid "Website"
|
| 765 |
+
msgstr ""
|
| 766 |
+
|
| 767 |
+
#: ../admin/manage-fields.php:144
|
| 768 |
+
msgid "AIM"
|
| 769 |
+
msgstr ""
|
| 770 |
+
|
| 771 |
+
#: ../admin/manage-fields.php:145
|
| 772 |
+
msgid "Yahoo IM"
|
| 773 |
+
msgstr ""
|
| 774 |
+
|
| 775 |
+
#: ../admin/manage-fields.php:146
|
| 776 |
+
msgid "Jabber / Google Talk"
|
| 777 |
+
msgstr ""
|
| 778 |
+
|
| 779 |
+
#: ../admin/manage-fields.php:149
|
| 780 |
+
msgid "About Yourself"
|
| 781 |
+
msgstr ""
|
| 782 |
+
|
| 783 |
+
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
| 784 |
+
#: ../modules/user-listing/userlisting.php:540
|
| 785 |
+
#: ../modules/user-listing/userlisting.php:1110
|
| 786 |
+
msgid "Biographical Info"
|
| 787 |
+
msgstr ""
|
| 788 |
+
|
| 789 |
+
#: ../admin/manage-fields.php:150
|
| 790 |
+
msgid ""
|
| 791 |
+
"Share a little biographical information to fill out your profile. This may "
|
| 792 |
+
"be shown publicly."
|
| 793 |
+
msgstr ""
|
| 794 |
+
|
| 795 |
+
#: ../admin/manage-fields.php:151 ../front-end/recover.php:75
|
| 796 |
+
#: ../modules/email-customizer/email-customizer.php:30
|
| 797 |
+
msgid "Password"
|
| 798 |
+
msgstr ""
|
| 799 |
+
|
| 800 |
+
#: ../admin/manage-fields.php:151
|
| 801 |
+
msgid "Type your password."
|
| 802 |
+
msgstr ""
|
| 803 |
+
|
| 804 |
+
#: ../admin/manage-fields.php:152 ../front-end/recover.php:80
|
| 805 |
+
msgid "Repeat Password"
|
| 806 |
+
msgstr ""
|
| 807 |
+
|
| 808 |
+
#: ../admin/manage-fields.php:152
|
| 809 |
+
msgid "Type your password again. "
|
| 810 |
+
msgstr ""
|
| 811 |
+
|
| 812 |
+
#: ../admin/manage-fields.php:279 ../admin/manage-fields.php:406
|
| 813 |
+
msgid "You must select a field\n"
|
| 814 |
+
msgstr ""
|
| 815 |
+
|
| 816 |
+
#: ../admin/manage-fields.php:289
|
| 817 |
+
msgid ""
|
| 818 |
+
"Please choose a different field type as this one already exists in your form "
|
| 819 |
+
"(must be unique)\n"
|
| 820 |
+
msgstr ""
|
| 821 |
+
|
| 822 |
+
#: ../admin/manage-fields.php:300
|
| 823 |
+
msgid "The entered avatar size is not between 20 and 200\n"
|
| 824 |
+
msgstr ""
|
| 825 |
+
|
| 826 |
+
#: ../admin/manage-fields.php:303
|
| 827 |
+
msgid "The entered avatar size is not numerical\n"
|
| 828 |
+
msgstr ""
|
| 829 |
+
|
| 830 |
+
#: ../admin/manage-fields.php:311
|
| 831 |
+
msgid "The entered row number is not numerical\n"
|
| 832 |
+
msgstr ""
|
| 833 |
+
|
| 834 |
+
#: ../admin/manage-fields.php:314
|
| 835 |
+
msgid "You must enter a value for the row number\n"
|
| 836 |
+
msgstr ""
|
| 837 |
+
|
| 838 |
+
#: ../admin/manage-fields.php:322
|
| 839 |
+
msgid "You must enter the public key\n"
|
| 840 |
+
msgstr ""
|
| 841 |
+
|
| 842 |
+
#: ../admin/manage-fields.php:324
|
| 843 |
+
msgid "You must enter the private key\n"
|
| 844 |
+
msgstr ""
|
| 845 |
+
|
| 846 |
+
#: ../admin/manage-fields.php:332
|
| 847 |
+
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
| 848 |
+
msgstr ""
|
| 849 |
+
|
| 850 |
+
#: ../admin/manage-fields.php:335
|
| 851 |
+
msgid "You must enter a value for the date-format\n"
|
| 852 |
+
msgstr ""
|
| 853 |
+
|
| 854 |
+
#: ../admin/manage-fields.php:356 ../admin/manage-fields.php:364
|
| 855 |
+
#: ../admin/manage-fields.php:374
|
| 856 |
+
msgid "That meta-name is already in use\n"
|
| 857 |
+
msgstr ""
|
| 858 |
+
|
| 859 |
+
#: ../admin/manage-fields.php:396
|
| 860 |
+
#, php-format
|
| 861 |
+
msgid ""
|
| 862 |
+
"The following option(s) did not coincide with the ones in the options list: "
|
| 863 |
+
"%s\n"
|
| 864 |
+
msgstr ""
|
| 865 |
+
|
| 866 |
+
#: ../admin/manage-fields.php:400
|
| 867 |
+
#, php-format
|
| 868 |
+
msgid ""
|
| 869 |
+
"The following option did not coincide with the ones in the options list: %s\n"
|
| 870 |
+
msgstr ""
|
| 871 |
+
|
| 872 |
+
#: ../admin/manage-fields.php:413
|
| 873 |
+
msgid "That field is already added in this form\n"
|
| 874 |
+
msgstr ""
|
| 875 |
+
|
| 876 |
+
#: ../admin/manage-fields.php:462
|
| 877 |
+
msgid ""
|
| 878 |
+
"<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
|
| 879 |
+
"required\">Required</pre>"
|
| 880 |
+
msgstr ""
|
| 881 |
+
|
| 882 |
+
#: ../admin/manage-fields.php:462
|
| 883 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:416
|
| 884 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:502
|
| 885 |
+
#: ../features/functions.php:590 ../features/functions.php:597
|
| 886 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:267
|
| 887 |
+
msgid "Edit"
|
| 888 |
+
msgstr ""
|
| 889 |
+
|
| 890 |
+
#: ../admin/manage-fields.php:462
|
| 891 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:416
|
| 892 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:503
|
| 893 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
| 894 |
+
#: ../features/admin-approval/class-admin-approval.php:235
|
| 895 |
+
#: ../features/email-confirmation/class-email-confirmation.php:106
|
| 896 |
+
#: ../features/email-confirmation/class-email-confirmation.php:202
|
| 897 |
+
#: ../features/functions.php:583 ../features/functions.php:597
|
| 898 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:267
|
| 899 |
+
msgid "Delete"
|
| 900 |
+
msgstr ""
|
| 901 |
+
|
| 902 |
+
#: ../admin/manage-fields.php:477
|
| 903 |
+
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
| 904 |
+
msgstr ""
|
| 905 |
+
|
| 906 |
+
#: ../admin/manage-fields.php:483
|
| 907 |
+
msgid ""
|
| 908 |
+
"If you're interested in displaying different fields in the registration and "
|
| 909 |
+
"edit profile forms, please use the Multiple Registration & Edit Profile "
|
| 910 |
+
"Forms Addon."
|
| 911 |
+
msgstr ""
|
| 912 |
+
|
| 913 |
+
#: ../admin/register-version.php:11
|
| 914 |
+
msgid "Register Your Version"
|
| 915 |
+
msgstr ""
|
| 916 |
+
|
| 917 |
+
#: ../admin/register-version.php:11
|
| 918 |
+
msgid "Register Version"
|
| 919 |
+
msgstr ""
|
| 920 |
+
|
| 921 |
+
#: ../admin/register-version.php:57
|
| 922 |
+
#, php-format
|
| 923 |
+
msgid ""
|
| 924 |
+
"Now that you acquired a copy of %s, you should take the time and register it "
|
| 925 |
+
"with the serial number you received"
|
| 926 |
+
msgstr ""
|
| 927 |
+
|
| 928 |
+
#: ../admin/register-version.php:58
|
| 929 |
+
msgid ""
|
| 930 |
+
"If you register this version of Profile Builder, you'll receive information "
|
| 931 |
+
"regarding upgrades, patches, and technical support."
|
| 932 |
+
msgstr ""
|
| 933 |
+
|
| 934 |
+
#: ../admin/register-version.php:60
|
| 935 |
+
msgid " Serial Number:"
|
| 936 |
+
msgstr ""
|
| 937 |
+
|
| 938 |
+
#: ../admin/register-version.php:65
|
| 939 |
+
msgid "The serial number was successfully validated!"
|
| 940 |
+
msgstr ""
|
| 941 |
+
|
| 942 |
+
#: ../admin/register-version.php:67
|
| 943 |
+
msgid "The serial number entered couldn't be validated!"
|
| 944 |
+
msgstr ""
|
| 945 |
+
|
| 946 |
+
#: ../admin/register-version.php:69
|
| 947 |
+
msgid "The serial number couldn't be validated because it expired!"
|
| 948 |
+
msgstr ""
|
| 949 |
+
|
| 950 |
+
#: ../admin/register-version.php:71
|
| 951 |
+
msgid ""
|
| 952 |
+
"The serial number couldn't be validated because process timed out. This is "
|
| 953 |
+
"possible due to the server being down. Please try again later!"
|
| 954 |
+
msgstr ""
|
| 955 |
+
|
| 956 |
+
#: ../admin/register-version.php:73
|
| 957 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
| 958 |
+
msgstr ""
|
| 959 |
+
|
| 960 |
+
#: ../admin/register-version.php:216
|
| 961 |
+
#, php-format
|
| 962 |
+
msgid ""
|
| 963 |
+
"<p>Your <strong>Profile Builder</strong> serial number is invalid or "
|
| 964 |
+
"missing. <br/>Please %1$sregister your copy%2$s of Profile Builder to "
|
| 965 |
+
"receive access to automatic updates and support. Need a license key? "
|
| 966 |
+
"%3$sPurchase one now%4$s</p>"
|
| 967 |
+
msgstr ""
|
| 968 |
+
|
| 969 |
+
#: ../admin/register-version.php:219
|
| 970 |
+
#, php-format
|
| 971 |
+
msgid ""
|
| 972 |
+
"<p>Your <strong>Profile Builder</strong> licence has expired. <br/>Please "
|
| 973 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
| 974 |
+
"support. %3$sPurchase one now%4$s %5$sDismiss%6$s</p>"
|
| 975 |
+
msgstr ""
|
| 976 |
+
|
| 977 |
+
#: ../admin/register-version.php:224
|
| 978 |
+
#, php-format
|
| 979 |
+
msgid ""
|
| 980 |
+
"<p>Your <strong>Profile Builder</strong> serial number is about to expire on "
|
| 981 |
+
"%5$s. <br/>Please %1$sRenew Your Licence%2$s to receive access to automatic "
|
| 982 |
+
"updates and support. %3$sPurchase one now%4$s</p>"
|
| 983 |
+
msgstr ""
|
| 984 |
+
|
| 985 |
+
#: ../assets/lib/wck-api/fields/country select.php:14
|
| 986 |
+
#: ../assets/lib/wck-api/fields/cpt select.php:17
|
| 987 |
+
#: ../assets/lib/wck-api/fields/select.php:14
|
| 988 |
+
#: ../assets/lib/wck-api/fields/user select.php:15
|
| 989 |
+
msgid "...Choose"
|
| 990 |
+
msgstr ""
|
| 991 |
+
|
| 992 |
+
#: ../assets/lib/wck-api/fields/nested repeater.php:8
|
| 993 |
+
#, php-format
|
| 994 |
+
msgid "You can add the information for the %s after you add a entry"
|
| 995 |
+
msgstr ""
|
| 996 |
+
|
| 997 |
+
#: ../assets/lib/wck-api/fields/upload.php:31
|
| 998 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
|
| 999 |
+
msgid "Remove"
|
| 1000 |
+
msgstr ""
|
| 1001 |
+
|
| 1002 |
+
#: ../assets/lib/wck-api/fields/upload.php:48
|
| 1003 |
+
msgid "Upload "
|
| 1004 |
+
msgstr ""
|
| 1005 |
+
|
| 1006 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:416
|
| 1007 |
+
#: ../features/functions.php:597
|
| 1008 |
+
msgid "Content"
|
| 1009 |
+
msgstr ""
|
| 1010 |
+
|
| 1011 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:502
|
| 1012 |
+
msgid "Edit this item"
|
| 1013 |
+
msgstr ""
|
| 1014 |
+
|
| 1015 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:503
|
| 1016 |
+
msgid "Delete this item"
|
| 1017 |
+
msgstr ""
|
| 1018 |
+
|
| 1019 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:644
|
| 1020 |
+
msgid "Please enter a value for the required field "
|
| 1021 |
+
msgstr ""
|
| 1022 |
+
|
| 1023 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1009
|
| 1024 |
+
msgid "Select File"
|
| 1025 |
+
msgstr ""
|
| 1026 |
+
|
| 1027 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
|
| 1028 |
+
msgid "Syncronize WCK"
|
| 1029 |
+
msgstr ""
|
| 1030 |
+
|
| 1031 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
|
| 1032 |
+
msgid "Syncronize WCK Translation"
|
| 1033 |
+
msgstr ""
|
| 1034 |
+
|
| 1035 |
+
#: ../features/admin-approval/admin-approval.php:7
|
| 1036 |
+
#: ../features/admin-approval/class-admin-approval.php:489
|
| 1037 |
+
msgid "Admin Approval"
|
| 1038 |
+
msgstr ""
|
| 1039 |
+
|
| 1040 |
+
#: ../features/admin-approval/admin-approval.php:22
|
| 1041 |
+
#: ../features/email-confirmation/email-confirmation.php:58
|
| 1042 |
+
msgid "Do you want to"
|
| 1043 |
+
msgstr ""
|
| 1044 |
+
|
| 1045 |
+
#: ../features/admin-approval/admin-approval.php:45
|
| 1046 |
+
msgid "Your session has expired! Please refresh the page and try again"
|
| 1047 |
+
msgstr ""
|
| 1048 |
+
|
| 1049 |
+
#: ../features/admin-approval/admin-approval.php:56
|
| 1050 |
+
msgid "User successfully approved!"
|
| 1051 |
+
msgstr ""
|
| 1052 |
+
|
| 1053 |
+
#: ../features/admin-approval/admin-approval.php:64
|
| 1054 |
+
msgid "User successfully unapproved!"
|
| 1055 |
+
msgstr ""
|
| 1056 |
+
|
| 1057 |
+
#: ../features/admin-approval/admin-approval.php:70
|
| 1058 |
+
msgid "User successfully deleted!"
|
| 1059 |
+
msgstr ""
|
| 1060 |
+
|
| 1061 |
+
#: ../features/admin-approval/admin-approval.php:75
|
| 1062 |
+
#: ../features/admin-approval/admin-approval.php:140
|
| 1063 |
+
#: ../features/email-confirmation/email-confirmation.php:122
|
| 1064 |
+
msgid "You either don't have permission for that action or there was an error!"
|
| 1065 |
+
msgstr ""
|
| 1066 |
+
|
| 1067 |
+
#: ../features/admin-approval/admin-approval.php:87
|
| 1068 |
+
msgid "Your session has expired! Please refresh the page and try again."
|
| 1069 |
+
msgstr ""
|
| 1070 |
+
|
| 1071 |
+
#: ../features/admin-approval/admin-approval.php:107
|
| 1072 |
+
msgid "Users successfully approved!"
|
| 1073 |
+
msgstr ""
|
| 1074 |
+
|
| 1075 |
+
#: ../features/admin-approval/admin-approval.php:122
|
| 1076 |
+
msgid "Users successfully unapproved!"
|
| 1077 |
+
msgstr ""
|
| 1078 |
+
|
| 1079 |
+
#: ../features/admin-approval/admin-approval.php:135
|
| 1080 |
+
msgid "Users successfully deleted!"
|
| 1081 |
+
msgstr ""
|
| 1082 |
+
|
| 1083 |
+
#: ../features/admin-approval/admin-approval.php:150
|
| 1084 |
+
#, php-format
|
| 1085 |
+
msgid "Your account on %1$s has been approved!"
|
| 1086 |
+
msgstr ""
|
| 1087 |
+
|
| 1088 |
+
#: ../features/admin-approval/admin-approval.php:151
|
| 1089 |
+
#: ../features/admin-approval/admin-approval.php:154
|
| 1090 |
+
msgid "approved"
|
| 1091 |
+
msgstr ""
|
| 1092 |
+
|
| 1093 |
+
#: ../features/admin-approval/admin-approval.php:153
|
| 1094 |
+
#, php-format
|
| 1095 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
| 1096 |
+
msgstr ""
|
| 1097 |
+
|
| 1098 |
+
#: ../features/admin-approval/admin-approval.php:157
|
| 1099 |
+
#, php-format
|
| 1100 |
+
msgid "Your account on %1$s has been unapproved!"
|
| 1101 |
+
msgstr ""
|
| 1102 |
+
|
| 1103 |
+
#: ../features/admin-approval/admin-approval.php:158
|
| 1104 |
+
#: ../features/admin-approval/admin-approval.php:161
|
| 1105 |
+
msgid "unapproved"
|
| 1106 |
+
msgstr ""
|
| 1107 |
+
|
| 1108 |
+
#: ../features/admin-approval/admin-approval.php:160
|
| 1109 |
+
#, php-format
|
| 1110 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
| 1111 |
+
msgstr ""
|
| 1112 |
+
|
| 1113 |
+
#: ../features/admin-approval/admin-approval.php:177
|
| 1114 |
+
msgid ""
|
| 1115 |
+
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
| 1116 |
+
"before you can log in."
|
| 1117 |
+
msgstr ""
|
| 1118 |
+
|
| 1119 |
+
#: ../features/admin-approval/admin-approval.php:189
|
| 1120 |
+
msgid ""
|
| 1121 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
| 1122 |
+
"\"Password Recovery\" feature."
|
| 1123 |
+
msgstr ""
|
| 1124 |
+
|
| 1125 |
+
#: ../features/admin-approval/class-admin-approval.php:119
|
| 1126 |
+
msgid "View or Edit"
|
| 1127 |
+
msgstr ""
|
| 1128 |
+
|
| 1129 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
| 1130 |
+
msgid "delete this user?"
|
| 1131 |
+
msgstr ""
|
| 1132 |
+
|
| 1133 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
| 1134 |
+
msgid "unapprove this user?"
|
| 1135 |
+
msgstr ""
|
| 1136 |
+
|
| 1137 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
| 1138 |
+
#: ../features/admin-approval/class-admin-approval.php:234
|
| 1139 |
+
msgid "Unapprove"
|
| 1140 |
+
msgstr ""
|
| 1141 |
+
|
| 1142 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
| 1143 |
+
msgid "approve this user?"
|
| 1144 |
+
msgstr ""
|
| 1145 |
+
|
| 1146 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
| 1147 |
+
#: ../features/admin-approval/class-admin-approval.php:233
|
| 1148 |
+
msgid "Approve"
|
| 1149 |
+
msgstr ""
|
| 1150 |
+
|
| 1151 |
+
#: ../features/admin-approval/class-admin-approval.php:178
|
| 1152 |
+
#: ../modules/user-listing/userlisting.php:528
|
| 1153 |
+
#: ../modules/user-listing/userlisting.php:1112
|
| 1154 |
+
msgid "Firstname"
|
| 1155 |
+
msgstr ""
|
| 1156 |
+
|
| 1157 |
+
#: ../features/admin-approval/class-admin-approval.php:179
|
| 1158 |
+
#: ../modules/user-listing/userlisting.php:531
|
| 1159 |
+
#: ../modules/user-listing/userlisting.php:1113
|
| 1160 |
+
msgid "Lastname"
|
| 1161 |
+
msgstr ""
|
| 1162 |
+
|
| 1163 |
+
#: ../features/admin-approval/class-admin-approval.php:181
|
| 1164 |
+
#: ../modules/user-listing/userlisting.php:117
|
| 1165 |
+
msgid "Role"
|
| 1166 |
+
msgstr ""
|
| 1167 |
+
|
| 1168 |
+
#: ../features/admin-approval/class-admin-approval.php:182
|
| 1169 |
+
#: ../features/email-confirmation/class-email-confirmation.php:155
|
| 1170 |
+
msgid "Registered"
|
| 1171 |
+
msgstr ""
|
| 1172 |
+
|
| 1173 |
+
#: ../features/admin-approval/class-admin-approval.php:183
|
| 1174 |
+
msgid "User-status"
|
| 1175 |
+
msgstr ""
|
| 1176 |
+
|
| 1177 |
+
#: ../features/admin-approval/class-admin-approval.php:263
|
| 1178 |
+
msgid "Do you want to bulk approve the selected users?"
|
| 1179 |
+
msgstr ""
|
| 1180 |
+
|
| 1181 |
+
#: ../features/admin-approval/class-admin-approval.php:271
|
| 1182 |
+
msgid "Do you want to bulk unapprove the selected users?"
|
| 1183 |
+
msgstr ""
|
| 1184 |
+
|
| 1185 |
+
#: ../features/admin-approval/class-admin-approval.php:277
|
| 1186 |
+
msgid "Do you want to bulk delete the selected users?"
|
| 1187 |
+
msgstr ""
|
| 1188 |
+
|
| 1189 |
+
#: ../features/admin-approval/class-admin-approval.php:285
|
| 1190 |
+
#: ../features/email-confirmation/class-email-confirmation.php:263
|
| 1191 |
+
msgid "Sorry, but you don't have permission to do that!"
|
| 1192 |
+
msgstr ""
|
| 1193 |
+
|
| 1194 |
+
#: ../features/admin-approval/class-admin-approval.php:318
|
| 1195 |
+
msgid "Approved"
|
| 1196 |
+
msgstr ""
|
| 1197 |
+
|
| 1198 |
+
#: ../features/admin-approval/class-admin-approval.php:320
|
| 1199 |
+
msgid "Unapproved"
|
| 1200 |
+
msgstr ""
|
| 1201 |
+
|
| 1202 |
+
#: ../features/admin-approval/class-admin-approval.php:492
|
| 1203 |
+
#: ../features/email-confirmation/class-email-confirmation.php:448
|
| 1204 |
+
msgid "All Users"
|
| 1205 |
+
msgstr ""
|
| 1206 |
+
|
| 1207 |
+
#: ../features/class-list-table.php:184
|
| 1208 |
+
msgid "No items found."
|
| 1209 |
+
msgstr ""
|
| 1210 |
+
|
| 1211 |
+
#: ../features/class-list-table.php:308
|
| 1212 |
+
msgid "Bulk Actions"
|
| 1213 |
+
msgstr ""
|
| 1214 |
+
|
| 1215 |
+
#: ../features/class-list-table.php:318
|
| 1216 |
+
msgid "Apply"
|
| 1217 |
+
msgstr ""
|
| 1218 |
+
|
| 1219 |
+
#: ../features/class-list-table.php:402
|
| 1220 |
+
msgid "Show all dates"
|
| 1221 |
+
msgstr ""
|
| 1222 |
+
|
| 1223 |
+
#: ../features/class-list-table.php:415
|
| 1224 |
+
#, php-format
|
| 1225 |
+
msgid "%1$s %2$d"
|
| 1226 |
+
msgstr ""
|
| 1227 |
+
|
| 1228 |
+
#: ../features/class-list-table.php:431
|
| 1229 |
+
msgid "List View"
|
| 1230 |
+
msgstr ""
|
| 1231 |
+
|
| 1232 |
+
#: ../features/class-list-table.php:432
|
| 1233 |
+
msgid "Excerpt View"
|
| 1234 |
+
msgstr ""
|
| 1235 |
+
|
| 1236 |
+
#: ../features/class-list-table.php:458
|
| 1237 |
+
#, php-format
|
| 1238 |
+
msgid "%s pending"
|
| 1239 |
+
msgstr ""
|
| 1240 |
+
|
| 1241 |
+
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
| 1242 |
+
msgid "1 item"
|
| 1243 |
+
msgstr ""
|
| 1244 |
+
|
| 1245 |
+
#: ../features/class-list-table.php:566
|
| 1246 |
+
#, php-format
|
| 1247 |
+
msgid "%1$s of %2$s"
|
| 1248 |
+
msgstr ""
|
| 1249 |
+
|
| 1250 |
+
#: ../features/class-list-table.php:713
|
| 1251 |
+
msgid "Select All"
|
| 1252 |
+
msgstr ""
|
| 1253 |
+
|
| 1254 |
+
#: ../features/email-confirmation/class-email-confirmation.php:106
|
| 1255 |
+
msgid "delete this user from the _signups table?"
|
| 1256 |
+
msgstr ""
|
| 1257 |
+
|
| 1258 |
+
#: ../features/email-confirmation/class-email-confirmation.php:107
|
| 1259 |
+
msgid "confirm this email yourself?"
|
| 1260 |
+
msgstr ""
|
| 1261 |
+
|
| 1262 |
+
#: ../features/email-confirmation/class-email-confirmation.php:107
|
| 1263 |
+
#: ../features/email-confirmation/class-email-confirmation.php:203
|
| 1264 |
+
msgid "Confirm Email"
|
| 1265 |
+
msgstr ""
|
| 1266 |
+
|
| 1267 |
+
#: ../features/email-confirmation/class-email-confirmation.php:108
|
| 1268 |
+
msgid "resend the activation link?"
|
| 1269 |
+
msgstr ""
|
| 1270 |
+
|
| 1271 |
+
#: ../features/email-confirmation/class-email-confirmation.php:108
|
| 1272 |
+
#: ../features/email-confirmation/class-email-confirmation.php:204
|
| 1273 |
+
msgid "Resend Activation Email"
|
| 1274 |
+
msgstr ""
|
| 1275 |
+
|
| 1276 |
+
#: ../features/email-confirmation/class-email-confirmation.php:234
|
| 1277 |
+
#, php-format
|
| 1278 |
+
msgid "%s couldn't be deleted"
|
| 1279 |
+
msgstr ""
|
| 1280 |
+
|
| 1281 |
+
#: ../features/email-confirmation/class-email-confirmation.php:238
|
| 1282 |
+
msgid "All users have been successfully deleted"
|
| 1283 |
+
msgstr ""
|
| 1284 |
+
|
| 1285 |
+
#: ../features/email-confirmation/class-email-confirmation.php:248
|
| 1286 |
+
msgid "The selected users have been activated"
|
| 1287 |
+
msgstr ""
|
| 1288 |
+
|
| 1289 |
+
#: ../features/email-confirmation/class-email-confirmation.php:259
|
| 1290 |
+
msgid "The selected users have had their activation emails resent"
|
| 1291 |
+
msgstr ""
|
| 1292 |
+
|
| 1293 |
+
#: ../features/email-confirmation/class-email-confirmation.php:445
|
| 1294 |
+
#: ../features/email-confirmation/email-confirmation.php:47
|
| 1295 |
+
msgid "Users with Unconfirmed Email Address"
|
| 1296 |
+
msgstr ""
|
| 1297 |
+
|
| 1298 |
+
#: ../features/email-confirmation/email-confirmation.php:97
|
| 1299 |
+
msgid "There was an error performing that action!"
|
| 1300 |
+
msgstr ""
|
| 1301 |
+
|
| 1302 |
+
#: ../features/email-confirmation/email-confirmation.php:105
|
| 1303 |
+
msgid "The selected user couldn't be deleted"
|
| 1304 |
+
msgstr ""
|
| 1305 |
+
|
| 1306 |
+
#: ../features/email-confirmation/email-confirmation.php:116
|
| 1307 |
+
msgid "Email notification resent to user"
|
| 1308 |
+
msgstr ""
|
| 1309 |
+
|
| 1310 |
+
#: ../features/email-confirmation/email-confirmation.php:349
|
| 1311 |
+
#, php-format
|
| 1312 |
+
msgid "[%1$s] Activate %2$s"
|
| 1313 |
+
msgstr ""
|
| 1314 |
+
|
| 1315 |
+
#: ../features/email-confirmation/email-confirmation.php:350
|
| 1316 |
+
#, php-format
|
| 1317 |
+
msgid ""
|
| 1318 |
+
"To activate your user, please click the following link:\n"
|
| 1319 |
+
"\n"
|
| 1320 |
+
"%s%s%s\n"
|
| 1321 |
+
"\n"
|
| 1322 |
+
"After you activate it you will receive yet *another email* with your login."
|
| 1323 |
+
msgstr ""
|
| 1324 |
+
|
| 1325 |
+
#: ../features/email-confirmation/email-confirmation.php:387
|
| 1326 |
+
#: ../front-end/register.php:67
|
| 1327 |
+
msgid "Could not create user!"
|
| 1328 |
+
msgstr ""
|
| 1329 |
+
|
| 1330 |
+
#: ../features/email-confirmation/email-confirmation.php:390
|
| 1331 |
+
msgid "That username is already activated!"
|
| 1332 |
+
msgstr ""
|
| 1333 |
+
|
| 1334 |
+
#: ../features/email-confirmation/email-confirmation.php:410
|
| 1335 |
+
msgid "There was an error while trying to activate the user"
|
| 1336 |
+
msgstr ""
|
| 1337 |
+
|
| 1338 |
+
#: ../features/email-confirmation/email-confirmation.php:448
|
| 1339 |
+
#: ../modules/email-customizer/admin-email-customizer.php:73
|
| 1340 |
+
msgid "A new subscriber has (been) registered!"
|
| 1341 |
+
msgstr ""
|
| 1342 |
+
|
| 1343 |
+
#: ../features/email-confirmation/email-confirmation.php:451
|
| 1344 |
+
#, php-format
|
| 1345 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
| 1346 |
+
msgstr ""
|
| 1347 |
+
|
| 1348 |
+
#: ../features/email-confirmation/email-confirmation.php:456
|
| 1349 |
+
msgid ""
|
| 1350 |
+
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
| 1351 |
+
"please remember that you need to approve this user before he/she can log in!"
|
| 1352 |
+
msgstr ""
|
| 1353 |
+
|
| 1354 |
+
#: ../features/email-confirmation/email-confirmation.php:471
|
| 1355 |
+
#, php-format
|
| 1356 |
+
msgid "[%1$s] Your new account information"
|
| 1357 |
+
msgstr ""
|
| 1358 |
+
|
| 1359 |
+
#: ../features/email-confirmation/email-confirmation.php:474
|
| 1360 |
+
#, php-format
|
| 1361 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
| 1362 |
+
msgstr ""
|
| 1363 |
+
|
| 1364 |
+
#: ../features/email-confirmation/email-confirmation.php:479
|
| 1365 |
+
#: ../front-end/register.php:93
|
| 1366 |
+
msgid ""
|
| 1367 |
+
"Before you can access your account, an administrator needs to approve it. "
|
| 1368 |
+
"You will be notified via email."
|
| 1369 |
+
msgstr ""
|
| 1370 |
+
|
| 1371 |
+
#: ../features/functions.php:193 ../features/functions.php:194
|
| 1372 |
+
msgid "Profile Builder"
|
| 1373 |
+
msgstr ""
|
| 1374 |
+
|
| 1375 |
+
#: ../features/functions.php:261
|
| 1376 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
| 1377 |
+
msgstr ""
|
| 1378 |
+
|
| 1379 |
+
#: ../features/functions.php:272
|
| 1380 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
| 1381 |
+
msgstr ""
|
| 1382 |
+
|
| 1383 |
+
#: ../features/functions.php:443
|
| 1384 |
+
msgid "Strength indicator"
|
| 1385 |
+
msgstr ""
|
| 1386 |
+
|
| 1387 |
+
#: ../features/functions.php:468
|
| 1388 |
+
msgid "Very Weak"
|
| 1389 |
+
msgstr ""
|
| 1390 |
+
|
| 1391 |
+
#: ../features/functions.php:482
|
| 1392 |
+
msgid "Minimum length of "
|
| 1393 |
+
msgstr ""
|
| 1394 |
+
|
| 1395 |
+
#: ../features/functions.php:576
|
| 1396 |
+
msgid "Cancel"
|
| 1397 |
+
msgstr ""
|
| 1398 |
+
|
| 1399 |
+
#: ../features/login-widget/login-widget.php:10
|
| 1400 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
| 1401 |
+
msgstr ""
|
| 1402 |
+
|
| 1403 |
+
#: ../features/login-widget/login-widget.php:15
|
| 1404 |
+
msgid "Profile Builder Login Widget"
|
| 1405 |
+
msgstr ""
|
| 1406 |
+
|
| 1407 |
+
#: ../features/login-widget/login-widget.php:40
|
| 1408 |
+
#: ../front-end/class-formbuilder.php:274
|
| 1409 |
+
msgid "Register"
|
| 1410 |
+
msgstr ""
|
| 1411 |
+
|
| 1412 |
+
#: ../features/login-widget/login-widget.php:41
|
| 1413 |
+
msgid "Don't have an account?"
|
| 1414 |
+
msgstr ""
|
| 1415 |
+
|
| 1416 |
+
#: ../features/login-widget/login-widget.php:46
|
| 1417 |
+
msgid "Lost Password"
|
| 1418 |
+
msgstr ""
|
| 1419 |
+
|
| 1420 |
+
#: ../features/login-widget/login-widget.php:46
|
| 1421 |
+
msgid "Lost Your Password?"
|
| 1422 |
+
msgstr ""
|
| 1423 |
+
|
| 1424 |
+
#: ../features/login-widget/login-widget.php:79
|
| 1425 |
+
msgid "Title:"
|
| 1426 |
+
msgstr ""
|
| 1427 |
+
|
| 1428 |
+
#: ../features/login-widget/login-widget.php:84
|
| 1429 |
+
msgid "After login redirect URL (optional):"
|
| 1430 |
+
msgstr ""
|
| 1431 |
+
|
| 1432 |
+
#: ../features/login-widget/login-widget.php:89
|
| 1433 |
+
msgid "Register page URL (optional):"
|
| 1434 |
+
msgstr ""
|
| 1435 |
+
|
| 1436 |
+
#: ../features/login-widget/login-widget.php:94
|
| 1437 |
+
msgid "Password Recovery page URL (optional):"
|
| 1438 |
+
msgstr ""
|
| 1439 |
+
|
| 1440 |
+
#: ../features/upgrades/upgrades-functions.php:91
|
| 1441 |
+
#: ../features/upgrades/upgrades-functions.php:134
|
| 1442 |
+
msgid "The usernames cannot be changed."
|
| 1443 |
+
msgstr ""
|
| 1444 |
+
|
| 1445 |
+
#: ../front-end/class-formbuilder.php:83
|
| 1446 |
+
msgid "Only an administrator can add new users."
|
| 1447 |
+
msgstr ""
|
| 1448 |
+
|
| 1449 |
+
#: ../front-end/class-formbuilder.php:93
|
| 1450 |
+
msgid "Users can register themselves or you can manually create users here."
|
| 1451 |
+
msgstr ""
|
| 1452 |
+
|
| 1453 |
+
#: ../front-end/class-formbuilder.php:96
|
| 1454 |
+
msgid ""
|
| 1455 |
+
"Users cannot currently register themselves, but you can manually create "
|
| 1456 |
+
"users here."
|
| 1457 |
+
msgstr ""
|
| 1458 |
+
|
| 1459 |
+
#: ../front-end/class-formbuilder.php:108
|
| 1460 |
+
#, php-format
|
| 1461 |
+
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
| 1462 |
+
msgstr ""
|
| 1463 |
+
|
| 1464 |
+
#: ../front-end/class-formbuilder.php:108
|
| 1465 |
+
msgid "Log out of this account."
|
| 1466 |
+
msgstr ""
|
| 1467 |
+
|
| 1468 |
+
#: ../front-end/class-formbuilder.php:108
|
| 1469 |
+
msgid "Logout"
|
| 1470 |
+
msgstr ""
|
| 1471 |
+
|
| 1472 |
+
#: ../front-end/class-formbuilder.php:114
|
| 1473 |
+
msgid "You must be logged in to edit your profile."
|
| 1474 |
+
msgstr ""
|
| 1475 |
+
|
| 1476 |
+
#: ../front-end/class-formbuilder.php:137
|
| 1477 |
+
msgid "here"
|
| 1478 |
+
msgstr ""
|
| 1479 |
+
|
| 1480 |
+
#: ../front-end/class-formbuilder.php:139
|
| 1481 |
+
#, php-format
|
| 1482 |
+
msgid ""
|
| 1483 |
+
"You will soon be redirected automatically. If you see this page for more "
|
| 1484 |
+
"than %1$d seconds, please click %2$s.%3$s"
|
| 1485 |
+
msgstr ""
|
| 1486 |
+
|
| 1487 |
+
#: ../front-end/class-formbuilder.php:224
|
| 1488 |
+
#, php-format
|
| 1489 |
+
msgid "The account %1s has been successfully created!"
|
| 1490 |
+
msgstr ""
|
| 1491 |
+
|
| 1492 |
+
#: ../front-end/class-formbuilder.php:227
|
| 1493 |
+
#: ../front-end/class-formbuilder.php:233
|
| 1494 |
+
#, php-format
|
| 1495 |
+
msgid ""
|
| 1496 |
+
"Before you can access your account %1s, you need to confirm your email "
|
| 1497 |
+
"address. Please check your inbox and click the activation link."
|
| 1498 |
+
msgstr ""
|
| 1499 |
+
|
| 1500 |
+
#: ../front-end/class-formbuilder.php:230
|
| 1501 |
+
#, php-format
|
| 1502 |
+
msgid ""
|
| 1503 |
+
"Before you can access your account %1s, an administrator has to approve it. "
|
| 1504 |
+
"You will be notified via email."
|
| 1505 |
+
msgstr ""
|
| 1506 |
+
|
| 1507 |
+
#: ../front-end/class-formbuilder.php:243
|
| 1508 |
+
msgid "Your profile has been successfully updated!"
|
| 1509 |
+
msgstr ""
|
| 1510 |
+
|
| 1511 |
+
#: ../front-end/class-formbuilder.php:253
|
| 1512 |
+
msgid "There was an error in the submitted form"
|
| 1513 |
+
msgstr ""
|
| 1514 |
+
|
| 1515 |
+
#: ../front-end/class-formbuilder.php:274
|
| 1516 |
+
msgid "Add User"
|
| 1517 |
+
msgstr ""
|
| 1518 |
+
|
| 1519 |
+
#: ../front-end/class-formbuilder.php:277
|
| 1520 |
+
msgid "Update"
|
| 1521 |
+
msgstr ""
|
| 1522 |
+
|
| 1523 |
+
#: ../front-end/class-formbuilder.php:314
|
| 1524 |
+
#: ../front-end/extra-fields/extra-fields.php:33
|
| 1525 |
+
msgid "The avatar was successfully deleted!"
|
| 1526 |
+
msgstr ""
|
| 1527 |
+
|
| 1528 |
+
#: ../front-end/class-formbuilder.php:314
|
| 1529 |
+
#: ../front-end/extra-fields/extra-fields.php:35
|
| 1530 |
+
msgid "The following attachment was successfully deleted:"
|
| 1531 |
+
msgstr ""
|
| 1532 |
+
|
| 1533 |
+
#: ../front-end/class-formbuilder.php:326
|
| 1534 |
+
msgid "Send these credentials via email."
|
| 1535 |
+
msgstr ""
|
| 1536 |
+
|
| 1537 |
+
#: ../front-end/default-fields/email/email.php:42
|
| 1538 |
+
msgid "The email you entered is not a valid email address."
|
| 1539 |
+
msgstr ""
|
| 1540 |
+
|
| 1541 |
+
#: ../front-end/default-fields/email/email.php:49
|
| 1542 |
+
msgid "This email is already reserved to be used soon."
|
| 1543 |
+
msgstr ""
|
| 1544 |
+
|
| 1545 |
+
#: ../front-end/default-fields/email/email.php:49
|
| 1546 |
+
#: ../front-end/default-fields/email/email.php:55
|
| 1547 |
+
#: ../front-end/default-fields/email/email.php:62
|
| 1548 |
+
#: ../front-end/default-fields/username/username.php:44
|
| 1549 |
+
#: ../front-end/default-fields/username/username.php:51
|
| 1550 |
+
msgid "Please try a different one!"
|
| 1551 |
+
msgstr ""
|
| 1552 |
+
|
| 1553 |
+
#: ../front-end/default-fields/email/email.php:55
|
| 1554 |
+
#: ../front-end/default-fields/email/email.php:62
|
| 1555 |
+
msgid "This email is already in use."
|
| 1556 |
+
msgstr ""
|
| 1557 |
+
|
| 1558 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:35
|
| 1559 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:39
|
| 1560 |
+
msgid "The passwords do not match"
|
| 1561 |
+
msgstr ""
|
| 1562 |
+
|
| 1563 |
+
#: ../front-end/default-fields/password/password.php:44
|
| 1564 |
+
#: ../front-end/recover.php:231
|
| 1565 |
+
msgid "<br/>The password must have the minimum length of "
|
| 1566 |
+
msgstr ""
|
| 1567 |
+
|
| 1568 |
+
#: ../front-end/default-fields/password/password.php:48
|
| 1569 |
+
#: ../front-end/recover.php:235
|
| 1570 |
+
msgid "<br/>The password must have a minimum strength of "
|
| 1571 |
+
msgstr ""
|
| 1572 |
+
|
| 1573 |
+
#: ../front-end/default-fields/username/username.php:44
|
| 1574 |
+
msgid "This username already exists."
|
| 1575 |
+
msgstr ""
|
| 1576 |
+
|
| 1577 |
+
#: ../front-end/default-fields/username/username.php:51
|
| 1578 |
+
msgid "This username is already reserved to be used soon."
|
| 1579 |
+
msgstr ""
|
| 1580 |
+
|
| 1581 |
+
#: ../front-end/extra-fields/avatar/avatar.php:47
|
| 1582 |
+
#: ../front-end/extra-fields/avatar/avatar.php:84
|
| 1583 |
+
#: ../front-end/extra-fields/upload/upload.php:29
|
| 1584 |
+
#: ../front-end/extra-fields/upload/upload.php:68
|
| 1585 |
+
msgid "max upload size"
|
| 1586 |
+
msgstr ""
|
| 1587 |
+
|
| 1588 |
+
#: ../front-end/extra-fields/avatar/avatar.php:53
|
| 1589 |
+
msgid "Current avatar: No uploaded avatar"
|
| 1590 |
+
msgstr ""
|
| 1591 |
+
|
| 1592 |
+
#: ../front-end/extra-fields/avatar/avatar.php:58
|
| 1593 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
| 1594 |
+
msgid "Avatar"
|
| 1595 |
+
msgstr ""
|
| 1596 |
+
|
| 1597 |
+
#: ../front-end/extra-fields/avatar/avatar.php:62
|
| 1598 |
+
#: ../front-end/extra-fields/avatar/avatar.php:67
|
| 1599 |
+
#: ../front-end/extra-fields/avatar/avatar.php:94
|
| 1600 |
+
#: ../front-end/extra-fields/avatar/avatar.php:96
|
| 1601 |
+
msgid "Click to see the current avatar"
|
| 1602 |
+
msgstr ""
|
| 1603 |
+
|
| 1604 |
+
#: ../front-end/extra-fields/avatar/avatar.php:64
|
| 1605 |
+
#: ../front-end/extra-fields/avatar/avatar.php:94
|
| 1606 |
+
msgid ""
|
| 1607 |
+
"The avatar can't be deleted (It was marked as required by the administrator)"
|
| 1608 |
+
msgstr ""
|
| 1609 |
+
|
| 1610 |
+
#: ../front-end/extra-fields/avatar/avatar.php:69
|
| 1611 |
+
#: ../front-end/extra-fields/avatar/avatar.php:96
|
| 1612 |
+
msgid "Are you sure you want to delete this avatar?"
|
| 1613 |
+
msgstr ""
|
| 1614 |
+
|
| 1615 |
+
#: ../front-end/extra-fields/avatar/avatar.php:70
|
| 1616 |
+
#: ../front-end/extra-fields/avatar/avatar.php:96
|
| 1617 |
+
msgid "Click to delete the current avatar"
|
| 1618 |
+
msgstr ""
|
| 1619 |
+
|
| 1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:78
|
| 1621 |
+
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
| 1622 |
+
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
| 1623 |
+
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
| 1624 |
+
#: ../front-end/extra-fields/input/input.php:28
|
| 1625 |
+
#: ../front-end/extra-fields/radio/radio.php:42
|
| 1626 |
+
#: ../front-end/extra-fields/select-multiple/select-multiple.php:44
|
| 1627 |
+
#: ../front-end/extra-fields/select-timezone/select-timezone.php:42
|
| 1628 |
+
#: ../front-end/extra-fields/select/select.php:44
|
| 1629 |
+
#: ../front-end/extra-fields/textarea/textarea.php:28
|
| 1630 |
+
#: ../front-end/extra-fields/upload/upload.php:62
|
| 1631 |
+
msgid "required"
|
| 1632 |
+
msgstr ""
|
| 1633 |
+
|
| 1634 |
+
#: ../front-end/extra-fields/avatar/avatar.php:87
|
| 1635 |
+
msgid "Current avatar"
|
| 1636 |
+
msgstr ""
|
| 1637 |
+
|
| 1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:87
|
| 1639 |
+
msgid "No uploaded avatar"
|
| 1640 |
+
msgstr ""
|
| 1641 |
+
|
| 1642 |
+
#: ../front-end/extra-fields/avatar/avatar.php:189
|
| 1643 |
+
#: ../front-end/extra-fields/upload/upload.php:173
|
| 1644 |
+
msgid "The extension of the file did not match"
|
| 1645 |
+
msgstr ""
|
| 1646 |
+
|
| 1647 |
+
#: ../front-end/extra-fields/avatar/avatar.php:192
|
| 1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:195
|
| 1649 |
+
#: ../front-end/extra-fields/upload/upload.php:177
|
| 1650 |
+
#: ../front-end/extra-fields/upload/upload.php:180
|
| 1651 |
+
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
| 1652 |
+
msgstr ""
|
| 1653 |
+
|
| 1654 |
+
#: ../front-end/extra-fields/avatar/avatar.php:198
|
| 1655 |
+
#: ../front-end/extra-fields/upload/upload.php:183
|
| 1656 |
+
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
| 1657 |
+
msgstr ""
|
| 1658 |
+
|
| 1659 |
+
#: ../front-end/extra-fields/avatar/avatar.php:201
|
| 1660 |
+
msgid "The file could only partially be uploaded "
|
| 1661 |
+
msgstr ""
|
| 1662 |
+
|
| 1663 |
+
#: ../front-end/extra-fields/avatar/avatar.php:204
|
| 1664 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
| 1665 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
| 1666 |
+
#: ../front-end/extra-fields/upload/upload.php:189
|
| 1667 |
+
#: ../front-end/extra-fields/upload/upload.php:210
|
| 1668 |
+
#: ../front-end/extra-fields/upload/upload.php:213
|
| 1669 |
+
msgid "No file was selected"
|
| 1670 |
+
msgstr ""
|
| 1671 |
+
|
| 1672 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
| 1673 |
+
#: ../front-end/extra-fields/upload/upload.php:192
|
| 1674 |
+
msgid "The temporary upload folder is missing from the system"
|
| 1675 |
+
msgstr ""
|
| 1676 |
+
|
| 1677 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
| 1678 |
+
#: ../front-end/extra-fields/upload/upload.php:195
|
| 1679 |
+
msgid "The file failed to write to the disk"
|
| 1680 |
+
msgstr ""
|
| 1681 |
+
|
| 1682 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
| 1683 |
+
#: ../front-end/extra-fields/upload/upload.php:198
|
| 1684 |
+
msgid "A PHP extension stopped the file upload"
|
| 1685 |
+
msgstr ""
|
| 1686 |
+
|
| 1687 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
| 1688 |
+
msgid "Unknown error occurred"
|
| 1689 |
+
msgstr ""
|
| 1690 |
+
|
| 1691 |
+
#: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:63
|
| 1692 |
+
#: ../front-end/login.php:70 ../front-end/login.php:80
|
| 1693 |
+
#: ../front-end/recover.php:17 ../front-end/recover.php:206
|
| 1694 |
+
msgid "ERROR"
|
| 1695 |
+
msgstr ""
|
| 1696 |
+
|
| 1697 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:48
|
| 1698 |
+
msgid "Could not open socket!"
|
| 1699 |
+
msgstr ""
|
| 1700 |
+
|
| 1701 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:75
|
| 1702 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
| 1703 |
+
msgstr ""
|
| 1704 |
+
|
| 1705 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:114
|
| 1706 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
| 1707 |
+
msgstr ""
|
| 1708 |
+
|
| 1709 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:171
|
| 1710 |
+
msgid ""
|
| 1711 |
+
"To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
| 1712 |
+
msgstr ""
|
| 1713 |
+
|
| 1714 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:187
|
| 1715 |
+
msgid ""
|
| 1716 |
+
"To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
|
| 1717 |
+
"you can do so at"
|
| 1718 |
+
msgstr ""
|
| 1719 |
+
|
| 1720 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:254
|
| 1721 |
+
msgid "To use reCAPTCHA you must get an API public key from:"
|
| 1722 |
+
msgstr ""
|
| 1723 |
+
|
| 1724 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:257
|
| 1725 |
+
msgid "To use reCAPTCHA you must get an API private key from:"
|
| 1726 |
+
msgstr ""
|
| 1727 |
+
|
| 1728 |
+
#: ../front-end/extra-fields/upload/upload.php:35
|
| 1729 |
+
msgid "Current file: No uploaded attachment"
|
| 1730 |
+
msgstr ""
|
| 1731 |
+
|
| 1732 |
+
#: ../front-end/extra-fields/upload/upload.php:39
|
| 1733 |
+
#: ../front-end/extra-fields/upload/upload.php:48
|
| 1734 |
+
#: ../front-end/extra-fields/upload/upload.php:71
|
| 1735 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
| 1736 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
| 1737 |
+
msgid "Current file"
|
| 1738 |
+
msgstr ""
|
| 1739 |
+
|
| 1740 |
+
#: ../front-end/extra-fields/upload/upload.php:42
|
| 1741 |
+
#: ../front-end/extra-fields/upload/upload.php:51
|
| 1742 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
| 1743 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
| 1744 |
+
msgid "Click to see the current attachment"
|
| 1745 |
+
msgstr ""
|
| 1746 |
+
|
| 1747 |
+
#: ../front-end/extra-fields/upload/upload.php:44
|
| 1748 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
| 1749 |
+
msgid ""
|
| 1750 |
+
"The attachment can't be deleted (It was marked as required by the "
|
| 1751 |
+
"administrator)"
|
| 1752 |
+
msgstr ""
|
| 1753 |
+
|
| 1754 |
+
#: ../front-end/extra-fields/upload/upload.php:53
|
| 1755 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
| 1756 |
+
msgid "Are you sure you want to delete this attachment?"
|
| 1757 |
+
msgstr ""
|
| 1758 |
+
|
| 1759 |
+
#: ../front-end/extra-fields/upload/upload.php:54
|
| 1760 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
| 1761 |
+
msgid "Click to delete the current attachment"
|
| 1762 |
+
msgstr ""
|
| 1763 |
+
|
| 1764 |
+
#: ../front-end/extra-fields/upload/upload.php:71
|
| 1765 |
+
msgid "No uploaded attachment"
|
| 1766 |
+
msgstr ""
|
| 1767 |
+
|
| 1768 |
+
#: ../front-end/extra-fields/upload/upload.php:164
|
| 1769 |
+
msgid "The extension of the file is not allowed"
|
| 1770 |
+
msgstr ""
|
| 1771 |
+
|
| 1772 |
+
#: ../front-end/extra-fields/upload/upload.php:186
|
| 1773 |
+
msgid "The file could only partially be uploaded"
|
| 1774 |
+
msgstr ""
|
| 1775 |
+
|
| 1776 |
+
#: ../front-end/extra-fields/upload/upload.php:201
|
| 1777 |
+
msgid "This field wasn't updated because an unknown error occured"
|
| 1778 |
+
msgstr ""
|
| 1779 |
+
|
| 1780 |
+
#: ../front-end/login.php:63
|
| 1781 |
+
msgid "The password you entered is incorrect."
|
| 1782 |
+
msgstr ""
|
| 1783 |
+
|
| 1784 |
+
#: ../front-end/login.php:64 ../front-end/login.php:71
|
| 1785 |
+
msgid "Password Lost and Found."
|
| 1786 |
+
msgstr ""
|
| 1787 |
+
|
| 1788 |
+
#: ../front-end/login.php:64 ../front-end/login.php:71
|
| 1789 |
+
msgid "Lost your password"
|
| 1790 |
+
msgstr ""
|
| 1791 |
+
|
| 1792 |
+
#: ../front-end/login.php:70
|
| 1793 |
+
msgid "Invalid username."
|
| 1794 |
+
msgstr ""
|
| 1795 |
+
|
| 1796 |
+
#: ../front-end/login.php:75
|
| 1797 |
+
msgid "username"
|
| 1798 |
+
msgstr ""
|
| 1799 |
+
|
| 1800 |
+
#: ../front-end/login.php:75
|
| 1801 |
+
msgid "email"
|
| 1802 |
+
msgstr ""
|
| 1803 |
+
|
| 1804 |
+
#: ../front-end/login.php:80
|
| 1805 |
+
msgid "Both fields are empty."
|
| 1806 |
+
msgstr ""
|
| 1807 |
+
|
| 1808 |
+
#: ../front-end/login.php:173
|
| 1809 |
+
#, php-format
|
| 1810 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
| 1811 |
+
msgstr ""
|
| 1812 |
+
|
| 1813 |
+
#: ../front-end/login.php:173
|
| 1814 |
+
msgid "Log out of this account"
|
| 1815 |
+
msgstr ""
|
| 1816 |
+
|
| 1817 |
+
#: ../front-end/login.php:173
|
| 1818 |
+
msgid "Log out"
|
| 1819 |
+
msgstr ""
|
| 1820 |
+
|
| 1821 |
+
#: ../front-end/recover.php:17
|
| 1822 |
+
msgid ""
|
| 1823 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
| 1824 |
+
"\"Password Reset\" feature."
|
| 1825 |
+
msgstr ""
|
| 1826 |
+
|
| 1827 |
+
#: ../front-end/recover.php:91
|
| 1828 |
+
msgid "Reset Password"
|
| 1829 |
+
msgstr ""
|
| 1830 |
+
|
| 1831 |
+
#: ../front-end/recover.php:111
|
| 1832 |
+
msgid "Please enter your username or email address."
|
| 1833 |
+
msgstr ""
|
| 1834 |
+
|
| 1835 |
+
#: ../front-end/recover.php:112
|
| 1836 |
+
msgid "You will receive a link to create a new password via email."
|
| 1837 |
+
msgstr ""
|
| 1838 |
+
|
| 1839 |
+
#: ../front-end/recover.php:119
|
| 1840 |
+
msgid "Username or E-mail"
|
| 1841 |
+
msgstr ""
|
| 1842 |
+
|
| 1843 |
+
#: ../front-end/recover.php:125
|
| 1844 |
+
msgid "Get New Password"
|
| 1845 |
+
msgstr ""
|
| 1846 |
+
|
| 1847 |
+
#: ../front-end/recover.php:164
|
| 1848 |
+
msgid "The username entered wasn't found in the database!"
|
| 1849 |
+
msgstr ""
|
| 1850 |
+
|
| 1851 |
+
#: ../front-end/recover.php:164
|
| 1852 |
+
msgid "Please check that you entered the correct username."
|
| 1853 |
+
msgstr ""
|
| 1854 |
+
|
| 1855 |
+
#: ../front-end/recover.php:179
|
| 1856 |
+
msgid "Check your e-mail for the confirmation link."
|
| 1857 |
+
msgstr ""
|
| 1858 |
+
|
| 1859 |
+
#: ../front-end/recover.php:194
|
| 1860 |
+
#, php-format
|
| 1861 |
+
msgid ""
|
| 1862 |
+
"Someone requested that the password be reset for the following account: <b>"
|
| 1863 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
| 1864 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
| 1865 |
+
msgstr ""
|
| 1866 |
+
|
| 1867 |
+
#: ../front-end/recover.php:197
|
| 1868 |
+
#, php-format
|
| 1869 |
+
msgid "Password Reset from \"%1$s\""
|
| 1870 |
+
msgstr ""
|
| 1871 |
+
|
| 1872 |
+
#: ../front-end/recover.php:206
|
| 1873 |
+
#, php-format
|
| 1874 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
| 1875 |
+
msgstr ""
|
| 1876 |
+
|
| 1877 |
+
#: ../front-end/recover.php:215
|
| 1878 |
+
msgid "The email address entered wasn't found in the database!"
|
| 1879 |
+
msgstr ""
|
| 1880 |
+
|
| 1881 |
+
#: ../front-end/recover.php:215
|
| 1882 |
+
msgid "Please check that you entered the correct email address."
|
| 1883 |
+
msgstr ""
|
| 1884 |
+
|
| 1885 |
+
#: ../front-end/recover.php:242
|
| 1886 |
+
msgid "Your password has been successfully changed!"
|
| 1887 |
+
msgstr ""
|
| 1888 |
+
|
| 1889 |
+
#: ../front-end/recover.php:256
|
| 1890 |
+
#, php-format
|
| 1891 |
+
msgid "You have successfully reset your password to: %1$s"
|
| 1892 |
+
msgstr ""
|
| 1893 |
+
|
| 1894 |
+
#: ../front-end/recover.php:259 ../front-end/recover.php:273
|
| 1895 |
+
#, php-format
|
| 1896 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
| 1897 |
+
msgstr ""
|
| 1898 |
+
|
| 1899 |
+
#: ../front-end/recover.php:270
|
| 1900 |
+
#, php-format
|
| 1901 |
+
msgid ""
|
| 1902 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
| 1903 |
+
"her new password is:%2$s"
|
| 1904 |
+
msgstr ""
|
| 1905 |
+
|
| 1906 |
+
#: ../front-end/recover.php:289
|
| 1907 |
+
msgid "The entered passwords don't match!"
|
| 1908 |
+
msgstr ""
|
| 1909 |
+
|
| 1910 |
+
#: ../front-end/recover.php:334
|
| 1911 |
+
msgid "ERROR:"
|
| 1912 |
+
msgstr ""
|
| 1913 |
+
|
| 1914 |
+
#: ../front-end/recover.php:334
|
| 1915 |
+
msgid "Invalid key!"
|
| 1916 |
+
msgstr ""
|
| 1917 |
+
|
| 1918 |
+
#: ../front-end/register.php:46
|
| 1919 |
+
msgid "Invalid activation key!"
|
| 1920 |
+
msgstr ""
|
| 1921 |
+
|
| 1922 |
+
#: ../front-end/register.php:50
|
| 1923 |
+
msgid "This username is now active!"
|
| 1924 |
+
msgstr ""
|
| 1925 |
+
|
| 1926 |
+
#: ../front-end/register.php:70
|
| 1927 |
+
msgid "This username is already activated!"
|
| 1928 |
+
msgstr ""
|
| 1929 |
+
|
| 1930 |
+
#: ../front-end/register.php:92
|
| 1931 |
+
msgid "Your email was successfully confirmed."
|
| 1932 |
+
msgstr ""
|
| 1933 |
+
|
| 1934 |
+
#: ../front-end/register.php:102
|
| 1935 |
+
msgid "There was an error while trying to activate the user."
|
| 1936 |
+
msgstr ""
|
| 1937 |
+
|
| 1938 |
+
#: ../index.php:159
|
| 1939 |
+
#, php-format
|
| 1940 |
+
msgid ""
|
| 1941 |
+
"<p style=\"position:relative;\">Halloween treat: 30% OFF on all Profile "
|
| 1942 |
+
"Builder purchases 29 - 30 -31 October over at %1$swww.cozmslabs.com%2$s Get "
|
| 1943 |
+
"your discount code! %3$sDismiss%4$s</p>"
|
| 1944 |
+
msgstr ""
|
| 1945 |
+
|
| 1946 |
+
#: ../modules/class-mustache-templates/class-mustache-templates.php:239
|
| 1947 |
+
msgid "Save"
|
| 1948 |
+
msgstr ""
|
| 1949 |
+
|
| 1950 |
+
#: ../modules/custom-redirects/custom-redirects.php:35
|
| 1951 |
+
msgid "Redirects on custom page requests:"
|
| 1952 |
+
msgstr ""
|
| 1953 |
+
|
| 1954 |
+
#: ../modules/custom-redirects/custom-redirects.php:39
|
| 1955 |
+
#: ../modules/custom-redirects/custom-redirects.php:85
|
| 1956 |
+
msgid "Action"
|
| 1957 |
+
msgstr ""
|
| 1958 |
+
|
| 1959 |
+
#: ../modules/custom-redirects/custom-redirects.php:40
|
| 1960 |
+
#: ../modules/custom-redirects/custom-redirects.php:86
|
| 1961 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:206
|
| 1962 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
| 1963 |
+
msgid "Redirect"
|
| 1964 |
+
msgstr ""
|
| 1965 |
+
|
| 1966 |
+
#: ../modules/custom-redirects/custom-redirects.php:41
|
| 1967 |
+
#: ../modules/custom-redirects/custom-redirects.php:87
|
| 1968 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:208
|
| 1969 |
+
#: ../modules/multiple-forms/register-forms.php:232
|
| 1970 |
+
msgid "URL"
|
| 1971 |
+
msgstr ""
|
| 1972 |
+
|
| 1973 |
+
#: ../modules/custom-redirects/custom-redirects.php:46
|
| 1974 |
+
msgid "After Registration:"
|
| 1975 |
+
msgstr ""
|
| 1976 |
+
|
| 1977 |
+
#: ../modules/custom-redirects/custom-redirects.php:48
|
| 1978 |
+
#: ../modules/custom-redirects/custom-redirects.php:58
|
| 1979 |
+
#: ../modules/custom-redirects/custom-redirects.php:68
|
| 1980 |
+
#: ../modules/custom-redirects/custom-redirects.php:94
|
| 1981 |
+
#: ../modules/custom-redirects/custom-redirects.php:104
|
| 1982 |
+
#: ../modules/custom-redirects/custom-redirects.php:114
|
| 1983 |
+
#: ../modules/custom-redirects/custom-redirects.php:124
|
| 1984 |
+
#: ../modules/modules.php:99 ../modules/modules.php:106
|
| 1985 |
+
#: ../modules/modules.php:113 ../modules/modules.php:120
|
| 1986 |
+
#: ../modules/modules.php:127 ../modules/modules.php:134
|
| 1987 |
+
msgid "Active"
|
| 1988 |
+
msgstr ""
|
| 1989 |
+
|
| 1990 |
+
#: ../modules/custom-redirects/custom-redirects.php:49
|
| 1991 |
+
#: ../modules/custom-redirects/custom-redirects.php:59
|
| 1992 |
+
#: ../modules/custom-redirects/custom-redirects.php:69
|
| 1993 |
+
#: ../modules/custom-redirects/custom-redirects.php:95
|
| 1994 |
+
#: ../modules/custom-redirects/custom-redirects.php:105
|
| 1995 |
+
#: ../modules/custom-redirects/custom-redirects.php:115
|
| 1996 |
+
#: ../modules/custom-redirects/custom-redirects.php:125
|
| 1997 |
+
#: ../modules/modules.php:100 ../modules/modules.php:107
|
| 1998 |
+
#: ../modules/modules.php:114 ../modules/modules.php:121
|
| 1999 |
+
#: ../modules/modules.php:128 ../modules/modules.php:135
|
| 2000 |
+
msgid "Inactive"
|
| 2001 |
+
msgstr ""
|
| 2002 |
+
|
| 2003 |
+
#: ../modules/custom-redirects/custom-redirects.php:56
|
| 2004 |
+
msgid "After Login:"
|
| 2005 |
+
msgstr ""
|
| 2006 |
+
|
| 2007 |
+
#: ../modules/custom-redirects/custom-redirects.php:66
|
| 2008 |
+
msgid "Recover Password (*)"
|
| 2009 |
+
msgstr ""
|
| 2010 |
+
|
| 2011 |
+
#: ../modules/custom-redirects/custom-redirects.php:77
|
| 2012 |
+
msgid ""
|
| 2013 |
+
"When activated this feature will redirect the user on both the default "
|
| 2014 |
+
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
| 2015 |
+
"Profile Builder on the front-end login page."
|
| 2016 |
+
msgstr ""
|
| 2017 |
+
|
| 2018 |
+
#: ../modules/custom-redirects/custom-redirects.php:81
|
| 2019 |
+
msgid "Redirects on default WordPress page requests:"
|
| 2020 |
+
msgstr ""
|
| 2021 |
+
|
| 2022 |
+
#: ../modules/custom-redirects/custom-redirects.php:92
|
| 2023 |
+
msgid "Default WordPress Login Page"
|
| 2024 |
+
msgstr ""
|
| 2025 |
+
|
| 2026 |
+
#: ../modules/custom-redirects/custom-redirects.php:102
|
| 2027 |
+
msgid "Default WordPress Logout Page"
|
| 2028 |
+
msgstr ""
|
| 2029 |
+
|
| 2030 |
+
#: ../modules/custom-redirects/custom-redirects.php:112
|
| 2031 |
+
msgid "Default WordPress Register Page"
|
| 2032 |
+
msgstr ""
|
| 2033 |
+
|
| 2034 |
+
#: ../modules/custom-redirects/custom-redirects.php:122
|
| 2035 |
+
msgid "Default WordPress Dashboard (*)"
|
| 2036 |
+
msgstr ""
|
| 2037 |
+
|
| 2038 |
+
#: ../modules/custom-redirects/custom-redirects.php:133
|
| 2039 |
+
msgid ""
|
| 2040 |
+
"Redirects every user-role EXCEPT the ones with administrator privileges (can "
|
| 2041 |
+
"manage options)."
|
| 2042 |
+
msgstr ""
|
| 2043 |
+
|
| 2044 |
+
#: ../modules/email-customizer/admin-email-customizer.php:11
|
| 2045 |
+
#: ../modules/email-customizer/admin-email-customizer.php:12
|
| 2046 |
+
#: ../modules/modules.php:118
|
| 2047 |
+
msgid "Admin Email Customizer"
|
| 2048 |
+
msgstr ""
|
| 2049 |
+
|
| 2050 |
+
#: ../modules/email-customizer/admin-email-customizer.php:38
|
| 2051 |
+
#: ../modules/email-customizer/user-email-customizer.php:38
|
| 2052 |
+
msgid ""
|
| 2053 |
+
"These settings are also replicated in the \"User Email Customizer\" settings-"
|
| 2054 |
+
"page upon save."
|
| 2055 |
+
msgstr ""
|
| 2056 |
+
|
| 2057 |
+
#: ../modules/email-customizer/admin-email-customizer.php:41
|
| 2058 |
+
#: ../modules/email-customizer/user-email-customizer.php:41
|
| 2059 |
+
msgid "From (name)"
|
| 2060 |
+
msgstr ""
|
| 2061 |
+
|
| 2062 |
+
#: ../modules/email-customizer/admin-email-customizer.php:49
|
| 2063 |
+
#: ../modules/email-customizer/user-email-customizer.php:49
|
| 2064 |
+
msgid "From (reply-to email)"
|
| 2065 |
+
msgstr ""
|
| 2066 |
+
|
| 2067 |
+
#: ../modules/email-customizer/admin-email-customizer.php:57
|
| 2068 |
+
#: ../modules/email-customizer/user-email-customizer.php:57
|
| 2069 |
+
msgid "Common Settings"
|
| 2070 |
+
msgstr ""
|
| 2071 |
+
|
| 2072 |
+
#: ../modules/email-customizer/admin-email-customizer.php:60
|
| 2073 |
+
msgid ""
|
| 2074 |
+
"\n"
|
| 2075 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
| 2076 |
+
"<p>Username:{{username}}</p>\n"
|
| 2077 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
| 2078 |
+
msgstr ""
|
| 2079 |
+
|
| 2080 |
+
#: ../modules/email-customizer/admin-email-customizer.php:69
|
| 2081 |
+
#: ../modules/email-customizer/admin-email-customizer.php:99
|
| 2082 |
+
#: ../modules/email-customizer/user-email-customizer.php:71
|
| 2083 |
+
#: ../modules/email-customizer/user-email-customizer.php:99
|
| 2084 |
+
#: ../modules/email-customizer/user-email-customizer.php:128
|
| 2085 |
+
#: ../modules/email-customizer/user-email-customizer.php:155
|
| 2086 |
+
#: ../modules/email-customizer/user-email-customizer.php:183
|
| 2087 |
+
msgid "Email Subject"
|
| 2088 |
+
msgstr ""
|
| 2089 |
+
|
| 2090 |
+
#: ../modules/email-customizer/admin-email-customizer.php:84
|
| 2091 |
+
msgid "Default Registration & Registration with Email Confirmation"
|
| 2092 |
+
msgstr ""
|
| 2093 |
+
|
| 2094 |
+
#: ../modules/email-customizer/admin-email-customizer.php:87
|
| 2095 |
+
msgid ""
|
| 2096 |
+
"\n"
|
| 2097 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
| 2098 |
+
"<p>Username:{{username}}</p>\n"
|
| 2099 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
| 2100 |
+
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
| 2101 |
+
"so please remember that you need to approve this user before he/she can log "
|
| 2102 |
+
"in!</p>\n"
|
| 2103 |
+
msgstr ""
|
| 2104 |
+
|
| 2105 |
+
#: ../modules/email-customizer/admin-email-customizer.php:114
|
| 2106 |
+
#: ../modules/email-customizer/user-email-customizer.php:143
|
| 2107 |
+
msgid "Registration with Admin Approval"
|
| 2108 |
+
msgstr ""
|
| 2109 |
+
|
| 2110 |
+
#: ../modules/email-customizer/email-customizer.php:7
|
| 2111 |
+
msgid "Available Tags"
|
| 2112 |
+
msgstr ""
|
| 2113 |
+
|
| 2114 |
+
#: ../modules/email-customizer/email-customizer.php:11
|
| 2115 |
+
msgid "User Meta"
|
| 2116 |
+
msgstr ""
|
| 2117 |
+
|
| 2118 |
+
#: ../modules/email-customizer/email-customizer.php:21
|
| 2119 |
+
msgid "Site Url"
|
| 2120 |
+
msgstr ""
|
| 2121 |
+
|
| 2122 |
+
#: ../modules/email-customizer/email-customizer.php:22
|
| 2123 |
+
msgid "Site Name"
|
| 2124 |
+
msgstr ""
|
| 2125 |
+
|
| 2126 |
+
#: ../modules/email-customizer/email-customizer.php:25
|
| 2127 |
+
#: ../modules/user-listing/userlisting.php:126
|
| 2128 |
+
msgid "User Id"
|
| 2129 |
+
msgstr ""
|
| 2130 |
+
|
| 2131 |
+
#: ../modules/email-customizer/email-customizer.php:32
|
| 2132 |
+
msgid "Reply To"
|
| 2133 |
+
msgstr ""
|
| 2134 |
+
|
| 2135 |
+
#: ../modules/email-customizer/email-customizer.php:35
|
| 2136 |
+
msgid "Activation Key"
|
| 2137 |
+
msgstr ""
|
| 2138 |
+
|
| 2139 |
+
#: ../modules/email-customizer/email-customizer.php:36
|
| 2140 |
+
msgid "Activation Url"
|
| 2141 |
+
msgstr ""
|
| 2142 |
+
|
| 2143 |
+
#: ../modules/email-customizer/email-customizer.php:37
|
| 2144 |
+
msgid "Activation Link"
|
| 2145 |
+
msgstr ""
|
| 2146 |
+
|
| 2147 |
+
#: ../modules/email-customizer/user-email-customizer.php:11
|
| 2148 |
+
#: ../modules/email-customizer/user-email-customizer.php:12
|
| 2149 |
+
#: ../modules/modules.php:125
|
| 2150 |
+
msgid "User Email Customizer"
|
| 2151 |
+
msgstr ""
|
| 2152 |
+
|
| 2153 |
+
#: ../modules/email-customizer/user-email-customizer.php:64
|
| 2154 |
+
msgid ""
|
| 2155 |
+
"\n"
|
| 2156 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
| 2157 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
| 2158 |
+
msgstr ""
|
| 2159 |
+
|
| 2160 |
+
#: ../modules/email-customizer/user-email-customizer.php:85
|
| 2161 |
+
msgid "Default Registration"
|
| 2162 |
+
msgstr ""
|
| 2163 |
+
|
| 2164 |
+
#: ../modules/email-customizer/user-email-customizer.php:91
|
| 2165 |
+
msgid ""
|
| 2166 |
+
"\n"
|
| 2167 |
+
"<p>To activate your user, please click the following link:<br/>\n"
|
| 2168 |
+
"{{{activation_link}}}</p>\n"
|
| 2169 |
+
"<p>After you activate, you will receive another email with your credentials."
|
| 2170 |
+
"</p>\n"
|
| 2171 |
+
msgstr ""
|
| 2172 |
+
|
| 2173 |
+
#: ../modules/email-customizer/user-email-customizer.php:103
|
| 2174 |
+
msgid "[{{site_name}}] Activate {{username}}"
|
| 2175 |
+
msgstr ""
|
| 2176 |
+
|
| 2177 |
+
#: ../modules/email-customizer/user-email-customizer.php:114
|
| 2178 |
+
msgid "Registration with Email Confirmation"
|
| 2179 |
+
msgstr ""
|
| 2180 |
+
|
| 2181 |
+
#: ../modules/email-customizer/user-email-customizer.php:120
|
| 2182 |
+
msgid ""
|
| 2183 |
+
"\n"
|
| 2184 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
| 2185 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
| 2186 |
+
"<p>Before you can access your account, an administrator needs to approve it. "
|
| 2187 |
+
"You will be notified via email.</p>\n"
|
| 2188 |
+
msgstr ""
|
| 2189 |
+
|
| 2190 |
+
#: ../modules/email-customizer/user-email-customizer.php:132
|
| 2191 |
+
msgid "A new account has been created for you on {{site_name}}"
|
| 2192 |
+
msgstr ""
|
| 2193 |
+
|
| 2194 |
+
#: ../modules/email-customizer/user-email-customizer.php:148
|
| 2195 |
+
msgid ""
|
| 2196 |
+
"\n"
|
| 2197 |
+
"<h3>Good News!</h3>\n"
|
| 2198 |
+
"<p>An administrator has just approved your account: {{username}} on "
|
| 2199 |
+
"{{site_name}}.</p>\n"
|
| 2200 |
+
msgstr ""
|
| 2201 |
+
|
| 2202 |
+
#: ../modules/email-customizer/user-email-customizer.php:159
|
| 2203 |
+
msgid "Your account on {{site_name}} has been approved!"
|
| 2204 |
+
msgstr ""
|
| 2205 |
+
|
| 2206 |
+
#: ../modules/email-customizer/user-email-customizer.php:170
|
| 2207 |
+
msgid "User Approval Notification"
|
| 2208 |
+
msgstr ""
|
| 2209 |
+
|
| 2210 |
+
#: ../modules/email-customizer/user-email-customizer.php:175
|
| 2211 |
+
msgid ""
|
| 2212 |
+
"\n"
|
| 2213 |
+
"<h3>Hello,</h3>\n"
|
| 2214 |
+
"<p>Unfortunatelly an administrator has just unapproved your account: "
|
| 2215 |
+
"{{username}} on {{site_name}}.</p>\n"
|
| 2216 |
+
msgstr ""
|
| 2217 |
+
|
| 2218 |
+
#: ../modules/email-customizer/user-email-customizer.php:187
|
| 2219 |
+
msgid "Your account on {{site_name}} has been unapproved!"
|
| 2220 |
+
msgstr ""
|
| 2221 |
+
|
| 2222 |
+
#: ../modules/email-customizer/user-email-customizer.php:198
|
| 2223 |
+
msgid "Unapproved User Notification"
|
| 2224 |
+
msgstr ""
|
| 2225 |
+
|
| 2226 |
+
#: ../modules/modules.php:11 ../modules/modules.php:80
|
| 2227 |
+
msgid "Modules"
|
| 2228 |
+
msgstr ""
|
| 2229 |
+
|
| 2230 |
+
#: ../modules/modules.php:81
|
| 2231 |
+
msgid ""
|
| 2232 |
+
"Here you can activate / deactivate available modules for Profile Builder."
|
| 2233 |
+
msgstr ""
|
| 2234 |
+
|
| 2235 |
+
#: ../modules/modules.php:91
|
| 2236 |
+
msgid "Name/Description"
|
| 2237 |
+
msgstr ""
|
| 2238 |
+
|
| 2239 |
+
#: ../modules/modules.php:92
|
| 2240 |
+
msgid "Status"
|
| 2241 |
+
msgstr ""
|
| 2242 |
+
|
| 2243 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:11
|
| 2244 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:12
|
| 2245 |
+
msgid "Edit-profile Form"
|
| 2246 |
+
msgstr ""
|
| 2247 |
+
|
| 2248 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:13
|
| 2249 |
+
#: ../modules/multiple-forms/register-forms.php:13
|
| 2250 |
+
#: ../modules/user-listing/userlisting.php:13
|
| 2251 |
+
msgid "Add New"
|
| 2252 |
+
msgstr ""
|
| 2253 |
+
|
| 2254 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:14
|
| 2255 |
+
msgid "Add new Edit-profile Form"
|
| 2256 |
+
msgstr ""
|
| 2257 |
+
|
| 2258 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:15
|
| 2259 |
+
msgid "Edit the Edit-profile Forms"
|
| 2260 |
+
msgstr ""
|
| 2261 |
+
|
| 2262 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:16
|
| 2263 |
+
msgid "New Edit-profile Form"
|
| 2264 |
+
msgstr ""
|
| 2265 |
+
|
| 2266 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:17
|
| 2267 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:23
|
| 2268 |
+
msgid "Edit-profile Forms"
|
| 2269 |
+
msgstr ""
|
| 2270 |
+
|
| 2271 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:18
|
| 2272 |
+
msgid "View the Edit-profile Form"
|
| 2273 |
+
msgstr ""
|
| 2274 |
+
|
| 2275 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:19
|
| 2276 |
+
msgid "Search the Edit-profile Forms"
|
| 2277 |
+
msgstr ""
|
| 2278 |
+
|
| 2279 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:20
|
| 2280 |
+
msgid "No Edit-profile Form found"
|
| 2281 |
+
msgstr ""
|
| 2282 |
+
|
| 2283 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:21
|
| 2284 |
+
msgid "No Edit-profile Forms found in trash"
|
| 2285 |
+
msgstr ""
|
| 2286 |
+
|
| 2287 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
| 2288 |
+
#: ../modules/multiple-forms/register-forms.php:138
|
| 2289 |
+
#: ../modules/user-listing/userlisting.php:1022
|
| 2290 |
+
msgid "Shortcode"
|
| 2291 |
+
msgstr ""
|
| 2292 |
+
|
| 2293 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
| 2294 |
+
#: ../modules/multiple-forms/register-forms.php:159
|
| 2295 |
+
#: ../modules/user-listing/userlisting.php:1043
|
| 2296 |
+
msgid "(no title)"
|
| 2297 |
+
msgstr ""
|
| 2298 |
+
|
| 2299 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
| 2300 |
+
#: ../modules/multiple-forms/register-forms.php:178
|
| 2301 |
+
#: ../modules/user-listing/userlisting.php:1063
|
| 2302 |
+
msgid "The shortcode will be available after you publish this form."
|
| 2303 |
+
msgstr ""
|
| 2304 |
+
|
| 2305 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
| 2306 |
+
#: ../modules/multiple-forms/register-forms.php:180
|
| 2307 |
+
#: ../modules/user-listing/userlisting.php:1065
|
| 2308 |
+
msgid "Use this shortcode on the page you want the form to be displayed:"
|
| 2309 |
+
msgstr ""
|
| 2310 |
+
|
| 2311 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
| 2312 |
+
#: ../modules/multiple-forms/register-forms.php:184
|
| 2313 |
+
#: ../modules/user-listing/userlisting.php:1069
|
| 2314 |
+
msgid ""
|
| 2315 |
+
"<span style=\"color:red;\">Note:</span> changing the form title also changes "
|
| 2316 |
+
"the shortcode!"
|
| 2317 |
+
msgstr ""
|
| 2318 |
+
|
| 2319 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
| 2320 |
+
#: ../modules/multiple-forms/register-forms.php:190
|
| 2321 |
+
#: ../modules/user-listing/userlisting.php:1083
|
| 2322 |
+
msgid "Form Shortcode"
|
| 2323 |
+
msgstr ""
|
| 2324 |
+
|
| 2325 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:206
|
| 2326 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
| 2327 |
+
msgid "Whether to redirect the user to a specific page or not"
|
| 2328 |
+
msgstr ""
|
| 2329 |
+
|
| 2330 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:207
|
| 2331 |
+
#: ../modules/multiple-forms/register-forms.php:231
|
| 2332 |
+
msgid "Display Messages"
|
| 2333 |
+
msgstr ""
|
| 2334 |
+
|
| 2335 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:207
|
| 2336 |
+
#: ../modules/multiple-forms/register-forms.php:231
|
| 2337 |
+
msgid "Allowed time to display any success messages (in seconds)"
|
| 2338 |
+
msgstr ""
|
| 2339 |
+
|
| 2340 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:208
|
| 2341 |
+
msgid ""
|
| 2342 |
+
"Specify the URL of the page users will be redirected once they updated their "
|
| 2343 |
+
"profile using this form<br/>Use the following format: http://www.mysite.com"
|
| 2344 |
+
msgstr ""
|
| 2345 |
+
|
| 2346 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:215
|
| 2347 |
+
msgid "After Profile Update..."
|
| 2348 |
+
msgstr ""
|
| 2349 |
+
|
| 2350 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:239
|
| 2351 |
+
#: ../modules/multiple-forms/register-forms.php:260
|
| 2352 |
+
msgid "Add New Field to the List"
|
| 2353 |
+
msgstr ""
|
| 2354 |
+
|
| 2355 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:243
|
| 2356 |
+
#: ../modules/multiple-forms/register-forms.php:264
|
| 2357 |
+
msgid "Choose one of the supported fields you manage <a href=\""
|
| 2358 |
+
msgstr ""
|
| 2359 |
+
|
| 2360 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:267
|
| 2361 |
+
msgid "<pre>Title (Type)</pre>"
|
| 2362 |
+
msgstr ""
|
| 2363 |
+
|
| 2364 |
+
#: ../modules/multiple-forms/multiple-forms.php:233
|
| 2365 |
+
msgid "You need to specify the title of the form before creating it"
|
| 2366 |
+
msgstr ""
|
| 2367 |
+
|
| 2368 |
+
#: ../modules/multiple-forms/register-forms.php:11
|
| 2369 |
+
#: ../modules/multiple-forms/register-forms.php:12
|
| 2370 |
+
msgid "Registration Form"
|
| 2371 |
+
msgstr ""
|
| 2372 |
+
|
| 2373 |
+
#: ../modules/multiple-forms/register-forms.php:14
|
| 2374 |
+
msgid "Add new Registration Form"
|
| 2375 |
+
msgstr ""
|
| 2376 |
+
|
| 2377 |
+
#: ../modules/multiple-forms/register-forms.php:15
|
| 2378 |
+
msgid "Edit the Registration Forms"
|
| 2379 |
+
msgstr ""
|
| 2380 |
+
|
| 2381 |
+
#: ../modules/multiple-forms/register-forms.php:16
|
| 2382 |
+
msgid "New Registration Form"
|
| 2383 |
+
msgstr ""
|
| 2384 |
+
|
| 2385 |
+
#: ../modules/multiple-forms/register-forms.php:17
|
| 2386 |
+
#: ../modules/multiple-forms/register-forms.php:23
|
| 2387 |
+
msgid "Registration Forms"
|
| 2388 |
+
msgstr ""
|
| 2389 |
+
|
| 2390 |
+
#: ../modules/multiple-forms/register-forms.php:18
|
| 2391 |
+
msgid "View the Registration Form"
|
| 2392 |
+
msgstr ""
|
| 2393 |
+
|
| 2394 |
+
#: ../modules/multiple-forms/register-forms.php:19
|
| 2395 |
+
msgid "Search the Registration Forms"
|
| 2396 |
+
msgstr ""
|
| 2397 |
+
|
| 2398 |
+
#: ../modules/multiple-forms/register-forms.php:20
|
| 2399 |
+
msgid "No Registration Form found"
|
| 2400 |
+
msgstr ""
|
| 2401 |
+
|
| 2402 |
+
#: ../modules/multiple-forms/register-forms.php:21
|
| 2403 |
+
msgid "No Registration Forms found in trash"
|
| 2404 |
+
msgstr ""
|
| 2405 |
+
|
| 2406 |
+
#: ../modules/multiple-forms/register-forms.php:219
|
| 2407 |
+
msgid "Default Role"
|
| 2408 |
+
msgstr ""
|
| 2409 |
+
|
| 2410 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
| 2411 |
+
msgid "Set Role"
|
| 2412 |
+
msgstr ""
|
| 2413 |
+
|
| 2414 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
| 2415 |
+
msgid ""
|
| 2416 |
+
"Choose what role the user will have after (s)he registered<br/>If not "
|
| 2417 |
+
"specified, defaults to the role set in the WordPress settings"
|
| 2418 |
+
msgstr ""
|
| 2419 |
+
|
| 2420 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
| 2421 |
+
msgid "Automatically Log In"
|
| 2422 |
+
msgstr ""
|
| 2423 |
+
|
| 2424 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
| 2425 |
+
msgid ""
|
| 2426 |
+
"Whether to automatically log in the newly registered user or not<br/>Only "
|
| 2427 |
+
"works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
|
| 2428 |
+
"features activated<br/>WARNING: Caching the registration form will make "
|
| 2429 |
+
"automatic login not work"
|
| 2430 |
+
msgstr ""
|
| 2431 |
+
|
| 2432 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
| 2433 |
+
msgid "Choose..."
|
| 2434 |
+
msgstr ""
|
| 2435 |
+
|
| 2436 |
+
#: ../modules/multiple-forms/register-forms.php:232
|
| 2437 |
+
msgid ""
|
| 2438 |
+
"Specify the URL of the page users will be redirected once registered using "
|
| 2439 |
+
"this form<br/>Use the following format: http://www.mysite.com"
|
| 2440 |
+
msgstr ""
|
| 2441 |
+
|
| 2442 |
+
#: ../modules/multiple-forms/register-forms.php:238
|
| 2443 |
+
msgid "After Registration..."
|
| 2444 |
+
msgstr ""
|
| 2445 |
+
|
| 2446 |
+
#: ../modules/user-listing/class-userlisting.php:454
|
| 2447 |
+
#: ../modules/user-listing/userlisting.php:621
|
| 2448 |
+
#: ../modules/user-listing/userlisting.php:835
|
| 2449 |
+
#: ../modules/user-listing/userlisting.php:878
|
| 2450 |
+
#: ../modules/user-listing/userlisting.php:1202
|
| 2451 |
+
msgid "Search Users by All Fields"
|
| 2452 |
+
msgstr ""
|
| 2453 |
+
|
| 2454 |
+
#: ../modules/user-listing/userlisting.php:14
|
| 2455 |
+
msgid "Add new User Listing"
|
| 2456 |
+
msgstr ""
|
| 2457 |
+
|
| 2458 |
+
#: ../modules/user-listing/userlisting.php:15
|
| 2459 |
+
msgid "Edit the User Listing"
|
| 2460 |
+
msgstr ""
|
| 2461 |
+
|
| 2462 |
+
#: ../modules/user-listing/userlisting.php:16
|
| 2463 |
+
msgid "New User Listing"
|
| 2464 |
+
msgstr ""
|
| 2465 |
+
|
| 2466 |
+
#: ../modules/user-listing/userlisting.php:18
|
| 2467 |
+
msgid "View the User Listing"
|
| 2468 |
+
msgstr ""
|
| 2469 |
+
|
| 2470 |
+
#: ../modules/user-listing/userlisting.php:19
|
| 2471 |
+
msgid "Search the User Listing"
|
| 2472 |
+
msgstr ""
|
| 2473 |
+
|
| 2474 |
+
#: ../modules/user-listing/userlisting.php:20
|
| 2475 |
+
msgid "No User Listing found"
|
| 2476 |
+
msgstr ""
|
| 2477 |
+
|
| 2478 |
+
#: ../modules/user-listing/userlisting.php:21
|
| 2479 |
+
msgid "No User Listing found in trash"
|
| 2480 |
+
msgstr ""
|
| 2481 |
+
|
| 2482 |
+
#: ../modules/user-listing/userlisting.php:97
|
| 2483 |
+
msgid "Display name as"
|
| 2484 |
+
msgstr ""
|
| 2485 |
+
|
| 2486 |
+
#: ../modules/user-listing/userlisting.php:110
|
| 2487 |
+
msgid "Url"
|
| 2488 |
+
msgstr ""
|
| 2489 |
+
|
| 2490 |
+
#: ../modules/user-listing/userlisting.php:118
|
| 2491 |
+
#: ../modules/user-listing/userlisting.php:1111
|
| 2492 |
+
msgid "Registration Date"
|
| 2493 |
+
msgstr ""
|
| 2494 |
+
|
| 2495 |
+
#: ../modules/user-listing/userlisting.php:119
|
| 2496 |
+
#: ../modules/user-listing/userlisting.php:1115
|
| 2497 |
+
msgid "Number of Posts"
|
| 2498 |
+
msgstr ""
|
| 2499 |
+
|
| 2500 |
+
#: ../modules/user-listing/userlisting.php:123
|
| 2501 |
+
msgid "More Info"
|
| 2502 |
+
msgstr ""
|
| 2503 |
+
|
| 2504 |
+
#: ../modules/user-listing/userlisting.php:124
|
| 2505 |
+
msgid "More Info Url"
|
| 2506 |
+
msgstr ""
|
| 2507 |
+
|
| 2508 |
+
#: ../modules/user-listing/userlisting.php:125
|
| 2509 |
+
msgid "Avatar or Gravatar"
|
| 2510 |
+
msgstr ""
|
| 2511 |
+
|
| 2512 |
+
#: ../modules/user-listing/userlisting.php:153
|
| 2513 |
+
msgid "Meta Variables"
|
| 2514 |
+
msgstr ""
|
| 2515 |
+
|
| 2516 |
+
#: ../modules/user-listing/userlisting.php:159
|
| 2517 |
+
msgid "Sort Variables"
|
| 2518 |
+
msgstr ""
|
| 2519 |
+
|
| 2520 |
+
#: ../modules/user-listing/userlisting.php:163
|
| 2521 |
+
#: ../modules/user-listing/userlisting.php:190
|
| 2522 |
+
msgid "Extra Functions"
|
| 2523 |
+
msgstr ""
|
| 2524 |
+
|
| 2525 |
+
#: ../modules/user-listing/userlisting.php:165
|
| 2526 |
+
msgid "Pagination"
|
| 2527 |
+
msgstr ""
|
| 2528 |
+
|
| 2529 |
+
#: ../modules/user-listing/userlisting.php:166
|
| 2530 |
+
msgid "Search all Fields"
|
| 2531 |
+
msgstr ""
|
| 2532 |
+
|
| 2533 |
+
#: ../modules/user-listing/userlisting.php:192
|
| 2534 |
+
msgid "Go Back Link"
|
| 2535 |
+
msgstr ""
|
| 2536 |
+
|
| 2537 |
+
#: ../modules/user-listing/userlisting.php:210
|
| 2538 |
+
msgid "All-userlisting Template"
|
| 2539 |
+
msgstr ""
|
| 2540 |
+
|
| 2541 |
+
#: ../modules/user-listing/userlisting.php:213
|
| 2542 |
+
msgid "Single-userlisting Template"
|
| 2543 |
+
msgstr ""
|
| 2544 |
+
|
| 2545 |
+
#: ../modules/user-listing/userlisting.php:330
|
| 2546 |
+
msgid "You do not have permission to view this user list"
|
| 2547 |
+
msgstr ""
|
| 2548 |
+
|
| 2549 |
+
#: ../modules/user-listing/userlisting.php:343
|
| 2550 |
+
msgid "You do not have the required user role to view this user list"
|
| 2551 |
+
msgstr ""
|
| 2552 |
+
|
| 2553 |
+
#: ../modules/user-listing/userlisting.php:519
|
| 2554 |
+
msgid "First/Lastname"
|
| 2555 |
+
msgstr ""
|
| 2556 |
+
|
| 2557 |
+
#: ../modules/user-listing/userlisting.php:525
|
| 2558 |
+
msgid "Sign-up Date"
|
| 2559 |
+
msgstr ""
|
| 2560 |
+
|
| 2561 |
+
#: ../modules/user-listing/userlisting.php:534
|
| 2562 |
+
#: ../modules/user-listing/userlisting.php:1114
|
| 2563 |
+
msgid "Display Name"
|
| 2564 |
+
msgstr ""
|
| 2565 |
+
|
| 2566 |
+
#: ../modules/user-listing/userlisting.php:543
|
| 2567 |
+
msgid "Posts"
|
| 2568 |
+
msgstr ""
|
| 2569 |
+
|
| 2570 |
+
#: ../modules/user-listing/userlisting.php:546
|
| 2571 |
+
#: ../modules/user-listing/userlisting.php:1119
|
| 2572 |
+
msgid "Aim"
|
| 2573 |
+
msgstr ""
|
| 2574 |
+
|
| 2575 |
+
#: ../modules/user-listing/userlisting.php:549
|
| 2576 |
+
#: ../modules/user-listing/userlisting.php:1120
|
| 2577 |
+
msgid "Yim"
|
| 2578 |
+
msgstr ""
|
| 2579 |
+
|
| 2580 |
+
#: ../modules/user-listing/userlisting.php:552
|
| 2581 |
+
#: ../modules/user-listing/userlisting.php:1121
|
| 2582 |
+
msgid "Jabber"
|
| 2583 |
+
msgstr ""
|
| 2584 |
+
|
| 2585 |
+
#: ../modules/user-listing/userlisting.php:698
|
| 2586 |
+
msgid "Click here to see more information about this user"
|
| 2587 |
+
msgstr ""
|
| 2588 |
+
|
| 2589 |
+
#: ../modules/user-listing/userlisting.php:698
|
| 2590 |
+
msgid "More..."
|
| 2591 |
+
msgstr ""
|
| 2592 |
+
|
| 2593 |
+
#: ../modules/user-listing/userlisting.php:701
|
| 2594 |
+
msgid "Click here to see more information about this user."
|
| 2595 |
+
msgstr ""
|
| 2596 |
+
|
| 2597 |
+
#: ../modules/user-listing/userlisting.php:789
|
| 2598 |
+
#: ../modules/user-listing/userlisting.php:792
|
| 2599 |
+
msgid "Click here to go back"
|
| 2600 |
+
msgstr ""
|
| 2601 |
+
|
| 2602 |
+
#: ../modules/user-listing/userlisting.php:789
|
| 2603 |
+
msgid "Back"
|
| 2604 |
+
msgstr ""
|
| 2605 |
+
|
| 2606 |
+
#: ../modules/user-listing/userlisting.php:822
|
| 2607 |
+
msgid "«« First"
|
| 2608 |
+
msgstr ""
|
| 2609 |
+
|
| 2610 |
+
#: ../modules/user-listing/userlisting.php:823
|
| 2611 |
+
msgid "« Prev"
|
| 2612 |
+
msgstr ""
|
| 2613 |
+
|
| 2614 |
+
#: ../modules/user-listing/userlisting.php:824
|
| 2615 |
+
msgid "Next » "
|
| 2616 |
+
msgstr ""
|
| 2617 |
+
|
| 2618 |
+
#: ../modules/user-listing/userlisting.php:825
|
| 2619 |
+
msgid "Last »»"
|
| 2620 |
+
msgstr ""
|
| 2621 |
+
|
| 2622 |
+
#: ../modules/user-listing/userlisting.php:854
|
| 2623 |
+
msgid "You don't have any pagination settings on this userlisting!"
|
| 2624 |
+
msgstr ""
|
| 2625 |
+
|
| 2626 |
+
#: ../modules/user-listing/userlisting.php:895
|
| 2627 |
+
msgid "Search"
|
| 2628 |
+
msgstr ""
|
| 2629 |
+
|
| 2630 |
+
#: ../modules/user-listing/userlisting.php:896
|
| 2631 |
+
msgid "Clear Results"
|
| 2632 |
+
msgstr ""
|
| 2633 |
+
|
| 2634 |
+
#: ../modules/user-listing/userlisting.php:1072
|
| 2635 |
+
msgid "Extra shortcode parameters"
|
| 2636 |
+
msgstr ""
|
| 2637 |
+
|
| 2638 |
+
#: ../modules/user-listing/userlisting.php:1074
|
| 2639 |
+
msgid ""
|
| 2640 |
+
"displays users having a certain meta-value within a certain (extra) meta-"
|
| 2641 |
+
"field"
|
| 2642 |
+
msgstr ""
|
| 2643 |
+
|
| 2644 |
+
#: ../modules/user-listing/userlisting.php:1075
|
| 2645 |
+
msgid "Example:"
|
| 2646 |
+
msgstr ""
|
| 2647 |
+
|
| 2648 |
+
#: ../modules/user-listing/userlisting.php:1077
|
| 2649 |
+
msgid ""
|
| 2650 |
+
"Remember though, that the field-value combination must exist in the database."
|
| 2651 |
+
msgstr ""
|
| 2652 |
+
|
| 2653 |
+
#: ../modules/user-listing/userlisting.php:1131
|
| 2654 |
+
msgid "Random (very slow on large databases > 10K user)"
|
| 2655 |
+
msgstr ""
|
| 2656 |
+
|
| 2657 |
+
#: ../modules/user-listing/userlisting.php:1144
|
| 2658 |
+
msgid "Roles to Display"
|
| 2659 |
+
msgstr ""
|
| 2660 |
+
|
| 2661 |
+
#: ../modules/user-listing/userlisting.php:1144
|
| 2662 |
+
msgid ""
|
| 2663 |
+
"Restrict the userlisting to these selected roles only<br/>If not specified, "
|
| 2664 |
+
"defaults to all existing roles"
|
| 2665 |
+
msgstr ""
|
| 2666 |
+
|
| 2667 |
+
#: ../modules/user-listing/userlisting.php:1145
|
| 2668 |
+
msgid "Number of Users/Page"
|
| 2669 |
+
msgstr ""
|
| 2670 |
+
|
| 2671 |
+
#: ../modules/user-listing/userlisting.php:1145
|
| 2672 |
+
msgid ""
|
| 2673 |
+
"Set the number of users to be displayed on every paginated part of the all-"
|
| 2674 |
+
"userlisting"
|
| 2675 |
+
msgstr ""
|
| 2676 |
+
|
| 2677 |
+
#: ../modules/user-listing/userlisting.php:1146
|
| 2678 |
+
msgid "Default Sorting Criteria"
|
| 2679 |
+
msgstr ""
|
| 2680 |
+
|
| 2681 |
+
#: ../modules/user-listing/userlisting.php:1146
|
| 2682 |
+
msgid ""
|
| 2683 |
+
"Set the default sorting criteria<br/>This can temporarily be changed for "
|
| 2684 |
+
"each new session"
|
| 2685 |
+
msgstr ""
|
| 2686 |
+
|
| 2687 |
+
#: ../modules/user-listing/userlisting.php:1147
|
| 2688 |
+
msgid "Default Sorting Order"
|
| 2689 |
+
msgstr ""
|
| 2690 |
+
|
| 2691 |
+
#: ../modules/user-listing/userlisting.php:1147
|
| 2692 |
+
msgid ""
|
| 2693 |
+
"Set the default sorting order<br/>This can temporarily be changed for each "
|
| 2694 |
+
"new session"
|
| 2695 |
+
msgstr ""
|
| 2696 |
+
|
| 2697 |
+
#: ../modules/user-listing/userlisting.php:1148
|
| 2698 |
+
msgid "Avatar Size (All-userlisting)"
|
| 2699 |
+
msgstr ""
|
| 2700 |
+
|
| 2701 |
+
#: ../modules/user-listing/userlisting.php:1148
|
| 2702 |
+
msgid "Set the avatar size on the all-userlisting only"
|
| 2703 |
+
msgstr ""
|
| 2704 |
+
|
| 2705 |
+
#: ../modules/user-listing/userlisting.php:1149
|
| 2706 |
+
msgid "Avatar Size (Single-userlisting)"
|
| 2707 |
+
msgstr ""
|
| 2708 |
+
|
| 2709 |
+
#: ../modules/user-listing/userlisting.php:1149
|
| 2710 |
+
msgid "Set the avatar size on the single-userlisting only"
|
| 2711 |
+
msgstr ""
|
| 2712 |
+
|
| 2713 |
+
#: ../modules/user-listing/userlisting.php:1150
|
| 2714 |
+
msgid "Visible only to logged in users?"
|
| 2715 |
+
msgstr ""
|
| 2716 |
+
|
| 2717 |
+
#: ../modules/user-listing/userlisting.php:1150
|
| 2718 |
+
msgid "The userlisting will only be visible only to the logged in users"
|
| 2719 |
+
msgstr ""
|
| 2720 |
+
|
| 2721 |
+
#: ../modules/user-listing/userlisting.php:1151
|
| 2722 |
+
msgid "Visible to following Roles"
|
| 2723 |
+
msgstr ""
|
| 2724 |
+
|
| 2725 |
+
#: ../modules/user-listing/userlisting.php:1151
|
| 2726 |
+
msgid "The userlisting will only be visible to the following roles"
|
| 2727 |
+
msgstr ""
|
| 2728 |
+
|
| 2729 |
+
#: ../modules/user-listing/userlisting.php:1157
|
| 2730 |
+
msgid "Userlisting Settings"
|
| 2731 |
+
msgstr ""
|
| 2732 |
+
|
| 2733 |
+
#: ../modules/user-listing/userlisting.php:1178
|
| 2734 |
+
msgid ""
|
| 2735 |
+
"You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
| 2736 |
+
msgstr ""
|
| 2737 |
+
|
| 2738 |
+
#: ../modules/user-listing/userlisting.php:1178
|
| 2739 |
+
msgid "You can find it in the Profile Builder menu."
|
| 2740 |
+
msgstr ""
|
| 2741 |
+
|
| 2742 |
+
#: ../modules/user-listing/userlisting.php:1328
|
| 2743 |
+
msgid "No results found!"
|
| 2744 |
+
msgstr ""
|
