Version Description
- Added option to Log In with either Username or Email.
- Added default values for "Logout" shortcode so it displays even if you don't pass any arguments to it.
Download this release
Release Info
Developer | reflectionmedia |
Plugin | User registration & user profile – Profile Builder |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.0.9 to 2.1.0
- admin/general-settings.php +9 -3
- assets/lib/wck-api/fields/checkbox.php +8 -2
- assets/lib/wck-api/fields/radio.php +8 -2
- assets/lib/wck-api/fields/upload.php +10 -4
- assets/lib/wck-api/fields/wysiwyg editor.php +1 -1
- assets/lib/wck-api/wordpress-creation-kit.php +8 -8
- front-end/login.php +40 -5
- front-end/logout.php +3 -9
- index.php +2 -2
- readme.txt +7 -2
- translation/profilebuilder.pot +569 -442
admin/general-settings.php
CHANGED
@@ -16,7 +16,7 @@ function wppb_generate_default_settings_defaults(){
|
|
16 |
$wppb_general_settings = get_option( 'wppb_general_settings', 'not_found' );
|
17 |
|
18 |
if ( $wppb_general_settings == 'not_found' )
|
19 |
-
update_option( 'wppb_general_settings', array( 'extraFieldsLayout' => 'default', 'emailConfirmation' => 'no', 'activationLandingPage' => '', 'adminApproval' => 'no', 'loginWith' => '
|
20 |
}
|
21 |
|
22 |
|
@@ -100,7 +100,7 @@ function wppb_general_settings_content() {
|
|
100 |
</p>
|
101 |
</td>
|
102 |
</tr>
|
103 |
-
|
104 |
|
105 |
<?php
|
106 |
if ( file_exists( WPPB_PLUGIN_DIR.'/features/admin-approval/admin-approval.php' ) ){
|
@@ -134,16 +134,22 @@ function wppb_general_settings_content() {
|
|
134 |
</td>
|
135 |
</tr>
|
136 |
<?php } ?>
|
137 |
-
|
138 |
<tr>
|
139 |
<th scope="row">
|
140 |
<?php _e( 'Allow Users to Log in With:', 'profilebuilder' ); ?>
|
141 |
</th>
|
142 |
<td>
|
143 |
<select name="wppb_general_settings[loginWith]" class="wppb-select">
|
|
|
144 |
<option value="username" <?php if ( $wppb_generalSettings['loginWith'] == 'username' ) echo 'selected'; ?>><?php _e( 'Username', 'profilebuilder' ); ?></option>
|
145 |
<option value="email" <?php if ( $wppb_generalSettings['loginWith'] == 'email' ) echo 'selected'; ?>><?php _e( 'Email', 'profilebuilder' ); ?></option>
|
146 |
</select>
|
|
|
|
|
|
|
|
|
|
|
147 |
</td>
|
148 |
</tr>
|
149 |
|
16 |
$wppb_general_settings = get_option( 'wppb_general_settings', 'not_found' );
|
17 |
|
18 |
if ( $wppb_general_settings == 'not_found' )
|
19 |
+
update_option( 'wppb_general_settings', array( 'extraFieldsLayout' => 'default', 'emailConfirmation' => 'no', 'activationLandingPage' => '', 'adminApproval' => 'no', 'loginWith' => 'usernameemail' ) );
|
20 |
}
|
21 |
|
22 |
|
100 |
</p>
|
101 |
</td>
|
102 |
</tr>
|
103 |
+
|
104 |
|
105 |
<?php
|
106 |
if ( file_exists( WPPB_PLUGIN_DIR.'/features/admin-approval/admin-approval.php' ) ){
|
134 |
</td>
|
135 |
</tr>
|
136 |
<?php } ?>
|
137 |
+
|
138 |
<tr>
|
139 |
<th scope="row">
|
140 |
<?php _e( 'Allow Users to Log in With:', 'profilebuilder' ); ?>
|
141 |
</th>
|
142 |
<td>
|
143 |
<select name="wppb_general_settings[loginWith]" class="wppb-select">
|
144 |
+
<option value="usernameemail" <?php if ( $wppb_generalSettings['loginWith'] == 'usernameemail' ) echo 'selected'; ?>><?php _e( 'Username and Email', 'profilebuilder' ); ?></option>
|
145 |
<option value="username" <?php if ( $wppb_generalSettings['loginWith'] == 'username' ) echo 'selected'; ?>><?php _e( 'Username', 'profilebuilder' ); ?></option>
|
146 |
<option value="email" <?php if ( $wppb_generalSettings['loginWith'] == 'email' ) echo 'selected'; ?>><?php _e( 'Email', 'profilebuilder' ); ?></option>
|
147 |
</select>
|
148 |
+
<ul>
|
149 |
+
<li class="description"><?php _e( '"Username and Email" - users can Log In with both Username and Email.', 'profilebuilder' ); ?></li>
|
150 |
+
<li class="description"><?php _e( '"Username" - users can Log In only with Username.', 'profilebuilder' ); ?></li>
|
151 |
+
<li class="description"><?php _e( '"Email" - users can Log In only with Email.', 'profilebuilder' ); ?></li>
|
152 |
+
</ul>
|
153 |
</td>
|
154 |
</tr>
|
155 |
|
assets/lib/wck-api/fields/checkbox.php
CHANGED
@@ -33,7 +33,7 @@ if( !empty( $details['options'] ) ){
|
|
33 |
}
|
34 |
}
|
35 |
|
36 |
-
$element .= '<div><label><input type="checkbox" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) );
|
37 |
if( $this->args['single'] ) {
|
38 |
$element .= '[]';
|
39 |
}
|
@@ -41,7 +41,13 @@ if( !empty( $details['options'] ) ){
|
|
41 |
|
42 |
if( !empty( $frontend_prefix ) )
|
43 |
$element .= $frontend_prefix;
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
$element .= '</div>';
|
47 |
}
|
33 |
}
|
34 |
}
|
35 |
|
36 |
+
$element .= '<div><label><input type="checkbox" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) );
|
37 |
if( $this->args['single'] ) {
|
38 |
$element .= '[]';
|
39 |
}
|
41 |
|
42 |
if( !empty( $frontend_prefix ) )
|
43 |
$element .= $frontend_prefix;
|
44 |
+
|
45 |
+
/* since the slug below is generated from the value as well we need to determine here if we have a slug or not and not let the wck_generate_slug() function do that */
|
46 |
+
if( !empty( $details['slug'] ) )
|
47 |
+
$slug_from = $details['slug'];
|
48 |
+
else
|
49 |
+
$slug_from = $details['title'];
|
50 |
+
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $slug_from . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-checkbox mb-field" />'. esc_html( $label ) .'</label></div>' ;
|
51 |
}
|
52 |
$element .= '</div>';
|
53 |
}
|
assets/lib/wck-api/fields/radio.php
CHANGED
@@ -31,8 +31,14 @@ if( !empty( $details['options'] ) ){
|
|
31 |
|
32 |
$element .= '<div><label><input type="radio" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
33 |
if( !empty( $frontend_prefix ) )
|
34 |
-
$element .= $frontend_prefix;
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
$element .= '</div>';
|
38 |
}
|
31 |
|
32 |
$element .= '<div><label><input type="radio" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
33 |
if( !empty( $frontend_prefix ) )
|
34 |
+
$element .= $frontend_prefix;
|
35 |
+
|
36 |
+
/* since the slug below is generated from the value as well we need to determine here if we have a slug or not and not let the wck_generate_slug() function do that */
|
37 |
+
if( !empty( $details['slug'] ) )
|
38 |
+
$slug_from = $details['slug'];
|
39 |
+
else
|
40 |
+
$slug_from = $details['title'];
|
41 |
+
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $slug_from . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-radio mb-field" />'. esc_html( $label ) .'</label></div>';
|
42 |
}
|
43 |
$element .= '</div>';
|
44 |
}
|
assets/lib/wck-api/fields/upload.php
CHANGED
@@ -4,10 +4,16 @@
|
|
4 |
* @param string $value Contains input value;
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
/* define id's for input and info div */
|
9 |
-
$upload_input_id = str_replace( '-', '_', Wordpress_Creation_Kit_PB::wck_generate_slug( $meta . $
|
10 |
-
$upload_info_div_id = str_replace( '-', '_', Wordpress_Creation_Kit_PB::wck_generate_slug( $meta .'_info_container_'. $
|
11 |
|
12 |
/* hidden input that will hold the attachment id */
|
13 |
$element .= '<input id="'. esc_attr( $upload_input_id ) .'" type="hidden" size="36" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" value="'. $value .'" class="mb-text-input mb-field"/>';
|
@@ -45,7 +51,7 @@ $media_upload_url = 'media-upload.php?'.$attach_to_post.'type=file&mb_type='
|
|
45 |
|
46 |
$media_upload_url = admin_url( $media_upload_url );
|
47 |
|
48 |
-
$element .= '<a id="upload_'. esc_attr(Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) ) .'_button" class="button" onclick="tb_show(\'\', \''.$media_upload_url.'\');">'. __( 'Upload ', 'wck' ) . $details['title'] .' </a>';
|
49 |
|
50 |
/* add js global var for the hidden input, and info container div */
|
51 |
$element .= '<script type="text/javascript">';
|
4 |
* @param string $value Contains input value;
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
+
|
8 |
+
/* since the slug below is generated dinamically from other elements we need to determine here if we have a slug or not and not let the wck_generate_slug() function do that */
|
9 |
+
if( !empty( $details['slug'] ) )
|
10 |
+
$slug_from = $details['slug'];
|
11 |
+
else
|
12 |
+
$slug_from = $details['title'];
|
13 |
+
|
14 |
/* define id's for input and info div */
|
15 |
+
$upload_input_id = str_replace( '-', '_', Wordpress_Creation_Kit_PB::wck_generate_slug( $meta . $slug_from ) );
|
16 |
+
$upload_info_div_id = str_replace( '-', '_', Wordpress_Creation_Kit_PB::wck_generate_slug( $meta .'_info_container_'. $slug_from ) );
|
17 |
|
18 |
/* hidden input that will hold the attachment id */
|
19 |
$element .= '<input id="'. esc_attr( $upload_input_id ) .'" type="hidden" size="36" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" value="'. $value .'" class="mb-text-input mb-field"/>';
|
51 |
|
52 |
$media_upload_url = admin_url( $media_upload_url );
|
53 |
|
54 |
+
$element .= '<a id="upload_'. esc_attr(Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'_button" class="button" onclick="tb_show(\'\', \''.$media_upload_url.'\');">'. __( 'Upload ', 'wck' ) . $details['title'] .' </a>';
|
55 |
|
56 |
/* add js global var for the hidden input, and info container div */
|
57 |
$element .= '<script type="text/javascript">';
|
assets/lib/wck-api/fields/wysiwyg editor.php
CHANGED
@@ -5,6 +5,6 @@
|
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
-
$element .= '<textarea name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" style="vertical-align:top;width:400px;height:200px" class="mb-textarea mb-field '. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) ) .'">'. esc_html( $value ) .'</textarea>';
|
9 |
$element .= '<script type="text/javascript">jQuery( function(){ if ( typeof wckInitTinyMCE == "function" ) wckInitTinyMCE("'. Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) .'")});</script>';
|
10 |
?>
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
+
$element .= '<textarea name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" style="vertical-align:top;width:400px;height:200px" class="mb-textarea mb-field '. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'">'. esc_html( $value ) .'</textarea>';
|
9 |
$element .= '<script type="text/javascript">jQuery( function(){ if ( typeof wckInitTinyMCE == "function" ) wckInitTinyMCE("'. Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) .'")});</script>';
|
10 |
?>
|
assets/lib/wck-api/wordpress-creation-kit.php
CHANGED
@@ -226,7 +226,7 @@ class Wordpress_Creation_Kit_PB{
|
|
226 |
}
|
227 |
else{
|
228 |
if( isset( $details['default'] ) && !( $this->args['single'] == true && !is_null( $value ) ) ) {
|
229 |
-
$value = apply_filters("wck_default_value_{$meta}_" . Wordpress_Creation_Kit_PB::wck_generate_slug($details['title']), $details['default']);
|
230 |
}
|
231 |
}
|
232 |
|
@@ -237,7 +237,7 @@ class Wordpress_Creation_Kit_PB{
|
|
237 |
else
|
238 |
$single_prefix = '';
|
239 |
|
240 |
-
$element .= '<label for="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) ) .'" class="field-label">'. apply_filters( "wck_label_{$meta}_". Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ), ucfirst($details['title']) ) .':';
|
241 |
if( !empty( $details['required'] ) && $details['required'] )
|
242 |
$element .= '<span class="required">*</span>';
|
243 |
$element .= '</label>';
|
@@ -317,8 +317,8 @@ class Wordpress_Creation_Kit_PB{
|
|
317 |
$value = '';
|
318 |
if( $this->args['single'] == true ) {
|
319 |
$value = null;
|
320 |
-
if (isset($results[0][Wordpress_Creation_Kit_PB::wck_generate_slug($details['title'])]))
|
321 |
-
$value = $results[0][Wordpress_Creation_Kit_PB::wck_generate_slug($details['title'])];
|
322 |
}
|
323 |
?>
|
324 |
<li class="row-<?php echo esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) ?>">
|
@@ -1029,16 +1029,16 @@ class Wordpress_Creation_Kit_PB{
|
|
1029 |
if( !empty( $this->args['meta_array'] ) ){
|
1030 |
foreach ($this->args['meta_array'] as $meta_field){
|
1031 |
/* in the $_POST the names for the fields are prefixed with the meta_name for the single metaboxes in case there are multiple metaboxes that contain fields wit hthe same name */
|
1032 |
-
$single_field_name = $this->args['meta_name'] .'_'. Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'] );
|
1033 |
if (!empty($_POST[$single_field_name])) {
|
1034 |
/* checkbox needs to be stored as string not array */
|
1035 |
if( $meta_field['type'] == 'checkbox' )
|
1036 |
$_POST[$single_field_name] = implode( ', ', $_POST[$single_field_name] );
|
1037 |
|
1038 |
-
$meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title'])] = $_POST[$single_field_name];
|
1039 |
}
|
1040 |
else
|
1041 |
-
$meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title'])] = '';
|
1042 |
}
|
1043 |
}
|
1044 |
|
@@ -1061,7 +1061,7 @@ class Wordpress_Creation_Kit_PB{
|
|
1061 |
if ($this->args['unserialize_fields']) {
|
1062 |
if (!empty($this->args['meta_array'])) {
|
1063 |
foreach ($this->args['meta_array'] as $meta_field) {
|
1064 |
-
update_post_meta($post_id, $meta_name . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title']) . '_1', $_POST[$this->args['meta_name'] . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title'])]);
|
1065 |
}
|
1066 |
}
|
1067 |
}
|
226 |
}
|
227 |
else{
|
228 |
if( isset( $details['default'] ) && !( $this->args['single'] == true && !is_null( $value ) ) ) {
|
229 |
+
$value = apply_filters("wck_default_value_{$meta}_" . Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ), $details['default']);
|
230 |
}
|
231 |
}
|
232 |
|
237 |
else
|
238 |
$single_prefix = '';
|
239 |
|
240 |
+
$element .= '<label for="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="field-label">'. apply_filters( "wck_label_{$meta}_". Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ), ucfirst($details['title']) ) .':';
|
241 |
if( !empty( $details['required'] ) && $details['required'] )
|
242 |
$element .= '<span class="required">*</span>';
|
243 |
$element .= '</label>';
|
317 |
$value = '';
|
318 |
if( $this->args['single'] == true ) {
|
319 |
$value = null;
|
320 |
+
if (isset($results[0][Wordpress_Creation_Kit_PB::wck_generate_slug($details['title'], $details )]))
|
321 |
+
$value = $results[0][Wordpress_Creation_Kit_PB::wck_generate_slug($details['title'], $details )];
|
322 |
}
|
323 |
?>
|
324 |
<li class="row-<?php echo esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) ?>">
|
1029 |
if( !empty( $this->args['meta_array'] ) ){
|
1030 |
foreach ($this->args['meta_array'] as $meta_field){
|
1031 |
/* in the $_POST the names for the fields are prefixed with the meta_name for the single metaboxes in case there are multiple metaboxes that contain fields wit hthe same name */
|
1032 |
+
$single_field_name = $this->args['meta_name'] .'_'. Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'],$meta_field );
|
1033 |
if (!empty($_POST[$single_field_name])) {
|
1034 |
/* checkbox needs to be stored as string not array */
|
1035 |
if( $meta_field['type'] == 'checkbox' )
|
1036 |
$_POST[$single_field_name] = implode( ', ', $_POST[$single_field_name] );
|
1037 |
|
1038 |
+
$meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field )] = $_POST[$single_field_name];
|
1039 |
}
|
1040 |
else
|
1041 |
+
$meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field )] = '';
|
1042 |
}
|
1043 |
}
|
1044 |
|
1061 |
if ($this->args['unserialize_fields']) {
|
1062 |
if (!empty($this->args['meta_array'])) {
|
1063 |
foreach ($this->args['meta_array'] as $meta_field) {
|
1064 |
+
update_post_meta($post_id, $meta_name . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field ) . '_1', $_POST[$this->args['meta_name'] . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'], $meta_field )]);
|
1065 |
}
|
1066 |
}
|
1067 |
}
|
front-end/login.php
CHANGED
@@ -24,9 +24,9 @@ function wppb_change_login_with_email(){
|
|
24 |
// only do this for our form
|
25 |
if( isset( $_POST['wppb_login'] ) ){
|
26 |
global $wpdb, $_POST;
|
27 |
-
|
28 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
29 |
-
|
30 |
// if this setting is active, the posted username is, in fact the user's email
|
31 |
if( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'email' ) ){
|
32 |
$username = $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM $wpdb->users WHERE user_email= %s LIMIT 1", trim( $_POST['log'] ) ) );
|
@@ -34,7 +34,24 @@ function wppb_change_login_with_email(){
|
|
34 |
if( !empty( $username ) )
|
35 |
$_POST['log'] = $username;
|
36 |
|
37 |
-
else{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
// if we don't have a username for the email entered we can't have an empty username because we will receive a field empty error
|
39 |
$_POST['log'] = 'this_is_an_invalid_email'.time();
|
40 |
}
|
@@ -83,6 +100,10 @@ function wppb_login_redirect( $redirect_to, $redirect_url, $user ){
|
|
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)) {
|
@@ -144,7 +165,11 @@ function wppb_front_end_login( $atts ){
|
|
144 |
// change the label argument for username is login with email is enabled
|
145 |
if ( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'email' ) )
|
146 |
$form_args['label_username'] = __( 'Email', 'profilebuilder' );
|
147 |
-
|
|
|
|
|
|
|
|
|
148 |
// initialize our form variable
|
149 |
$login_form = '';
|
150 |
|
@@ -197,7 +222,17 @@ function wppb_front_end_login( $atts ){
|
|
197 |
|
198 |
else
|
199 |
$display_name = $wppb_user->display_name;
|
200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
$logged_in_message = '<p class="wppb-alert">';
|
202 |
$user_url = '<a href="'.$authorPostsUrl = get_author_posts_url( $wppb_user->ID ).'" class="wppb-author-url" title="'.$display_name.'">'.$display_name.'</a>';
|
203 |
$logout_url = '<a href="'.wp_logout_url( $redirectTo = wppb_curpageurl() ).'" class="wppb-logout-url" title="'.__( 'Log out of this account', 'profilebuilder' ).'">'. __( 'Log out', 'profilebuilder').' »</a>';
|
24 |
// only do this for our form
|
25 |
if( isset( $_POST['wppb_login'] ) ){
|
26 |
global $wpdb, $_POST;
|
27 |
+
|
28 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
29 |
+
|
30 |
// if this setting is active, the posted username is, in fact the user's email
|
31 |
if( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'email' ) ){
|
32 |
$username = $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM $wpdb->users WHERE user_email= %s LIMIT 1", trim( $_POST['log'] ) ) );
|
34 |
if( !empty( $username ) )
|
35 |
$_POST['log'] = $username;
|
36 |
|
37 |
+
else {
|
38 |
+
// if we don't have a username for the email entered we can't have an empty username because we will receive a field empty error
|
39 |
+
$_POST['log'] = 'this_is_an_invalid_email'.time();
|
40 |
+
}
|
41 |
+
}
|
42 |
+
|
43 |
+
// if this setting is active, the posted username is, in fact the user's email or username
|
44 |
+
if( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'usernameemail' ) ) {
|
45 |
+
if( is_email( $_POST['log'] ) ) {
|
46 |
+
$username = $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM $wpdb->users WHERE user_email= %s LIMIT 1", trim( $_POST['log'] ) ) );
|
47 |
+
} else {
|
48 |
+
$username = $_POST['log'];
|
49 |
+
}
|
50 |
+
|
51 |
+
if( !empty( $username ) )
|
52 |
+
$_POST['log'] = $username;
|
53 |
+
|
54 |
+
else {
|
55 |
// if we don't have a username for the email entered we can't have an empty username because we will receive a field empty error
|
56 |
$_POST['log'] = 'this_is_an_invalid_email'.time();
|
57 |
}
|
100 |
if ($wppb_generalSettings['loginWith'] == 'email')
|
101 |
$error_string = str_replace( __('username','profilebuilder'), __('email','profilebuilder'), $error_string);
|
102 |
|
103 |
+
// if login with username and email is enabled change the word username with username or email
|
104 |
+
if ($wppb_generalSettings['loginWith'] == 'usernameemail')
|
105 |
+
$error_string = str_replace( __('username','profilebuilder'), __('username or email','profilebuilder'), $error_string);
|
106 |
+
|
107 |
}
|
108 |
// if the error string is empty it means that none of the fields were completed
|
109 |
if (empty($error_string)) {
|
165 |
// change the label argument for username is login with email is enabled
|
166 |
if ( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'email' ) )
|
167 |
$form_args['label_username'] = __( 'Email', 'profilebuilder' );
|
168 |
+
|
169 |
+
// change the label argument for username on login with username or email when Username and Email is enabled
|
170 |
+
if ( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'usernameemail' ) )
|
171 |
+
$form_args['label_username'] = __( 'Username or Email', 'profilebuilder' );
|
172 |
+
|
173 |
// initialize our form variable
|
174 |
$login_form = '';
|
175 |
|
222 |
|
223 |
else
|
224 |
$display_name = $wppb_user->display_name;
|
225 |
+
|
226 |
+
if( isset( $wppb_generalSettings['loginWith'] ) && ( $wppb_generalSettings['loginWith'] == 'usernameemail' ) )
|
227 |
+
if( $wppb_user->user_login == Wordpress_Creation_Kit_PB::wck_generate_slug( trim( $wppb_user->user_email ) ) )
|
228 |
+
$display_name = $wppb_user->user_email;
|
229 |
+
|
230 |
+
elseif($wppb_user->display_name !== '')
|
231 |
+
$display_name = $wppb_user->user_login;
|
232 |
+
|
233 |
+
else
|
234 |
+
$display_name = $wppb_user->display_name;
|
235 |
+
|
236 |
$logged_in_message = '<p class="wppb-alert">';
|
237 |
$user_url = '<a href="'.$authorPostsUrl = get_author_posts_url( $wppb_user->ID ).'" class="wppb-author-url" title="'.$display_name.'">'.$display_name.'</a>';
|
238 |
$logout_url = '<a href="'.wp_logout_url( $redirectTo = wppb_curpageurl() ).'" class="wppb-logout-url" title="'.__( 'Log out of this account', 'profilebuilder' ).'">'. __( 'Log out', 'profilebuilder').' »</a>';
|
front-end/logout.php
CHANGED
@@ -10,17 +10,11 @@
|
|
10 |
if( !is_user_logged_in() )
|
11 |
return;
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
$logout_link = '';
|
16 |
-
|
17 |
-
if( trim($text) == '' )
|
18 |
-
return;
|
19 |
|
20 |
-
|
21 |
-
$logout_link = '<a href="' . wp_logout_url( $redirect ) . '" class="wppb-logout-url" title="' . __( 'Log out of this account', 'profilebuilder' ) . '">' . $link_text . '</a>';
|
22 |
|
23 |
-
$
|
24 |
|
25 |
$meta_tags = apply_filters( 'wppb_front_end_logout_meta_tags', array( '{{meta_user_name}}', '{{meta_first_name}}', '{{meta_last_name}}', '{{meta_display_name}}' ) );
|
26 |
$meta_tags_values = apply_filters( 'wppb_front_end_logout_meta_tags_values', array( $current_user->user_login, $current_user->first_name, $current_user->last_name, $current_user->display_name ) );
|
10 |
if( !is_user_logged_in() )
|
11 |
return;
|
12 |
|
13 |
+
$current_user = get_userdata( get_current_user_id() );
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
+
extract( shortcode_atts( array( 'text' => sprintf( __('You are currently logged in as %s. ','profilebuilder') ,$current_user->user_login) , 'redirect' => wppb_curpageurl(), 'link_text' => __('Log out »','profilebuilder')), $atts ) );
|
|
|
16 |
|
17 |
+
$logout_link = '<a href="' . wp_logout_url( $redirect ) . '" class="wppb-logout-url" title="' . __( 'Log out of this account', 'profilebuilder' ) . '">' . $link_text . '</a>';
|
18 |
|
19 |
$meta_tags = apply_filters( 'wppb_front_end_logout_meta_tags', array( '{{meta_user_name}}', '{{meta_first_name}}', '{{meta_last_name}}', '{{meta_display_name}}' ) );
|
20 |
$meta_tags_values = apply_filters( 'wppb_front_end_logout_meta_tags_values', array( $current_user->user_login, $current_user->first_name, $current_user->last_name, $current_user->display_name ) );
|
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
|
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
|
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
-
define('PROFILE_BUILDER_VERSION', '2.0
|
77 |
define('WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname(plugin_basename(__FILE__)));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: 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.1.0
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
|
8 |
Author URI: http://www.cozmoslabs.com/
|
9 |
License: GPL2
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
+
define('PROFILE_BUILDER_VERSION', '2.1.0' );
|
77 |
define('WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname(plugin_basename(__FILE__)));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
readme.txt
CHANGED
@@ -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.1
|
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 |
|
@@ -27,6 +27,7 @@ You can use the following shortcode list:
|
|
27 |
|
28 |
* **[wppb-edit-profile]** - to grant users front-end access to their profile (requires user to be logged in).
|
29 |
* **[wppb-login]** - to add a front-end login form.
|
|
|
30 |
* **[wppb-register]** - to add a front-end register form.
|
31 |
* **[wppb-recover-password]** - to add a password recovery form.
|
32 |
|
@@ -48,7 +49,7 @@ Users with administrator rights have access to the following features:
|
|
48 |
|
49 |
The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wp.org&utm_medium=plugin-description-page&utm_campaign=PBFree) has the following extra features:
|
50 |
|
51 |
-
* Create Extra User Fields (Heading, Input, Hidden-Input, Checkbox, Agree to Terms Checkbox, Radio Buttons, DatePicker, Textareas, reCAPTCHA, Upload fields, Selects, Country Selects, Timezone selects, Avatar Upload)
|
52 |
* Add Avatar Upload for users
|
53 |
* Front-end User Listing (fully customizable, sorting included)
|
54 |
* Create Multiple User Listings
|
@@ -108,6 +109,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
108 |
|
109 |
== Changelog ==
|
110 |
|
|
|
|
|
|
|
|
|
111 |
= 2.0.9 =
|
112 |
* Fixed bug that was causing the username to be sent instead of the email when login with email was set to true in the default registration emails.
|
113 |
* Fixed bug in Password Reset email when Login with email was on.
|
6 |
|
7 |
Requires at least: 3.1
|
8 |
Tested up to: 4.1
|
9 |
+
Stable tag: 2.1.0
|
10 |
|
11 |
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
12 |
|
27 |
|
28 |
* **[wppb-edit-profile]** - to grant users front-end access to their profile (requires user to be logged in).
|
29 |
* **[wppb-login]** - to add a front-end login form.
|
30 |
+
* **[wppb-logout]** - to add logout functionality.
|
31 |
* **[wppb-register]** - to add a front-end register form.
|
32 |
* **[wppb-recover-password]** - to add a password recovery form.
|
33 |
|
49 |
|
50 |
The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wp.org&utm_medium=plugin-description-page&utm_campaign=PBFree) has the following extra features:
|
51 |
|
52 |
+
* Create Extra User Fields (Heading, Input, Hidden-Input, Checkbox, Agree to Terms Checkbox, Radio Buttons, DatePicker, Textareas, reCAPTCHA, Upload fields, Selects, User Role Select, Country Selects, Timezone selects, Avatar Upload)
|
53 |
* Add Avatar Upload for users
|
54 |
* Front-end User Listing (fully customizable, sorting included)
|
55 |
* Create Multiple User Listings
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 2.1.0 =
|
113 |
+
* Added option to Log In with either Username or Email.
|
114 |
+
* Added default values for "Logout" shortcode so it displays even if you don't pass any arguments to it.
|
115 |
+
|
116 |
= 2.0.9 =
|
117 |
* Fixed bug that was causing the username to be sent instead of the email when login with email was set to true in the default registration emails.
|
118 |
* Fixed bug in Password Reset email when Login with email was on.
|
translation/profilebuilder.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: profilebuilder\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Cozmoslabs\n"
|
8 |
"Language: en\n"
|
@@ -49,8 +49,8 @@ msgstr ""
|
|
49 |
msgid "Hide"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
53 |
-
#: ../admin/register-version.php:
|
54 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
55 |
#: ../modules/modules.php:142
|
56 |
msgid "Save Changes"
|
@@ -69,30 +69,34 @@ msgid "General Settings"
|
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../admin/admin-functions.php:106
|
72 |
-
|
|
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:
|
76 |
msgid "Very weak"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:
|
80 |
-
#: ../features/functions.php:
|
81 |
msgid "Weak"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:
|
85 |
-
#: ../features/functions.php:
|
86 |
msgid "Medium"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:
|
90 |
-
#: ../features/functions.php:
|
91 |
msgid "Strong"
|
92 |
msgstr ""
|
93 |
|
94 |
#: ../admin/admin-functions.php:123
|
95 |
-
|
|
|
96 |
msgstr ""
|
97 |
|
98 |
#: ../admin/admin-functions.php:162
|
@@ -382,9 +386,9 @@ msgstr ""
|
|
382 |
|
383 |
#: ../admin/general-settings.php:45 ../admin/general-settings.php:60
|
384 |
#: ../admin/general-settings.php:114
|
385 |
-
#: ../modules/multiple-forms/register-forms.php:
|
386 |
-
#: ../modules/multiple-forms/register-forms.php:
|
387 |
-
#: ../modules/user-listing/userlisting.php:
|
388 |
msgid "Yes"
|
389 |
msgstr ""
|
390 |
|
@@ -398,8 +402,8 @@ msgid "\"Email Confirmation\" Activated:"
|
|
398 |
msgstr ""
|
399 |
|
400 |
#: ../admin/general-settings.php:61 ../admin/general-settings.php:115
|
401 |
-
#: ../modules/multiple-forms/register-forms.php:
|
402 |
-
#: ../modules/multiple-forms/register-forms.php:
|
403 |
msgid "No"
|
404 |
msgstr ""
|
405 |
|
@@ -465,38 +469,54 @@ msgstr ""
|
|
465 |
msgid "Allow Users to Log in With:"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../admin/general-settings.php:144
|
|
|
|
|
|
|
|
|
469 |
#: ../features/admin-approval/class-admin-approval.php:177
|
470 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
471 |
#: ../modules/email-customizer/email-customizer.php:28
|
472 |
-
#: ../modules/user-listing/userlisting.php:
|
473 |
-
#: ../modules/user-listing/userlisting.php:
|
474 |
-
#: ../modules/user-listing/userlisting.php:
|
475 |
msgid "Username"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: ../admin/general-settings.php:
|
479 |
#: ../modules/email-customizer/email-customizer.php:29
|
480 |
-
#: ../modules/user-listing/userlisting.php:
|
481 |
-
#: ../modules/user-listing/userlisting.php:
|
482 |
msgid "Email"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../admin/general-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid "Minimum Password Length:"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../admin/general-settings.php:
|
490 |
msgid ""
|
491 |
"Enter the minimum characters the password should have. Leave empty for no "
|
492 |
"minimum limit"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../admin/general-settings.php:
|
496 |
msgid "Minimum Password Strength:"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../admin/general-settings.php:
|
500 |
msgid "Disabled"
|
501 |
msgstr ""
|
502 |
|
@@ -508,25 +528,25 @@ msgstr ""
|
|
508 |
msgid "Manage Default and Extra Fields"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../admin/manage-fields.php:
|
512 |
msgid "Field Title"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../admin/manage-fields.php:
|
516 |
msgid "Title of the field"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../admin/manage-fields.php:
|
520 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
521 |
-
#: ../modules/multiple-forms/register-forms.php:
|
522 |
msgid "Field"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../admin/manage-fields.php:
|
526 |
msgid "Meta-name"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../admin/manage-fields.php:
|
530 |
msgid ""
|
531 |
"Use this in conjuction with WordPress functions to display the value in the "
|
532 |
"page of your choosing<br/>Auto-completed but in some cases editable (in "
|
@@ -534,434 +554,474 @@ msgid ""
|
|
534 |
"very big user-count"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../admin/manage-fields.php:
|
538 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
539 |
-
#: ../modules/multiple-forms/register-forms.php:
|
540 |
msgid "ID"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../admin/manage-fields.php:
|
544 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
545 |
-
#: ../modules/multiple-forms/register-forms.php:
|
546 |
msgid ""
|
547 |
"A unique, auto-generated ID for this particular field<br/>You can use this "
|
548 |
"in conjuction with filters to target this element if needed<br/>Can't be "
|
549 |
"edited"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../admin/manage-fields.php:
|
553 |
msgid "Description"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../admin/manage-fields.php:
|
557 |
msgid ""
|
558 |
"Enter a (detailed) description of the option for end users to read<br/"
|
559 |
">Optional"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../admin/manage-fields.php:
|
563 |
msgid "Row Count"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../admin/manage-fields.php:
|
567 |
msgid ""
|
568 |
"Specify the number of rows for a 'Textarea' field<br/>If not specified, "
|
569 |
"defaults to 5"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../admin/manage-fields.php:
|
573 |
msgid "Allowed Image Extensions"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../admin/manage-fields.php:
|
577 |
msgid ""
|
578 |
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
579 |
-
"ext2,.ext3<br/>If not specified, defaults to
|
580 |
-
"*)"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../admin/manage-fields.php:
|
584 |
msgid "Allowed Upload Extensions"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../admin/manage-fields.php:
|
588 |
msgid ""
|
589 |
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
590 |
-
"ext2,.ext3<br/>If not specified, defaults to all
|
|
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../admin/manage-fields.php:
|
594 |
msgid "Avatar Size"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../admin/manage-fields.php:
|
598 |
msgid ""
|
599 |
"Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
|
600 |
"specified, defaults to 100"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../admin/manage-fields.php:
|
604 |
msgid "Date-format"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../admin/manage-fields.php:
|
608 |
msgid ""
|
609 |
"Specify the format of the date when using Datepicker<br/>Valid options: mm/"
|
610 |
"dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not "
|
611 |
"specified, defaults to mm/dd/yy"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: ../admin/manage-fields.php:
|
615 |
msgid "Terms of Agreement"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../admin/manage-fields.php:
|
619 |
msgid ""
|
620 |
"Enter a detailed description of the temrs of agreement for the user to read."
|
621 |
"<br/>Links can be inserted by using standard HTML syntax: <a href="
|
622 |
"\"custom_url\">custom_text</a>"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../admin/manage-fields.php:
|
626 |
msgid "Options"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../admin/manage-fields.php:
|
630 |
msgid ""
|
631 |
"Enter a comma separated list of values<br/>This can be anything, as it is "
|
632 |
"hidden from the user, but should not contain special characters or "
|
633 |
"apostrophes"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../admin/manage-fields.php:
|
637 |
msgid "Labels"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../admin/manage-fields.php:
|
641 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../admin/manage-fields.php:
|
645 |
msgid "Public Key"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../admin/manage-fields.php:
|
649 |
msgid ""
|
650 |
"The public key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
651 |
"target=\"_blank\">www.google.com/recaptcha</a>"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: ../admin/manage-fields.php:
|
655 |
msgid "Private Key"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: ../admin/manage-fields.php:
|
659 |
msgid ""
|
660 |
"The private key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
661 |
"target=\"_blank\">www.google.com/recaptcha</a>"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../admin/manage-fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
665 |
msgid "Default Value"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../admin/manage-fields.php:
|
669 |
msgid "Default value of the field"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../admin/manage-fields.php:
|
673 |
msgid "Default Option"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../admin/manage-fields.php:
|
677 |
msgid "Specify the option which should be selected by default"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../admin/manage-fields.php:
|
681 |
msgid "Default Option(s)"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../admin/manage-fields.php:
|
685 |
msgid ""
|
686 |
"Specify the option which should be checked by default<br/>If there are "
|
687 |
"multiple values, separate them with a ',' (comma)"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../admin/manage-fields.php:
|
691 |
msgid "Default Content"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: ../admin/manage-fields.php:
|
695 |
msgid "Default value of the textarea"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: ../admin/manage-fields.php:
|
699 |
msgid "Required"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: ../admin/manage-fields.php:
|
703 |
msgid "Whether the field is required or not"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: ../admin/manage-fields.php:
|
707 |
msgid "Overwrite Existing"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../admin/manage-fields.php:
|
711 |
msgid ""
|
712 |
"Selecting 'Yes' will add the field to the list, but will overwrite any other "
|
713 |
"field in the database that has the same meta-name<br/>Use this at your own "
|
714 |
"risk"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../admin/manage-fields.php:
|
718 |
msgid "Field Properties"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../admin/manage-fields.php:
|
722 |
msgid "Registration & Edit Profile"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../admin/manage-fields.php:
|
726 |
msgid "Name"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../admin/manage-fields.php:
|
730 |
msgid "Usernames cannot be changed."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../admin/manage-fields.php:
|
734 |
msgid "First Name"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../admin/manage-fields.php:
|
738 |
msgid "Last Name"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../admin/manage-fields.php:
|
746 |
msgid "Display name publicly as"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../admin/manage-fields.php:
|
750 |
msgid "Contact Info"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../admin/manage-fields.php:
|
754 |
#: ../features/admin-approval/class-admin-approval.php:180
|
755 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
756 |
-
#: ../modules/user-listing/userlisting.php:
|
757 |
msgid "E-mail"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: ../admin/manage-fields.php:
|
761 |
-
#: ../modules/email-customizer/email-customizer.php:
|
762 |
-
#: ../modules/user-listing/userlisting.php:
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../admin/manage-fields.php:
|
769 |
msgid "AIM"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: ../admin/manage-fields.php:
|
773 |
msgid "Yahoo IM"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: ../admin/manage-fields.php:
|
777 |
msgid "Jabber / Google Talk"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../admin/manage-fields.php:
|
781 |
msgid "About Yourself"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: ../admin/manage-fields.php:
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../admin/manage-fields.php:
|
791 |
msgid ""
|
792 |
"Share a little biographical information to fill out your profile. This may "
|
793 |
"be shown publicly."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../admin/manage-fields.php:
|
797 |
#: ../modules/email-customizer/email-customizer.php:30
|
798 |
msgid "Password"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: ../admin/manage-fields.php:
|
802 |
msgid "Type your password."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: ../admin/manage-fields.php:
|
806 |
msgid "Repeat Password"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../admin/manage-fields.php:
|
810 |
msgid "Type your password again. "
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: ../admin/manage-fields.php:
|
814 |
msgid "You must select a field\n"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: ../admin/manage-fields.php:
|
818 |
msgid ""
|
819 |
"Please choose a different field type as this one already exists in your form "
|
820 |
"(must be unique)\n"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../admin/manage-fields.php:
|
824 |
msgid "The entered avatar size is not between 20 and 200\n"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../admin/manage-fields.php:
|
828 |
msgid "The entered avatar size is not numerical\n"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../admin/manage-fields.php:
|
832 |
msgid "The entered row number is not numerical\n"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../admin/manage-fields.php:
|
836 |
msgid "You must enter a value for the row number\n"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../admin/manage-fields.php:
|
840 |
msgid "You must enter the public key\n"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../admin/manage-fields.php:
|
844 |
msgid "You must enter the private key\n"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../admin/manage-fields.php:
|
848 |
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../admin/manage-fields.php:
|
852 |
msgid "You must enter a value for the date-format\n"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../admin/manage-fields.php:
|
856 |
msgid "The meta-name cannot be empty\n"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../admin/manage-fields.php:
|
860 |
-
#: ../admin/manage-fields.php:
|
861 |
msgid "That meta-name is already in use\n"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: ../admin/manage-fields.php:
|
865 |
#, php-format
|
866 |
msgid ""
|
867 |
"The following option(s) did not coincide with the ones in the options list: "
|
868 |
"%s\n"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../admin/manage-fields.php:
|
872 |
#, php-format
|
873 |
msgid ""
|
874 |
"The following option did not coincide with the ones in the options list: %s\n"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: ../admin/manage-fields.php:
|
|
|
|
|
|
|
|
|
878 |
msgid "That field is already added in this form\n"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: ../admin/manage-fields.php:
|
882 |
msgid ""
|
883 |
"<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
|
884 |
"required\">Required</pre>"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../admin/manage-fields.php:
|
888 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
889 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
890 |
-
#: ../features/functions.php:
|
891 |
-
#: ../modules/multiple-forms/multiple-forms.php:
|
892 |
msgid "Edit"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../admin/manage-fields.php:
|
896 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
897 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
898 |
#: ../features/admin-approval/class-admin-approval.php:124
|
899 |
#: ../features/admin-approval/class-admin-approval.php:235
|
900 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
901 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
902 |
-
#: ../features/functions.php:
|
903 |
msgid "Delete"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../admin/manage-fields.php:
|
907 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../admin/manage-fields.php:
|
911 |
msgid ""
|
912 |
"If you're interested in displaying different fields in the registration and "
|
913 |
"edit profile forms, please use the Multiple Registration & Edit Profile "
|
914 |
"Forms Addon."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: ../admin/register-version.php:
|
918 |
msgid "Register Your Version"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../admin/register-version.php:
|
922 |
msgid "Register Version"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: ../admin/register-version.php:
|
|
|
|
|
|
|
|
|
926 |
#, php-format
|
927 |
msgid ""
|
928 |
"Now that you acquired a copy of %s, you should take the time and register it "
|
929 |
"with the serial number you received"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: ../admin/register-version.php:
|
933 |
msgid ""
|
934 |
"If you register this version of Profile Builder, you'll receive information "
|
935 |
"regarding upgrades, patches, and technical support."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../admin/register-version.php:
|
939 |
msgid " Serial Number:"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../admin/register-version.php:
|
943 |
msgid "The serial number was successfully validated!"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../admin/register-version.php:
|
947 |
msgid "The serial number entered couldn't be validated!"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../admin/register-version.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
951 |
msgid "The serial number couldn't be validated because it expired!"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: ../admin/register-version.php:
|
|
|
|
|
|
|
|
|
|
|
955 |
msgid ""
|
956 |
"The serial number couldn't be validated because process timed out. This is "
|
957 |
"possible due to the server being down. Please try again later!"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: ../admin/register-version.php:
|
961 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../admin/register-version.php:
|
965 |
#, php-format
|
966 |
msgid ""
|
967 |
"<p>Your <strong>Profile Builder</strong> serial number is invalid or "
|
@@ -970,7 +1030,7 @@ msgid ""
|
|
970 |
"p>"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: ../admin/register-version.php:
|
974 |
#, php-format
|
975 |
msgid ""
|
976 |
"<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
|
@@ -979,7 +1039,7 @@ msgid ""
|
|
979 |
"%4$s %5$sDismiss%6$s</p>"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../admin/register-version.php:
|
983 |
#, php-format
|
984 |
msgid ""
|
985 |
"<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
|
@@ -1001,7 +1061,6 @@ msgid "You can add the information for the %s after you add a entry"
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
#: ../assets/lib/wck-api/fields/upload.php:31
|
1004 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
|
1005 |
msgid "Remove"
|
1006 |
msgstr ""
|
1007 |
|
@@ -1009,120 +1068,125 @@ msgstr ""
|
|
1009 |
msgid "Upload "
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
1013 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
msgid "Content"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
1018 |
msgid "Edit this item"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
1022 |
msgid "Delete this item"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
1026 |
msgid "Please enter a value for the required field "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
1030 |
-
msgid "Select File"
|
1031 |
-
msgstr ""
|
1032 |
-
|
1033 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
|
1034 |
msgid "Syncronize WCK"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:
|
1038 |
msgid "Syncronize WCK Translation"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: ../features/admin-approval/admin-approval.php:7
|
1042 |
-
#: ../features/admin-approval/class-admin-approval.php:
|
1043 |
msgid "Admin Approval"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: ../features/admin-approval/admin-approval.php:
|
1047 |
#: ../features/email-confirmation/email-confirmation.php:58
|
1048 |
msgid "Do you want to"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../features/admin-approval/admin-approval.php:
|
1052 |
msgid "Your session has expired! Please refresh the page and try again"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../features/admin-approval/admin-approval.php:
|
1056 |
msgid "User successfully approved!"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../features/admin-approval/admin-approval.php:
|
1060 |
msgid "User successfully unapproved!"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../features/admin-approval/admin-approval.php:
|
1064 |
msgid "User successfully deleted!"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../features/admin-approval/admin-approval.php:
|
1068 |
-
#: ../features/admin-approval/admin-approval.php:
|
1069 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1070 |
msgid "You either don't have permission for that action or there was an error!"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: ../features/admin-approval/admin-approval.php:
|
1074 |
msgid "Your session has expired! Please refresh the page and try again."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: ../features/admin-approval/admin-approval.php:
|
1078 |
msgid "Users successfully approved!"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: ../features/admin-approval/admin-approval.php:
|
1082 |
msgid "Users successfully unapproved!"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: ../features/admin-approval/admin-approval.php:
|
1086 |
msgid "Users successfully deleted!"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: ../features/admin-approval/admin-approval.php:
|
1090 |
#, php-format
|
1091 |
msgid "Your account on %1$s has been approved!"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: ../features/admin-approval/admin-approval.php:
|
1095 |
-
#: ../features/admin-approval/admin-approval.php:
|
1096 |
msgid "approved"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: ../features/admin-approval/admin-approval.php:
|
1100 |
#, php-format
|
1101 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: ../features/admin-approval/admin-approval.php:
|
1105 |
#, php-format
|
1106 |
msgid "Your account on %1$s has been unapproved!"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: ../features/admin-approval/admin-approval.php:
|
1110 |
-
#: ../features/admin-approval/admin-approval.php:
|
1111 |
msgid "unapproved"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: ../features/admin-approval/admin-approval.php:
|
1115 |
#, php-format
|
1116 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: ../features/admin-approval/admin-approval.php:
|
1120 |
msgid ""
|
1121 |
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1122 |
"before you can log in."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: ../features/admin-approval/admin-approval.php:
|
1126 |
msgid ""
|
1127 |
"Your account has to be confirmed by an administrator before you can use the "
|
1128 |
"\"Password Recovery\" feature."
|
@@ -1155,24 +1219,26 @@ msgid "Approve"
|
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
-
#: ../modules/user-listing/userlisting.php:
|
1159 |
-
#: ../modules/user-listing/userlisting.php:
|
1160 |
msgid "Firstname"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
-
#: ../modules/user-listing/userlisting.php:
|
1165 |
-
#: ../modules/user-listing/userlisting.php:
|
1166 |
msgid "Lastname"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
#: ../features/admin-approval/class-admin-approval.php:181
|
1170 |
-
#: ../modules/user-listing/userlisting.php:
|
|
|
|
|
1171 |
msgid "Role"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
#: ../features/admin-approval/class-admin-approval.php:182
|
1175 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1176 |
msgid "Registered"
|
1177 |
msgstr ""
|
1178 |
|
@@ -1193,20 +1259,20 @@ msgid "Do you want to bulk delete the selected users?"
|
|
1193 |
msgstr ""
|
1194 |
|
1195 |
#: ../features/admin-approval/class-admin-approval.php:285
|
1196 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1197 |
msgid "Sorry, but you don't have permission to do that!"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: ../features/admin-approval/class-admin-approval.php:
|
1201 |
msgid "Approved"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: ../features/admin-approval/class-admin-approval.php:
|
1205 |
msgid "Unapproved"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: ../features/admin-approval/class-admin-approval.php:
|
1209 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1210 |
msgid "All Users"
|
1211 |
msgstr ""
|
1212 |
|
@@ -1257,68 +1323,78 @@ msgstr ""
|
|
1257 |
msgid "Select All"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1261 |
msgid "delete this user from the _signups table?"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1265 |
msgid "confirm this email yourself?"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1269 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1270 |
msgid "Confirm Email"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1274 |
msgid "resend the activation link?"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1278 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1279 |
msgid "Resend Activation Email"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1283 |
#, php-format
|
1284 |
msgid "%s couldn't be deleted"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1288 |
msgid "All users have been successfully deleted"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1292 |
msgid "The selected users have been activated"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1296 |
msgid "The selected users have had their activation emails resent"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: ../features/email-confirmation/class-email-confirmation.php:
|
1300 |
#: ../features/email-confirmation/email-confirmation.php:47
|
1301 |
msgid "Users with Unconfirmed Email Address"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1305 |
msgid "There was an error performing that action!"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1309 |
msgid "The selected user couldn't be deleted"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1313 |
msgid "Email notification resent to user"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1317 |
#, php-format
|
1318 |
msgid "[%1$s] Activate %2$s"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1322 |
#, php-format
|
1323 |
msgid ""
|
1324 |
"To activate your user, please click the following link:\n"
|
@@ -1328,86 +1404,103 @@ msgid ""
|
|
1328 |
"After you activate it you will receive yet *another email* with your login."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1332 |
#: ../front-end/register.php:68
|
1333 |
msgid "Could not create user!"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1337 |
msgid "That username is already activated!"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1341 |
msgid "There was an error while trying to activate the user"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1345 |
#: ../modules/email-customizer/admin-email-customizer.php:73
|
1346 |
msgid "A new subscriber has (been) registered!"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1350 |
#, php-format
|
1351 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1355 |
msgid ""
|
1356 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
1357 |
"please remember that you need to approve this user before he/she can log in!"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1361 |
#, php-format
|
1362 |
msgid "[%1$s] Your new account information"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1366 |
#, php-format
|
1367 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: ../features/email-confirmation/email-confirmation.php:
|
1371 |
#: ../front-end/register.php:103
|
1372 |
msgid ""
|
1373 |
"Before you can access your account, an administrator needs to approve it. "
|
1374 |
"You will be notified via email."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: ../features/functions.php:
|
1378 |
msgid "Profile Builder"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: ../features/functions.php:
|
1382 |
msgid "The user-validation has failed - the avatar was not deleted!"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: ../features/functions.php:
|
1386 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../features/functions.php:
|
1390 |
msgid "Strength indicator"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../features/functions.php:
|
1394 |
msgid "Very Weak"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../features/functions.php:
|
1398 |
#, php-format
|
1399 |
msgid "Minimum length of %d characters"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: ../features/functions.php:
|
1403 |
msgid "This field is required"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: ../features/functions.php:
|
1407 |
msgid "Cancel"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: ../features/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1411 |
#, php-format
|
1412 |
msgid ""
|
1413 |
"To allow users to register for your website via Profile Builder, you first "
|
@@ -1444,124 +1537,131 @@ msgstr ""
|
|
1444 |
msgid "The usernames cannot be changed."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: ../front-end/class-formbuilder.php:
|
1448 |
msgid "Only an administrator can add new users."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: ../front-end/class-formbuilder.php:
|
1452 |
msgid "Users can register themselves or you can manually create users here."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: ../front-end/class-formbuilder.php:
|
|
|
1456 |
msgid "This message is only visible by administrators"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: ../front-end/class-formbuilder.php:
|
1460 |
msgid ""
|
1461 |
"Users cannot currently register themselves, but you can manually create "
|
1462 |
"users here."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: ../front-end/class-formbuilder.php:
|
1466 |
#, php-format
|
1467 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: ../front-end/class-formbuilder.php:
|
1471 |
msgid "Log out of this account."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: ../front-end/class-formbuilder.php:
|
1475 |
msgid "Logout"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: ../front-end/class-formbuilder.php:
|
1479 |
msgid "You must be logged in to edit your profile."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: ../front-end/class-formbuilder.php:
|
1483 |
msgid "here"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: ../front-end/class-formbuilder.php:
|
1487 |
#, php-format
|
1488 |
msgid ""
|
1489 |
"You will soon be redirected automatically. If you see this page for more "
|
1490 |
"than %1$d seconds, please click %2$s.%3$s"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: ../front-end/class-formbuilder.php:
|
1494 |
#, php-format
|
1495 |
msgid "The account %1s has been successfully created!"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: ../front-end/class-formbuilder.php:
|
1499 |
-
#: ../front-end/class-formbuilder.php:
|
1500 |
#, php-format
|
1501 |
msgid ""
|
1502 |
"Before you can access your account %1s, you need to confirm your email "
|
1503 |
"address. Please check your inbox and click the activation link."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: ../front-end/class-formbuilder.php:
|
1507 |
#, php-format
|
1508 |
msgid ""
|
1509 |
"Before you can access your account %1s, an administrator has to approve it. "
|
1510 |
"You will be notified via email."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: ../front-end/class-formbuilder.php:
|
1514 |
msgid "Your profile has been successfully updated!"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: ../front-end/class-formbuilder.php:
|
1518 |
msgid "There was an error in the submitted form"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: ../front-end/class-formbuilder.php:
|
1522 |
msgid "Add User"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: ../front-end/class-formbuilder.php:
|
1526 |
msgid "Register"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: ../front-end/class-formbuilder.php:
|
1530 |
msgid "Update"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: ../front-end/class-formbuilder.php:
|
1534 |
-
#: ../front-end/extra-fields/extra-fields.php:
|
1535 |
msgid "The avatar was successfully deleted!"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: ../front-end/class-formbuilder.php:
|
1539 |
-
#: ../front-end/extra-fields/extra-fields.php:
|
1540 |
msgid "The following attachment was successfully deleted:"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: ../front-end/class-formbuilder.php:
|
1544 |
msgid "Send these credentials via email."
|
1545 |
msgstr ""
|
1546 |
|
|
|
|
|
|
|
|
|
1547 |
#: ../front-end/default-fields/email/email.php:42
|
1548 |
msgid "The email you entered is not a valid email address."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: ../front-end/default-fields/email/email.php:
|
|
|
1552 |
msgid "This email is already reserved to be used soon."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: ../front-end/default-fields/email/email.php:
|
1556 |
-
#: ../front-end/default-fields/email/email.php:
|
1557 |
-
#: ../front-end/default-fields/email/email.php:
|
|
|
1558 |
#: ../front-end/default-fields/username/username.php:44
|
1559 |
#: ../front-end/default-fields/username/username.php:51
|
1560 |
msgid "Please try a different one!"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: ../front-end/default-fields/email/email.php:
|
1564 |
-
#: ../front-end/default-fields/email/email.php:
|
1565 |
msgid "This email is already in use."
|
1566 |
msgstr ""
|
1567 |
|
@@ -1571,13 +1671,15 @@ msgid "The passwords do not match"
|
|
1571 |
msgstr ""
|
1572 |
|
1573 |
#: ../front-end/default-fields/password/password.php:44
|
1574 |
-
#: ../front-end/recover.php:
|
1575 |
-
|
|
|
1576 |
msgstr ""
|
1577 |
|
1578 |
#: ../front-end/default-fields/password/password.php:48
|
1579 |
-
#: ../front-end/recover.php:
|
1580 |
-
|
|
|
1581 |
msgstr ""
|
1582 |
|
1583 |
#: ../front-end/default-fields/username/username.php:44
|
@@ -1629,7 +1731,7 @@ msgstr ""
|
|
1629 |
|
1630 |
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1631 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1632 |
-
#: ../front-end/extra-fields/datepicker/datepicker.php:
|
1633 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1634 |
#: ../front-end/extra-fields/input/input.php:28
|
1635 |
#: ../front-end/extra-fields/radio/radio.php:42
|
@@ -1678,11 +1780,11 @@ msgid "The file could only partially be uploaded "
|
|
1678 |
msgstr ""
|
1679 |
|
1680 |
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1681 |
-
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1682 |
#: ../front-end/extra-fields/avatar/avatar.php:246
|
|
|
1683 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1684 |
-
#: ../front-end/extra-fields/upload/upload.php:210
|
1685 |
#: ../front-end/extra-fields/upload/upload.php:213
|
|
|
1686 |
msgid "No file was selected"
|
1687 |
msgstr ""
|
1688 |
|
@@ -1705,9 +1807,9 @@ msgstr ""
|
|
1705 |
msgid "Unknown error occurred"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: ../front-end/extra-fields/extra-fields.php:
|
1709 |
-
#: ../front-end/login.php:
|
1710 |
-
#: ../front-end/recover.php:17 ../front-end/recover.php:
|
1711 |
msgid "ERROR"
|
1712 |
msgstr ""
|
1713 |
|
@@ -1734,11 +1836,11 @@ msgid ""
|
|
1734 |
"you can do so at"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: ../front-end/extra-fields/recaptcha/recaptcha.php:
|
1738 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: ../front-end/extra-fields/recaptcha/recaptcha.php:
|
1742 |
msgid "To use reCAPTCHA you must get an API private key from:"
|
1743 |
msgstr ""
|
1744 |
|
@@ -1794,49 +1896,70 @@ msgstr ""
|
|
1794 |
msgid "This field wasn't updated because an unknown error occured"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: ../front-end/
|
|
|
|
|
|
|
|
|
1798 |
msgid "The password you entered is incorrect."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: ../front-end/login.php:
|
1802 |
msgid "Password Lost and Found."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: ../front-end/login.php:
|
1806 |
msgid "Lost your password"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: ../front-end/login.php:
|
1810 |
msgid "Invalid username."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: ../front-end/login.php:
|
1814 |
msgid "username"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: ../front-end/login.php:
|
1818 |
msgid "email"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: ../front-end/login.php:
|
|
|
|
|
|
|
|
|
1822 |
msgid "Both fields are empty."
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: ../front-end/login.php:
|
|
|
|
|
|
|
|
|
1826 |
msgid "Lost your password?"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: ../front-end/login.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1830 |
#, php-format
|
1831 |
msgid "You are currently logged in as %1$s. %2$s"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: ../front-end/
|
1835 |
-
|
|
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: ../front-end/
|
1839 |
-
msgid "Log out"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: ../front-end/recover.php:17
|
@@ -1865,19 +1988,19 @@ msgstr ""
|
|
1865 |
msgid "Get New Password"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: ../front-end/recover.php:
|
1869 |
msgid "The username entered wasn't found in the database!"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: ../front-end/recover.php:
|
1873 |
msgid "Please check that you entered the correct username."
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: ../front-end/recover.php:
|
1877 |
msgid "Check your e-mail for the confirmation link."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: ../front-end/recover.php:
|
1881 |
#, php-format
|
1882 |
msgid ""
|
1883 |
"Someone requested that the password be reset for the following account: <b>"
|
@@ -1885,54 +2008,54 @@ msgid ""
|
|
1885 |
"happen.<br/>To reset your password, visit the following link:%2$s"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: ../front-end/recover.php:
|
1889 |
#, php-format
|
1890 |
msgid "Password Reset from \"%1$s\""
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: ../front-end/recover.php:
|
1894 |
#, php-format
|
1895 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: ../front-end/recover.php:
|
1899 |
msgid "The email address entered wasn't found in the database!"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: ../front-end/recover.php:
|
1903 |
msgid "Please check that you entered the correct email address."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: ../front-end/recover.php:
|
1907 |
msgid "Your password has been successfully changed!"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: ../front-end/recover.php:
|
1911 |
#, php-format
|
1912 |
msgid "You have successfully reset your password to: %1$s"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: ../front-end/recover.php:
|
1916 |
#, php-format
|
1917 |
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: ../front-end/recover.php:
|
1921 |
#, php-format
|
1922 |
msgid ""
|
1923 |
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
1924 |
"her new password is:%2$s"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: ../front-end/recover.php:
|
1928 |
msgid "The entered passwords don't match!"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: ../front-end/recover.php:
|
1932 |
msgid "ERROR:"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: ../front-end/recover.php:
|
1936 |
msgid "Invalid key!"
|
1937 |
msgstr ""
|
1938 |
|
@@ -1962,10 +2085,6 @@ msgid ""
|
|
1962 |
"of the plugin."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: ../modules/class-mustache-templates/class-mustache-templates.php:242
|
1966 |
-
msgid "Save"
|
1967 |
-
msgstr ""
|
1968 |
-
|
1969 |
#: ../modules/custom-redirects/custom-redirects.php:35
|
1970 |
msgid "Redirects on custom page requests:"
|
1971 |
msgstr ""
|
@@ -1977,15 +2096,15 @@ msgstr ""
|
|
1977 |
|
1978 |
#: ../modules/custom-redirects/custom-redirects.php:40
|
1979 |
#: ../modules/custom-redirects/custom-redirects.php:86
|
1980 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
1981 |
-
#: ../modules/multiple-forms/register-forms.php:
|
1982 |
msgid "Redirect"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
#: ../modules/custom-redirects/custom-redirects.php:41
|
1986 |
#: ../modules/custom-redirects/custom-redirects.php:87
|
1987 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
1988 |
-
#: ../modules/multiple-forms/register-forms.php:
|
1989 |
msgid "URL"
|
1990 |
msgstr ""
|
1991 |
|
@@ -2141,10 +2260,6 @@ msgstr ""
|
|
2141 |
msgid "Available Tags"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: ../modules/email-customizer/email-customizer.php:11
|
2145 |
-
msgid "User Meta"
|
2146 |
-
msgstr ""
|
2147 |
-
|
2148 |
#: ../modules/email-customizer/email-customizer.php:21
|
2149 |
msgid "Site Url"
|
2150 |
msgstr ""
|
@@ -2154,29 +2269,28 @@ msgid "Site Name"
|
|
2154 |
msgstr ""
|
2155 |
|
2156 |
#: ../modules/email-customizer/email-customizer.php:25
|
2157 |
-
#: ../modules/user-listing/userlisting.php:
|
2158 |
msgid "User Id"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: ../modules/email-customizer/email-customizer.php:
|
2162 |
-
msgid "
|
2163 |
msgstr ""
|
2164 |
|
2165 |
-
#: ../modules/email-customizer/email-customizer.php:
|
2166 |
-
msgid "
|
2167 |
msgstr ""
|
2168 |
|
2169 |
#: ../modules/email-customizer/email-customizer.php:36
|
2170 |
-
msgid "Activation
|
2171 |
msgstr ""
|
2172 |
|
2173 |
#: ../modules/email-customizer/email-customizer.php:37
|
2174 |
-
msgid "Activation
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: ../modules/email-customizer/email-customizer.php:
|
2178 |
-
|
2179 |
-
msgid "Your selected password at signup"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
#: ../modules/email-customizer/user-email-customizer.php:11
|
@@ -2325,80 +2439,80 @@ msgstr ""
|
|
2325 |
msgid "No Edit-profile Forms found in trash"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2329 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2330 |
-
#: ../modules/user-listing/userlisting.php:
|
2331 |
msgid "Shortcode"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2335 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2336 |
-
#: ../modules/user-listing/userlisting.php:
|
2337 |
msgid "(no title)"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2341 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2342 |
-
#: ../modules/user-listing/userlisting.php:
|
2343 |
msgid "The shortcode will be available after you publish this form."
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2347 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2348 |
-
#: ../modules/user-listing/userlisting.php:
|
2349 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2353 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2354 |
-
#: ../modules/user-listing/userlisting.php:
|
2355 |
msgid ""
|
2356 |
"<span style=\"color:red;\">Note:</span> changing the form title also changes "
|
2357 |
"the shortcode!"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2361 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2362 |
-
#: ../modules/user-listing/userlisting.php:
|
2363 |
msgid "Form Shortcode"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2367 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2368 |
msgid "Whether to redirect the user to a specific page or not"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2372 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2373 |
msgid "Display Messages"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2377 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2378 |
msgid "Allowed time to display any success messages (in seconds)"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2382 |
msgid ""
|
2383 |
"Specify the URL of the page users will be redirected once they updated their "
|
2384 |
"profile using this form<br/>Use the following format: http://www.mysite.com"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2388 |
msgid "After Profile Update..."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2392 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2393 |
msgid "Add New Field to the List"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2397 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2398 |
msgid "Choose one of the supported fields you manage <a href=\""
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:
|
2402 |
msgid "This form is empty."
|
2403 |
msgstr ""
|
2404 |
|
@@ -2406,15 +2520,15 @@ msgstr ""
|
|
2406 |
msgid "You need to specify the title of the form before creating it"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: ../modules/multiple-forms/multiple-forms.php:
|
2410 |
msgid "<pre>Title (Type)</pre>"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: ../modules/multiple-forms/multiple-forms.php:
|
2414 |
msgid "Delete all items"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: ../modules/multiple-forms/multiple-forms.php:
|
2418 |
msgid "Delete all"
|
2419 |
msgstr ""
|
2420 |
|
@@ -2456,25 +2570,25 @@ msgstr ""
|
|
2456 |
msgid "No Registration Forms found in trash"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2460 |
msgid "Default Role"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2464 |
msgid "Set Role"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2468 |
msgid ""
|
2469 |
"Choose what role the user will have after (s)he registered<br/>If not "
|
2470 |
"specified, defaults to the role set in the WordPress settings"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2474 |
msgid "Automatically Log In"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2478 |
msgid ""
|
2479 |
"Whether to automatically log in the newly registered user or not<br/>Only "
|
2480 |
"works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
|
@@ -2482,25 +2596,25 @@ msgid ""
|
|
2482 |
"automatic login not work"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2486 |
msgid "Choose..."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2490 |
msgid ""
|
2491 |
"Specify the URL of the page users will be redirected once registered using "
|
2492 |
"this form<br/>Use the following format: http://www.mysite.com"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: ../modules/multiple-forms/register-forms.php:
|
2496 |
msgid "After Registration..."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2500 |
-
#: ../modules/user-listing/userlisting.php:
|
2501 |
-
#: ../modules/user-listing/userlisting.php:
|
2502 |
-
#: ../modules/user-listing/userlisting.php:
|
2503 |
-
#: ../modules/user-listing/userlisting.php:
|
2504 |
msgid "Search Users by All Fields"
|
2505 |
msgstr ""
|
2506 |
|
@@ -2532,270 +2646,283 @@ msgstr ""
|
|
2532 |
msgid "No User Listing found in trash"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: ../modules/user-listing/userlisting.php:
|
2536 |
msgid "Display name as"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: ../modules/user-listing/userlisting.php:
|
2540 |
msgid "Url"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: ../modules/user-listing/userlisting.php:
|
2544 |
-
#: ../modules/user-listing/userlisting.php:
|
2545 |
msgid "Registration Date"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: ../modules/user-listing/userlisting.php:
|
2549 |
-
#: ../modules/user-listing/userlisting.php:
|
2550 |
msgid "Number of Posts"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: ../modules/user-listing/userlisting.php:
|
2554 |
msgid "More Info"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: ../modules/user-listing/userlisting.php:
|
2558 |
msgid "More Info Url"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: ../modules/user-listing/userlisting.php:
|
2562 |
msgid "Avatar or Gravatar"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: ../modules/user-listing/userlisting.php:
|
2566 |
msgid "Meta Variables"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: ../modules/user-listing/userlisting.php:
|
2570 |
msgid "Sort Variables"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: ../modules/user-listing/userlisting.php:
|
2574 |
-
#: ../modules/user-listing/userlisting.php:
|
2575 |
msgid "Extra Functions"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: ../modules/user-listing/userlisting.php:
|
2579 |
msgid "Pagination"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: ../modules/user-listing/userlisting.php:
|
2583 |
msgid "Search all Fields"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: ../modules/user-listing/userlisting.php:
|
2587 |
msgid "Go Back Link"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: ../modules/user-listing/userlisting.php:
|
2591 |
msgid "All-userlisting Template"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: ../modules/user-listing/userlisting.php:
|
2595 |
msgid "Single-userlisting Template"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: ../modules/user-listing/userlisting.php:
|
2599 |
msgid "You do not have permission to view this user list"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: ../modules/user-listing/userlisting.php:
|
2603 |
msgid "You do not have the required user role to view this user list"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: ../modules/user-listing/userlisting.php:
|
2607 |
msgid "User not found"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: ../modules/user-listing/userlisting.php:
|
2611 |
msgid "First/Lastname"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: ../modules/user-listing/userlisting.php:
|
2615 |
msgid "Sign-up Date"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: ../modules/user-listing/userlisting.php:
|
2619 |
-
#: ../modules/user-listing/userlisting.php:
|
2620 |
msgid "Display Name"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: ../modules/user-listing/userlisting.php:
|
2624 |
msgid "Posts"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: ../modules/user-listing/userlisting.php:
|
2628 |
-
#: ../modules/user-listing/userlisting.php:
|
2629 |
msgid "Aim"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: ../modules/user-listing/userlisting.php:
|
2633 |
-
#: ../modules/user-listing/userlisting.php:
|
2634 |
msgid "Yim"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: ../modules/user-listing/userlisting.php:
|
2638 |
-
#: ../modules/user-listing/userlisting.php:
|
2639 |
msgid "Jabber"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: ../modules/user-listing/userlisting.php:
|
2643 |
msgid "Click here to see more information about this user"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: ../modules/user-listing/userlisting.php:
|
2647 |
msgid "More..."
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: ../modules/user-listing/userlisting.php:
|
2651 |
msgid "Click here to see more information about this user."
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: ../modules/user-listing/userlisting.php:
|
2655 |
-
#: ../modules/user-listing/userlisting.php:
|
2656 |
msgid "Click here to go back"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: ../modules/user-listing/userlisting.php:
|
2660 |
msgid "Back"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: ../modules/user-listing/userlisting.php:
|
2664 |
msgid "«« First"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: ../modules/user-listing/userlisting.php:
|
2668 |
msgid "« Prev"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: ../modules/user-listing/userlisting.php:
|
2672 |
msgid "Next » "
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: ../modules/user-listing/userlisting.php:
|
2676 |
msgid "Last »»"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: ../modules/user-listing/userlisting.php:
|
2680 |
msgid "You don't have any pagination settings on this userlisting!"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: ../modules/user-listing/userlisting.php:
|
2684 |
msgid "Search"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: ../modules/user-listing/userlisting.php:
|
2688 |
msgid "Clear Results"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: ../modules/user-listing/userlisting.php:
|
|
|
2692 |
msgid "Extra shortcode parameters"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: ../modules/user-listing/userlisting.php:
|
|
|
|
|
|
|
|
|
2696 |
msgid ""
|
2697 |
"displays users having a certain meta-value within a certain (extra) meta-"
|
2698 |
"field"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: ../modules/user-listing/userlisting.php:
|
2702 |
msgid "Example:"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#: ../modules/user-listing/userlisting.php:
|
2706 |
msgid ""
|
2707 |
"Remember though, that the field-value combination must exist in the database."
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: ../modules/user-listing/userlisting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2711 |
msgid "Random (very slow on large databases > 10K user)"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: ../modules/user-listing/userlisting.php:
|
2715 |
msgid "Roles to Display"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: ../modules/user-listing/userlisting.php:
|
2719 |
msgid ""
|
2720 |
"Restrict the userlisting to these selected roles only<br/>If not specified, "
|
2721 |
"defaults to all existing roles"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: ../modules/user-listing/userlisting.php:
|
2725 |
msgid "Number of Users/Page"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: ../modules/user-listing/userlisting.php:
|
2729 |
msgid ""
|
2730 |
"Set the number of users to be displayed on every paginated part of the all-"
|
2731 |
"userlisting"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: ../modules/user-listing/userlisting.php:
|
2735 |
msgid "Default Sorting Criteria"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: ../modules/user-listing/userlisting.php:
|
2739 |
msgid ""
|
2740 |
"Set the default sorting criteria<br/>This can temporarily be changed for "
|
2741 |
"each new session"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: ../modules/user-listing/userlisting.php:
|
2745 |
msgid "Default Sorting Order"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: ../modules/user-listing/userlisting.php:
|
2749 |
msgid ""
|
2750 |
"Set the default sorting order<br/>This can temporarily be changed for each "
|
2751 |
"new session"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: ../modules/user-listing/userlisting.php:
|
2755 |
msgid "Avatar Size (All-userlisting)"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: ../modules/user-listing/userlisting.php:
|
2759 |
msgid "Set the avatar size on the all-userlisting only"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: ../modules/user-listing/userlisting.php:
|
2763 |
msgid "Avatar Size (Single-userlisting)"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: ../modules/user-listing/userlisting.php:
|
2767 |
msgid "Set the avatar size on the single-userlisting only"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: ../modules/user-listing/userlisting.php:
|
2771 |
msgid "Visible only to logged in users?"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: ../modules/user-listing/userlisting.php:
|
2775 |
msgid "The userlisting will only be visible only to the logged in users"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: ../modules/user-listing/userlisting.php:
|
2779 |
msgid "Visible to following Roles"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: ../modules/user-listing/userlisting.php:
|
2783 |
msgid "The userlisting will only be visible to the following roles"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: ../modules/user-listing/userlisting.php:
|
2787 |
msgid "Userlisting Settings"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: ../modules/user-listing/userlisting.php:
|
2791 |
msgid ""
|
2792 |
"You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: ../modules/user-listing/userlisting.php:
|
2796 |
msgid "You can find it in the Profile Builder menu."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: ../modules/user-listing/userlisting.php:
|
2800 |
msgid "No results found!"
|
2801 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: profilebuilder\n"
|
4 |
+
"POT-Creation-Date: 2015-01-22 11:21+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-01-22 11:21+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Cozmoslabs\n"
|
8 |
"Language: en\n"
|
49 |
msgid "Hide"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:189
|
53 |
+
#: ../admin/register-version.php:95 ../features/functions.php:581
|
54 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
55 |
#: ../modules/modules.php:142
|
56 |
msgid "Save Changes"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../admin/admin-functions.php:106
|
72 |
+
#, php-format
|
73 |
+
msgid ""
|
74 |
+
"<strong>ERROR</strong>: The password must have the minimum length of %s "
|
75 |
+
"characters"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:175
|
79 |
msgid "Very weak"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:176
|
83 |
+
#: ../features/functions.php:480
|
84 |
msgid "Weak"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:177
|
88 |
+
#: ../features/functions.php:480
|
89 |
msgid "Medium"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:178
|
93 |
+
#: ../features/functions.php:480
|
94 |
msgid "Strong"
|
95 |
msgstr ""
|
96 |
|
97 |
#: ../admin/admin-functions.php:123
|
98 |
+
#, php-format
|
99 |
+
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
100 |
msgstr ""
|
101 |
|
102 |
#: ../admin/admin-functions.php:162
|
386 |
|
387 |
#: ../admin/general-settings.php:45 ../admin/general-settings.php:60
|
388 |
#: ../admin/general-settings.php:114
|
389 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
390 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
391 |
+
#: ../modules/user-listing/userlisting.php:1189
|
392 |
msgid "Yes"
|
393 |
msgstr ""
|
394 |
|
402 |
msgstr ""
|
403 |
|
404 |
#: ../admin/general-settings.php:61 ../admin/general-settings.php:115
|
405 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
406 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
407 |
msgid "No"
|
408 |
msgstr ""
|
409 |
|
469 |
msgid "Allow Users to Log in With:"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../admin/general-settings.php:144
|
473 |
+
msgid "Username and Email"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: ../admin/general-settings.php:145 ../admin/manage-fields.php:144
|
477 |
#: ../features/admin-approval/class-admin-approval.php:177
|
478 |
+
#: ../features/email-confirmation/class-email-confirmation.php:165
|
479 |
#: ../modules/email-customizer/email-customizer.php:28
|
480 |
+
#: ../modules/user-listing/userlisting.php:92
|
481 |
+
#: ../modules/user-listing/userlisting.php:523
|
482 |
+
#: ../modules/user-listing/userlisting.php:1145
|
483 |
msgid "Username"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../admin/general-settings.php:146 ../front-end/login.php:167
|
487 |
#: ../modules/email-customizer/email-customizer.php:29
|
488 |
+
#: ../modules/user-listing/userlisting.php:529
|
489 |
+
#: ../modules/user-listing/userlisting.php:1146
|
490 |
msgid "Email"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../admin/general-settings.php:149
|
494 |
+
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: ../admin/general-settings.php:150
|
498 |
+
msgid "\"Username\" - users can Log In only with Username."
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../admin/general-settings.php:151
|
502 |
+
msgid "\"Email\" - users can Log In only with Email."
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: ../admin/general-settings.php:158
|
506 |
msgid "Minimum Password Length:"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../admin/general-settings.php:163
|
510 |
msgid ""
|
511 |
"Enter the minimum characters the password should have. Leave empty for no "
|
512 |
"minimum limit"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: ../admin/general-settings.php:170
|
516 |
msgid "Minimum Password Strength:"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: ../admin/general-settings.php:174
|
520 |
msgid "Disabled"
|
521 |
msgstr ""
|
522 |
|
528 |
msgid "Manage Default and Extra Fields"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: ../admin/manage-fields.php:83
|
532 |
msgid "Field Title"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: ../admin/manage-fields.php:83
|
536 |
msgid "Title of the field"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: ../admin/manage-fields.php:84
|
540 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
541 |
+
#: ../modules/multiple-forms/register-forms.php:262
|
542 |
msgid "Field"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../admin/manage-fields.php:85
|
546 |
msgid "Meta-name"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../admin/manage-fields.php:85
|
550 |
msgid ""
|
551 |
"Use this in conjuction with WordPress functions to display the value in the "
|
552 |
"page of your choosing<br/>Auto-completed but in some cases editable (in "
|
554 |
"very big user-count"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../admin/manage-fields.php:86
|
558 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
559 |
+
#: ../modules/multiple-forms/register-forms.php:263
|
560 |
msgid "ID"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../admin/manage-fields.php:86
|
564 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
565 |
+
#: ../modules/multiple-forms/register-forms.php:263
|
566 |
msgid ""
|
567 |
"A unique, auto-generated ID for this particular field<br/>You can use this "
|
568 |
"in conjuction with filters to target this element if needed<br/>Can't be "
|
569 |
"edited"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../admin/manage-fields.php:87
|
573 |
msgid "Description"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../admin/manage-fields.php:87
|
577 |
msgid ""
|
578 |
"Enter a (detailed) description of the option for end users to read<br/"
|
579 |
">Optional"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../admin/manage-fields.php:88
|
583 |
msgid "Row Count"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../admin/manage-fields.php:88
|
587 |
msgid ""
|
588 |
"Specify the number of rows for a 'Textarea' field<br/>If not specified, "
|
589 |
"defaults to 5"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../admin/manage-fields.php:89
|
593 |
msgid "Allowed Image Extensions"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../admin/manage-fields.php:89
|
597 |
msgid ""
|
598 |
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
599 |
+
"ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: ../admin/manage-fields.php:90
|
603 |
msgid "Allowed Upload Extensions"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: ../admin/manage-fields.php:90
|
607 |
msgid ""
|
608 |
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
609 |
+
"ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
|
610 |
+
"extensions (.*)"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../admin/manage-fields.php:91
|
614 |
msgid "Avatar Size"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../admin/manage-fields.php:91
|
618 |
msgid ""
|
619 |
"Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
|
620 |
"specified, defaults to 100"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: ../admin/manage-fields.php:92
|
624 |
msgid "Date-format"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../admin/manage-fields.php:92
|
628 |
msgid ""
|
629 |
"Specify the format of the date when using Datepicker<br/>Valid options: mm/"
|
630 |
"dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not "
|
631 |
"specified, defaults to mm/dd/yy"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../admin/manage-fields.php:93
|
635 |
msgid "Terms of Agreement"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: ../admin/manage-fields.php:93
|
639 |
msgid ""
|
640 |
"Enter a detailed description of the temrs of agreement for the user to read."
|
641 |
"<br/>Links can be inserted by using standard HTML syntax: <a href="
|
642 |
"\"custom_url\">custom_text</a>"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../admin/manage-fields.php:94
|
646 |
msgid "Options"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../admin/manage-fields.php:94
|
650 |
msgid ""
|
651 |
"Enter a comma separated list of values<br/>This can be anything, as it is "
|
652 |
"hidden from the user, but should not contain special characters or "
|
653 |
"apostrophes"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../admin/manage-fields.php:95
|
657 |
msgid "Labels"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../admin/manage-fields.php:95
|
661 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../admin/manage-fields.php:96
|
665 |
msgid "Public Key"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../admin/manage-fields.php:96
|
669 |
msgid ""
|
670 |
"The public key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
671 |
"target=\"_blank\">www.google.com/recaptcha</a>"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: ../admin/manage-fields.php:97
|
675 |
msgid "Private Key"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: ../admin/manage-fields.php:97
|
679 |
msgid ""
|
680 |
"The private key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
681 |
"target=\"_blank\">www.google.com/recaptcha</a>"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../admin/manage-fields.php:98
|
685 |
+
msgid "User Roles"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: ../admin/manage-fields.php:98
|
689 |
+
msgid ""
|
690 |
+
"Select which user roles to show to the user ( drag and drop to re-order )"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: ../admin/manage-fields.php:99
|
694 |
+
msgid "User Roles Order"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: ../admin/manage-fields.php:99
|
698 |
+
msgid "Save the user role order from the user roles checkboxes"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: ../admin/manage-fields.php:100
|
702 |
msgid "Default Value"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../admin/manage-fields.php:100
|
706 |
msgid "Default value of the field"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../admin/manage-fields.php:101
|
710 |
msgid "Default Option"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../admin/manage-fields.php:101
|
714 |
msgid "Specify the option which should be selected by default"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../admin/manage-fields.php:102
|
718 |
msgid "Default Option(s)"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../admin/manage-fields.php:102
|
722 |
msgid ""
|
723 |
"Specify the option which should be checked by default<br/>If there are "
|
724 |
"multiple values, separate them with a ',' (comma)"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../admin/manage-fields.php:103
|
728 |
msgid "Default Content"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../admin/manage-fields.php:103
|
732 |
msgid "Default value of the textarea"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: ../admin/manage-fields.php:104
|
736 |
msgid "Required"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../admin/manage-fields.php:104
|
740 |
msgid "Whether the field is required or not"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: ../admin/manage-fields.php:105
|
744 |
msgid "Overwrite Existing"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../admin/manage-fields.php:105
|
748 |
msgid ""
|
749 |
"Selecting 'Yes' will add the field to the list, but will overwrite any other "
|
750 |
"field in the database that has the same meta-name<br/>Use this at your own "
|
751 |
"risk"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../admin/manage-fields.php:111
|
755 |
msgid "Field Properties"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../admin/manage-fields.php:124
|
759 |
msgid "Registration & Edit Profile"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../admin/manage-fields.php:143
|
763 |
msgid "Name"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../admin/manage-fields.php:144
|
767 |
msgid "Usernames cannot be changed."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../admin/manage-fields.php:145
|
771 |
msgid "First Name"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: ../admin/manage-fields.php:146
|
775 |
msgid "Last Name"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: ../admin/manage-fields.php:147 ../modules/user-listing/userlisting.php:562
|
779 |
msgid "Nickname"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: ../admin/manage-fields.php:148
|
783 |
msgid "Display name publicly as"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: ../admin/manage-fields.php:149
|
787 |
msgid "Contact Info"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../admin/manage-fields.php:150
|
791 |
#: ../features/admin-approval/class-admin-approval.php:180
|
792 |
+
#: ../features/email-confirmation/class-email-confirmation.php:166
|
793 |
+
#: ../modules/user-listing/userlisting.php:98
|
794 |
msgid "E-mail"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../admin/manage-fields.php:151
|
798 |
+
#: ../modules/email-customizer/email-customizer.php:32
|
799 |
+
#: ../modules/user-listing/userlisting.php:101
|
800 |
+
#: ../modules/user-listing/userlisting.php:544
|
801 |
+
#: ../modules/user-listing/userlisting.php:1147
|
802 |
msgid "Website"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../admin/manage-fields.php:155
|
806 |
msgid "AIM"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../admin/manage-fields.php:156
|
810 |
msgid "Yahoo IM"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: ../admin/manage-fields.php:157
|
814 |
msgid "Jabber / Google Talk"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: ../admin/manage-fields.php:160
|
818 |
msgid "About Yourself"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: ../admin/manage-fields.php:161 ../modules/user-listing/userlisting.php:104
|
822 |
+
#: ../modules/user-listing/userlisting.php:547
|
823 |
+
#: ../modules/user-listing/userlisting.php:1148
|
824 |
msgid "Biographical Info"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../admin/manage-fields.php:161
|
828 |
msgid ""
|
829 |
"Share a little biographical information to fill out your profile. This may "
|
830 |
"be shown publicly."
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: ../admin/manage-fields.php:162 ../front-end/recover.php:75
|
834 |
#: ../modules/email-customizer/email-customizer.php:30
|
835 |
msgid "Password"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../admin/manage-fields.php:162
|
839 |
msgid "Type your password."
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../admin/manage-fields.php:163 ../front-end/recover.php:80
|
843 |
msgid "Repeat Password"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../admin/manage-fields.php:163
|
847 |
msgid "Type your password again. "
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../admin/manage-fields.php:320 ../admin/manage-fields.php:464
|
851 |
msgid "You must select a field\n"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../admin/manage-fields.php:330
|
855 |
msgid ""
|
856 |
"Please choose a different field type as this one already exists in your form "
|
857 |
"(must be unique)\n"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: ../admin/manage-fields.php:341
|
861 |
msgid "The entered avatar size is not between 20 and 200\n"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: ../admin/manage-fields.php:344
|
865 |
msgid "The entered avatar size is not numerical\n"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: ../admin/manage-fields.php:352
|
869 |
msgid "The entered row number is not numerical\n"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../admin/manage-fields.php:355
|
873 |
msgid "You must enter a value for the row number\n"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../admin/manage-fields.php:363
|
877 |
msgid "You must enter the public key\n"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../admin/manage-fields.php:365
|
881 |
msgid "You must enter the private key\n"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: ../admin/manage-fields.php:373
|
885 |
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: ../admin/manage-fields.php:376
|
889 |
msgid "You must enter a value for the date-format\n"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: ../admin/manage-fields.php:392
|
893 |
msgid "The meta-name cannot be empty\n"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: ../admin/manage-fields.php:404 ../admin/manage-fields.php:412
|
897 |
+
#: ../admin/manage-fields.php:422
|
898 |
msgid "That meta-name is already in use\n"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: ../admin/manage-fields.php:444
|
902 |
#, php-format
|
903 |
msgid ""
|
904 |
"The following option(s) did not coincide with the ones in the options list: "
|
905 |
"%s\n"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: ../admin/manage-fields.php:448
|
909 |
#, php-format
|
910 |
msgid ""
|
911 |
"The following option did not coincide with the ones in the options list: %s\n"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: ../admin/manage-fields.php:455
|
915 |
+
msgid "Please select at least one user role\n"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: ../admin/manage-fields.php:471
|
919 |
msgid "That field is already added in this form\n"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../admin/manage-fields.php:520
|
923 |
msgid ""
|
924 |
"<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
|
925 |
"required\">Required</pre>"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../admin/manage-fields.php:520
|
929 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
930 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
931 |
+
#: ../features/functions.php:602 ../features/functions.php:609
|
932 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
933 |
msgid "Edit"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../admin/manage-fields.php:520
|
937 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
938 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
939 |
#: ../features/admin-approval/class-admin-approval.php:124
|
940 |
#: ../features/admin-approval/class-admin-approval.php:235
|
941 |
+
#: ../features/email-confirmation/class-email-confirmation.php:118
|
942 |
+
#: ../features/email-confirmation/class-email-confirmation.php:215
|
943 |
+
#: ../features/functions.php:595 ../features/functions.php:609
|
944 |
msgid "Delete"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: ../admin/manage-fields.php:535
|
948 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: ../admin/manage-fields.php:541
|
952 |
msgid ""
|
953 |
"If you're interested in displaying different fields in the registration and "
|
954 |
"edit profile forms, please use the Multiple Registration & Edit Profile "
|
955 |
"Forms Addon."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../admin/register-version.php:14
|
959 |
msgid "Register Your Version"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: ../admin/register-version.php:14
|
963 |
msgid "Register Version"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: ../admin/register-version.php:22
|
967 |
+
msgid "Profile Builder Register"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: ../admin/register-version.php:69
|
971 |
#, php-format
|
972 |
msgid ""
|
973 |
"Now that you acquired a copy of %s, you should take the time and register it "
|
974 |
"with the serial number you received"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../admin/register-version.php:70
|
978 |
msgid ""
|
979 |
"If you register this version of Profile Builder, you'll receive information "
|
980 |
"regarding upgrades, patches, and technical support."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: ../admin/register-version.php:72
|
984 |
msgid " Serial Number:"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: ../admin/register-version.php:77
|
988 |
msgid "The serial number was successfully validated!"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: ../admin/register-version.php:79
|
992 |
msgid "The serial number entered couldn't be validated!"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: ../admin/register-version.php:81
|
996 |
+
msgid "The serial number is about to expire soon!"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: ../admin/register-version.php:81
|
1000 |
+
#, php-format
|
1001 |
+
msgid ""
|
1002 |
+
" Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: ../admin/register-version.php:83
|
1006 |
msgid "The serial number couldn't be validated because it expired!"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: ../admin/register-version.php:83
|
1010 |
+
#, php-format
|
1011 |
+
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: ../admin/register-version.php:85
|
1015 |
msgid ""
|
1016 |
"The serial number couldn't be validated because process timed out. This is "
|
1017 |
"possible due to the server being down. Please try again later!"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: ../admin/register-version.php:87
|
1021 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../admin/register-version.php:238
|
1025 |
#, php-format
|
1026 |
msgid ""
|
1027 |
"<p>Your <strong>Profile Builder</strong> serial number is invalid or "
|
1030 |
"p>"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: ../admin/register-version.php:241
|
1034 |
#, php-format
|
1035 |
msgid ""
|
1036 |
"<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
|
1039 |
"%4$s %5$sDismiss%6$s</p>"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: ../admin/register-version.php:246
|
1043 |
#, php-format
|
1044 |
msgid ""
|
1045 |
"<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
|
1061 |
msgstr ""
|
1062 |
|
1063 |
#: ../assets/lib/wck-api/fields/upload.php:31
|
|
|
1064 |
msgid "Remove"
|
1065 |
msgstr ""
|
1066 |
|
1068 |
msgid "Upload "
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
1072 |
+
#: ../modules/class-mustache-templates/class-mustache-templates.php:242
|
1073 |
+
msgid "Save"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
1077 |
+
msgid "Add Entry"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
1081 |
+
#: ../features/functions.php:609
|
1082 |
msgid "Content"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
1086 |
msgid "Edit this item"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
1090 |
msgid "Delete this item"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:671
|
1094 |
msgid "Please enter a value for the required field "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1150
|
|
|
|
|
|
|
|
|
1098 |
msgid "Syncronize WCK"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1162
|
1102 |
msgid "Syncronize WCK Translation"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
#: ../features/admin-approval/admin-approval.php:7
|
1106 |
+
#: ../features/admin-approval/class-admin-approval.php:496
|
1107 |
msgid "Admin Approval"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: ../features/admin-approval/admin-approval.php:21
|
1111 |
#: ../features/email-confirmation/email-confirmation.php:58
|
1112 |
msgid "Do you want to"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../features/admin-approval/admin-approval.php:44
|
1116 |
msgid "Your session has expired! Please refresh the page and try again"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../features/admin-approval/admin-approval.php:55
|
1120 |
msgid "User successfully approved!"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../features/admin-approval/admin-approval.php:63
|
1124 |
msgid "User successfully unapproved!"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../features/admin-approval/admin-approval.php:69
|
1128 |
msgid "User successfully deleted!"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: ../features/admin-approval/admin-approval.php:74
|
1132 |
+
#: ../features/admin-approval/admin-approval.php:139
|
1133 |
+
#: ../features/email-confirmation/email-confirmation.php:135
|
1134 |
msgid "You either don't have permission for that action or there was an error!"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: ../features/admin-approval/admin-approval.php:86
|
1138 |
msgid "Your session has expired! Please refresh the page and try again."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: ../features/admin-approval/admin-approval.php:106
|
1142 |
msgid "Users successfully approved!"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: ../features/admin-approval/admin-approval.php:121
|
1146 |
msgid "Users successfully unapproved!"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: ../features/admin-approval/admin-approval.php:134
|
1150 |
msgid "Users successfully deleted!"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: ../features/admin-approval/admin-approval.php:149
|
1154 |
#, php-format
|
1155 |
msgid "Your account on %1$s has been approved!"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../features/admin-approval/admin-approval.php:150
|
1159 |
+
#: ../features/admin-approval/admin-approval.php:153
|
1160 |
msgid "approved"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../features/admin-approval/admin-approval.php:152
|
1164 |
#, php-format
|
1165 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../features/admin-approval/admin-approval.php:156
|
1169 |
#, php-format
|
1170 |
msgid "Your account on %1$s has been unapproved!"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: ../features/admin-approval/admin-approval.php:157
|
1174 |
+
#: ../features/admin-approval/admin-approval.php:160
|
1175 |
msgid "unapproved"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../features/admin-approval/admin-approval.php:159
|
1179 |
#, php-format
|
1180 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: ../features/admin-approval/admin-approval.php:176
|
1184 |
msgid ""
|
1185 |
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1186 |
"before you can log in."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../features/admin-approval/admin-approval.php:188
|
1190 |
msgid ""
|
1191 |
"Your account has to be confirmed by an administrator before you can use the "
|
1192 |
"\"Password Recovery\" feature."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1222 |
+
#: ../modules/user-listing/userlisting.php:535
|
1223 |
+
#: ../modules/user-listing/userlisting.php:1150
|
1224 |
msgid "Firstname"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1228 |
+
#: ../modules/user-listing/userlisting.php:538
|
1229 |
+
#: ../modules/user-listing/userlisting.php:1151
|
1230 |
msgid "Lastname"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
#: ../features/admin-approval/class-admin-approval.php:181
|
1234 |
+
#: ../modules/user-listing/userlisting.php:115
|
1235 |
+
#: ../modules/user-listing/userlisting.php:565
|
1236 |
+
#: ../modules/user-listing/userlisting.php:1154
|
1237 |
msgid "Role"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
#: ../features/admin-approval/class-admin-approval.php:182
|
1241 |
+
#: ../features/email-confirmation/class-email-confirmation.php:167
|
1242 |
msgid "Registered"
|
1243 |
msgstr ""
|
1244 |
|
1259 |
msgstr ""
|
1260 |
|
1261 |
#: ../features/admin-approval/class-admin-approval.php:285
|
1262 |
+
#: ../features/email-confirmation/class-email-confirmation.php:276
|
1263 |
msgid "Sorry, but you don't have permission to do that!"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../features/admin-approval/class-admin-approval.php:325
|
1267 |
msgid "Approved"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: ../features/admin-approval/class-admin-approval.php:327
|
1271 |
msgid "Unapproved"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../features/admin-approval/class-admin-approval.php:499
|
1275 |
+
#: ../features/email-confirmation/class-email-confirmation.php:467
|
1276 |
msgid "All Users"
|
1277 |
msgstr ""
|
1278 |
|
1323 |
msgid "Select All"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: ../features/email-confirmation/class-email-confirmation.php:89
|
1327 |
+
#: ../features/email-confirmation/class-email-confirmation.php:168
|
1328 |
+
#: ../modules/email-customizer/email-customizer.php:11
|
1329 |
+
msgid "User Meta"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: ../features/email-confirmation/class-email-confirmation.php:89
|
1333 |
+
msgid "show"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: ../features/email-confirmation/class-email-confirmation.php:118
|
1337 |
msgid "delete this user from the _signups table?"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../features/email-confirmation/class-email-confirmation.php:119
|
1341 |
msgid "confirm this email yourself?"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: ../features/email-confirmation/class-email-confirmation.php:119
|
1345 |
+
#: ../features/email-confirmation/class-email-confirmation.php:216
|
1346 |
msgid "Confirm Email"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: ../features/email-confirmation/class-email-confirmation.php:120
|
1350 |
msgid "resend the activation link?"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../features/email-confirmation/class-email-confirmation.php:120
|
1354 |
+
#: ../features/email-confirmation/class-email-confirmation.php:217
|
1355 |
msgid "Resend Activation Email"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: ../features/email-confirmation/class-email-confirmation.php:247
|
1359 |
#, php-format
|
1360 |
msgid "%s couldn't be deleted"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: ../features/email-confirmation/class-email-confirmation.php:251
|
1364 |
msgid "All users have been successfully deleted"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../features/email-confirmation/class-email-confirmation.php:261
|
1368 |
msgid "The selected users have been activated"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../features/email-confirmation/class-email-confirmation.php:272
|
1372 |
msgid "The selected users have had their activation emails resent"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: ../features/email-confirmation/class-email-confirmation.php:464
|
1376 |
#: ../features/email-confirmation/email-confirmation.php:47
|
1377 |
msgid "Users with Unconfirmed Email Address"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: ../features/email-confirmation/email-confirmation.php:110
|
1381 |
msgid "There was an error performing that action!"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: ../features/email-confirmation/email-confirmation.php:118
|
1385 |
msgid "The selected user couldn't be deleted"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: ../features/email-confirmation/email-confirmation.php:129
|
1389 |
msgid "Email notification resent to user"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: ../features/email-confirmation/email-confirmation.php:362
|
1393 |
#, php-format
|
1394 |
msgid "[%1$s] Activate %2$s"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../features/email-confirmation/email-confirmation.php:363
|
1398 |
#, php-format
|
1399 |
msgid ""
|
1400 |
"To activate your user, please click the following link:\n"
|
1404 |
"After you activate it you will receive yet *another email* with your login."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../features/email-confirmation/email-confirmation.php:401
|
1408 |
#: ../front-end/register.php:68
|
1409 |
msgid "Could not create user!"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: ../features/email-confirmation/email-confirmation.php:404
|
1413 |
msgid "That username is already activated!"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: ../features/email-confirmation/email-confirmation.php:433
|
1417 |
msgid "There was an error while trying to activate the user"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: ../features/email-confirmation/email-confirmation.php:478
|
1421 |
#: ../modules/email-customizer/admin-email-customizer.php:73
|
1422 |
msgid "A new subscriber has (been) registered!"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: ../features/email-confirmation/email-confirmation.php:481
|
1426 |
#, php-format
|
1427 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: ../features/email-confirmation/email-confirmation.php:486
|
1431 |
msgid ""
|
1432 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
1433 |
"please remember that you need to approve this user before he/she can log in!"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: ../features/email-confirmation/email-confirmation.php:501
|
1437 |
#, php-format
|
1438 |
msgid "[%1$s] Your new account information"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: ../features/email-confirmation/email-confirmation.php:505
|
1442 |
+
#: ../features/email-confirmation/email-confirmation.php:508
|
1443 |
+
#: ../modules/email-customizer/email-customizer.php:266
|
1444 |
+
#: ../modules/email-customizer/email-customizer.php:273
|
1445 |
+
#: ../modules/email-customizer/email-customizer.php:280
|
1446 |
+
msgid "Your selected password at signup"
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: ../features/email-confirmation/email-confirmation.php:507
|
1450 |
#, php-format
|
1451 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: ../features/email-confirmation/email-confirmation.php:515
|
1455 |
#: ../front-end/register.php:103
|
1456 |
msgid ""
|
1457 |
"Before you can access your account, an administrator needs to approve it. "
|
1458 |
"You will be notified via email."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: ../features/functions.php:199 ../features/functions.php:200
|
1462 |
msgid "Profile Builder"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../features/functions.php:270
|
1466 |
msgid "The user-validation has failed - the avatar was not deleted!"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../features/functions.php:281
|
1470 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../features/functions.php:455
|
1474 |
msgid "Strength indicator"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../features/functions.php:480
|
1478 |
msgid "Very Weak"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../features/functions.php:494
|
1482 |
#, php-format
|
1483 |
msgid "Minimum length of %d characters"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: ../features/functions.php:568
|
1487 |
msgid "This field is required"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: ../features/functions.php:588
|
1491 |
msgid "Cancel"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../features/functions.php:620
|
1495 |
+
#, php-format
|
1496 |
+
msgid ""
|
1497 |
+
"To allow users to register for your website via Profile Builder, you first "
|
1498 |
+
"must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
|
1499 |
+
"Registration Settings make sure to check “User accounts may be registered”. "
|
1500 |
+
"%3$sDismiss%4$s"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: ../features/functions.php:624
|
1504 |
#, php-format
|
1505 |
msgid ""
|
1506 |
"To allow users to register for your website via Profile Builder, you first "
|
1537 |
msgid "The usernames cannot be changed."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: ../front-end/class-formbuilder.php:87
|
1541 |
msgid "Only an administrator can add new users."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: ../front-end/class-formbuilder.php:97
|
1545 |
msgid "Users can register themselves or you can manually create users here."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: ../front-end/class-formbuilder.php:97
|
1549 |
+
#: ../front-end/class-formbuilder.php:100
|
1550 |
msgid "This message is only visible by administrators"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: ../front-end/class-formbuilder.php:100
|
1554 |
msgid ""
|
1555 |
"Users cannot currently register themselves, but you can manually create "
|
1556 |
"users here."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: ../front-end/class-formbuilder.php:112
|
1560 |
#, php-format
|
1561 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: ../front-end/class-formbuilder.php:112
|
1565 |
msgid "Log out of this account."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: ../front-end/class-formbuilder.php:112
|
1569 |
msgid "Logout"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: ../front-end/class-formbuilder.php:118
|
1573 |
msgid "You must be logged in to edit your profile."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: ../front-end/class-formbuilder.php:141
|
1577 |
msgid "here"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: ../front-end/class-formbuilder.php:143
|
1581 |
#, php-format
|
1582 |
msgid ""
|
1583 |
"You will soon be redirected automatically. If you see this page for more "
|
1584 |
"than %1$d seconds, please click %2$s.%3$s"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: ../front-end/class-formbuilder.php:228
|
1588 |
#, php-format
|
1589 |
msgid "The account %1s has been successfully created!"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: ../front-end/class-formbuilder.php:231
|
1593 |
+
#: ../front-end/class-formbuilder.php:237
|
1594 |
#, php-format
|
1595 |
msgid ""
|
1596 |
"Before you can access your account %1s, you need to confirm your email "
|
1597 |
"address. Please check your inbox and click the activation link."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: ../front-end/class-formbuilder.php:234
|
1601 |
#, php-format
|
1602 |
msgid ""
|
1603 |
"Before you can access your account %1s, an administrator has to approve it. "
|
1604 |
"You will be notified via email."
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: ../front-end/class-formbuilder.php:247
|
1608 |
msgid "Your profile has been successfully updated!"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: ../front-end/class-formbuilder.php:257
|
1612 |
msgid "There was an error in the submitted form"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: ../front-end/class-formbuilder.php:278
|
1616 |
msgid "Add User"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: ../front-end/class-formbuilder.php:278 ../front-end/login.php:199
|
1620 |
msgid "Register"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: ../front-end/class-formbuilder.php:281
|
1624 |
msgid "Update"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: ../front-end/class-formbuilder.php:323
|
1628 |
+
#: ../front-end/extra-fields/extra-fields.php:34
|
1629 |
msgid "The avatar was successfully deleted!"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../front-end/class-formbuilder.php:323
|
1633 |
+
#: ../front-end/extra-fields/extra-fields.php:36
|
1634 |
msgid "The following attachment was successfully deleted:"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: ../front-end/class-formbuilder.php:335
|
1638 |
msgid "Send these credentials via email."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: ../front-end/class-formbuilder.php:483
|
1642 |
+
msgid "User to edit:"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
#: ../front-end/default-fields/email/email.php:42
|
1646 |
msgid "The email you entered is not a valid email address."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: ../front-end/default-fields/email/email.php:51
|
1650 |
+
#: ../front-end/default-fields/email/email.php:56
|
1651 |
msgid "This email is already reserved to be used soon."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: ../front-end/default-fields/email/email.php:51
|
1655 |
+
#: ../front-end/default-fields/email/email.php:56
|
1656 |
+
#: ../front-end/default-fields/email/email.php:64
|
1657 |
+
#: ../front-end/default-fields/email/email.php:75
|
1658 |
#: ../front-end/default-fields/username/username.php:44
|
1659 |
#: ../front-end/default-fields/username/username.php:51
|
1660 |
msgid "Please try a different one!"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: ../front-end/default-fields/email/email.php:64
|
1664 |
+
#: ../front-end/default-fields/email/email.php:75
|
1665 |
msgid "This email is already in use."
|
1666 |
msgstr ""
|
1667 |
|
1671 |
msgstr ""
|
1672 |
|
1673 |
#: ../front-end/default-fields/password/password.php:44
|
1674 |
+
#: ../front-end/recover.php:236
|
1675 |
+
#, php-format
|
1676 |
+
msgid "The password must have the minimum length of %s characters"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
#: ../front-end/default-fields/password/password.php:48
|
1680 |
+
#: ../front-end/recover.php:240
|
1681 |
+
#, php-format
|
1682 |
+
msgid "The password must have a minimum strength of %s"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
#: ../front-end/default-fields/username/username.php:44
|
1731 |
|
1732 |
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1733 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1734 |
+
#: ../front-end/extra-fields/datepicker/datepicker.php:47
|
1735 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1736 |
#: ../front-end/extra-fields/input/input.php:28
|
1737 |
#: ../front-end/extra-fields/radio/radio.php:42
|
1780 |
msgstr ""
|
1781 |
|
1782 |
#: ../front-end/extra-fields/avatar/avatar.php:222
|
|
|
1783 |
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1784 |
+
#: ../front-end/extra-fields/avatar/avatar.php:249
|
1785 |
#: ../front-end/extra-fields/upload/upload.php:189
|
|
|
1786 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1787 |
+
#: ../front-end/extra-fields/upload/upload.php:216
|
1788 |
msgid "No file was selected"
|
1789 |
msgstr ""
|
1790 |
|
1807 |
msgid "Unknown error occurred"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: ../front-end/extra-fields/extra-fields.php:103 ../front-end/login.php:89
|
1811 |
+
#: ../front-end/login.php:96 ../front-end/login.php:110
|
1812 |
+
#: ../front-end/recover.php:17 ../front-end/recover.php:213
|
1813 |
msgid "ERROR"
|
1814 |
msgstr ""
|
1815 |
|
1836 |
"you can do so at"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:264
|
1840 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:267
|
1844 |
msgid "To use reCAPTCHA you must get an API private key from:"
|
1845 |
msgstr ""
|
1846 |
|
1896 |
msgid "This field wasn't updated because an unknown error occured"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: ../front-end/extra-fields/user-role/user-role.php:72
|
1900 |
+
msgid "You cannot register this user role"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: ../front-end/login.php:89
|
1904 |
msgid "The password you entered is incorrect."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: ../front-end/login.php:90 ../front-end/login.php:97
|
1908 |
msgid "Password Lost and Found."
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: ../front-end/login.php:90 ../front-end/login.php:97
|
1912 |
msgid "Lost your password"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: ../front-end/login.php:96
|
1916 |
msgid "Invalid username."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: ../front-end/login.php:101 ../front-end/login.php:105
|
1920 |
msgid "username"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: ../front-end/login.php:101
|
1924 |
msgid "email"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: ../front-end/login.php:105
|
1928 |
+
msgid "username or email"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: ../front-end/login.php:110
|
1932 |
msgid "Both fields are empty."
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: ../front-end/login.php:171
|
1936 |
+
msgid "Username or Email"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: ../front-end/login.php:205
|
1940 |
msgid "Lost your password?"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: ../front-end/login.php:238 ../front-end/logout.php:17
|
1944 |
+
msgid "Log out of this account"
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: ../front-end/login.php:238
|
1948 |
+
msgid "Log out"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: ../front-end/login.php:239
|
1952 |
#, php-format
|
1953 |
msgid "You are currently logged in as %1$s. %2$s"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: ../front-end/logout.php:15
|
1957 |
+
#, php-format
|
1958 |
+
msgid "You are currently logged in as %s. "
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: ../front-end/logout.php:15
|
1962 |
+
msgid "Log out »"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
#: ../front-end/recover.php:17
|
1988 |
msgid "Get New Password"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: ../front-end/recover.php:166
|
1992 |
msgid "The username entered wasn't found in the database!"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: ../front-end/recover.php:166
|
1996 |
msgid "Please check that you entered the correct username."
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: ../front-end/recover.php:181
|
2000 |
msgid "Check your e-mail for the confirmation link."
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: ../front-end/recover.php:201
|
2004 |
#, php-format
|
2005 |
msgid ""
|
2006 |
"Someone requested that the password be reset for the following account: <b>"
|
2008 |
"happen.<br/>To reset your password, visit the following link:%2$s"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: ../front-end/recover.php:204
|
2012 |
#, php-format
|
2013 |
msgid "Password Reset from \"%1$s\""
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: ../front-end/recover.php:213
|
2017 |
#, php-format
|
2018 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: ../front-end/recover.php:222
|
2022 |
msgid "The email address entered wasn't found in the database!"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: ../front-end/recover.php:222
|
2026 |
msgid "Please check that you entered the correct email address."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: ../front-end/recover.php:247
|
2030 |
msgid "Your password has been successfully changed!"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: ../front-end/recover.php:266
|
2034 |
#, php-format
|
2035 |
msgid "You have successfully reset your password to: %1$s"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: ../front-end/recover.php:269 ../front-end/recover.php:283
|
2039 |
#, php-format
|
2040 |
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: ../front-end/recover.php:280
|
2044 |
#, php-format
|
2045 |
msgid ""
|
2046 |
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
2047 |
"her new password is:%2$s"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: ../front-end/recover.php:299
|
2051 |
msgid "The entered passwords don't match!"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: ../front-end/recover.php:344
|
2055 |
msgid "ERROR:"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: ../front-end/recover.php:344
|
2059 |
msgid "Invalid key!"
|
2060 |
msgstr ""
|
2061 |
|
2085 |
"of the plugin."
|
2086 |
msgstr ""
|
2087 |
|
|
|
|
|
|
|
|
|
2088 |
#: ../modules/custom-redirects/custom-redirects.php:35
|
2089 |
msgid "Redirects on custom page requests:"
|
2090 |
msgstr ""
|
2096 |
|
2097 |
#: ../modules/custom-redirects/custom-redirects.php:40
|
2098 |
#: ../modules/custom-redirects/custom-redirects.php:86
|
2099 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
2100 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
2101 |
msgid "Redirect"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
#: ../modules/custom-redirects/custom-redirects.php:41
|
2105 |
#: ../modules/custom-redirects/custom-redirects.php:87
|
2106 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
2107 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
2108 |
msgid "URL"
|
2109 |
msgstr ""
|
2110 |
|
2260 |
msgid "Available Tags"
|
2261 |
msgstr ""
|
2262 |
|
|
|
|
|
|
|
|
|
2263 |
#: ../modules/email-customizer/email-customizer.php:21
|
2264 |
msgid "Site Url"
|
2265 |
msgstr ""
|
2269 |
msgstr ""
|
2270 |
|
2271 |
#: ../modules/email-customizer/email-customizer.php:25
|
2272 |
+
#: ../modules/user-listing/userlisting.php:124
|
2273 |
msgid "User Id"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: ../modules/email-customizer/email-customizer.php:31
|
2277 |
+
msgid "User Role"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: ../modules/email-customizer/email-customizer.php:33
|
2281 |
+
msgid "Reply To"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
#: ../modules/email-customizer/email-customizer.php:36
|
2285 |
+
msgid "Activation Key"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
#: ../modules/email-customizer/email-customizer.php:37
|
2289 |
+
msgid "Activation Url"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: ../modules/email-customizer/email-customizer.php:38
|
2293 |
+
msgid "Activation Link"
|
|
|
2294 |
msgstr ""
|
2295 |
|
2296 |
#: ../modules/email-customizer/user-email-customizer.php:11
|
2439 |
msgid "No Edit-profile Forms found in trash"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:131
|
2443 |
+
#: ../modules/multiple-forms/register-forms.php:134
|
2444 |
+
#: ../modules/user-listing/userlisting.php:1041
|
2445 |
msgid "Shortcode"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:151
|
2449 |
+
#: ../modules/multiple-forms/register-forms.php:155
|
2450 |
+
#: ../modules/user-listing/userlisting.php:1062
|
2451 |
msgid "(no title)"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:171
|
2455 |
+
#: ../modules/multiple-forms/register-forms.php:174
|
2456 |
+
#: ../modules/user-listing/userlisting.php:1082
|
2457 |
msgid "The shortcode will be available after you publish this form."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:173
|
2461 |
+
#: ../modules/multiple-forms/register-forms.php:176
|
2462 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2463 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2467 |
+
#: ../modules/multiple-forms/register-forms.php:180
|
2468 |
+
#: ../modules/user-listing/userlisting.php:1088
|
2469 |
msgid ""
|
2470 |
"<span style=\"color:red;\">Note:</span> changing the form title also changes "
|
2471 |
"the shortcode!"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:183
|
2475 |
+
#: ../modules/multiple-forms/register-forms.php:186
|
2476 |
+
#: ../modules/user-listing/userlisting.php:1121
|
2477 |
msgid "Form Shortcode"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
2481 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
2482 |
msgid "Whether to redirect the user to a specific page or not"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
2486 |
+
#: ../modules/multiple-forms/register-forms.php:227
|
2487 |
msgid "Display Messages"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
2491 |
+
#: ../modules/multiple-forms/register-forms.php:227
|
2492 |
msgid "Allowed time to display any success messages (in seconds)"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
2496 |
msgid ""
|
2497 |
"Specify the URL of the page users will be redirected once they updated their "
|
2498 |
"profile using this form<br/>Use the following format: http://www.mysite.com"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:211
|
2502 |
msgid "After Profile Update..."
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:237
|
2506 |
+
#: ../modules/multiple-forms/register-forms.php:258
|
2507 |
msgid "Add New Field to the List"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
2511 |
+
#: ../modules/multiple-forms/register-forms.php:262
|
2512 |
msgid "Choose one of the supported fields you manage <a href=\""
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:270
|
2516 |
msgid "This form is empty."
|
2517 |
msgstr ""
|
2518 |
|
2520 |
msgid "You need to specify the title of the form before creating it"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
2524 |
msgid "<pre>Title (Type)</pre>"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
2528 |
msgid "Delete all items"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
2532 |
msgid "Delete all"
|
2533 |
msgstr ""
|
2534 |
|
2570 |
msgid "No Registration Forms found in trash"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: ../modules/multiple-forms/register-forms.php:215
|
2574 |
msgid "Default Role"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: ../modules/multiple-forms/register-forms.php:224
|
2578 |
msgid "Set Role"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: ../modules/multiple-forms/register-forms.php:224
|
2582 |
msgid ""
|
2583 |
"Choose what role the user will have after (s)he registered<br/>If not "
|
2584 |
"specified, defaults to the role set in the WordPress settings"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
2588 |
msgid "Automatically Log In"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
2592 |
msgid ""
|
2593 |
"Whether to automatically log in the newly registered user or not<br/>Only "
|
2594 |
"works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
|
2596 |
"automatic login not work"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
2600 |
msgid "Choose..."
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
2604 |
msgid ""
|
2605 |
"Specify the URL of the page users will be redirected once registered using "
|
2606 |
"this form<br/>Use the following format: http://www.mysite.com"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: ../modules/multiple-forms/register-forms.php:234
|
2610 |
msgid "After Registration..."
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: ../modules/user-listing/class-userlisting.php:471
|
2614 |
+
#: ../modules/user-listing/userlisting.php:636
|
2615 |
+
#: ../modules/user-listing/userlisting.php:854
|
2616 |
+
#: ../modules/user-listing/userlisting.php:897
|
2617 |
+
#: ../modules/user-listing/userlisting.php:1241
|
2618 |
msgid "Search Users by All Fields"
|
2619 |
msgstr ""
|
2620 |
|
2646 |
msgid "No User Listing found in trash"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: ../modules/user-listing/userlisting.php:95
|
2650 |
msgid "Display name as"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: ../modules/user-listing/userlisting.php:108
|
2654 |
msgid "Url"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: ../modules/user-listing/userlisting.php:116
|
2658 |
+
#: ../modules/user-listing/userlisting.php:1149
|
2659 |
msgid "Registration Date"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: ../modules/user-listing/userlisting.php:117
|
2663 |
+
#: ../modules/user-listing/userlisting.php:1153
|
2664 |
msgid "Number of Posts"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: ../modules/user-listing/userlisting.php:121
|
2668 |
msgid "More Info"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: ../modules/user-listing/userlisting.php:122
|
2672 |
msgid "More Info Url"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: ../modules/user-listing/userlisting.php:123
|
2676 |
msgid "Avatar or Gravatar"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: ../modules/user-listing/userlisting.php:151
|
2680 |
msgid "Meta Variables"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: ../modules/user-listing/userlisting.php:157
|
2684 |
msgid "Sort Variables"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: ../modules/user-listing/userlisting.php:161
|
2688 |
+
#: ../modules/user-listing/userlisting.php:188
|
2689 |
msgid "Extra Functions"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: ../modules/user-listing/userlisting.php:163
|
2693 |
msgid "Pagination"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: ../modules/user-listing/userlisting.php:164
|
2697 |
msgid "Search all Fields"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: ../modules/user-listing/userlisting.php:190
|
2701 |
msgid "Go Back Link"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: ../modules/user-listing/userlisting.php:208
|
2705 |
msgid "All-userlisting Template"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: ../modules/user-listing/userlisting.php:211
|
2709 |
msgid "Single-userlisting Template"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: ../modules/user-listing/userlisting.php:328
|
2713 |
msgid "You do not have permission to view this user list"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: ../modules/user-listing/userlisting.php:341
|
2717 |
msgid "You do not have the required user role to view this user list"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: ../modules/user-listing/userlisting.php:354
|
2721 |
msgid "User not found"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: ../modules/user-listing/userlisting.php:526
|
2725 |
msgid "First/Lastname"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: ../modules/user-listing/userlisting.php:532
|
2729 |
msgid "Sign-up Date"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: ../modules/user-listing/userlisting.php:541
|
2733 |
+
#: ../modules/user-listing/userlisting.php:1152
|
2734 |
msgid "Display Name"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: ../modules/user-listing/userlisting.php:550
|
2738 |
msgid "Posts"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: ../modules/user-listing/userlisting.php:553
|
2742 |
+
#: ../modules/user-listing/userlisting.php:1158
|
2743 |
msgid "Aim"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: ../modules/user-listing/userlisting.php:556
|
2747 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2748 |
msgid "Yim"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: ../modules/user-listing/userlisting.php:559
|
2752 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2753 |
msgid "Jabber"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: ../modules/user-listing/userlisting.php:713
|
2757 |
msgid "Click here to see more information about this user"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: ../modules/user-listing/userlisting.php:713
|
2761 |
msgid "More..."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: ../modules/user-listing/userlisting.php:716
|
2765 |
msgid "Click here to see more information about this user."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: ../modules/user-listing/userlisting.php:808
|
2769 |
+
#: ../modules/user-listing/userlisting.php:811
|
2770 |
msgid "Click here to go back"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: ../modules/user-listing/userlisting.php:808
|
2774 |
msgid "Back"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: ../modules/user-listing/userlisting.php:841
|
2778 |
msgid "«« First"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: ../modules/user-listing/userlisting.php:842
|
2782 |
msgid "« Prev"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: ../modules/user-listing/userlisting.php:843
|
2786 |
msgid "Next » "
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: ../modules/user-listing/userlisting.php:844
|
2790 |
msgid "Last »»"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: ../modules/user-listing/userlisting.php:873
|
2794 |
msgid "You don't have any pagination settings on this userlisting!"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: ../modules/user-listing/userlisting.php:914
|
2798 |
msgid "Search"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: ../modules/user-listing/userlisting.php:915
|
2802 |
msgid "Clear Results"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: ../modules/user-listing/userlisting.php:1091
|
2806 |
+
#: ../modules/user-listing/userlisting.php:1095
|
2807 |
msgid "Extra shortcode parameters"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: ../modules/user-listing/userlisting.php:1093
|
2811 |
+
msgid "View all extra shortcode parameters"
|
2812 |
+
msgstr ""
|
2813 |
+
|
2814 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2815 |
msgid ""
|
2816 |
"displays users having a certain meta-value within a certain (extra) meta-"
|
2817 |
"field"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: ../modules/user-listing/userlisting.php:1099
|
2821 |
msgid "Example:"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: ../modules/user-listing/userlisting.php:1101
|
2825 |
msgid ""
|
2826 |
"Remember though, that the field-value combination must exist in the database."
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
#: ../modules/user-listing/userlisting.php:1107
|
2830 |
+
msgid "displays only the users that you specified the user_id for"
|
2831 |
+
msgstr ""
|
2832 |
+
|
2833 |
+
#: ../modules/user-listing/userlisting.php:1113
|
2834 |
+
msgid "displays all users except the ones you specified the user_id for"
|
2835 |
+
msgstr ""
|
2836 |
+
|
2837 |
+
#: ../modules/user-listing/userlisting.php:1170
|
2838 |
msgid "Random (very slow on large databases > 10K user)"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: ../modules/user-listing/userlisting.php:1183
|
2842 |
msgid "Roles to Display"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: ../modules/user-listing/userlisting.php:1183
|
2846 |
msgid ""
|
2847 |
"Restrict the userlisting to these selected roles only<br/>If not specified, "
|
2848 |
"defaults to all existing roles"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: ../modules/user-listing/userlisting.php:1184
|
2852 |
msgid "Number of Users/Page"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: ../modules/user-listing/userlisting.php:1184
|
2856 |
msgid ""
|
2857 |
"Set the number of users to be displayed on every paginated part of the all-"
|
2858 |
"userlisting"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: ../modules/user-listing/userlisting.php:1185
|
2862 |
msgid "Default Sorting Criteria"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: ../modules/user-listing/userlisting.php:1185
|
2866 |
msgid ""
|
2867 |
"Set the default sorting criteria<br/>This can temporarily be changed for "
|
2868 |
"each new session"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: ../modules/user-listing/userlisting.php:1186
|
2872 |
msgid "Default Sorting Order"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: ../modules/user-listing/userlisting.php:1186
|
2876 |
msgid ""
|
2877 |
"Set the default sorting order<br/>This can temporarily be changed for each "
|
2878 |
"new session"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: ../modules/user-listing/userlisting.php:1187
|
2882 |
msgid "Avatar Size (All-userlisting)"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: ../modules/user-listing/userlisting.php:1187
|
2886 |
msgid "Set the avatar size on the all-userlisting only"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: ../modules/user-listing/userlisting.php:1188
|
2890 |
msgid "Avatar Size (Single-userlisting)"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: ../modules/user-listing/userlisting.php:1188
|
2894 |
msgid "Set the avatar size on the single-userlisting only"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: ../modules/user-listing/userlisting.php:1189
|
2898 |
msgid "Visible only to logged in users?"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: ../modules/user-listing/userlisting.php:1189
|
2902 |
msgid "The userlisting will only be visible only to the logged in users"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: ../modules/user-listing/userlisting.php:1190
|
2906 |
msgid "Visible to following Roles"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: ../modules/user-listing/userlisting.php:1190
|
2910 |
msgid "The userlisting will only be visible to the following roles"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
+
#: ../modules/user-listing/userlisting.php:1196
|
2914 |
msgid "Userlisting Settings"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2918 |
msgid ""
|
2919 |
"You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2923 |
msgid "You can find it in the Profile Builder menu."
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: ../modules/user-listing/userlisting.php:1380
|
2927 |
msgid "No results found!"
|
2928 |
msgstr ""
|