Version Description
- Fixed vulnerability regarding activating/deactivationg addons through ajax. We added nonces and permission checks.
- Added a filter in which we can change the classes on the li element for fields: 'wppb_field_css_class'
- Fixed automatic login on registration when filtering the random username generated when login with email is active
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.1.4 |
Comparing to | |
See all releases |
Code changes from version 2.1.3 to 2.1.4
- admin/add-ons.php +24 -19
- admin/manage-fields.php +4 -4
- assets/css/serial-notice.css +14 -14
- assets/js/jquery-pb-add-ons.js +4 -2
- assets/lib/codemirror/lib/codemirror.css +273 -273
- front-end/class-formbuilder.php +3 -6
- front-end/default-fields/headings/about-yourself.php +11 -11
- index.php +2 -2
- readme.txt +8 -3
- translation/profilebuilder.pot +3095 -3095
admin/add-ons.php
CHANGED
@@ -109,17 +109,15 @@ function wppb_add_ons_content() {
|
|
109 |
if( in_array( strtolower( $version ), $wppb_add_on['product_version_type'] ) ) {
|
110 |
|
111 |
if( $wppb_add_on_exists ) {
|
|
|
112 |
|
113 |
if( !$wppb_add_on_is_active ) {
|
114 |
-
|
115 |
-
echo '<a class="wppb-add-on-activate right button button-secondary" href="' . $wppb_add_on['plugin_file'] . '">' . __( 'Activate', 'profilebuilder' ) . '</a>';
|
116 |
echo '<span class="dashicons dashicons-no-alt"></span><span class="wppb-add-on-message">' . __( 'Add-On is <strong>inactive</strong>', 'profilebuilder' ) . '</span>';
|
117 |
|
118 |
} else {
|
119 |
-
|
120 |
-
echo '<a class="wppb-add-on-deactivate right button button-secondary" href="' . $wppb_add_on['plugin_file'] . '">' . __( 'Deactivate', 'profilebuilder' ) . '</a>';
|
121 |
echo '<span class="dashicons dashicons-yes"></span><span class="wppb-add-on-message">' . __( 'Add-On is <strong>active</strong>', 'profilebuilder' ) . '</span>';
|
122 |
-
|
123 |
}
|
124 |
|
125 |
} else {
|
@@ -199,16 +197,19 @@ function wppb_add_ons_get_remote_content() {
|
|
199 |
* @since v.2.1.0
|
200 |
*/
|
201 |
function wppb_add_on_activate() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
|
203 |
-
|
204 |
-
|
205 |
-
$response = $_POST['wppb_add_on_index'];
|
206 |
-
|
207 |
-
if( !is_plugin_active( $wppb_add_on_to_activate )) {
|
208 |
-
activate_plugin( $wppb_add_on_to_activate );
|
209 |
}
|
210 |
-
|
211 |
-
echo $response;
|
212 |
wp_die();
|
213 |
}
|
214 |
add_action( 'wp_ajax_wppb_add_on_activate', 'wppb_add_on_activate' );
|
@@ -220,14 +221,18 @@ add_action( 'wp_ajax_wppb_add_on_activate', 'wppb_add_on_activate' );
|
|
220 |
* @since v.2.1.0
|
221 |
*/
|
222 |
function wppb_add_on_deactivate() {
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
-
|
225 |
-
|
226 |
-
$response = $_POST['wppb_add_on_index'];
|
227 |
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
wp_die();
|
232 |
|
233 |
}
|
109 |
if( in_array( strtolower( $version ), $wppb_add_on['product_version_type'] ) ) {
|
110 |
|
111 |
if( $wppb_add_on_exists ) {
|
112 |
+
$ajax_nonce = wp_create_nonce( "wppb-activate-addon" );
|
113 |
|
114 |
if( !$wppb_add_on_is_active ) {
|
115 |
+
echo '<a class="wppb-add-on-activate right button button-secondary" href="' . $wppb_add_on['plugin_file'] . '" data-nonce="'. $ajax_nonce .'">' . __( 'Activate', 'profilebuilder' ) . '</a>';
|
|
|
116 |
echo '<span class="dashicons dashicons-no-alt"></span><span class="wppb-add-on-message">' . __( 'Add-On is <strong>inactive</strong>', 'profilebuilder' ) . '</span>';
|
117 |
|
118 |
} else {
|
119 |
+
echo '<a class="wppb-add-on-deactivate right button button-secondary" href="' . $wppb_add_on['plugin_file'] . '" data-nonce="'. $ajax_nonce .'">' . __( 'Deactivate', 'profilebuilder' ) . '</a>';
|
|
|
120 |
echo '<span class="dashicons dashicons-yes"></span><span class="wppb-add-on-message">' . __( 'Add-On is <strong>active</strong>', 'profilebuilder' ) . '</span>';
|
|
|
121 |
}
|
122 |
|
123 |
} else {
|
197 |
* @since v.2.1.0
|
198 |
*/
|
199 |
function wppb_add_on_activate() {
|
200 |
+
check_ajax_referer( 'wppb-activate-addon', 'nonce' );
|
201 |
+
if( current_user_can( 'manage_options' ) ){
|
202 |
+
// Setup variables from POST
|
203 |
+
$wppb_add_on_to_activate = $_POST['wppb_add_on_to_activate'];
|
204 |
+
$response = $_POST['wppb_add_on_index'];
|
205 |
+
|
206 |
+
if( !empty( $wppb_add_on_to_activate ) && !is_plugin_active( $wppb_add_on_to_activate )) {
|
207 |
+
activate_plugin( $wppb_add_on_to_activate );
|
208 |
+
}
|
209 |
|
210 |
+
if( !empty( $response ) )
|
211 |
+
echo $response;
|
|
|
|
|
|
|
|
|
212 |
}
|
|
|
|
|
213 |
wp_die();
|
214 |
}
|
215 |
add_action( 'wp_ajax_wppb_add_on_activate', 'wppb_add_on_activate' );
|
221 |
* @since v.2.1.0
|
222 |
*/
|
223 |
function wppb_add_on_deactivate() {
|
224 |
+
check_ajax_referer( 'wppb-activate-addon', 'nonce' );
|
225 |
+
if( current_user_can( 'manage_options' ) ){
|
226 |
+
// Setup variables from POST
|
227 |
+
$wppb_add_on_to_deactivate = $_POST['wppb_add_on_to_deactivate'];
|
228 |
+
$response = $_POST['wppb_add_on_index'];
|
229 |
|
230 |
+
if( !empty( $wppb_add_on_to_deactivate ))
|
231 |
+
deactivate_plugins( $wppb_add_on_to_deactivate );
|
|
|
232 |
|
233 |
+
if( !empty( $response ) )
|
234 |
+
echo $response;
|
235 |
+
}
|
236 |
wp_die();
|
237 |
|
238 |
}
|
admin/manage-fields.php
CHANGED
@@ -94,8 +94,8 @@ function wppb_manage_fields_submenu(){
|
|
94 |
array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profilebuilder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>', 'profilebuilder' ) ),
|
95 |
array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profilebuilder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profilebuilder' ) ),
|
96 |
array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profilebuilder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profilebuilder' ) ),
|
97 |
-
array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( '
|
98 |
-
array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( '
|
99 |
array( 'type' => 'checkbox', 'slug' => 'user-roles', 'title' => __( 'User Roles', 'profilebuilder' ), 'options' => $user_roles, 'description' => __( "Select which user roles to show to the user ( drag and drop to re-order )", 'profilebuilder' ) ),
|
100 |
array( 'type' => 'text', 'slug' => 'user-roles-sort-order', 'title' => __( 'User Roles Order', 'profilebuilder' ), 'description' => __( "Save the user role order from the user roles checkboxes", 'profilebuilder' ) ),
|
101 |
array( 'type' => 'text', 'slug' => 'default-value', 'title' => __( 'Default Value', 'profilebuilder' ), 'description' => __( "Default value of the field", 'profilebuilder' ) ),
|
@@ -361,9 +361,9 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
|
|
361 |
// check for the public and private keys
|
362 |
if ( $posted_values['field'] == 'reCAPTCHA'){
|
363 |
if ( trim( $posted_values['public-key'] ) == '' )
|
364 |
-
$message .= __( "You must enter the
|
365 |
if ( trim( $posted_values['private-key'] ) == '' )
|
366 |
-
$message .= __( "You must enter the
|
367 |
}
|
368 |
// END check for the public and private keys
|
369 |
|
94 |
array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profilebuilder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>', 'profilebuilder' ) ),
|
95 |
array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profilebuilder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profilebuilder' ) ),
|
96 |
array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profilebuilder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profilebuilder' ) ),
|
97 |
+
array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Site Key', 'profilebuilder' ), 'description' => __( 'The site key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profilebuilder' ) ),
|
98 |
+
array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Secret Key', 'profilebuilder' ), 'description' => __( 'The secret key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profilebuilder' ) ),
|
99 |
array( 'type' => 'checkbox', 'slug' => 'user-roles', 'title' => __( 'User Roles', 'profilebuilder' ), 'options' => $user_roles, 'description' => __( "Select which user roles to show to the user ( drag and drop to re-order )", 'profilebuilder' ) ),
|
100 |
array( 'type' => 'text', 'slug' => 'user-roles-sort-order', 'title' => __( 'User Roles Order', 'profilebuilder' ), 'description' => __( "Save the user role order from the user roles checkboxes", 'profilebuilder' ) ),
|
101 |
array( 'type' => 'text', 'slug' => 'default-value', 'title' => __( 'Default Value', 'profilebuilder' ), 'description' => __( "Default value of the field", 'profilebuilder' ) ),
|
361 |
// check for the public and private keys
|
362 |
if ( $posted_values['field'] == 'reCAPTCHA'){
|
363 |
if ( trim( $posted_values['public-key'] ) == '' )
|
364 |
+
$message .= __( "You must enter the site key\n", 'profilebuilder' );
|
365 |
if ( trim( $posted_values['private-key'] ) == '' )
|
366 |
+
$message .= __( "You must enter the secret key\n", 'profilebuilder' );
|
367 |
}
|
368 |
// END check for the public and private keys
|
369 |
|
assets/css/serial-notice.css
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
.wppb-serial-wrap{
|
2 |
-
margin:40px 0;
|
3 |
-
}
|
4 |
-
|
5 |
-
.wppb-dismiss-notification{
|
6 |
-
position:absolute;
|
7 |
-
right:0px;
|
8 |
-
top:50%;
|
9 |
-
margin-top:-7px;
|
10 |
-
}
|
11 |
-
|
12 |
-
div.wppb-serial-notification p{
|
13 |
-
padding-right: 50px;
|
14 |
-
position:relative;
|
15 |
}
|
1 |
+
.wppb-serial-wrap{
|
2 |
+
margin:40px 0;
|
3 |
+
}
|
4 |
+
|
5 |
+
.wppb-dismiss-notification{
|
6 |
+
position:absolute;
|
7 |
+
right:0px;
|
8 |
+
top:50%;
|
9 |
+
margin-top:-7px;
|
10 |
+
}
|
11 |
+
|
12 |
+
div.wppb-serial-notification p{
|
13 |
+
padding-right: 50px;
|
14 |
+
position:relative;
|
15 |
}
|
assets/js/jquery-pb-add-ons.js
CHANGED
@@ -155,6 +155,7 @@ function wppb_add_on_activate( $button ) {
|
|
155 |
var fade_in_out_speed = 300;
|
156 |
var plugin = $activate_button.attr('href');
|
157 |
var add_on_index = $activate_button.parents('.wppb-add-on').index('.wppb-add-on');
|
|
|
158 |
|
159 |
$activate_button
|
160 |
.attr('disabled', true);
|
@@ -168,7 +169,7 @@ function wppb_add_on_activate( $button ) {
|
|
168 |
// Remove the current displayed message
|
169 |
wppb_add_on_remove_status_message( $activate_button, fade_in_out_speed);
|
170 |
|
171 |
-
jQuery.post( ajaxurl, { action: 'wppb_add_on_activate', wppb_add_on_to_activate: plugin, wppb_add_on_index: add_on_index }, function( response ) {
|
172 |
|
173 |
add_on_index = response;
|
174 |
|
@@ -206,6 +207,7 @@ function wppb_add_on_deactivate( $button ) {
|
|
206 |
var fade_in_out_speed = 300;
|
207 |
var plugin = $button.attr('href');
|
208 |
var add_on_index = $button.parents('.wppb-add-on').index('.wppb-add-on');
|
|
|
209 |
|
210 |
$button
|
211 |
.removeClass('wppb-add-on-deactivate')
|
@@ -220,7 +222,7 @@ function wppb_add_on_deactivate( $button ) {
|
|
220 |
// Remove the current displayed message
|
221 |
wppb_add_on_remove_status_message( $button, fade_in_out_speed );
|
222 |
|
223 |
-
jQuery.post( ajaxurl, { action: 'wppb_add_on_deactivate', wppb_add_on_to_deactivate: plugin, wppb_add_on_index: add_on_index }, function( response ) {
|
224 |
|
225 |
add_on_index = response;
|
226 |
|
155 |
var fade_in_out_speed = 300;
|
156 |
var plugin = $activate_button.attr('href');
|
157 |
var add_on_index = $activate_button.parents('.wppb-add-on').index('.wppb-add-on');
|
158 |
+
var nonce = $activate_button.data('nonce');
|
159 |
|
160 |
$activate_button
|
161 |
.attr('disabled', true);
|
169 |
// Remove the current displayed message
|
170 |
wppb_add_on_remove_status_message( $activate_button, fade_in_out_speed);
|
171 |
|
172 |
+
jQuery.post( ajaxurl, { action: 'wppb_add_on_activate', wppb_add_on_to_activate: plugin, wppb_add_on_index: add_on_index, nonce: nonce }, function( response ) {
|
173 |
|
174 |
add_on_index = response;
|
175 |
|
207 |
var fade_in_out_speed = 300;
|
208 |
var plugin = $button.attr('href');
|
209 |
var add_on_index = $button.parents('.wppb-add-on').index('.wppb-add-on');
|
210 |
+
var nonce = $button.data('nonce');
|
211 |
|
212 |
$button
|
213 |
.removeClass('wppb-add-on-deactivate')
|
222 |
// Remove the current displayed message
|
223 |
wppb_add_on_remove_status_message( $button, fade_in_out_speed );
|
224 |
|
225 |
+
jQuery.post( ajaxurl, { action: 'wppb_add_on_deactivate', wppb_add_on_to_deactivate: plugin, wppb_add_on_index: add_on_index, nonce: nonce }, function( response ) {
|
226 |
|
227 |
add_on_index = response;
|
228 |
|
assets/lib/codemirror/lib/codemirror.css
CHANGED
@@ -1,273 +1,273 @@
|
|
1 |
-
/* BASICS */
|
2 |
-
|
3 |
-
.CodeMirror {
|
4 |
-
/* Set height, width, borders, and global font properties here */
|
5 |
-
font-family: monospace;
|
6 |
-
height: 300px;
|
7 |
-
}
|
8 |
-
.CodeMirror-scroll {
|
9 |
-
/* Set scrolling behaviour here */
|
10 |
-
overflow: auto;
|
11 |
-
}
|
12 |
-
|
13 |
-
/* PADDING */
|
14 |
-
|
15 |
-
.CodeMirror-lines {
|
16 |
-
padding: 4px 0; /* Vertical padding around content */
|
17 |
-
}
|
18 |
-
.CodeMirror pre {
|
19 |
-
padding: 0 4px; /* Horizontal padding of content */
|
20 |
-
}
|
21 |
-
|
22 |
-
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
23 |
-
background-color: white; /* The little square between H and V scrollbars */
|
24 |
-
}
|
25 |
-
|
26 |
-
/* GUTTER */
|
27 |
-
|
28 |
-
.CodeMirror-gutters {
|
29 |
-
border-right: 1px solid #ddd;
|
30 |
-
background-color: #f7f7f7;
|
31 |
-
white-space: nowrap;
|
32 |
-
}
|
33 |
-
.CodeMirror-linenumbers {}
|
34 |
-
.CodeMirror-linenumber {
|
35 |
-
padding: 0 3px 0 5px;
|
36 |
-
min-width: 20px;
|
37 |
-
text-align: right;
|
38 |
-
color: #999;
|
39 |
-
}
|
40 |
-
|
41 |
-
/* CURSOR */
|
42 |
-
|
43 |
-
.CodeMirror div.CodeMirror-cursor {
|
44 |
-
border-left: 1px solid black;
|
45 |
-
z-index: 3;
|
46 |
-
}
|
47 |
-
/* Shown when moving in bi-directional text */
|
48 |
-
.CodeMirror div.CodeMirror-secondarycursor {
|
49 |
-
border-left: 1px solid silver;
|
50 |
-
}
|
51 |
-
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
|
52 |
-
width: auto;
|
53 |
-
border: 0;
|
54 |
-
background: #7e7;
|
55 |
-
z-index: 1;
|
56 |
-
}
|
57 |
-
/* Can style cursor different in overwrite (non-insert) mode */
|
58 |
-
.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}
|
59 |
-
|
60 |
-
.cm-tab { display: inline-block; }
|
61 |
-
|
62 |
-
/* DEFAULT THEME */
|
63 |
-
|
64 |
-
.cm-s-default .cm-keyword {color: #708;}
|
65 |
-
.cm-s-default .cm-atom {color: #219;}
|
66 |
-
.cm-s-default .cm-number {color: #164;}
|
67 |
-
.cm-s-default .cm-def {color: #00f;}
|
68 |
-
.cm-s-default .cm-variable {color: black;}
|
69 |
-
.cm-s-default .cm-variable-2 {color: #05a;}
|
70 |
-
.cm-s-default .cm-variable-3 {color: #085;}
|
71 |
-
.cm-s-default .cm-property {color: black;}
|
72 |
-
.cm-s-default .cm-operator {color: black;}
|
73 |
-
.cm-s-default .cm-comment {color: #a50;}
|
74 |
-
.cm-s-default .cm-string {color: #a11;}
|
75 |
-
.cm-s-default .cm-string-2 {color: #f50;}
|
76 |
-
.cm-s-default .cm-meta {color: #555;}
|
77 |
-
.cm-s-default .cm-error {color: #f00;}
|
78 |
-
.cm-s-default .cm-qualifier {color: #555;}
|
79 |
-
.cm-s-default .cm-builtin {color: #30a;}
|
80 |
-
.cm-s-default .cm-bracket {color: #997;}
|
81 |
-
.cm-s-default .cm-tag {color: #170;}
|
82 |
-
.cm-s-default .cm-attribute {color: #00c;}
|
83 |
-
.cm-s-default .cm-header {color: blue;}
|
84 |
-
.cm-s-default .cm-quote {color: #090;}
|
85 |
-
.cm-s-default .cm-hr {color: #999;}
|
86 |
-
.cm-s-default .cm-link {color: #00c;}
|
87 |
-
|
88 |
-
.cm-negative {color: #d44;}
|
89 |
-
.cm-positive {color: #292;}
|
90 |
-
.cm-header, .cm-strong {font-weight: bold;}
|
91 |
-
.cm-em {font-style: italic;}
|
92 |
-
.cm-link {text-decoration: underline;}
|
93 |
-
|
94 |
-
.cm-invalidchar {color: #f00;}
|
95 |
-
|
96 |
-
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
97 |
-
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
98 |
-
.CodeMirror-activeline-background {background: #e8f2ff;}
|
99 |
-
|
100 |
-
/* STOP */
|
101 |
-
|
102 |
-
/* The rest of this file contains styles related to the mechanics of
|
103 |
-
the editor. You probably shouldn't touch them. */
|
104 |
-
|
105 |
-
.CodeMirror {
|
106 |
-
line-height: 1;
|
107 |
-
position: relative;
|
108 |
-
overflow: hidden;
|
109 |
-
background: white;
|
110 |
-
color: black;
|
111 |
-
}
|
112 |
-
|
113 |
-
.CodeMirror-scroll {
|
114 |
-
/* 30px is the magic margin used to hide the element's real scrollbars */
|
115 |
-
/* See overflow: hidden in .CodeMirror */
|
116 |
-
margin-bottom: -30px; margin-right: -30px;
|
117 |
-
padding-bottom: 30px; padding-right: 30px;
|
118 |
-
height: 100%;
|
119 |
-
outline: none; /* Prevent dragging from highlighting the element */
|
120 |
-
position: relative;
|
121 |
-
-moz-box-sizing: content-box;
|
122 |
-
box-sizing: content-box;
|
123 |
-
}
|
124 |
-
.CodeMirror-sizer {
|
125 |
-
position: relative;
|
126 |
-
}
|
127 |
-
|
128 |
-
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
129 |
-
before actuall scrolling happens, thus preventing shaking and
|
130 |
-
flickering artifacts. */
|
131 |
-
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
132 |
-
position: absolute;
|
133 |
-
z-index: 6;
|
134 |
-
display: none;
|
135 |
-
}
|
136 |
-
.CodeMirror-vscrollbar {
|
137 |
-
right: 0; top: 0;
|
138 |
-
overflow-x: hidden;
|
139 |
-
overflow-y: scroll;
|
140 |
-
}
|
141 |
-
.CodeMirror-hscrollbar {
|
142 |
-
bottom: 0; left: 0;
|
143 |
-
overflow-y: hidden;
|
144 |
-
overflow-x: scroll;
|
145 |
-
}
|
146 |
-
.CodeMirror-scrollbar-filler {
|
147 |
-
right: 0; bottom: 0;
|
148 |
-
}
|
149 |
-
.CodeMirror-gutter-filler {
|
150 |
-
left: 0; bottom: 0;
|
151 |
-
}
|
152 |
-
|
153 |
-
.CodeMirror-gutters {
|
154 |
-
position: absolute; left: 0; top: 0;
|
155 |
-
padding-bottom: 30px;
|
156 |
-
z-index: 3;
|
157 |
-
}
|
158 |
-
.CodeMirror-gutter {
|
159 |
-
white-space: normal;
|
160 |
-
height: 100%;
|
161 |
-
-moz-box-sizing: content-box;
|
162 |
-
box-sizing: content-box;
|
163 |
-
padding-bottom: 30px;
|
164 |
-
margin-bottom: -32px;
|
165 |
-
display: inline-block;
|
166 |
-
/* Hack to make IE7 behave */
|
167 |
-
*zoom:1;
|
168 |
-
*display:inline;
|
169 |
-
}
|
170 |
-
.CodeMirror-gutter-elt {
|
171 |
-
position: absolute;
|
172 |
-
cursor: default;
|
173 |
-
z-index: 4;
|
174 |
-
}
|
175 |
-
|
176 |
-
.CodeMirror-lines {
|
177 |
-
cursor: text;
|
178 |
-
}
|
179 |
-
.CodeMirror pre {
|
180 |
-
/* Reset some styles that the rest of the page might have set */
|
181 |
-
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
182 |
-
border-width: 0;
|
183 |
-
background: transparent;
|
184 |
-
font-family: inherit;
|
185 |
-
font-size: inherit;
|
186 |
-
margin: 0;
|
187 |
-
white-space: pre;
|
188 |
-
word-wrap: normal;
|
189 |
-
line-height: inherit;
|
190 |
-
color: inherit;
|
191 |
-
z-index: 2;
|
192 |
-
position: relative;
|
193 |
-
overflow: visible;
|
194 |
-
}
|
195 |
-
.CodeMirror-wrap pre {
|
196 |
-
word-wrap: break-word;
|
197 |
-
white-space: pre-wrap;
|
198 |
-
word-break: normal;
|
199 |
-
}
|
200 |
-
.CodeMirror-code pre {
|
201 |
-
border-right: 30px solid transparent;
|
202 |
-
width: -webkit-fit-content;
|
203 |
-
width: -moz-fit-content;
|
204 |
-
width: fit-content;
|
205 |
-
}
|
206 |
-
.CodeMirror-wrap .CodeMirror-code pre {
|
207 |
-
border-right: none;
|
208 |
-
width: auto;
|
209 |
-
}
|
210 |
-
.CodeMirror-linebackground {
|
211 |
-
position: absolute;
|
212 |
-
left: 0; right: 0; top: 0; bottom: 0;
|
213 |
-
z-index: 0;
|
214 |
-
}
|
215 |
-
|
216 |
-
.CodeMirror-linewidget {
|
217 |
-
position: relative;
|
218 |
-
z-index: 2;
|
219 |
-
overflow: auto;
|
220 |
-
}
|
221 |
-
|
222 |
-
.CodeMirror-widget {}
|
223 |
-
|
224 |
-
.CodeMirror-wrap .CodeMirror-scroll {
|
225 |
-
overflow-x: hidden;
|
226 |
-
}
|
227 |
-
|
228 |
-
.CodeMirror-measure {
|
229 |
-
position: absolute;
|
230 |
-
width: 100%;
|
231 |
-
height: 0;
|
232 |
-
overflow: hidden;
|
233 |
-
visibility: hidden;
|
234 |
-
}
|
235 |
-
.CodeMirror-measure pre { position: static; }
|
236 |
-
|
237 |
-
.CodeMirror div.CodeMirror-cursor {
|
238 |
-
position: absolute;
|
239 |
-
visibility: hidden;
|
240 |
-
border-right: none;
|
241 |
-
width: 0;
|
242 |
-
}
|
243 |
-
.CodeMirror-focused div.CodeMirror-cursor {
|
244 |
-
visibility: visible;
|
245 |
-
}
|
246 |
-
|
247 |
-
.CodeMirror-selected { background: #d9d9d9; }
|
248 |
-
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
249 |
-
|
250 |
-
.cm-searching {
|
251 |
-
background: #ffa;
|
252 |
-
background: rgba(255, 255, 0, .4);
|
253 |
-
}
|
254 |
-
|
255 |
-
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
256 |
-
.CodeMirror span { *vertical-align: text-bottom; }
|
257 |
-
|
258 |
-
@media print {
|
259 |
-
/* Hide the cursor when printing */
|
260 |
-
.CodeMirror div.CodeMirror-cursor {
|
261 |
-
visibility: hidden;
|
262 |
-
}
|
263 |
-
}
|
264 |
-
|
265 |
-
|
266 |
-
/* fullscreen adapted code */
|
267 |
-
.CodeMirror-fullscreen {
|
268 |
-
position: fixed;
|
269 |
-
top: 0; left: 0; right: 0; bottom: 0;
|
270 |
-
height: auto;
|
271 |
-
width:auto !important;
|
272 |
-
z-index: 999999;
|
273 |
-
}
|
1 |
+
/* BASICS */
|
2 |
+
|
3 |
+
.CodeMirror {
|
4 |
+
/* Set height, width, borders, and global font properties here */
|
5 |
+
font-family: monospace;
|
6 |
+
height: 300px;
|
7 |
+
}
|
8 |
+
.CodeMirror-scroll {
|
9 |
+
/* Set scrolling behaviour here */
|
10 |
+
overflow: auto;
|
11 |
+
}
|
12 |
+
|
13 |
+
/* PADDING */
|
14 |
+
|
15 |
+
.CodeMirror-lines {
|
16 |
+
padding: 4px 0; /* Vertical padding around content */
|
17 |
+
}
|
18 |
+
.CodeMirror pre {
|
19 |
+
padding: 0 4px; /* Horizontal padding of content */
|
20 |
+
}
|
21 |
+
|
22 |
+
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
23 |
+
background-color: white; /* The little square between H and V scrollbars */
|
24 |
+
}
|
25 |
+
|
26 |
+
/* GUTTER */
|
27 |
+
|
28 |
+
.CodeMirror-gutters {
|
29 |
+
border-right: 1px solid #ddd;
|
30 |
+
background-color: #f7f7f7;
|
31 |
+
white-space: nowrap;
|
32 |
+
}
|
33 |
+
.CodeMirror-linenumbers {}
|
34 |
+
.CodeMirror-linenumber {
|
35 |
+
padding: 0 3px 0 5px;
|
36 |
+
min-width: 20px;
|
37 |
+
text-align: right;
|
38 |
+
color: #999;
|
39 |
+
}
|
40 |
+
|
41 |
+
/* CURSOR */
|
42 |
+
|
43 |
+
.CodeMirror div.CodeMirror-cursor {
|
44 |
+
border-left: 1px solid black;
|
45 |
+
z-index: 3;
|
46 |
+
}
|
47 |
+
/* Shown when moving in bi-directional text */
|
48 |
+
.CodeMirror div.CodeMirror-secondarycursor {
|
49 |
+
border-left: 1px solid silver;
|
50 |
+
}
|
51 |
+
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
|
52 |
+
width: auto;
|
53 |
+
border: 0;
|
54 |
+
background: #7e7;
|
55 |
+
z-index: 1;
|
56 |
+
}
|
57 |
+
/* Can style cursor different in overwrite (non-insert) mode */
|
58 |
+
.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}
|
59 |
+
|
60 |
+
.cm-tab { display: inline-block; }
|
61 |
+
|
62 |
+
/* DEFAULT THEME */
|
63 |
+
|
64 |
+
.cm-s-default .cm-keyword {color: #708;}
|
65 |
+
.cm-s-default .cm-atom {color: #219;}
|
66 |
+
.cm-s-default .cm-number {color: #164;}
|
67 |
+
.cm-s-default .cm-def {color: #00f;}
|
68 |
+
.cm-s-default .cm-variable {color: black;}
|
69 |
+
.cm-s-default .cm-variable-2 {color: #05a;}
|
70 |
+
.cm-s-default .cm-variable-3 {color: #085;}
|
71 |
+
.cm-s-default .cm-property {color: black;}
|
72 |
+
.cm-s-default .cm-operator {color: black;}
|
73 |
+
.cm-s-default .cm-comment {color: #a50;}
|
74 |
+
.cm-s-default .cm-string {color: #a11;}
|
75 |
+
.cm-s-default .cm-string-2 {color: #f50;}
|
76 |
+
.cm-s-default .cm-meta {color: #555;}
|
77 |
+
.cm-s-default .cm-error {color: #f00;}
|
78 |
+
.cm-s-default .cm-qualifier {color: #555;}
|
79 |
+
.cm-s-default .cm-builtin {color: #30a;}
|
80 |
+
.cm-s-default .cm-bracket {color: #997;}
|
81 |
+
.cm-s-default .cm-tag {color: #170;}
|
82 |
+
.cm-s-default .cm-attribute {color: #00c;}
|
83 |
+
.cm-s-default .cm-header {color: blue;}
|
84 |
+
.cm-s-default .cm-quote {color: #090;}
|
85 |
+
.cm-s-default .cm-hr {color: #999;}
|
86 |
+
.cm-s-default .cm-link {color: #00c;}
|
87 |
+
|
88 |
+
.cm-negative {color: #d44;}
|
89 |
+
.cm-positive {color: #292;}
|
90 |
+
.cm-header, .cm-strong {font-weight: bold;}
|
91 |
+
.cm-em {font-style: italic;}
|
92 |
+
.cm-link {text-decoration: underline;}
|
93 |
+
|
94 |
+
.cm-invalidchar {color: #f00;}
|
95 |
+
|
96 |
+
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
97 |
+
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
98 |
+
.CodeMirror-activeline-background {background: #e8f2ff;}
|
99 |
+
|
100 |
+
/* STOP */
|
101 |
+
|
102 |
+
/* The rest of this file contains styles related to the mechanics of
|
103 |
+
the editor. You probably shouldn't touch them. */
|
104 |
+
|
105 |
+
.CodeMirror {
|
106 |
+
line-height: 1;
|
107 |
+
position: relative;
|
108 |
+
overflow: hidden;
|
109 |
+
background: white;
|
110 |
+
color: black;
|
111 |
+
}
|
112 |
+
|
113 |
+
.CodeMirror-scroll {
|
114 |
+
/* 30px is the magic margin used to hide the element's real scrollbars */
|
115 |
+
/* See overflow: hidden in .CodeMirror */
|
116 |
+
margin-bottom: -30px; margin-right: -30px;
|
117 |
+
padding-bottom: 30px; padding-right: 30px;
|
118 |
+
height: 100%;
|
119 |
+
outline: none; /* Prevent dragging from highlighting the element */
|
120 |
+
position: relative;
|
121 |
+
-moz-box-sizing: content-box;
|
122 |
+
box-sizing: content-box;
|
123 |
+
}
|
124 |
+
.CodeMirror-sizer {
|
125 |
+
position: relative;
|
126 |
+
}
|
127 |
+
|
128 |
+
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
129 |
+
before actuall scrolling happens, thus preventing shaking and
|
130 |
+
flickering artifacts. */
|
131 |
+
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
132 |
+
position: absolute;
|
133 |
+
z-index: 6;
|
134 |
+
display: none;
|
135 |
+
}
|
136 |
+
.CodeMirror-vscrollbar {
|
137 |
+
right: 0; top: 0;
|
138 |
+
overflow-x: hidden;
|
139 |
+
overflow-y: scroll;
|
140 |
+
}
|
141 |
+
.CodeMirror-hscrollbar {
|
142 |
+
bottom: 0; left: 0;
|
143 |
+
overflow-y: hidden;
|
144 |
+
overflow-x: scroll;
|
145 |
+
}
|
146 |
+
.CodeMirror-scrollbar-filler {
|
147 |
+
right: 0; bottom: 0;
|
148 |
+
}
|
149 |
+
.CodeMirror-gutter-filler {
|
150 |
+
left: 0; bottom: 0;
|
151 |
+
}
|
152 |
+
|
153 |
+
.CodeMirror-gutters {
|
154 |
+
position: absolute; left: 0; top: 0;
|
155 |
+
padding-bottom: 30px;
|
156 |
+
z-index: 3;
|
157 |
+
}
|
158 |
+
.CodeMirror-gutter {
|
159 |
+
white-space: normal;
|
160 |
+
height: 100%;
|
161 |
+
-moz-box-sizing: content-box;
|
162 |
+
box-sizing: content-box;
|
163 |
+
padding-bottom: 30px;
|
164 |
+
margin-bottom: -32px;
|
165 |
+
display: inline-block;
|
166 |
+
/* Hack to make IE7 behave */
|
167 |
+
*zoom:1;
|
168 |
+
*display:inline;
|
169 |
+
}
|
170 |
+
.CodeMirror-gutter-elt {
|
171 |
+
position: absolute;
|
172 |
+
cursor: default;
|
173 |
+
z-index: 4;
|
174 |
+
}
|
175 |
+
|
176 |
+
.CodeMirror-lines {
|
177 |
+
cursor: text;
|
178 |
+
}
|
179 |
+
.CodeMirror pre {
|
180 |
+
/* Reset some styles that the rest of the page might have set */
|
181 |
+
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
182 |
+
border-width: 0;
|
183 |
+
background: transparent;
|
184 |
+
font-family: inherit;
|
185 |
+
font-size: inherit;
|
186 |
+
margin: 0;
|
187 |
+
white-space: pre;
|
188 |
+
word-wrap: normal;
|
189 |
+
line-height: inherit;
|
190 |
+
color: inherit;
|
191 |
+
z-index: 2;
|
192 |
+
position: relative;
|
193 |
+
overflow: visible;
|
194 |
+
}
|
195 |
+
.CodeMirror-wrap pre {
|
196 |
+
word-wrap: break-word;
|
197 |
+
white-space: pre-wrap;
|
198 |
+
word-break: normal;
|
199 |
+
}
|
200 |
+
.CodeMirror-code pre {
|
201 |
+
border-right: 30px solid transparent;
|
202 |
+
width: -webkit-fit-content;
|
203 |
+
width: -moz-fit-content;
|
204 |
+
width: fit-content;
|
205 |
+
}
|
206 |
+
.CodeMirror-wrap .CodeMirror-code pre {
|
207 |
+
border-right: none;
|
208 |
+
width: auto;
|
209 |
+
}
|
210 |
+
.CodeMirror-linebackground {
|
211 |
+
position: absolute;
|
212 |
+
left: 0; right: 0; top: 0; bottom: 0;
|
213 |
+
z-index: 0;
|
214 |
+
}
|
215 |
+
|
216 |
+
.CodeMirror-linewidget {
|
217 |
+
position: relative;
|
218 |
+
z-index: 2;
|
219 |
+
overflow: auto;
|
220 |
+
}
|
221 |
+
|
222 |
+
.CodeMirror-widget {}
|
223 |
+
|
224 |
+
.CodeMirror-wrap .CodeMirror-scroll {
|
225 |
+
overflow-x: hidden;
|
226 |
+
}
|
227 |
+
|
228 |
+
.CodeMirror-measure {
|
229 |
+
position: absolute;
|
230 |
+
width: 100%;
|
231 |
+
height: 0;
|
232 |
+
overflow: hidden;
|
233 |
+
visibility: hidden;
|
234 |
+
}
|
235 |
+
.CodeMirror-measure pre { position: static; }
|
236 |
+
|
237 |
+
.CodeMirror div.CodeMirror-cursor {
|
238 |
+
position: absolute;
|
239 |
+
visibility: hidden;
|
240 |
+
border-right: none;
|
241 |
+
width: 0;
|
242 |
+
}
|
243 |
+
.CodeMirror-focused div.CodeMirror-cursor {
|
244 |
+
visibility: visible;
|
245 |
+
}
|
246 |
+
|
247 |
+
.CodeMirror-selected { background: #d9d9d9; }
|
248 |
+
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
249 |
+
|
250 |
+
.cm-searching {
|
251 |
+
background: #ffa;
|
252 |
+
background: rgba(255, 255, 0, .4);
|
253 |
+
}
|
254 |
+
|
255 |
+
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
256 |
+
.CodeMirror span { *vertical-align: text-bottom; }
|
257 |
+
|
258 |
+
@media print {
|
259 |
+
/* Hide the cursor when printing */
|
260 |
+
.CodeMirror div.CodeMirror-cursor {
|
261 |
+
visibility: hidden;
|
262 |
+
}
|
263 |
+
}
|
264 |
+
|
265 |
+
|
266 |
+
/* fullscreen adapted code */
|
267 |
+
.CodeMirror-fullscreen {
|
268 |
+
position: fixed;
|
269 |
+
top: 0; left: 0; right: 0; bottom: 0;
|
270 |
+
height: auto;
|
271 |
+
width:auto !important;
|
272 |
+
z-index: 999999;
|
273 |
+
}
|
front-end/class-formbuilder.php
CHANGED
@@ -160,12 +160,8 @@ class Profile_Builder_Form_Creator{
|
|
160 |
$username = trim( $_POST['username'] );
|
161 |
$password = trim( $_POST['passw1'] );
|
162 |
|
163 |
-
if( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ){
|
164 |
-
$username = apply_filters( 'wppb_generated_random_username', Wordpress_Creation_Kit_PB::wck_generate_slug( trim( $_POST['email'] ) ), $_POST['email'] );
|
165 |
-
}
|
166 |
-
|
167 |
/* get user id */
|
168 |
-
$user = get_user_by( '
|
169 |
$nonce = wp_create_nonce( 'autologin-'.$user->ID.'-'.(int)( time() / 60 ) );
|
170 |
|
171 |
/* define redirect location */
|
@@ -319,7 +315,8 @@ class Profile_Builder_Form_Creator{
|
|
319 |
if( $display_field == false )
|
320 |
continue;
|
321 |
|
322 |
-
|
|
|
323 |
$output_fields .= apply_filters( 'wppb_output_form_field_'.Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ), '', $this->args['form_type'], $field, $this->wppb_get_desired_user_id(), $field_check_errors, $global_request, $this->args['role'] );
|
324 |
$output_fields .= apply_filters( 'wppb_output_specific_error_message', $specific_message );
|
325 |
$output_fields .= apply_filters( 'wppb_output_after_form_field', '</li>', $field );
|
160 |
$username = trim( $_POST['username'] );
|
161 |
$password = trim( $_POST['passw1'] );
|
162 |
|
|
|
|
|
|
|
|
|
163 |
/* get user id */
|
164 |
+
$user = get_user_by( 'email', trim( $_POST['email'] ) );
|
165 |
$nonce = wp_create_nonce( 'autologin-'.$user->ID.'-'.(int)( time() / 60 ) );
|
166 |
|
167 |
/* define redirect location */
|
315 |
if( $display_field == false )
|
316 |
continue;
|
317 |
|
318 |
+
$css_class = apply_filters( 'wppb_field_css_class', 'wppb-form-field wppb-'. Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ) .$error_var, $field, $error_var );
|
319 |
+
$output_fields .= apply_filters( 'wppb_output_before_form_field', '<li class="'. $css_class .'" id="wppb-form-element-'. $field['id'] .'">', $field, $error_var );
|
320 |
$output_fields .= apply_filters( 'wppb_output_form_field_'.Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ), '', $this->args['form_type'], $field, $this->wppb_get_desired_user_id(), $field_check_errors, $global_request, $this->args['role'] );
|
321 |
$output_fields .= apply_filters( 'wppb_output_specific_error_message', $specific_message );
|
322 |
$output_fields .= apply_filters( 'wppb_output_after_form_field', '</li>', $field );
|
front-end/default-fields/headings/about-yourself.php
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
<?php
|
2 |
-
function wppb_default_about_yourself_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
|
3 |
-
if ( $field['field'] == 'Default - About Yourself (Heading)' ){
|
4 |
-
$item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
|
5 |
-
$item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
|
6 |
-
|
7 |
-
$output = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter">'.$item_description.'</span>';
|
8 |
-
|
9 |
-
return apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
|
10 |
-
}
|
11 |
-
}
|
12 |
add_filter( 'wppb_output_form_field_default-about-yourself-heading', 'wppb_default_about_yourself_handler', 10, 6 );
|
1 |
+
<?php
|
2 |
+
function wppb_default_about_yourself_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
|
3 |
+
if ( $field['field'] == 'Default - About Yourself (Heading)' ){
|
4 |
+
$item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
|
5 |
+
$item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
|
6 |
+
|
7 |
+
$output = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter">'.$item_description.'</span>';
|
8 |
+
|
9 |
+
return apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
|
10 |
+
}
|
11 |
+
}
|
12 |
add_filter( 'wppb_output_form_field_default-about-yourself-heading', 'wppb_default_about_yourself_handler', 10, 6 );
|
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.1.
|
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.1.
|
77 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: 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.4
|
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.4' );
|
77 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
readme.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
|
3 |
Contributors: reflectionmedia, barinagabriel, sareiodata, cozmoslabs, adispiac, madalin.ungureanu
|
4 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
@@ -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.1
|
9 |
-
Stable tag: 2.1.
|
10 |
|
11 |
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
12 |
|
@@ -114,9 +114,14 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
114 |
10. Profile Builder Login Widget
|
115 |
|
116 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
117 |
= 2.1.3 =
|
118 |
* Fixed bug that prevented non-administrator roles to save fields in their profile on the admin area
|
119 |
-
* Added Spanish translation
|
120 |
* Styled the alerts and errors in registration/edit profile, above the forms
|
121 |
* Added line in footer that asks users to leave a review if they enjoyed the plugin
|
122 |
* Fixed bug in registration forms that allowed users to create accounts even when they removed the email box from the DOM
|
1 |
+
=== Profile Builder - front-end user registration, login and edit profile ===
|
2 |
|
3 |
Contributors: reflectionmedia, barinagabriel, sareiodata, cozmoslabs, adispiac, madalin.ungureanu
|
4 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
6 |
|
7 |
Requires at least: 3.1
|
8 |
Tested up to: 4.1.1
|
9 |
+
Stable tag: 2.1.4
|
10 |
|
11 |
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
12 |
|
114 |
10. Profile Builder Login Widget
|
115 |
|
116 |
== Changelog ==
|
117 |
+
= 2.1.4 =
|
118 |
+
* Fixed vulnerability regarding activating/deactivationg addons through ajax. We added nonces and permission checks.
|
119 |
+
* Added a filter in which we can change the classes on the li element for fields: 'wppb_field_css_class'
|
120 |
+
* Fixed automatic login on registration when filtering the random username generated when login with email is active
|
121 |
+
|
122 |
= 2.1.3 =
|
123 |
* Fixed bug that prevented non-administrator roles to save fields in their profile on the admin area
|
124 |
+
* Added Spanish translation
|
125 |
* Styled the alerts and errors in registration/edit profile, above the forms
|
126 |
* Added line in footer that asks users to leave a review if they enjoyed the plugin
|
127 |
* Fixed bug in registration forms that allowed users to create accounts even when they removed the email box from the DOM
|
translation/profilebuilder.pot
CHANGED
@@ -1,3095 +1,3095 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: profilebuilder\n"
|
4 |
-
"POT-Creation-Date: 2015-03-31 16:34+0200\n"
|
5 |
-
"PO-Revision-Date: 2015-03-31 16:34+0200\n"
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: Cozmoslabs\n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6.10\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;_x;_n\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../admin/add-ons.php:10 ../admin/add-ons.php:32
|
20 |
-
msgid "Add-Ons"
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: ../admin/add-ons.php:34 ../admin/add-ons.php:115
|
24 |
-
msgid "Activate"
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: ../admin/add-ons.php:36
|
28 |
-
msgid "Downloading and installing..."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: ../admin/add-ons.php:37
|
32 |
-
msgid "Installation complete"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: ../admin/add-ons.php:39
|
36 |
-
msgid "Add-On is Active"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: ../admin/add-ons.php:40
|
40 |
-
msgid "Add-On has been activated"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: ../admin/add-ons.php:41
|
44 |
-
msgid "Retry Install"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: ../admin/add-ons.php:43 ../admin/add-ons.php:121
|
48 |
-
msgid "Add-On is <strong>active</strong>"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: ../admin/add-ons.php:44 ../admin/add-ons.php:116
|
52 |
-
msgid "Add-On is <strong>inactive</strong>"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: ../admin/add-ons.php:46 ../admin/add-ons.php:120
|
56 |
-
msgid "Deactivate"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: ../admin/add-ons.php:47
|
60 |
-
msgid "Add-On has been deactivated."
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: ../admin/add-ons.php:59
|
64 |
-
msgid ""
|
65 |
-
"Something went wrong, we could not connect to the server. Please try again "
|
66 |
-
"later."
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: ../admin/add-ons.php:128
|
70 |
-
msgid "Buy Now"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: ../admin/add-ons.php:128
|
74 |
-
msgid "Install Now"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: ../admin/add-ons.php:132
|
78 |
-
msgid "Compatible with your version of Profile Builder."
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: ../admin/add-ons.php:141
|
82 |
-
msgid "Upgrade Profile Builder"
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: ../admin/add-ons.php:142
|
86 |
-
msgid "Not compatible with Profile Builder"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: ../admin/add-ons.php:149 ../front-end/class-formbuilder.php:294
|
90 |
-
msgid "Update"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: ../admin/add-ons.php:150
|
94 |
-
msgid "Not compatible with your version of Profile Builder."
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: ../admin/add-ons.php:151
|
98 |
-
msgid "Minimum required Profile Builder version:"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: ../admin/add-ons.php:156
|
102 |
-
#, php-format
|
103 |
-
msgid ""
|
104 |
-
"Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
|
105 |
-
"manually</a>."
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: ../admin/admin-bar.php:10
|
109 |
-
msgid "Show/Hide the Admin Bar on the Front-End"
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
|
113 |
-
msgid "Admin Bar Settings"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: ../admin/admin-bar.php:48
|
117 |
-
msgid ""
|
118 |
-
"Choose which user roles view the admin bar in the front-end of the website."
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: ../admin/admin-bar.php:57
|
122 |
-
msgid "User-Role"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: ../admin/admin-bar.php:58
|
126 |
-
msgid "Visibility"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: ../admin/admin-bar.php:73
|
130 |
-
msgid "Default"
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
#: ../admin/admin-bar.php:74
|
134 |
-
msgid "Show"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: ../admin/admin-bar.php:75
|
138 |
-
msgid "Hide"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:189
|
142 |
-
#: ../admin/register-version.php:95 ../features/functions.php:593
|
143 |
-
#: ../modules/custom-redirects/custom-redirects.php:136
|
144 |
-
#: ../modules/modules.php:142
|
145 |
-
msgid "Save Changes"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: ../admin/admin-functions.php:34
|
149 |
-
#, php-format
|
150 |
-
msgid ""
|
151 |
-
"Login is set to be done using the E-mail. This field will NOT appear in the "
|
152 |
-
"front-end! ( you can change these settings under the \"%s\" tab )"
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
|
156 |
-
#: ../admin/general-settings.php:38
|
157 |
-
msgid "General Settings"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: ../admin/admin-functions.php:106
|
161 |
-
#, php-format
|
162 |
-
msgid ""
|
163 |
-
"<strong>ERROR</strong>: The password must have the minimum length of %s "
|
164 |
-
"characters"
|
165 |
-
msgstr ""
|
166 |
-
|
167 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:175
|
168 |
-
msgid "Very weak"
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:176
|
172 |
-
#: ../features/functions.php:492
|
173 |
-
msgid "Weak"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:177
|
177 |
-
#: ../features/functions.php:492
|
178 |
-
msgid "Medium"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:178
|
182 |
-
#: ../features/functions.php:492
|
183 |
-
msgid "Strong"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: ../admin/admin-functions.php:123
|
187 |
-
#, php-format
|
188 |
-
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: ../admin/admin-functions.php:162
|
192 |
-
msgid "Add Field"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: ../admin/admin-functions.php:164
|
196 |
-
#: ../modules/class-mustache-templates/class-mustache-templates.php:374
|
197 |
-
msgid "Save Settings"
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: ../admin/admin-functions.php:175
|
201 |
-
#, php-format
|
202 |
-
msgid ""
|
203 |
-
"If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target="
|
204 |
-
"\"_blank\">rate us on WordPress.org</a> to help us reach more people. More "
|
205 |
-
"happy users means more features, less bugs and better support for everyone. "
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#: ../admin/basic-info.php:10
|
209 |
-
msgid "Basic Information"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: ../admin/basic-info.php:29
|
213 |
-
#, php-format
|
214 |
-
msgid "Version %s"
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: ../admin/basic-info.php:30
|
218 |
-
msgid "<strong>Profile Builder </strong>"
|
219 |
-
msgstr ""
|
220 |
-
|
221 |
-
#: ../admin/basic-info.php:31
|
222 |
-
msgid ""
|
223 |
-
"The best way to add front-end registration, edit profile and login forms."
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: ../admin/basic-info.php:33
|
227 |
-
msgid "For Modern User Interaction"
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
|
231 |
-
msgid "Login"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: ../admin/basic-info.php:37
|
235 |
-
msgid ""
|
236 |
-
"Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> "
|
237 |
-
"shortcode or a widget."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: ../admin/basic-info.php:40
|
241 |
-
msgid "Registration"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: ../admin/basic-info.php:41
|
245 |
-
msgid ""
|
246 |
-
"Beautiful registration forms fully customizable using the <strong class="
|
247 |
-
"\"nowrap\">[wppb-register]</strong> shortcode."
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: ../admin/basic-info.php:44
|
251 |
-
msgid "Edit Profile"
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: ../admin/basic-info.php:45
|
255 |
-
msgid ""
|
256 |
-
"Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-"
|
257 |
-
"edit-profile]</strong> shortcode."
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#: ../admin/basic-info.php:51
|
261 |
-
msgid "Extra Features"
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#: ../admin/basic-info.php:52
|
265 |
-
msgid ""
|
266 |
-
"Features that give you more control over your users, increased security and "
|
267 |
-
"help you fight user registration spam."
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: ../admin/basic-info.php:53
|
271 |
-
msgid "Enable extra features"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: ../admin/basic-info.php:57
|
275 |
-
msgid "Recover Password"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: ../admin/basic-info.php:58
|
279 |
-
msgid ""
|
280 |
-
"Allow users to recover their password in the front-end using the [wppb-"
|
281 |
-
"recover-password]."
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#: ../admin/basic-info.php:61
|
285 |
-
msgid "Admin Approval (*)"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: ../admin/basic-info.php:62
|
289 |
-
msgid ""
|
290 |
-
"You decide who is a user on your website. Get notified via email or approve "
|
291 |
-
"multiple users at once from the WordPress UI."
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: ../admin/basic-info.php:65
|
295 |
-
msgid "Email Confirmation"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: ../admin/basic-info.php:66
|
299 |
-
msgid ""
|
300 |
-
"Make sure users sign up with genuine emails. On registration users will "
|
301 |
-
"receive a notification to confirm their email address."
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: ../admin/basic-info.php:69
|
305 |
-
msgid "Minimum Password Length and Strength Meter"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: ../admin/basic-info.php:70
|
309 |
-
msgid ""
|
310 |
-
"Eliminate weak passwords altogether by setting a minimum password length and "
|
311 |
-
"enforcing a certain password strength."
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#: ../admin/basic-info.php:73
|
315 |
-
msgid "Login with Email or Username"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: ../admin/basic-info.php:74
|
319 |
-
msgid ""
|
320 |
-
"Allow users to log in with their email or username when accessing your site."
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: ../admin/basic-info.php:87
|
324 |
-
msgid "Customize Your Forms The Way You Want (*)"
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
#: ../admin/basic-info.php:88
|
328 |
-
msgid ""
|
329 |
-
"With Extra Profile Fields you can create the exact registration form your "
|
330 |
-
"project needs."
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: ../admin/basic-info.php:90
|
334 |
-
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: ../admin/basic-info.php:92
|
338 |
-
msgid "Get started with extra fields"
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: ../admin/basic-info.php:95
|
342 |
-
msgid "Avatar Upload"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: ../admin/basic-info.php:96
|
346 |
-
msgid "Generic Uploads"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: ../admin/basic-info.php:97
|
350 |
-
msgid "Agree To Terms Checkbox"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: ../admin/basic-info.php:98
|
354 |
-
msgid "Datepicker"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: ../admin/basic-info.php:99
|
358 |
-
msgid "reCAPTCHA"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: ../admin/basic-info.php:100
|
362 |
-
msgid "Country Select"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: ../admin/basic-info.php:101
|
366 |
-
msgid "Timezone Select"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: ../admin/basic-info.php:102
|
370 |
-
msgid "Input / Hidden Input"
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: ../admin/basic-info.php:103
|
374 |
-
msgid "Checkbox"
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: ../admin/basic-info.php:104
|
378 |
-
msgid "Select"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: ../admin/basic-info.php:105
|
382 |
-
msgid "Radio Buttons"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: ../admin/basic-info.php:106
|
386 |
-
msgid "Textarea"
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: ../admin/basic-info.php:115
|
390 |
-
msgid "Powerful Modules (**)"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: ../admin/basic-info.php:116
|
394 |
-
msgid ""
|
395 |
-
"Everything you will need to manage your users is probably already available "
|
396 |
-
"using the Pro Modules."
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: ../admin/basic-info.php:118
|
400 |
-
msgid "Enable your modules"
|
401 |
-
msgstr ""
|
402 |
-
|
403 |
-
#: ../admin/basic-info.php:121
|
404 |
-
msgid "Find out more about PRO Modules"
|
405 |
-
msgstr ""
|
406 |
-
|
407 |
-
#: ../admin/basic-info.php:126 ../modules/modules.php:111
|
408 |
-
#: ../modules/user-listing/userlisting.php:11
|
409 |
-
#: ../modules/user-listing/userlisting.php:12
|
410 |
-
#: ../modules/user-listing/userlisting.php:17
|
411 |
-
#: ../modules/user-listing/userlisting.php:23
|
412 |
-
msgid "User Listing"
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: ../admin/basic-info.php:128
|
416 |
-
msgid ""
|
417 |
-
"Easy to edit templates for listing your website users as well as creating "
|
418 |
-
"single user pages. Shortcode based, offering many options to customize your "
|
419 |
-
"listings."
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: ../admin/basic-info.php:130
|
423 |
-
msgid ""
|
424 |
-
"To create a page containing the users registered to this current site/blog, "
|
425 |
-
"insert the following shortcode in a page of your chosing: <strong class="
|
426 |
-
"\"nowrap\">[wppb-list-users]</strong>."
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: ../admin/basic-info.php:134
|
430 |
-
msgid "Email Customizer"
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: ../admin/basic-info.php:135
|
434 |
-
msgid ""
|
435 |
-
"Personalize all emails sent to your users or admins. On registration, email "
|
436 |
-
"confirmation, admin approval / un-approval."
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: ../admin/basic-info.php:138
|
440 |
-
#: ../modules/custom-redirects/custom-redirects.php:29
|
441 |
-
#: ../modules/modules.php:32 ../modules/modules.php:132
|
442 |
-
msgid "Custom Redirects"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: ../admin/basic-info.php:139
|
446 |
-
msgid ""
|
447 |
-
"Keep your users out of the WordPress dashboard, redirect them to the front-"
|
448 |
-
"page after login or registration, everything is just a few clicks away."
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../admin/basic-info.php:144 ../modules/modules.php:97
|
452 |
-
msgid "Multiple Registration Forms"
|
453 |
-
msgstr ""
|
454 |
-
|
455 |
-
#: ../admin/basic-info.php:145
|
456 |
-
msgid ""
|
457 |
-
"Set up multiple registration forms with different fields for certain user "
|
458 |
-
"roles. Capture different information from different types of users."
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: ../admin/basic-info.php:148 ../modules/modules.php:104
|
462 |
-
msgid "Multiple Edit-profile Forms"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: ../admin/basic-info.php:149
|
466 |
-
msgid ""
|
467 |
-
"Allow different user roles to edit their specific information. Set up "
|
468 |
-
"multiple edit-profile forms with different fields for certain user roles."
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: ../admin/basic-info.php:161
|
472 |
-
#, php-format
|
473 |
-
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: ../admin/basic-info.php:162
|
477 |
-
#, php-format
|
478 |
-
msgid "** only available in the %1$sPro version%2$s."
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: ../admin/general-settings.php:42
|
482 |
-
msgid "Load Profile Builder's own CSS file in the front-end:"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: ../admin/general-settings.php:45 ../admin/general-settings.php:60
|
486 |
-
#: ../admin/general-settings.php:114
|
487 |
-
#: ../modules/multiple-forms/register-forms.php:225
|
488 |
-
#: ../modules/multiple-forms/register-forms.php:226
|
489 |
-
#: ../modules/user-listing/userlisting.php:1288
|
490 |
-
msgid "Yes"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: ../admin/general-settings.php:47
|
494 |
-
#, php-format
|
495 |
-
msgid "You can find the default file here: %1$s"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: ../admin/general-settings.php:56
|
499 |
-
msgid "\"Email Confirmation\" Activated:"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: ../admin/general-settings.php:61 ../admin/general-settings.php:115
|
503 |
-
#: ../modules/multiple-forms/register-forms.php:225
|
504 |
-
#: ../modules/multiple-forms/register-forms.php:226
|
505 |
-
msgid "No"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: ../admin/general-settings.php:64
|
509 |
-
msgid ""
|
510 |
-
"On single-site installations this works with front-end forms only. "
|
511 |
-
"Recommended to redirect WP default registration to a Profile Builder one "
|
512 |
-
"using \"Custom Redirects\" addon."
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: ../admin/general-settings.php:65
|
516 |
-
msgid ""
|
517 |
-
"The \"Email Confirmation\" feature is active (by default) on WPMU "
|
518 |
-
"installations."
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: ../admin/general-settings.php:67
|
522 |
-
#, php-format
|
523 |
-
msgid ""
|
524 |
-
"You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
|
525 |
-
"Email Confirmation%2$s."
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: ../admin/general-settings.php:79
|
529 |
-
msgid "\"Email Confirmation\" Landing Page:"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: ../admin/general-settings.php:84
|
533 |
-
msgid "Existing Pages"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: ../admin/general-settings.php:99
|
537 |
-
msgid ""
|
538 |
-
"Specify the page where the users will be directed when confirming the email "
|
539 |
-
"account. This page can differ from the register page(s) and can be changed "
|
540 |
-
"at any time. If none selected, a simple confirmation page will be displayed "
|
541 |
-
"for the user."
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: ../admin/general-settings.php:110
|
545 |
-
msgid "\"Admin Approval\" Activated:"
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../admin/general-settings.php:118
|
549 |
-
#, php-format
|
550 |
-
msgid ""
|
551 |
-
"You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: ../admin/general-settings.php:130
|
555 |
-
msgid "\"Admin Approval\" Feature:"
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: ../admin/general-settings.php:133
|
559 |
-
#, php-format
|
560 |
-
msgid ""
|
561 |
-
"You decide who is a user on your website. Get notified via email or approve "
|
562 |
-
"multiple users at once from the WordPress UI. Enable Admin Approval by "
|
563 |
-
"upgrading to %1$sHobbyist or PRO versions%2$s."
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: ../admin/general-settings.php:140
|
567 |
-
msgid "Allow Users to Log in With:"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: ../admin/general-settings.php:144
|
571 |
-
msgid "Username and Email"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: ../admin/general-settings.php:145 ../admin/manage-fields.php:145
|
575 |
-
#: ../features/admin-approval/class-admin-approval.php:177
|
576 |
-
#: ../features/email-confirmation/class-email-confirmation.php:167
|
577 |
-
#: ../modules/email-customizer/email-customizer.php:28
|
578 |
-
#: ../modules/user-listing/userlisting.php:92
|
579 |
-
#: ../modules/user-listing/userlisting.php:596
|
580 |
-
#: ../modules/user-listing/userlisting.php:1244
|
581 |
-
msgid "Username"
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: ../admin/general-settings.php:146 ../front-end/login.php:170
|
585 |
-
#: ../modules/email-customizer/email-customizer.php:29
|
586 |
-
#: ../modules/user-listing/userlisting.php:602
|
587 |
-
#: ../modules/user-listing/userlisting.php:1245
|
588 |
-
msgid "Email"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: ../admin/general-settings.php:149
|
592 |
-
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: ../admin/general-settings.php:150
|
596 |
-
msgid "\"Username\" - users can Log In only with Username."
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../admin/general-settings.php:151
|
600 |
-
msgid "\"Email\" - users can Log In only with Email."
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: ../admin/general-settings.php:158
|
604 |
-
msgid "Minimum Password Length:"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: ../admin/general-settings.php:163
|
608 |
-
msgid ""
|
609 |
-
"Enter the minimum characters the password should have. Leave empty for no "
|
610 |
-
"minimum limit"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: ../admin/general-settings.php:170
|
614 |
-
msgid "Minimum Password Strength:"
|
615 |
-
msgstr ""
|
616 |
-
|
617 |
-
#: ../admin/general-settings.php:174
|
618 |
-
msgid "Disabled"
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: ../admin/manage-fields.php:12
|
622 |
-
msgid "Manage Fields"
|
623 |
-
msgstr ""
|
624 |
-
|
625 |
-
#: ../admin/manage-fields.php:13
|
626 |
-
msgid "Manage Default and Extra Fields"
|
627 |
-
msgstr ""
|
628 |
-
|
629 |
-
#: ../admin/manage-fields.php:84
|
630 |
-
msgid "Field Title"
|
631 |
-
msgstr ""
|
632 |
-
|
633 |
-
#: ../admin/manage-fields.php:84
|
634 |
-
msgid "Title of the field"
|
635 |
-
msgstr ""
|
636 |
-
|
637 |
-
#: ../admin/manage-fields.php:85
|
638 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
639 |
-
#: ../modules/multiple-forms/register-forms.php:262
|
640 |
-
msgid "Field"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: ../admin/manage-fields.php:86
|
644 |
-
msgid "Meta-name"
|
645 |
-
msgstr ""
|
646 |
-
|
647 |
-
#: ../admin/manage-fields.php:86
|
648 |
-
msgid ""
|
649 |
-
"Use this in conjuction with WordPress functions to display the value in the "
|
650 |
-
"page of your choosing<br/>Auto-completed but in some cases editable (in "
|
651 |
-
"which case it must be uniqe)<br/>Changing this might take long in case of a "
|
652 |
-
"very big user-count"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: ../admin/manage-fields.php:87
|
656 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
657 |
-
#: ../modules/multiple-forms/register-forms.php:263
|
658 |
-
msgid "ID"
|
659 |
-
msgstr ""
|
660 |
-
|
661 |
-
#: ../admin/manage-fields.php:87
|
662 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
663 |
-
#: ../modules/multiple-forms/register-forms.php:263
|
664 |
-
msgid ""
|
665 |
-
"A unique, auto-generated ID for this particular field<br/>You can use this "
|
666 |
-
"in conjuction with filters to target this element if needed<br/>Can't be "
|
667 |
-
"edited"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: ../admin/manage-fields.php:88
|
671 |
-
msgid "Description"
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: ../admin/manage-fields.php:88
|
675 |
-
msgid ""
|
676 |
-
"Enter a (detailed) description of the option for end users to read<br/"
|
677 |
-
">Optional"
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: ../admin/manage-fields.php:89
|
681 |
-
msgid "Row Count"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: ../admin/manage-fields.php:89
|
685 |
-
msgid ""
|
686 |
-
"Specify the number of rows for a 'Textarea' field<br/>If not specified, "
|
687 |
-
"defaults to 5"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: ../admin/manage-fields.php:90
|
691 |
-
msgid "Allowed Image Extensions"
|
692 |
-
msgstr ""
|
693 |
-
|
694 |
-
#: ../admin/manage-fields.php:90
|
695 |
-
msgid ""
|
696 |
-
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
697 |
-
"ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: ../admin/manage-fields.php:91
|
701 |
-
msgid "Allowed Upload Extensions"
|
702 |
-
msgstr ""
|
703 |
-
|
704 |
-
#: ../admin/manage-fields.php:91
|
705 |
-
msgid ""
|
706 |
-
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
707 |
-
"ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
|
708 |
-
"extensions (.*)"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: ../admin/manage-fields.php:92
|
712 |
-
msgid "Avatar Size"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: ../admin/manage-fields.php:92
|
716 |
-
msgid ""
|
717 |
-
"Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
|
718 |
-
"specified, defaults to 100"
|
719 |
-
msgstr ""
|
720 |
-
|
721 |
-
#: ../admin/manage-fields.php:93
|
722 |
-
msgid "Date-format"
|
723 |
-
msgstr ""
|
724 |
-
|
725 |
-
#: ../admin/manage-fields.php:93
|
726 |
-
msgid ""
|
727 |
-
"Specify the format of the date when using Datepicker<br/>Valid options: mm/"
|
728 |
-
"dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not "
|
729 |
-
"specified, defaults to mm/dd/yy"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: ../admin/manage-fields.php:94
|
733 |
-
msgid "Terms of Agreement"
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: ../admin/manage-fields.php:94
|
737 |
-
msgid ""
|
738 |
-
"Enter a detailed description of the temrs of agreement for the user to read."
|
739 |
-
"<br/>Links can be inserted by using standard HTML syntax: <a href="
|
740 |
-
"\"custom_url\">custom_text</a>"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: ../admin/manage-fields.php:95
|
744 |
-
msgid "Options"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: ../admin/manage-fields.php:95
|
748 |
-
msgid ""
|
749 |
-
"Enter a comma separated list of values<br/>This can be anything, as it is "
|
750 |
-
"hidden from the user, but should not contain special characters or "
|
751 |
-
"apostrophes"
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: ../admin/manage-fields.php:96
|
755 |
-
msgid "Labels"
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: ../admin/manage-fields.php:96
|
759 |
-
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
#: ../admin/manage-fields.php:97
|
763 |
-
msgid "Public Key"
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: ../admin/manage-fields.php:97
|
767 |
-
msgid ""
|
768 |
-
"The public key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
769 |
-
"target=\"_blank\">www.google.com/recaptcha</a>"
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: ../admin/manage-fields.php:98
|
773 |
-
msgid "Private Key"
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#: ../admin/manage-fields.php:98
|
777 |
-
msgid ""
|
778 |
-
"The private key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
779 |
-
"target=\"_blank\">www.google.com/recaptcha</a>"
|
780 |
-
msgstr ""
|
781 |
-
|
782 |
-
#: ../admin/manage-fields.php:99
|
783 |
-
msgid "User Roles"
|
784 |
-
msgstr ""
|
785 |
-
|
786 |
-
#: ../admin/manage-fields.php:99
|
787 |
-
msgid ""
|
788 |
-
"Select which user roles to show to the user ( drag and drop to re-order )"
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: ../admin/manage-fields.php:100
|
792 |
-
msgid "User Roles Order"
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: ../admin/manage-fields.php:100
|
796 |
-
msgid "Save the user role order from the user roles checkboxes"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: ../admin/manage-fields.php:101
|
800 |
-
msgid "Default Value"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: ../admin/manage-fields.php:101
|
804 |
-
msgid "Default value of the field"
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
#: ../admin/manage-fields.php:102
|
808 |
-
msgid "Default Option"
|
809 |
-
msgstr ""
|
810 |
-
|
811 |
-
#: ../admin/manage-fields.php:102
|
812 |
-
msgid "Specify the option which should be selected by default"
|
813 |
-
msgstr ""
|
814 |
-
|
815 |
-
#: ../admin/manage-fields.php:103
|
816 |
-
msgid "Default Option(s)"
|
817 |
-
msgstr ""
|
818 |
-
|
819 |
-
#: ../admin/manage-fields.php:103
|
820 |
-
msgid ""
|
821 |
-
"Specify the option which should be checked by default<br/>If there are "
|
822 |
-
"multiple values, separate them with a ',' (comma)"
|
823 |
-
msgstr ""
|
824 |
-
|
825 |
-
#: ../admin/manage-fields.php:104
|
826 |
-
msgid "Default Content"
|
827 |
-
msgstr ""
|
828 |
-
|
829 |
-
#: ../admin/manage-fields.php:104
|
830 |
-
msgid "Default value of the textarea"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: ../admin/manage-fields.php:105
|
834 |
-
msgid "Required"
|
835 |
-
msgstr ""
|
836 |
-
|
837 |
-
#: ../admin/manage-fields.php:105
|
838 |
-
msgid "Whether the field is required or not"
|
839 |
-
msgstr ""
|
840 |
-
|
841 |
-
#: ../admin/manage-fields.php:106
|
842 |
-
msgid "Overwrite Existing"
|
843 |
-
msgstr ""
|
844 |
-
|
845 |
-
#: ../admin/manage-fields.php:106
|
846 |
-
msgid ""
|
847 |
-
"Selecting 'Yes' will add the field to the list, but will overwrite any other "
|
848 |
-
"field in the database that has the same meta-name<br/>Use this at your own "
|
849 |
-
"risk"
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
#: ../admin/manage-fields.php:112
|
853 |
-
msgid "Field Properties"
|
854 |
-
msgstr ""
|
855 |
-
|
856 |
-
#: ../admin/manage-fields.php:125
|
857 |
-
msgid "Registration & Edit Profile"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: ../admin/manage-fields.php:144
|
861 |
-
msgid "Name"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: ../admin/manage-fields.php:145
|
865 |
-
msgid "Usernames cannot be changed."
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: ../admin/manage-fields.php:146
|
869 |
-
msgid "First Name"
|
870 |
-
msgstr ""
|
871 |
-
|
872 |
-
#: ../admin/manage-fields.php:147
|
873 |
-
msgid "Last Name"
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
#: ../admin/manage-fields.php:148 ../modules/user-listing/userlisting.php:635
|
877 |
-
msgid "Nickname"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: ../admin/manage-fields.php:149
|
881 |
-
msgid "Display name publicly as"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: ../admin/manage-fields.php:150
|
885 |
-
msgid "Contact Info"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: ../admin/manage-fields.php:151
|
889 |
-
#: ../features/admin-approval/class-admin-approval.php:180
|
890 |
-
#: ../features/email-confirmation/class-email-confirmation.php:168
|
891 |
-
#: ../modules/user-listing/userlisting.php:98
|
892 |
-
msgid "E-mail"
|
893 |
-
msgstr ""
|
894 |
-
|
895 |
-
#: ../admin/manage-fields.php:152
|
896 |
-
#: ../modules/email-customizer/email-customizer.php:32
|
897 |
-
#: ../modules/user-listing/userlisting.php:101
|
898 |
-
#: ../modules/user-listing/userlisting.php:617
|
899 |
-
#: ../modules/user-listing/userlisting.php:1246
|
900 |
-
msgid "Website"
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
#: ../admin/manage-fields.php:156
|
904 |
-
msgid "AIM"
|
905 |
-
msgstr ""
|
906 |
-
|
907 |
-
#: ../admin/manage-fields.php:157
|
908 |
-
msgid "Yahoo IM"
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: ../admin/manage-fields.php:158
|
912 |
-
msgid "Jabber / Google Talk"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: ../admin/manage-fields.php:161
|
916 |
-
msgid "About Yourself"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:104
|
920 |
-
#: ../modules/user-listing/userlisting.php:620
|
921 |
-
#: ../modules/user-listing/userlisting.php:1247
|
922 |
-
msgid "Biographical Info"
|
923 |
-
msgstr ""
|
924 |
-
|
925 |
-
#: ../admin/manage-fields.php:162
|
926 |
-
msgid ""
|
927 |
-
"Share a little biographical information to fill out your profile. This may "
|
928 |
-
"be shown publicly."
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: ../admin/manage-fields.php:163 ../front-end/recover.php:75
|
932 |
-
#: ../modules/email-customizer/email-customizer.php:30
|
933 |
-
msgid "Password"
|
934 |
-
msgstr ""
|
935 |
-
|
936 |
-
#: ../admin/manage-fields.php:163
|
937 |
-
msgid "Type your password."
|
938 |
-
msgstr ""
|
939 |
-
|
940 |
-
#: ../admin/manage-fields.php:164 ../front-end/recover.php:80
|
941 |
-
msgid "Repeat Password"
|
942 |
-
msgstr ""
|
943 |
-
|
944 |
-
#: ../admin/manage-fields.php:164
|
945 |
-
msgid "Type your password again. "
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: ../admin/manage-fields.php:321 ../admin/manage-fields.php:465
|
949 |
-
msgid "You must select a field\n"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: ../admin/manage-fields.php:331
|
953 |
-
msgid ""
|
954 |
-
"Please choose a different field type as this one already exists in your form "
|
955 |
-
"(must be unique)\n"
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: ../admin/manage-fields.php:342
|
959 |
-
msgid "The entered avatar size is not between 20 and 200\n"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: ../admin/manage-fields.php:345
|
963 |
-
msgid "The entered avatar size is not numerical\n"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: ../admin/manage-fields.php:353
|
967 |
-
msgid "The entered row number is not numerical\n"
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: ../admin/manage-fields.php:356
|
971 |
-
msgid "You must enter a value for the row number\n"
|
972 |
-
msgstr ""
|
973 |
-
|
974 |
-
#: ../admin/manage-fields.php:364
|
975 |
-
msgid "You must enter the public key\n"
|
976 |
-
msgstr ""
|
977 |
-
|
978 |
-
#: ../admin/manage-fields.php:366
|
979 |
-
msgid "You must enter the private key\n"
|
980 |
-
msgstr ""
|
981 |
-
|
982 |
-
#: ../admin/manage-fields.php:374
|
983 |
-
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: ../admin/manage-fields.php:377
|
987 |
-
msgid "You must enter a value for the date-format\n"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: ../admin/manage-fields.php:393
|
991 |
-
msgid "The meta-name cannot be empty\n"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: ../admin/manage-fields.php:405 ../admin/manage-fields.php:413
|
995 |
-
#: ../admin/manage-fields.php:423
|
996 |
-
msgid "That meta-name is already in use\n"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: ../admin/manage-fields.php:445
|
1000 |
-
#, php-format
|
1001 |
-
msgid ""
|
1002 |
-
"The following option(s) did not coincide with the ones in the options list: "
|
1003 |
-
"%s\n"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: ../admin/manage-fields.php:449
|
1007 |
-
#, php-format
|
1008 |
-
msgid ""
|
1009 |
-
"The following option did not coincide with the ones in the options list: %s\n"
|
1010 |
-
msgstr ""
|
1011 |
-
|
1012 |
-
#: ../admin/manage-fields.php:456
|
1013 |
-
msgid "Please select at least one user role\n"
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: ../admin/manage-fields.php:472
|
1017 |
-
msgid "That field is already added in this form\n"
|
1018 |
-
msgstr ""
|
1019 |
-
|
1020 |
-
#: ../admin/manage-fields.php:521
|
1021 |
-
msgid ""
|
1022 |
-
"<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
|
1023 |
-
"required\">Required</pre>"
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: ../admin/manage-fields.php:521
|
1027 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
1028 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
1029 |
-
#: ../features/functions.php:614 ../features/functions.php:621
|
1030 |
-
#: ../modules/multiple-forms/multiple-forms.php:416
|
1031 |
-
msgid "Edit"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: ../admin/manage-fields.php:521
|
1035 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
1036 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
1037 |
-
#: ../features/admin-approval/class-admin-approval.php:124
|
1038 |
-
#: ../features/admin-approval/class-admin-approval.php:235
|
1039 |
-
#: ../features/email-confirmation/class-email-confirmation.php:120
|
1040 |
-
#: ../features/email-confirmation/class-email-confirmation.php:217
|
1041 |
-
#: ../features/functions.php:607 ../features/functions.php:621
|
1042 |
-
msgid "Delete"
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: ../admin/manage-fields.php:536
|
1046 |
-
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
1047 |
-
msgstr ""
|
1048 |
-
|
1049 |
-
#: ../admin/manage-fields.php:542
|
1050 |
-
msgid ""
|
1051 |
-
"If you're interested in displaying different fields in the registration and "
|
1052 |
-
"edit profile forms, please use the Multiple Registration & Edit Profile "
|
1053 |
-
"Forms Addon."
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
#: ../admin/register-version.php:14
|
1057 |
-
msgid "Register Your Version"
|
1058 |
-
msgstr ""
|
1059 |
-
|
1060 |
-
#: ../admin/register-version.php:14
|
1061 |
-
msgid "Register Version"
|
1062 |
-
msgstr ""
|
1063 |
-
|
1064 |
-
#: ../admin/register-version.php:22
|
1065 |
-
msgid "Profile Builder Register"
|
1066 |
-
msgstr ""
|
1067 |
-
|
1068 |
-
#: ../admin/register-version.php:69
|
1069 |
-
#, php-format
|
1070 |
-
msgid ""
|
1071 |
-
"Now that you acquired a copy of %s, you should take the time and register it "
|
1072 |
-
"with the serial number you received"
|
1073 |
-
msgstr ""
|
1074 |
-
|
1075 |
-
#: ../admin/register-version.php:70
|
1076 |
-
msgid ""
|
1077 |
-
"If you register this version of Profile Builder, you'll receive information "
|
1078 |
-
"regarding upgrades, patches, and technical support."
|
1079 |
-
msgstr ""
|
1080 |
-
|
1081 |
-
#: ../admin/register-version.php:72
|
1082 |
-
msgid " Serial Number:"
|
1083 |
-
msgstr ""
|
1084 |
-
|
1085 |
-
#: ../admin/register-version.php:77
|
1086 |
-
msgid "The serial number was successfully validated!"
|
1087 |
-
msgstr ""
|
1088 |
-
|
1089 |
-
#: ../admin/register-version.php:79
|
1090 |
-
msgid "The serial number entered couldn't be validated!"
|
1091 |
-
msgstr ""
|
1092 |
-
|
1093 |
-
#: ../admin/register-version.php:81
|
1094 |
-
msgid "The serial number is about to expire soon!"
|
1095 |
-
msgstr ""
|
1096 |
-
|
1097 |
-
#: ../admin/register-version.php:81
|
1098 |
-
#, php-format
|
1099 |
-
msgid ""
|
1100 |
-
" Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
1101 |
-
msgstr ""
|
1102 |
-
|
1103 |
-
#: ../admin/register-version.php:83
|
1104 |
-
msgid "The serial number couldn't be validated because it expired!"
|
1105 |
-
msgstr ""
|
1106 |
-
|
1107 |
-
#: ../admin/register-version.php:83
|
1108 |
-
#, php-format
|
1109 |
-
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: ../admin/register-version.php:85
|
1113 |
-
msgid ""
|
1114 |
-
"The serial number couldn't be validated because process timed out. This is "
|
1115 |
-
"possible due to the server being down. Please try again later!"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: ../admin/register-version.php:87
|
1119 |
-
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1120 |
-
msgstr ""
|
1121 |
-
|
1122 |
-
#: ../admin/register-version.php:243
|
1123 |
-
#, php-format
|
1124 |
-
msgid ""
|
1125 |
-
"<p>Your <strong>Profile Builder</strong> serial number is invalid or "
|
1126 |
-
"missing. <br/>Please %1$sregister your copy%2$s to receive access to "
|
1127 |
-
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s</"
|
1128 |
-
"p>"
|
1129 |
-
msgstr ""
|
1130 |
-
|
1131 |
-
#: ../admin/register-version.php:246
|
1132 |
-
#, php-format
|
1133 |
-
msgid ""
|
1134 |
-
"<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
|
1135 |
-
"%1$sRenew Your Licence%2$s to continue receiving access to product "
|
1136 |
-
"downloads, automatic updates and support. %3$sRenew now and get 50% off "
|
1137 |
-
"%4$s %5$sDismiss%6$s</p>"
|
1138 |
-
msgstr ""
|
1139 |
-
|
1140 |
-
#: ../admin/register-version.php:251
|
1141 |
-
#, php-format
|
1142 |
-
msgid ""
|
1143 |
-
"<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
|
1144 |
-
"<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
|
1145 |
-
"product downloads, automatic updates and support. %3$sRenew now and get "
|
1146 |
-
"50% off %4$s %6$sDismiss%7$s</p>"
|
1147 |
-
msgstr ""
|
1148 |
-
|
1149 |
-
#: ../assets/lib/wck-api/fields/country select.php:14
|
1150 |
-
#: ../assets/lib/wck-api/fields/cpt select.php:17
|
1151 |
-
#: ../assets/lib/wck-api/fields/select.php:14
|
1152 |
-
#: ../assets/lib/wck-api/fields/user select.php:15
|
1153 |
-
msgid "...Choose"
|
1154 |
-
msgstr ""
|
1155 |
-
|
1156 |
-
#: ../assets/lib/wck-api/fields/nested repeater.php:8
|
1157 |
-
#, php-format
|
1158 |
-
msgid "You can add the information for the %s after you add a entry"
|
1159 |
-
msgstr ""
|
1160 |
-
|
1161 |
-
#: ../assets/lib/wck-api/fields/upload.php:37
|
1162 |
-
msgid "Remove"
|
1163 |
-
msgstr ""
|
1164 |
-
|
1165 |
-
#: ../assets/lib/wck-api/fields/upload.php:54
|
1166 |
-
msgid "Upload "
|
1167 |
-
msgstr ""
|
1168 |
-
|
1169 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
1170 |
-
#: ../modules/class-mustache-templates/class-mustache-templates.php:242
|
1171 |
-
msgid "Save"
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
1175 |
-
msgid "Add Entry"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
1179 |
-
#: ../features/functions.php:621
|
1180 |
-
msgid "Content"
|
1181 |
-
msgstr ""
|
1182 |
-
|
1183 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
1184 |
-
msgid "Edit this item"
|
1185 |
-
msgstr ""
|
1186 |
-
|
1187 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
1188 |
-
msgid "Delete this item"
|
1189 |
-
msgstr ""
|
1190 |
-
|
1191 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:671
|
1192 |
-
msgid "Please enter a value for the required field "
|
1193 |
-
msgstr ""
|
1194 |
-
|
1195 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1150
|
1196 |
-
msgid "Syncronize WCK"
|
1197 |
-
msgstr ""
|
1198 |
-
|
1199 |
-
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1162
|
1200 |
-
msgid "Syncronize WCK Translation"
|
1201 |
-
msgstr ""
|
1202 |
-
|
1203 |
-
#: ../features/admin-approval/admin-approval.php:7
|
1204 |
-
#: ../features/admin-approval/class-admin-approval.php:496
|
1205 |
-
msgid "Admin Approval"
|
1206 |
-
msgstr ""
|
1207 |
-
|
1208 |
-
#: ../features/admin-approval/admin-approval.php:21
|
1209 |
-
#: ../features/email-confirmation/email-confirmation.php:58
|
1210 |
-
msgid "Do you want to"
|
1211 |
-
msgstr ""
|
1212 |
-
|
1213 |
-
#: ../features/admin-approval/admin-approval.php:44
|
1214 |
-
msgid "Your session has expired! Please refresh the page and try again"
|
1215 |
-
msgstr ""
|
1216 |
-
|
1217 |
-
#: ../features/admin-approval/admin-approval.php:55
|
1218 |
-
msgid "User successfully approved!"
|
1219 |
-
msgstr ""
|
1220 |
-
|
1221 |
-
#: ../features/admin-approval/admin-approval.php:63
|
1222 |
-
msgid "User successfully unapproved!"
|
1223 |
-
msgstr ""
|
1224 |
-
|
1225 |
-
#: ../features/admin-approval/admin-approval.php:69
|
1226 |
-
msgid "User successfully deleted!"
|
1227 |
-
msgstr ""
|
1228 |
-
|
1229 |
-
#: ../features/admin-approval/admin-approval.php:74
|
1230 |
-
#: ../features/admin-approval/admin-approval.php:139
|
1231 |
-
#: ../features/email-confirmation/email-confirmation.php:135
|
1232 |
-
msgid "You either don't have permission for that action or there was an error!"
|
1233 |
-
msgstr ""
|
1234 |
-
|
1235 |
-
#: ../features/admin-approval/admin-approval.php:86
|
1236 |
-
msgid "Your session has expired! Please refresh the page and try again."
|
1237 |
-
msgstr ""
|
1238 |
-
|
1239 |
-
#: ../features/admin-approval/admin-approval.php:106
|
1240 |
-
msgid "Users successfully approved!"
|
1241 |
-
msgstr ""
|
1242 |
-
|
1243 |
-
#: ../features/admin-approval/admin-approval.php:121
|
1244 |
-
msgid "Users successfully unapproved!"
|
1245 |
-
msgstr ""
|
1246 |
-
|
1247 |
-
#: ../features/admin-approval/admin-approval.php:134
|
1248 |
-
msgid "Users successfully deleted!"
|
1249 |
-
msgstr ""
|
1250 |
-
|
1251 |
-
#: ../features/admin-approval/admin-approval.php:149
|
1252 |
-
#, php-format
|
1253 |
-
msgid "Your account on %1$s has been approved!"
|
1254 |
-
msgstr ""
|
1255 |
-
|
1256 |
-
#: ../features/admin-approval/admin-approval.php:150
|
1257 |
-
#: ../features/admin-approval/admin-approval.php:153
|
1258 |
-
msgid "approved"
|
1259 |
-
msgstr ""
|
1260 |
-
|
1261 |
-
#: ../features/admin-approval/admin-approval.php:152
|
1262 |
-
#, php-format
|
1263 |
-
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: ../features/admin-approval/admin-approval.php:156
|
1267 |
-
#, php-format
|
1268 |
-
msgid "Your account on %1$s has been unapproved!"
|
1269 |
-
msgstr ""
|
1270 |
-
|
1271 |
-
#: ../features/admin-approval/admin-approval.php:157
|
1272 |
-
#: ../features/admin-approval/admin-approval.php:160
|
1273 |
-
msgid "unapproved"
|
1274 |
-
msgstr ""
|
1275 |
-
|
1276 |
-
#: ../features/admin-approval/admin-approval.php:159
|
1277 |
-
#, php-format
|
1278 |
-
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1279 |
-
msgstr ""
|
1280 |
-
|
1281 |
-
#: ../features/admin-approval/admin-approval.php:176
|
1282 |
-
msgid ""
|
1283 |
-
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1284 |
-
"before you can log in."
|
1285 |
-
msgstr ""
|
1286 |
-
|
1287 |
-
#: ../features/admin-approval/admin-approval.php:188
|
1288 |
-
msgid ""
|
1289 |
-
"Your account has to be confirmed by an administrator before you can use the "
|
1290 |
-
"\"Password Recovery\" feature."
|
1291 |
-
msgstr ""
|
1292 |
-
|
1293 |
-
#: ../features/admin-approval/class-admin-approval.php:119
|
1294 |
-
msgid "View or Edit"
|
1295 |
-
msgstr ""
|
1296 |
-
|
1297 |
-
#: ../features/admin-approval/class-admin-approval.php:124
|
1298 |
-
msgid "delete this user?"
|
1299 |
-
msgstr ""
|
1300 |
-
|
1301 |
-
#: ../features/admin-approval/class-admin-approval.php:127
|
1302 |
-
msgid "unapprove this user?"
|
1303 |
-
msgstr ""
|
1304 |
-
|
1305 |
-
#: ../features/admin-approval/class-admin-approval.php:127
|
1306 |
-
#: ../features/admin-approval/class-admin-approval.php:234
|
1307 |
-
msgid "Unapprove"
|
1308 |
-
msgstr ""
|
1309 |
-
|
1310 |
-
#: ../features/admin-approval/class-admin-approval.php:129
|
1311 |
-
msgid "approve this user?"
|
1312 |
-
msgstr ""
|
1313 |
-
|
1314 |
-
#: ../features/admin-approval/class-admin-approval.php:129
|
1315 |
-
#: ../features/admin-approval/class-admin-approval.php:233
|
1316 |
-
msgid "Approve"
|
1317 |
-
msgstr ""
|
1318 |
-
|
1319 |
-
#: ../features/admin-approval/class-admin-approval.php:178
|
1320 |
-
#: ../modules/user-listing/userlisting.php:608
|
1321 |
-
#: ../modules/user-listing/userlisting.php:1249
|
1322 |
-
msgid "Firstname"
|
1323 |
-
msgstr ""
|
1324 |
-
|
1325 |
-
#: ../features/admin-approval/class-admin-approval.php:179
|
1326 |
-
#: ../modules/user-listing/userlisting.php:611
|
1327 |
-
#: ../modules/user-listing/userlisting.php:1250
|
1328 |
-
msgid "Lastname"
|
1329 |
-
msgstr ""
|
1330 |
-
|
1331 |
-
#: ../features/admin-approval/class-admin-approval.php:181
|
1332 |
-
#: ../modules/user-listing/userlisting.php:124
|
1333 |
-
#: ../modules/user-listing/userlisting.php:638
|
1334 |
-
#: ../modules/user-listing/userlisting.php:1253
|
1335 |
-
msgid "Role"
|
1336 |
-
msgstr ""
|
1337 |
-
|
1338 |
-
#: ../features/admin-approval/class-admin-approval.php:182
|
1339 |
-
#: ../features/email-confirmation/class-email-confirmation.php:169
|
1340 |
-
msgid "Registered"
|
1341 |
-
msgstr ""
|
1342 |
-
|
1343 |
-
#: ../features/admin-approval/class-admin-approval.php:183
|
1344 |
-
msgid "User-status"
|
1345 |
-
msgstr ""
|
1346 |
-
|
1347 |
-
#: ../features/admin-approval/class-admin-approval.php:263
|
1348 |
-
msgid "Do you want to bulk approve the selected users?"
|
1349 |
-
msgstr ""
|
1350 |
-
|
1351 |
-
#: ../features/admin-approval/class-admin-approval.php:271
|
1352 |
-
msgid "Do you want to bulk unapprove the selected users?"
|
1353 |
-
msgstr ""
|
1354 |
-
|
1355 |
-
#: ../features/admin-approval/class-admin-approval.php:277
|
1356 |
-
msgid "Do you want to bulk delete the selected users?"
|
1357 |
-
msgstr ""
|
1358 |
-
|
1359 |
-
#: ../features/admin-approval/class-admin-approval.php:285
|
1360 |
-
#: ../features/email-confirmation/class-email-confirmation.php:278
|
1361 |
-
msgid "Sorry, but you don't have permission to do that!"
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: ../features/admin-approval/class-admin-approval.php:325
|
1365 |
-
msgid "Approved"
|
1366 |
-
msgstr ""
|
1367 |
-
|
1368 |
-
#: ../features/admin-approval/class-admin-approval.php:327
|
1369 |
-
msgid "Unapproved"
|
1370 |
-
msgstr ""
|
1371 |
-
|
1372 |
-
#: ../features/admin-approval/class-admin-approval.php:499
|
1373 |
-
#: ../features/email-confirmation/class-email-confirmation.php:469
|
1374 |
-
msgid "All Users"
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#: ../features/class-list-table.php:184
|
1378 |
-
msgid "No items found."
|
1379 |
-
msgstr ""
|
1380 |
-
|
1381 |
-
#: ../features/class-list-table.php:308
|
1382 |
-
msgid "Bulk Actions"
|
1383 |
-
msgstr ""
|
1384 |
-
|
1385 |
-
#: ../features/class-list-table.php:318
|
1386 |
-
msgid "Apply"
|
1387 |
-
msgstr ""
|
1388 |
-
|
1389 |
-
#: ../features/class-list-table.php:402
|
1390 |
-
msgid "Show all dates"
|
1391 |
-
msgstr ""
|
1392 |
-
|
1393 |
-
#: ../features/class-list-table.php:415
|
1394 |
-
#, php-format
|
1395 |
-
msgid "%1$s %2$d"
|
1396 |
-
msgstr ""
|
1397 |
-
|
1398 |
-
#: ../features/class-list-table.php:431
|
1399 |
-
msgid "List View"
|
1400 |
-
msgstr ""
|
1401 |
-
|
1402 |
-
#: ../features/class-list-table.php:432
|
1403 |
-
msgid "Excerpt View"
|
1404 |
-
msgstr ""
|
1405 |
-
|
1406 |
-
#: ../features/class-list-table.php:458
|
1407 |
-
#, php-format
|
1408 |
-
msgid "%s pending"
|
1409 |
-
msgstr ""
|
1410 |
-
|
1411 |
-
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
1412 |
-
msgid "1 item"
|
1413 |
-
msgstr ""
|
1414 |
-
|
1415 |
-
#: ../features/class-list-table.php:566
|
1416 |
-
#, php-format
|
1417 |
-
msgid "%1$s of %2$s"
|
1418 |
-
msgstr ""
|
1419 |
-
|
1420 |
-
#: ../features/class-list-table.php:713
|
1421 |
-
msgid "Select All"
|
1422 |
-
msgstr ""
|
1423 |
-
|
1424 |
-
#: ../features/email-confirmation/class-email-confirmation.php:91
|
1425 |
-
#: ../features/email-confirmation/class-email-confirmation.php:170
|
1426 |
-
#: ../modules/email-customizer/email-customizer.php:11
|
1427 |
-
msgid "User Meta"
|
1428 |
-
msgstr ""
|
1429 |
-
|
1430 |
-
#: ../features/email-confirmation/class-email-confirmation.php:91
|
1431 |
-
msgid "show"
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
#: ../features/email-confirmation/class-email-confirmation.php:120
|
1435 |
-
msgid "delete this user from the _signups table?"
|
1436 |
-
msgstr ""
|
1437 |
-
|
1438 |
-
#: ../features/email-confirmation/class-email-confirmation.php:121
|
1439 |
-
msgid "confirm this email yourself?"
|
1440 |
-
msgstr ""
|
1441 |
-
|
1442 |
-
#: ../features/email-confirmation/class-email-confirmation.php:121
|
1443 |
-
#: ../features/email-confirmation/class-email-confirmation.php:218
|
1444 |
-
msgid "Confirm Email"
|
1445 |
-
msgstr ""
|
1446 |
-
|
1447 |
-
#: ../features/email-confirmation/class-email-confirmation.php:122
|
1448 |
-
msgid "resend the activation link?"
|
1449 |
-
msgstr ""
|
1450 |
-
|
1451 |
-
#: ../features/email-confirmation/class-email-confirmation.php:122
|
1452 |
-
#: ../features/email-confirmation/class-email-confirmation.php:219
|
1453 |
-
msgid "Resend Activation Email"
|
1454 |
-
msgstr ""
|
1455 |
-
|
1456 |
-
#: ../features/email-confirmation/class-email-confirmation.php:249
|
1457 |
-
#, php-format
|
1458 |
-
msgid "%s couldn't be deleted"
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
#: ../features/email-confirmation/class-email-confirmation.php:253
|
1462 |
-
msgid "All users have been successfully deleted"
|
1463 |
-
msgstr ""
|
1464 |
-
|
1465 |
-
#: ../features/email-confirmation/class-email-confirmation.php:263
|
1466 |
-
msgid "The selected users have been activated"
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
-
#: ../features/email-confirmation/class-email-confirmation.php:274
|
1470 |
-
msgid "The selected users have had their activation emails resent"
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: ../features/email-confirmation/class-email-confirmation.php:466
|
1474 |
-
#: ../features/email-confirmation/email-confirmation.php:47
|
1475 |
-
msgid "Users with Unconfirmed Email Address"
|
1476 |
-
msgstr ""
|
1477 |
-
|
1478 |
-
#: ../features/email-confirmation/email-confirmation.php:110
|
1479 |
-
msgid "There was an error performing that action!"
|
1480 |
-
msgstr ""
|
1481 |
-
|
1482 |
-
#: ../features/email-confirmation/email-confirmation.php:118
|
1483 |
-
msgid "The selected user couldn't be deleted"
|
1484 |
-
msgstr ""
|
1485 |
-
|
1486 |
-
#: ../features/email-confirmation/email-confirmation.php:129
|
1487 |
-
msgid "Email notification resent to user"
|
1488 |
-
msgstr ""
|
1489 |
-
|
1490 |
-
#: ../features/email-confirmation/email-confirmation.php:364
|
1491 |
-
#, php-format
|
1492 |
-
msgid "[%1$s] Activate %2$s"
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: ../features/email-confirmation/email-confirmation.php:367
|
1496 |
-
#, php-format
|
1497 |
-
msgid ""
|
1498 |
-
"To activate your user, please click the following link:\n"
|
1499 |
-
"\n"
|
1500 |
-
"%s%s%s\n"
|
1501 |
-
"\n"
|
1502 |
-
"After you activate it you will receive yet *another email* with your login."
|
1503 |
-
msgstr ""
|
1504 |
-
|
1505 |
-
#: ../features/email-confirmation/email-confirmation.php:406
|
1506 |
-
#: ../front-end/register.php:68
|
1507 |
-
msgid "Could not create user!"
|
1508 |
-
msgstr ""
|
1509 |
-
|
1510 |
-
#: ../features/email-confirmation/email-confirmation.php:409
|
1511 |
-
msgid "That username is already activated!"
|
1512 |
-
msgstr ""
|
1513 |
-
|
1514 |
-
#: ../features/email-confirmation/email-confirmation.php:438
|
1515 |
-
msgid "There was an error while trying to activate the user"
|
1516 |
-
msgstr ""
|
1517 |
-
|
1518 |
-
#: ../features/email-confirmation/email-confirmation.php:483
|
1519 |
-
#: ../modules/email-customizer/admin-email-customizer.php:73
|
1520 |
-
msgid "A new subscriber has (been) registered!"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: ../features/email-confirmation/email-confirmation.php:486
|
1524 |
-
#, php-format
|
1525 |
-
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
1526 |
-
msgstr ""
|
1527 |
-
|
1528 |
-
#: ../features/email-confirmation/email-confirmation.php:491
|
1529 |
-
msgid ""
|
1530 |
-
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
1531 |
-
"please remember that you need to approve this user before he/she can log in!"
|
1532 |
-
msgstr ""
|
1533 |
-
|
1534 |
-
#: ../features/email-confirmation/email-confirmation.php:506
|
1535 |
-
#, php-format
|
1536 |
-
msgid "[%1$s] Your new account information"
|
1537 |
-
msgstr ""
|
1538 |
-
|
1539 |
-
#: ../features/email-confirmation/email-confirmation.php:510
|
1540 |
-
#: ../features/email-confirmation/email-confirmation.php:513
|
1541 |
-
#: ../modules/email-customizer/email-customizer.php:395
|
1542 |
-
#: ../modules/email-customizer/email-customizer.php:402
|
1543 |
-
#: ../modules/email-customizer/email-customizer.php:416
|
1544 |
-
msgid "Your selected password at signup"
|
1545 |
-
msgstr ""
|
1546 |
-
|
1547 |
-
#: ../features/email-confirmation/email-confirmation.php:512
|
1548 |
-
#, php-format
|
1549 |
-
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
1550 |
-
msgstr ""
|
1551 |
-
|
1552 |
-
#: ../features/email-confirmation/email-confirmation.php:521
|
1553 |
-
#: ../front-end/register.php:103
|
1554 |
-
msgid ""
|
1555 |
-
"Before you can access your account, an administrator needs to approve it. "
|
1556 |
-
"You will be notified via email."
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
#: ../features/functions.php:199 ../features/functions.php:200
|
1560 |
-
msgid "Profile Builder"
|
1561 |
-
msgstr ""
|
1562 |
-
|
1563 |
-
#: ../features/functions.php:273
|
1564 |
-
msgid "The user-validation has failed - the avatar was not deleted!"
|
1565 |
-
msgstr ""
|
1566 |
-
|
1567 |
-
#: ../features/functions.php:284
|
1568 |
-
msgid "The user-validation has failed - the attachment was not deleted!"
|
1569 |
-
msgstr ""
|
1570 |
-
|
1571 |
-
#: ../features/functions.php:467
|
1572 |
-
msgid "Strength indicator"
|
1573 |
-
msgstr ""
|
1574 |
-
|
1575 |
-
#: ../features/functions.php:492
|
1576 |
-
msgid "Very Weak"
|
1577 |
-
msgstr ""
|
1578 |
-
|
1579 |
-
#: ../features/functions.php:506
|
1580 |
-
#, php-format
|
1581 |
-
msgid "Minimum length of %d characters"
|
1582 |
-
msgstr ""
|
1583 |
-
|
1584 |
-
#: ../features/functions.php:580
|
1585 |
-
msgid "This field is required"
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
-
#: ../features/functions.php:600
|
1589 |
-
msgid "Cancel"
|
1590 |
-
msgstr ""
|
1591 |
-
|
1592 |
-
#: ../features/functions.php:632
|
1593 |
-
#, php-format
|
1594 |
-
msgid ""
|
1595 |
-
"To allow users to register for your website via Profile Builder, you first "
|
1596 |
-
"must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
|
1597 |
-
"Registration Settings make sure to check “User accounts may be registered”. "
|
1598 |
-
"%3$sDismiss%4$s"
|
1599 |
-
msgstr ""
|
1600 |
-
|
1601 |
-
#: ../features/functions.php:636
|
1602 |
-
#, php-format
|
1603 |
-
msgid ""
|
1604 |
-
"To allow users to register for your website via Profile Builder, you first "
|
1605 |
-
"must enable user registration. Go to %1$sSettings -> General%2$s tab, and "
|
1606 |
-
"under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
1607 |
-
msgstr ""
|
1608 |
-
|
1609 |
-
#: ../features/login-widget/login-widget.php:10
|
1610 |
-
msgid "This login widget lets you add a login form in the sidebar."
|
1611 |
-
msgstr ""
|
1612 |
-
|
1613 |
-
#: ../features/login-widget/login-widget.php:15
|
1614 |
-
msgid "Profile Builder Login Widget"
|
1615 |
-
msgstr ""
|
1616 |
-
|
1617 |
-
#: ../features/login-widget/login-widget.php:63
|
1618 |
-
msgid "Title:"
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: ../features/login-widget/login-widget.php:68
|
1622 |
-
msgid "After login redirect URL (optional):"
|
1623 |
-
msgstr ""
|
1624 |
-
|
1625 |
-
#: ../features/login-widget/login-widget.php:73
|
1626 |
-
msgid "Register page URL (optional):"
|
1627 |
-
msgstr ""
|
1628 |
-
|
1629 |
-
#: ../features/login-widget/login-widget.php:78
|
1630 |
-
msgid "Password Recovery page URL (optional):"
|
1631 |
-
msgstr ""
|
1632 |
-
|
1633 |
-
#: ../features/upgrades/upgrades-functions.php:91
|
1634 |
-
#: ../features/upgrades/upgrades-functions.php:134
|
1635 |
-
msgid "The usernames cannot be changed."
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: ../front-end/class-formbuilder.php:89
|
1639 |
-
msgid "Only an administrator can add new users."
|
1640 |
-
msgstr ""
|
1641 |
-
|
1642 |
-
#: ../front-end/class-formbuilder.php:99
|
1643 |
-
msgid "Users can register themselves or you can manually create users here."
|
1644 |
-
msgstr ""
|
1645 |
-
|
1646 |
-
#: ../front-end/class-formbuilder.php:99
|
1647 |
-
#: ../front-end/class-formbuilder.php:102
|
1648 |
-
msgid "This message is only visible by administrators"
|
1649 |
-
msgstr ""
|
1650 |
-
|
1651 |
-
#: ../front-end/class-formbuilder.php:102
|
1652 |
-
msgid ""
|
1653 |
-
"Users cannot currently register themselves, but you can manually create "
|
1654 |
-
"users here."
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
-
#: ../front-end/class-formbuilder.php:114
|
1658 |
-
#, php-format
|
1659 |
-
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
1660 |
-
msgstr ""
|
1661 |
-
|
1662 |
-
#: ../front-end/class-formbuilder.php:114
|
1663 |
-
msgid "Log out of this account."
|
1664 |
-
msgstr ""
|
1665 |
-
|
1666 |
-
#: ../front-end/class-formbuilder.php:114
|
1667 |
-
msgid "Logout"
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: ../front-end/class-formbuilder.php:120
|
1671 |
-
msgid "You must be logged in to edit your profile."
|
1672 |
-
msgstr ""
|
1673 |
-
|
1674 |
-
#: ../front-end/class-formbuilder.php:142
|
1675 |
-
msgid "here"
|
1676 |
-
msgstr ""
|
1677 |
-
|
1678 |
-
#: ../front-end/class-formbuilder.php:144
|
1679 |
-
#, php-format
|
1680 |
-
msgid ""
|
1681 |
-
"You will soon be redirected automatically. If you see this page for more "
|
1682 |
-
"than %1$d seconds, please click %2$s.%3$s"
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: ../front-end/class-formbuilder.php:237
|
1686 |
-
#: ../front-end/class-formbuilder.php:244
|
1687 |
-
#, php-format
|
1688 |
-
msgid "The account %1s has been successfully created!"
|
1689 |
-
msgstr ""
|
1690 |
-
|
1691 |
-
#: ../front-end/class-formbuilder.php:240
|
1692 |
-
#: ../front-end/class-formbuilder.php:250
|
1693 |
-
#, php-format
|
1694 |
-
msgid ""
|
1695 |
-
"Before you can access your account %1s, you need to confirm your email "
|
1696 |
-
"address. Please check your inbox and click the activation link."
|
1697 |
-
msgstr ""
|
1698 |
-
|
1699 |
-
#: ../front-end/class-formbuilder.php:246
|
1700 |
-
#, php-format
|
1701 |
-
msgid ""
|
1702 |
-
"Before you can access your account %1s, an administrator has to approve it. "
|
1703 |
-
"You will be notified via email."
|
1704 |
-
msgstr ""
|
1705 |
-
|
1706 |
-
#: ../front-end/class-formbuilder.php:260
|
1707 |
-
msgid "Your profile has been successfully updated!"
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
#: ../front-end/class-formbuilder.php:270
|
1711 |
-
msgid "There was an error in the submitted form"
|
1712 |
-
msgstr ""
|
1713 |
-
|
1714 |
-
#: ../front-end/class-formbuilder.php:291
|
1715 |
-
msgid "Add User"
|
1716 |
-
msgstr ""
|
1717 |
-
|
1718 |
-
#: ../front-end/class-formbuilder.php:291 ../front-end/login.php:202
|
1719 |
-
msgid "Register"
|
1720 |
-
msgstr ""
|
1721 |
-
|
1722 |
-
#: ../front-end/class-formbuilder.php:336
|
1723 |
-
#: ../front-end/extra-fields/extra-fields.php:35
|
1724 |
-
msgid "The avatar was successfully deleted!"
|
1725 |
-
msgstr ""
|
1726 |
-
|
1727 |
-
#: ../front-end/class-formbuilder.php:336
|
1728 |
-
#: ../front-end/extra-fields/extra-fields.php:37
|
1729 |
-
msgid "The following attachment was successfully deleted:"
|
1730 |
-
msgstr ""
|
1731 |
-
|
1732 |
-
#: ../front-end/class-formbuilder.php:348
|
1733 |
-
msgid "Send these credentials via email."
|
1734 |
-
msgstr ""
|
1735 |
-
|
1736 |
-
#: ../front-end/class-formbuilder.php:496
|
1737 |
-
msgid "User to edit:"
|
1738 |
-
msgstr ""
|
1739 |
-
|
1740 |
-
#: ../front-end/default-fields/email/email.php:42
|
1741 |
-
msgid "The email you entered is not a valid email address."
|
1742 |
-
msgstr ""
|
1743 |
-
|
1744 |
-
#: ../front-end/default-fields/email/email.php:46
|
1745 |
-
msgid "You must enter a valid email address."
|
1746 |
-
msgstr ""
|
1747 |
-
|
1748 |
-
#: ../front-end/default-fields/email/email.php:55
|
1749 |
-
#: ../front-end/default-fields/email/email.php:60
|
1750 |
-
msgid "This email is already reserved to be used soon."
|
1751 |
-
msgstr ""
|
1752 |
-
|
1753 |
-
#: ../front-end/default-fields/email/email.php:55
|
1754 |
-
#: ../front-end/default-fields/email/email.php:60
|
1755 |
-
#: ../front-end/default-fields/email/email.php:68
|
1756 |
-
#: ../front-end/default-fields/email/email.php:79
|
1757 |
-
#: ../front-end/default-fields/username/username.php:44
|
1758 |
-
#: ../front-end/default-fields/username/username.php:54
|
1759 |
-
msgid "Please try a different one!"
|
1760 |
-
msgstr ""
|
1761 |
-
|
1762 |
-
#: ../front-end/default-fields/email/email.php:68
|
1763 |
-
#: ../front-end/default-fields/email/email.php:79
|
1764 |
-
msgid "This email is already in use."
|
1765 |
-
msgstr ""
|
1766 |
-
|
1767 |
-
#: ../front-end/default-fields/password-repeat/password-repeat.php:35
|
1768 |
-
#: ../front-end/default-fields/password-repeat/password-repeat.php:39
|
1769 |
-
msgid "The passwords do not match"
|
1770 |
-
msgstr ""
|
1771 |
-
|
1772 |
-
#: ../front-end/default-fields/password/password.php:44
|
1773 |
-
#: ../front-end/recover.php:236
|
1774 |
-
#, php-format
|
1775 |
-
msgid "The password must have the minimum length of %s characters"
|
1776 |
-
msgstr ""
|
1777 |
-
|
1778 |
-
#: ../front-end/default-fields/password/password.php:48
|
1779 |
-
#: ../front-end/recover.php:240
|
1780 |
-
#, php-format
|
1781 |
-
msgid "The password must have a minimum strength of %s"
|
1782 |
-
msgstr ""
|
1783 |
-
|
1784 |
-
#: ../front-end/default-fields/username/username.php:44
|
1785 |
-
msgid "This username already exists."
|
1786 |
-
msgstr ""
|
1787 |
-
|
1788 |
-
#: ../front-end/default-fields/username/username.php:47
|
1789 |
-
msgid "This username is invalid because it uses illegal characters."
|
1790 |
-
msgstr ""
|
1791 |
-
|
1792 |
-
#: ../front-end/default-fields/username/username.php:47
|
1793 |
-
msgid "Please enter a valid username."
|
1794 |
-
msgstr ""
|
1795 |
-
|
1796 |
-
#: ../front-end/default-fields/username/username.php:54
|
1797 |
-
msgid "This username is already reserved to be used soon."
|
1798 |
-
msgstr ""
|
1799 |
-
|
1800 |
-
#: ../front-end/extra-fields/avatar/avatar.php:65
|
1801 |
-
#: ../front-end/extra-fields/avatar/avatar.php:103
|
1802 |
-
#: ../front-end/extra-fields/upload/upload.php:29
|
1803 |
-
#: ../front-end/extra-fields/upload/upload.php:68
|
1804 |
-
msgid "max upload size"
|
1805 |
-
msgstr ""
|
1806 |
-
|
1807 |
-
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1808 |
-
msgid "Current avatar: No uploaded avatar"
|
1809 |
-
msgstr ""
|
1810 |
-
|
1811 |
-
#: ../front-end/extra-fields/avatar/avatar.php:76
|
1812 |
-
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1813 |
-
msgid "Avatar"
|
1814 |
-
msgstr ""
|
1815 |
-
|
1816 |
-
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1817 |
-
#: ../front-end/extra-fields/avatar/avatar.php:85
|
1818 |
-
#: ../front-end/extra-fields/avatar/avatar.php:113
|
1819 |
-
#: ../front-end/extra-fields/avatar/avatar.php:115
|
1820 |
-
msgid "Click to see the current avatar"
|
1821 |
-
msgstr ""
|
1822 |
-
|
1823 |
-
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1824 |
-
#: ../front-end/extra-fields/avatar/avatar.php:113
|
1825 |
-
msgid ""
|
1826 |
-
"The avatar can't be deleted (It was marked as required by the administrator)"
|
1827 |
-
msgstr ""
|
1828 |
-
|
1829 |
-
#: ../front-end/extra-fields/avatar/avatar.php:87
|
1830 |
-
#: ../front-end/extra-fields/avatar/avatar.php:115
|
1831 |
-
msgid "Are you sure you want to delete this avatar?"
|
1832 |
-
msgstr ""
|
1833 |
-
|
1834 |
-
#: ../front-end/extra-fields/avatar/avatar.php:88
|
1835 |
-
#: ../front-end/extra-fields/avatar/avatar.php:115
|
1836 |
-
msgid "Click to delete the current avatar"
|
1837 |
-
msgstr ""
|
1838 |
-
|
1839 |
-
#: ../front-end/extra-fields/avatar/avatar.php:96
|
1840 |
-
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1841 |
-
#: ../front-end/extra-fields/datepicker/datepicker.php:47
|
1842 |
-
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1843 |
-
#: ../front-end/extra-fields/input/input.php:28
|
1844 |
-
#: ../front-end/extra-fields/radio/radio.php:42
|
1845 |
-
#: ../front-end/extra-fields/select-multiple/select-multiple.php:44
|
1846 |
-
#: ../front-end/extra-fields/select-timezone/select-timezone.php:42
|
1847 |
-
#: ../front-end/extra-fields/select/select.php:44
|
1848 |
-
#: ../front-end/extra-fields/textarea/textarea.php:28
|
1849 |
-
#: ../front-end/extra-fields/upload/upload.php:62
|
1850 |
-
#: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
1851 |
-
msgid "required"
|
1852 |
-
msgstr ""
|
1853 |
-
|
1854 |
-
#: ../front-end/extra-fields/avatar/avatar.php:106
|
1855 |
-
msgid "Current avatar"
|
1856 |
-
msgstr ""
|
1857 |
-
|
1858 |
-
#: ../front-end/extra-fields/avatar/avatar.php:106
|
1859 |
-
msgid "No uploaded avatar"
|
1860 |
-
msgstr ""
|
1861 |
-
|
1862 |
-
#: ../front-end/extra-fields/avatar/avatar.php:124
|
1863 |
-
#, php-format
|
1864 |
-
msgid ""
|
1865 |
-
"The image file set in the %s field for this user could not be found on the "
|
1866 |
-
"server. The default WordPress avatar is being used at the moment."
|
1867 |
-
msgstr ""
|
1868 |
-
|
1869 |
-
#: ../front-end/extra-fields/avatar/avatar.php:212
|
1870 |
-
#: ../front-end/extra-fields/upload/upload.php:173
|
1871 |
-
msgid "The extension of the file did not match"
|
1872 |
-
msgstr ""
|
1873 |
-
|
1874 |
-
#: ../front-end/extra-fields/avatar/avatar.php:215
|
1875 |
-
#: ../front-end/extra-fields/avatar/avatar.php:218
|
1876 |
-
#: ../front-end/extra-fields/upload/upload.php:177
|
1877 |
-
#: ../front-end/extra-fields/upload/upload.php:180
|
1878 |
-
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1879 |
-
msgstr ""
|
1880 |
-
|
1881 |
-
#: ../front-end/extra-fields/avatar/avatar.php:221
|
1882 |
-
#: ../front-end/extra-fields/upload/upload.php:183
|
1883 |
-
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1884 |
-
msgstr ""
|
1885 |
-
|
1886 |
-
#: ../front-end/extra-fields/avatar/avatar.php:224
|
1887 |
-
msgid "The file could only partially be uploaded "
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
#: ../front-end/extra-fields/avatar/avatar.php:227
|
1891 |
-
#: ../front-end/extra-fields/avatar/avatar.php:251
|
1892 |
-
#: ../front-end/extra-fields/avatar/avatar.php:254
|
1893 |
-
#: ../front-end/extra-fields/upload/upload.php:189
|
1894 |
-
#: ../front-end/extra-fields/upload/upload.php:213
|
1895 |
-
#: ../front-end/extra-fields/upload/upload.php:216
|
1896 |
-
msgid "No file was selected"
|
1897 |
-
msgstr ""
|
1898 |
-
|
1899 |
-
#: ../front-end/extra-fields/avatar/avatar.php:230
|
1900 |
-
#: ../front-end/extra-fields/upload/upload.php:192
|
1901 |
-
msgid "The temporary upload folder is missing from the system"
|
1902 |
-
msgstr ""
|
1903 |
-
|
1904 |
-
#: ../front-end/extra-fields/avatar/avatar.php:233
|
1905 |
-
#: ../front-end/extra-fields/upload/upload.php:195
|
1906 |
-
msgid "The file failed to write to the disk"
|
1907 |
-
msgstr ""
|
1908 |
-
|
1909 |
-
#: ../front-end/extra-fields/avatar/avatar.php:236
|
1910 |
-
#: ../front-end/extra-fields/upload/upload.php:198
|
1911 |
-
msgid "A PHP extension stopped the file upload"
|
1912 |
-
msgstr ""
|
1913 |
-
|
1914 |
-
#: ../front-end/extra-fields/avatar/avatar.php:239
|
1915 |
-
msgid "Unknown error occurred"
|
1916 |
-
msgstr ""
|
1917 |
-
|
1918 |
-
#: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:89
|
1919 |
-
#: ../front-end/login.php:96 ../front-end/login.php:110
|
1920 |
-
#: ../front-end/recover.php:17 ../front-end/recover.php:213
|
1921 |
-
msgid "ERROR"
|
1922 |
-
msgstr ""
|
1923 |
-
|
1924 |
-
#: ../front-end/extra-fields/recaptcha/recaptcha.php:45
|
1925 |
-
msgid "To use reCAPTCHA you must get an API key from"
|
1926 |
-
msgstr ""
|
1927 |
-
|
1928 |
-
#: ../front-end/extra-fields/recaptcha/recaptcha.php:75
|
1929 |
-
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1930 |
-
msgstr ""
|
1931 |
-
|
1932 |
-
#: ../front-end/extra-fields/recaptcha/recaptcha.php:137
|
1933 |
-
msgid "To use reCAPTCHA you must get an API public key from:"
|
1934 |
-
msgstr ""
|
1935 |
-
|
1936 |
-
#: ../front-end/extra-fields/recaptcha/recaptcha.php:140
|
1937 |
-
msgid "To use reCAPTCHA you must get an API private key from:"
|
1938 |
-
msgstr ""
|
1939 |
-
|
1940 |
-
#: ../front-end/extra-fields/upload/upload.php:35
|
1941 |
-
msgid "Current file: No uploaded attachment"
|
1942 |
-
msgstr ""
|
1943 |
-
|
1944 |
-
#: ../front-end/extra-fields/upload/upload.php:39
|
1945 |
-
#: ../front-end/extra-fields/upload/upload.php:48
|
1946 |
-
#: ../front-end/extra-fields/upload/upload.php:71
|
1947 |
-
#: ../front-end/extra-fields/upload/upload.php:75
|
1948 |
-
#: ../front-end/extra-fields/upload/upload.php:77
|
1949 |
-
msgid "Current file"
|
1950 |
-
msgstr ""
|
1951 |
-
|
1952 |
-
#: ../front-end/extra-fields/upload/upload.php:42
|
1953 |
-
#: ../front-end/extra-fields/upload/upload.php:51
|
1954 |
-
#: ../front-end/extra-fields/upload/upload.php:75
|
1955 |
-
#: ../front-end/extra-fields/upload/upload.php:77
|
1956 |
-
msgid "Click to see the current attachment"
|
1957 |
-
msgstr ""
|
1958 |
-
|
1959 |
-
#: ../front-end/extra-fields/upload/upload.php:44
|
1960 |
-
#: ../front-end/extra-fields/upload/upload.php:75
|
1961 |
-
msgid ""
|
1962 |
-
"The attachment can't be deleted (It was marked as required by the "
|
1963 |
-
"administrator)"
|
1964 |
-
msgstr ""
|
1965 |
-
|
1966 |
-
#: ../front-end/extra-fields/upload/upload.php:53
|
1967 |
-
#: ../front-end/extra-fields/upload/upload.php:77
|
1968 |
-
msgid "Are you sure you want to delete this attachment?"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
-
#: ../front-end/extra-fields/upload/upload.php:54
|
1972 |
-
#: ../front-end/extra-fields/upload/upload.php:77
|
1973 |
-
msgid "Click to delete the current attachment"
|
1974 |
-
msgstr ""
|
1975 |
-
|
1976 |
-
#: ../front-end/extra-fields/upload/upload.php:71
|
1977 |
-
msgid "No uploaded attachment"
|
1978 |
-
msgstr ""
|
1979 |
-
|
1980 |
-
#: ../front-end/extra-fields/upload/upload.php:164
|
1981 |
-
msgid "The extension of the file is not allowed"
|
1982 |
-
msgstr ""
|
1983 |
-
|
1984 |
-
#: ../front-end/extra-fields/upload/upload.php:186
|
1985 |
-
msgid "The file could only partially be uploaded"
|
1986 |
-
msgstr ""
|
1987 |
-
|
1988 |
-
#: ../front-end/extra-fields/upload/upload.php:201
|
1989 |
-
msgid "This field wasn't updated because an unknown error occured"
|
1990 |
-
msgstr ""
|
1991 |
-
|
1992 |
-
#: ../front-end/extra-fields/user-role/user-role.php:65
|
1993 |
-
#: ../front-end/extra-fields/user-role/user-role.php:78
|
1994 |
-
msgid "Only administrators can see this field on edit profile forms."
|
1995 |
-
msgstr ""
|
1996 |
-
|
1997 |
-
#: ../front-end/extra-fields/user-role/user-role.php:74
|
1998 |
-
msgid "As an administrator you cannot change your role."
|
1999 |
-
msgstr ""
|
2000 |
-
|
2001 |
-
#: ../front-end/extra-fields/user-role/user-role.php:106
|
2002 |
-
msgid "You cannot register this user role"
|
2003 |
-
msgstr ""
|
2004 |
-
|
2005 |
-
#: ../front-end/login.php:89
|
2006 |
-
msgid "The password you entered is incorrect."
|
2007 |
-
msgstr ""
|
2008 |
-
|
2009 |
-
#: ../front-end/login.php:90 ../front-end/login.php:97
|
2010 |
-
msgid "Password Lost and Found."
|
2011 |
-
msgstr ""
|
2012 |
-
|
2013 |
-
#: ../front-end/login.php:90 ../front-end/login.php:97
|
2014 |
-
msgid "Lost your password"
|
2015 |
-
msgstr ""
|
2016 |
-
|
2017 |
-
#: ../front-end/login.php:96
|
2018 |
-
msgid "Invalid username."
|
2019 |
-
msgstr ""
|
2020 |
-
|
2021 |
-
#: ../front-end/login.php:101 ../front-end/login.php:105
|
2022 |
-
msgid "username"
|
2023 |
-
msgstr ""
|
2024 |
-
|
2025 |
-
#: ../front-end/login.php:101
|
2026 |
-
msgid "email"
|
2027 |
-
msgstr ""
|
2028 |
-
|
2029 |
-
#: ../front-end/login.php:105
|
2030 |
-
msgid "username or email"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#: ../front-end/login.php:110
|
2034 |
-
msgid "Both fields are empty."
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#: ../front-end/login.php:174
|
2038 |
-
msgid "Username or Email"
|
2039 |
-
msgstr ""
|
2040 |
-
|
2041 |
-
#: ../front-end/login.php:208
|
2042 |
-
msgid "Lost your password?"
|
2043 |
-
msgstr ""
|
2044 |
-
|
2045 |
-
#: ../front-end/login.php:241 ../front-end/logout.php:17
|
2046 |
-
msgid "Log out of this account"
|
2047 |
-
msgstr ""
|
2048 |
-
|
2049 |
-
#: ../front-end/login.php:241
|
2050 |
-
msgid "Log out"
|
2051 |
-
msgstr ""
|
2052 |
-
|
2053 |
-
#: ../front-end/login.php:242
|
2054 |
-
#, php-format
|
2055 |
-
msgid "You are currently logged in as %1$s. %2$s"
|
2056 |
-
msgstr ""
|
2057 |
-
|
2058 |
-
#: ../front-end/logout.php:15
|
2059 |
-
#, php-format
|
2060 |
-
msgid "You are currently logged in as %s. "
|
2061 |
-
msgstr ""
|
2062 |
-
|
2063 |
-
#: ../front-end/logout.php:15
|
2064 |
-
msgid "Log out »"
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#: ../front-end/recover.php:17
|
2068 |
-
msgid ""
|
2069 |
-
"Your account has to be confirmed by an administrator before you can use the "
|
2070 |
-
"\"Password Reset\" feature."
|
2071 |
-
msgstr ""
|
2072 |
-
|
2073 |
-
#: ../front-end/recover.php:91
|
2074 |
-
msgid "Reset Password"
|
2075 |
-
msgstr ""
|
2076 |
-
|
2077 |
-
#: ../front-end/recover.php:111
|
2078 |
-
msgid "Please enter your username or email address."
|
2079 |
-
msgstr ""
|
2080 |
-
|
2081 |
-
#: ../front-end/recover.php:112
|
2082 |
-
msgid "You will receive a link to create a new password via email."
|
2083 |
-
msgstr ""
|
2084 |
-
|
2085 |
-
#: ../front-end/recover.php:119
|
2086 |
-
msgid "Username or E-mail"
|
2087 |
-
msgstr ""
|
2088 |
-
|
2089 |
-
#: ../front-end/recover.php:125
|
2090 |
-
msgid "Get New Password"
|
2091 |
-
msgstr ""
|
2092 |
-
|
2093 |
-
#: ../front-end/recover.php:166
|
2094 |
-
msgid "The username entered wasn't found in the database!"
|
2095 |
-
msgstr ""
|
2096 |
-
|
2097 |
-
#: ../front-end/recover.php:166
|
2098 |
-
msgid "Please check that you entered the correct username."
|
2099 |
-
msgstr ""
|
2100 |
-
|
2101 |
-
#: ../front-end/recover.php:181
|
2102 |
-
msgid "Check your e-mail for the confirmation link."
|
2103 |
-
msgstr ""
|
2104 |
-
|
2105 |
-
#: ../front-end/recover.php:201
|
2106 |
-
#, php-format
|
2107 |
-
msgid ""
|
2108 |
-
"Someone requested that the password be reset for the following account: <b>"
|
2109 |
-
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
2110 |
-
"happen.<br/>To reset your password, visit the following link:%2$s"
|
2111 |
-
msgstr ""
|
2112 |
-
|
2113 |
-
#: ../front-end/recover.php:204
|
2114 |
-
#, php-format
|
2115 |
-
msgid "Password Reset from \"%1$s\""
|
2116 |
-
msgstr ""
|
2117 |
-
|
2118 |
-
#: ../front-end/recover.php:213
|
2119 |
-
#, php-format
|
2120 |
-
msgid "There was an error while trying to send the activation link to %1$s!"
|
2121 |
-
msgstr ""
|
2122 |
-
|
2123 |
-
#: ../front-end/recover.php:222
|
2124 |
-
msgid "The email address entered wasn't found in the database!"
|
2125 |
-
msgstr ""
|
2126 |
-
|
2127 |
-
#: ../front-end/recover.php:222
|
2128 |
-
msgid "Please check that you entered the correct email address."
|
2129 |
-
msgstr ""
|
2130 |
-
|
2131 |
-
#: ../front-end/recover.php:247
|
2132 |
-
msgid "Your password has been successfully changed!"
|
2133 |
-
msgstr ""
|
2134 |
-
|
2135 |
-
#: ../front-end/recover.php:266
|
2136 |
-
#, php-format
|
2137 |
-
msgid "You have successfully reset your password to: %1$s"
|
2138 |
-
msgstr ""
|
2139 |
-
|
2140 |
-
#: ../front-end/recover.php:269 ../front-end/recover.php:283
|
2141 |
-
#, php-format
|
2142 |
-
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
2143 |
-
msgstr ""
|
2144 |
-
|
2145 |
-
#: ../front-end/recover.php:280
|
2146 |
-
#, php-format
|
2147 |
-
msgid ""
|
2148 |
-
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
2149 |
-
"her new password is:%2$s"
|
2150 |
-
msgstr ""
|
2151 |
-
|
2152 |
-
#: ../front-end/recover.php:299
|
2153 |
-
msgid "The entered passwords don't match!"
|
2154 |
-
msgstr ""
|
2155 |
-
|
2156 |
-
#: ../front-end/recover.php:344
|
2157 |
-
msgid "ERROR:"
|
2158 |
-
msgstr ""
|
2159 |
-
|
2160 |
-
#: ../front-end/recover.php:344
|
2161 |
-
msgid "Invalid key!"
|
2162 |
-
msgstr ""
|
2163 |
-
|
2164 |
-
#: ../front-end/register.php:46
|
2165 |
-
msgid "Invalid activation key!"
|
2166 |
-
msgstr ""
|
2167 |
-
|
2168 |
-
#: ../front-end/register.php:50
|
2169 |
-
msgid "This username is now active!"
|
2170 |
-
msgstr ""
|
2171 |
-
|
2172 |
-
#: ../front-end/register.php:71
|
2173 |
-
msgid "This username is already activated!"
|
2174 |
-
msgstr ""
|
2175 |
-
|
2176 |
-
#: ../front-end/register.php:102
|
2177 |
-
msgid "Your email was successfully confirmed."
|
2178 |
-
msgstr ""
|
2179 |
-
|
2180 |
-
#: ../front-end/register.php:112
|
2181 |
-
msgid "There was an error while trying to activate the user."
|
2182 |
-
msgstr ""
|
2183 |
-
|
2184 |
-
#: ../index.php:34
|
2185 |
-
msgid ""
|
2186 |
-
" is also activated. You need to deactivate it before activating this version "
|
2187 |
-
"of the plugin."
|
2188 |
-
msgstr ""
|
2189 |
-
|
2190 |
-
#: ../modules/custom-redirects/custom-redirects.php:35
|
2191 |
-
msgid "Redirects on custom page requests:"
|
2192 |
-
msgstr ""
|
2193 |
-
|
2194 |
-
#: ../modules/custom-redirects/custom-redirects.php:39
|
2195 |
-
#: ../modules/custom-redirects/custom-redirects.php:85
|
2196 |
-
msgid "Action"
|
2197 |
-
msgstr ""
|
2198 |
-
|
2199 |
-
#: ../modules/custom-redirects/custom-redirects.php:40
|
2200 |
-
#: ../modules/custom-redirects/custom-redirects.php:86
|
2201 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
2202 |
-
#: ../modules/multiple-forms/register-forms.php:226
|
2203 |
-
msgid "Redirect"
|
2204 |
-
msgstr ""
|
2205 |
-
|
2206 |
-
#: ../modules/custom-redirects/custom-redirects.php:41
|
2207 |
-
#: ../modules/custom-redirects/custom-redirects.php:87
|
2208 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
2209 |
-
#: ../modules/multiple-forms/register-forms.php:228
|
2210 |
-
msgid "URL"
|
2211 |
-
msgstr ""
|
2212 |
-
|
2213 |
-
#: ../modules/custom-redirects/custom-redirects.php:46
|
2214 |
-
msgid "After Registration:"
|
2215 |
-
msgstr ""
|
2216 |
-
|
2217 |
-
#: ../modules/custom-redirects/custom-redirects.php:48
|
2218 |
-
#: ../modules/custom-redirects/custom-redirects.php:58
|
2219 |
-
#: ../modules/custom-redirects/custom-redirects.php:68
|
2220 |
-
#: ../modules/custom-redirects/custom-redirects.php:94
|
2221 |
-
#: ../modules/custom-redirects/custom-redirects.php:104
|
2222 |
-
#: ../modules/custom-redirects/custom-redirects.php:114
|
2223 |
-
#: ../modules/custom-redirects/custom-redirects.php:124
|
2224 |
-
#: ../modules/modules.php:99 ../modules/modules.php:106
|
2225 |
-
#: ../modules/modules.php:113 ../modules/modules.php:120
|
2226 |
-
#: ../modules/modules.php:127 ../modules/modules.php:134
|
2227 |
-
msgid "Active"
|
2228 |
-
msgstr ""
|
2229 |
-
|
2230 |
-
#: ../modules/custom-redirects/custom-redirects.php:49
|
2231 |
-
#: ../modules/custom-redirects/custom-redirects.php:59
|
2232 |
-
#: ../modules/custom-redirects/custom-redirects.php:69
|
2233 |
-
#: ../modules/custom-redirects/custom-redirects.php:95
|
2234 |
-
#: ../modules/custom-redirects/custom-redirects.php:105
|
2235 |
-
#: ../modules/custom-redirects/custom-redirects.php:115
|
2236 |
-
#: ../modules/custom-redirects/custom-redirects.php:125
|
2237 |
-
#: ../modules/modules.php:100 ../modules/modules.php:107
|
2238 |
-
#: ../modules/modules.php:114 ../modules/modules.php:121
|
2239 |
-
#: ../modules/modules.php:128 ../modules/modules.php:135
|
2240 |
-
msgid "Inactive"
|
2241 |
-
msgstr ""
|
2242 |
-
|
2243 |
-
#: ../modules/custom-redirects/custom-redirects.php:56
|
2244 |
-
msgid "After Login:"
|
2245 |
-
msgstr ""
|
2246 |
-
|
2247 |
-
#: ../modules/custom-redirects/custom-redirects.php:66
|
2248 |
-
msgid "Recover Password (*)"
|
2249 |
-
msgstr ""
|
2250 |
-
|
2251 |
-
#: ../modules/custom-redirects/custom-redirects.php:77
|
2252 |
-
msgid ""
|
2253 |
-
"When activated this feature will redirect the user on both the default "
|
2254 |
-
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
2255 |
-
"Profile Builder on the front-end login page."
|
2256 |
-
msgstr ""
|
2257 |
-
|
2258 |
-
#: ../modules/custom-redirects/custom-redirects.php:81
|
2259 |
-
msgid "Redirects on default WordPress page requests:"
|
2260 |
-
msgstr ""
|
2261 |
-
|
2262 |
-
#: ../modules/custom-redirects/custom-redirects.php:92
|
2263 |
-
msgid "Default WordPress Login Page"
|
2264 |
-
msgstr ""
|
2265 |
-
|
2266 |
-
#: ../modules/custom-redirects/custom-redirects.php:102
|
2267 |
-
msgid "Default WordPress Logout Page"
|
2268 |
-
msgstr ""
|
2269 |
-
|
2270 |
-
#: ../modules/custom-redirects/custom-redirects.php:112
|
2271 |
-
msgid "Default WordPress Register Page"
|
2272 |
-
msgstr ""
|
2273 |
-
|
2274 |
-
#: ../modules/custom-redirects/custom-redirects.php:122
|
2275 |
-
msgid "Default WordPress Dashboard (*)"
|
2276 |
-
msgstr ""
|
2277 |
-
|
2278 |
-
#: ../modules/custom-redirects/custom-redirects.php:133
|
2279 |
-
msgid ""
|
2280 |
-
"Redirects every user-role EXCEPT the ones with administrator privileges (can "
|
2281 |
-
"manage options)."
|
2282 |
-
msgstr ""
|
2283 |
-
|
2284 |
-
#: ../modules/email-customizer/admin-email-customizer.php:11
|
2285 |
-
#: ../modules/email-customizer/admin-email-customizer.php:12
|
2286 |
-
#: ../modules/modules.php:118
|
2287 |
-
msgid "Admin Email Customizer"
|
2288 |
-
msgstr ""
|
2289 |
-
|
2290 |
-
#: ../modules/email-customizer/admin-email-customizer.php:38
|
2291 |
-
msgid ""
|
2292 |
-
"These settings are also replicated in the \"User Email Customizer\" settings-"
|
2293 |
-
"page upon save."
|
2294 |
-
msgstr ""
|
2295 |
-
|
2296 |
-
#: ../modules/email-customizer/admin-email-customizer.php:38
|
2297 |
-
#: ../modules/email-customizer/user-email-customizer.php:38
|
2298 |
-
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
2299 |
-
msgstr ""
|
2300 |
-
|
2301 |
-
#: ../modules/email-customizer/admin-email-customizer.php:41
|
2302 |
-
#: ../modules/email-customizer/user-email-customizer.php:41
|
2303 |
-
msgid "From (name)"
|
2304 |
-
msgstr ""
|
2305 |
-
|
2306 |
-
#: ../modules/email-customizer/admin-email-customizer.php:49
|
2307 |
-
#: ../modules/email-customizer/user-email-customizer.php:49
|
2308 |
-
msgid "From (reply-to email)"
|
2309 |
-
msgstr ""
|
2310 |
-
|
2311 |
-
#: ../modules/email-customizer/admin-email-customizer.php:54
|
2312 |
-
#: ../modules/email-customizer/user-email-customizer.php:54
|
2313 |
-
msgid ""
|
2314 |
-
"Must be a valid email address or the tag {{reply_to}} which defaults to the "
|
2315 |
-
"administrator email"
|
2316 |
-
msgstr ""
|
2317 |
-
|
2318 |
-
#: ../modules/email-customizer/admin-email-customizer.php:57
|
2319 |
-
#: ../modules/email-customizer/user-email-customizer.php:57
|
2320 |
-
msgid "Common Settings"
|
2321 |
-
msgstr ""
|
2322 |
-
|
2323 |
-
#: ../modules/email-customizer/admin-email-customizer.php:60
|
2324 |
-
msgid ""
|
2325 |
-
"\n"
|
2326 |
-
"<p>New subscriber on {{site_name}}.</p>\n"
|
2327 |
-
"<p>Username:{{username}}</p>\n"
|
2328 |
-
"<p>E-mail:{{user_email}}</p>\n"
|
2329 |
-
msgstr ""
|
2330 |
-
|
2331 |
-
#: ../modules/email-customizer/admin-email-customizer.php:69
|
2332 |
-
#: ../modules/email-customizer/admin-email-customizer.php:99
|
2333 |
-
#: ../modules/email-customizer/admin-email-customizer.php:126
|
2334 |
-
#: ../modules/email-customizer/user-email-customizer.php:71
|
2335 |
-
#: ../modules/email-customizer/user-email-customizer.php:99
|
2336 |
-
#: ../modules/email-customizer/user-email-customizer.php:128
|
2337 |
-
#: ../modules/email-customizer/user-email-customizer.php:155
|
2338 |
-
#: ../modules/email-customizer/user-email-customizer.php:183
|
2339 |
-
#: ../modules/email-customizer/user-email-customizer.php:214
|
2340 |
-
#: ../modules/email-customizer/user-email-customizer.php:241
|
2341 |
-
msgid "Email Subject"
|
2342 |
-
msgstr ""
|
2343 |
-
|
2344 |
-
#: ../modules/email-customizer/admin-email-customizer.php:84
|
2345 |
-
msgid "Default Registration & Registration with Email Confirmation"
|
2346 |
-
msgstr ""
|
2347 |
-
|
2348 |
-
#: ../modules/email-customizer/admin-email-customizer.php:87
|
2349 |
-
msgid ""
|
2350 |
-
"\n"
|
2351 |
-
"<p>New subscriber on {{site_name}}.</p>\n"
|
2352 |
-
"<p>Username:{{username}}</p>\n"
|
2353 |
-
"<p>E-mail:{{user_email}}</p>\n"
|
2354 |
-
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
2355 |
-
"so please remember that you need to approve this user before he/she can log "
|
2356 |
-
"in!</p>\n"
|
2357 |
-
msgstr ""
|
2358 |
-
|
2359 |
-
#: ../modules/email-customizer/admin-email-customizer.php:114
|
2360 |
-
#: ../modules/email-customizer/user-email-customizer.php:143
|
2361 |
-
msgid "Registration with Admin Approval"
|
2362 |
-
msgstr ""
|
2363 |
-
|
2364 |
-
#: ../modules/email-customizer/admin-email-customizer.php:117
|
2365 |
-
msgid ""
|
2366 |
-
"\n"
|
2367 |
-
"<p>{{username}} has requested a password change via the password reset "
|
2368 |
-
"feature.</p>\n"
|
2369 |
-
"<p>His/her new password is: {{password}}</p>\n"
|
2370 |
-
msgstr ""
|
2371 |
-
|
2372 |
-
#: ../modules/email-customizer/admin-email-customizer.php:141
|
2373 |
-
msgid "Admin Notification for User Password Reset"
|
2374 |
-
msgstr ""
|
2375 |
-
|
2376 |
-
#: ../modules/email-customizer/email-customizer.php:7
|
2377 |
-
msgid "Available Tags"
|
2378 |
-
msgstr ""
|
2379 |
-
|
2380 |
-
#: ../modules/email-customizer/email-customizer.php:21
|
2381 |
-
msgid "Site Url"
|
2382 |
-
msgstr ""
|
2383 |
-
|
2384 |
-
#: ../modules/email-customizer/email-customizer.php:22
|
2385 |
-
msgid "Site Name"
|
2386 |
-
msgstr ""
|
2387 |
-
|
2388 |
-
#: ../modules/email-customizer/email-customizer.php:25
|
2389 |
-
#: ../modules/user-listing/userlisting.php:133
|
2390 |
-
msgid "User Id"
|
2391 |
-
msgstr ""
|
2392 |
-
|
2393 |
-
#: ../modules/email-customizer/email-customizer.php:31
|
2394 |
-
msgid "User Role"
|
2395 |
-
msgstr ""
|
2396 |
-
|
2397 |
-
#: ../modules/email-customizer/email-customizer.php:33
|
2398 |
-
msgid "Reply To"
|
2399 |
-
msgstr ""
|
2400 |
-
|
2401 |
-
#: ../modules/email-customizer/email-customizer.php:36
|
2402 |
-
msgid "Activation Key"
|
2403 |
-
msgstr ""
|
2404 |
-
|
2405 |
-
#: ../modules/email-customizer/email-customizer.php:37
|
2406 |
-
msgid "Activation Url"
|
2407 |
-
msgstr ""
|
2408 |
-
|
2409 |
-
#: ../modules/email-customizer/email-customizer.php:38
|
2410 |
-
msgid "Activation Link"
|
2411 |
-
msgstr ""
|
2412 |
-
|
2413 |
-
#: ../modules/email-customizer/email-customizer.php:42
|
2414 |
-
msgid "Reset Key"
|
2415 |
-
msgstr ""
|
2416 |
-
|
2417 |
-
#: ../modules/email-customizer/email-customizer.php:43
|
2418 |
-
msgid "Reset Url"
|
2419 |
-
msgstr ""
|
2420 |
-
|
2421 |
-
#: ../modules/email-customizer/email-customizer.php:44
|
2422 |
-
msgid "Reset Link"
|
2423 |
-
msgstr ""
|
2424 |
-
|
2425 |
-
#: ../modules/email-customizer/user-email-customizer.php:11
|
2426 |
-
#: ../modules/email-customizer/user-email-customizer.php:12
|
2427 |
-
#: ../modules/modules.php:125
|
2428 |
-
msgid "User Email Customizer"
|
2429 |
-
msgstr ""
|
2430 |
-
|
2431 |
-
#: ../modules/email-customizer/user-email-customizer.php:38
|
2432 |
-
msgid ""
|
2433 |
-
"These settings are also replicated in the \"Admin Email Customizer\" "
|
2434 |
-
"settings-page upon save."
|
2435 |
-
msgstr ""
|
2436 |
-
|
2437 |
-
#: ../modules/email-customizer/user-email-customizer.php:64
|
2438 |
-
msgid ""
|
2439 |
-
"\n"
|
2440 |
-
"<h3>Welcome to {{site_name}}!</h3>\n"
|
2441 |
-
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
2442 |
-
msgstr ""
|
2443 |
-
|
2444 |
-
#: ../modules/email-customizer/user-email-customizer.php:85
|
2445 |
-
msgid "Default Registration"
|
2446 |
-
msgstr ""
|
2447 |
-
|
2448 |
-
#: ../modules/email-customizer/user-email-customizer.php:91
|
2449 |
-
msgid ""
|
2450 |
-
"\n"
|
2451 |
-
"<p>To activate your user, please click the following link:<br/>\n"
|
2452 |
-
"{{{activation_link}}}</p>\n"
|
2453 |
-
"<p>After you activate, you will receive another email with your credentials."
|
2454 |
-
"</p>\n"
|
2455 |
-
msgstr ""
|
2456 |
-
|
2457 |
-
#: ../modules/email-customizer/user-email-customizer.php:103
|
2458 |
-
msgid "[{{site_name}}] Activate {{username}}"
|
2459 |
-
msgstr ""
|
2460 |
-
|
2461 |
-
#: ../modules/email-customizer/user-email-customizer.php:114
|
2462 |
-
msgid "Registration with Email Confirmation"
|
2463 |
-
msgstr ""
|
2464 |
-
|
2465 |
-
#: ../modules/email-customizer/user-email-customizer.php:120
|
2466 |
-
msgid ""
|
2467 |
-
"\n"
|
2468 |
-
"<h3>Welcome to {{site_name}}!</h3>\n"
|
2469 |
-
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
2470 |
-
"<p>Before you can access your account, an administrator needs to approve it. "
|
2471 |
-
"You will be notified via email.</p>\n"
|
2472 |
-
msgstr ""
|
2473 |
-
|
2474 |
-
#: ../modules/email-customizer/user-email-customizer.php:132
|
2475 |
-
msgid "A new account has been created for you on {{site_name}}"
|
2476 |
-
msgstr ""
|
2477 |
-
|
2478 |
-
#: ../modules/email-customizer/user-email-customizer.php:148
|
2479 |
-
msgid ""
|
2480 |
-
"\n"
|
2481 |
-
"<h3>Good News!</h3>\n"
|
2482 |
-
"<p>An administrator has just approved your account: {{username}} on "
|
2483 |
-
"{{site_name}}.</p>\n"
|
2484 |
-
msgstr ""
|
2485 |
-
|
2486 |
-
#: ../modules/email-customizer/user-email-customizer.php:159
|
2487 |
-
msgid "Your account on {{site_name}} has been approved!"
|
2488 |
-
msgstr ""
|
2489 |
-
|
2490 |
-
#: ../modules/email-customizer/user-email-customizer.php:170
|
2491 |
-
msgid "User Approval Notification"
|
2492 |
-
msgstr ""
|
2493 |
-
|
2494 |
-
#: ../modules/email-customizer/user-email-customizer.php:175
|
2495 |
-
msgid ""
|
2496 |
-
"\n"
|
2497 |
-
"<h3>Hello,</h3>\n"
|
2498 |
-
"<p>Unfortunatelly an administrator has just unapproved your account: "
|
2499 |
-
"{{username}} on {{site_name}}.</p>\n"
|
2500 |
-
msgstr ""
|
2501 |
-
|
2502 |
-
#: ../modules/email-customizer/user-email-customizer.php:187
|
2503 |
-
msgid "Your account on {{site_name}} has been unapproved!"
|
2504 |
-
msgstr ""
|
2505 |
-
|
2506 |
-
#: ../modules/email-customizer/user-email-customizer.php:198
|
2507 |
-
msgid "Unapproved User Notification"
|
2508 |
-
msgstr ""
|
2509 |
-
|
2510 |
-
#: ../modules/email-customizer/user-email-customizer.php:204
|
2511 |
-
msgid ""
|
2512 |
-
"\n"
|
2513 |
-
"<p>Someone requested that the password be reset for the following account: "
|
2514 |
-
"{{site_name}}<br/>\n"
|
2515 |
-
"Username: {{username}}</p>\n"
|
2516 |
-
"<p>If this was a mistake, just ignore this email and nothing will happen.</"
|
2517 |
-
"p>\n"
|
2518 |
-
"<p>To reset your password, visit the following address:<br/>\n"
|
2519 |
-
"{{{reset_link}}}</p>\n"
|
2520 |
-
msgstr ""
|
2521 |
-
|
2522 |
-
#: ../modules/email-customizer/user-email-customizer.php:218
|
2523 |
-
msgid "[{{site_name}}] Password Reset"
|
2524 |
-
msgstr ""
|
2525 |
-
|
2526 |
-
#: ../modules/email-customizer/user-email-customizer.php:229
|
2527 |
-
msgid "Password Reset Email"
|
2528 |
-
msgstr ""
|
2529 |
-
|
2530 |
-
#: ../modules/email-customizer/user-email-customizer.php:235
|
2531 |
-
msgid ""
|
2532 |
-
"\n"
|
2533 |
-
"<p>You have successfully reset your password to: {{password}}</p>\n"
|
2534 |
-
msgstr ""
|
2535 |
-
|
2536 |
-
#: ../modules/email-customizer/user-email-customizer.php:245
|
2537 |
-
msgid "[{{site_name}}] Password Reset Successfully"
|
2538 |
-
msgstr ""
|
2539 |
-
|
2540 |
-
#: ../modules/email-customizer/user-email-customizer.php:256
|
2541 |
-
msgid "Password Reset Success Email"
|
2542 |
-
msgstr ""
|
2543 |
-
|
2544 |
-
#: ../modules/modules.php:11 ../modules/modules.php:80
|
2545 |
-
msgid "Modules"
|
2546 |
-
msgstr ""
|
2547 |
-
|
2548 |
-
#: ../modules/modules.php:81
|
2549 |
-
msgid ""
|
2550 |
-
"Here you can activate / deactivate available modules for Profile Builder."
|
2551 |
-
msgstr ""
|
2552 |
-
|
2553 |
-
#: ../modules/modules.php:91
|
2554 |
-
msgid "Name/Description"
|
2555 |
-
msgstr ""
|
2556 |
-
|
2557 |
-
#: ../modules/modules.php:92
|
2558 |
-
msgid "Status"
|
2559 |
-
msgstr ""
|
2560 |
-
|
2561 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:11
|
2562 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:12
|
2563 |
-
msgid "Edit-profile Form"
|
2564 |
-
msgstr ""
|
2565 |
-
|
2566 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:13
|
2567 |
-
#: ../modules/multiple-forms/register-forms.php:13
|
2568 |
-
#: ../modules/user-listing/userlisting.php:13
|
2569 |
-
msgid "Add New"
|
2570 |
-
msgstr ""
|
2571 |
-
|
2572 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:14
|
2573 |
-
msgid "Add new Edit-profile Form"
|
2574 |
-
msgstr ""
|
2575 |
-
|
2576 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:15
|
2577 |
-
msgid "Edit the Edit-profile Forms"
|
2578 |
-
msgstr ""
|
2579 |
-
|
2580 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:16
|
2581 |
-
msgid "New Edit-profile Form"
|
2582 |
-
msgstr ""
|
2583 |
-
|
2584 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:17
|
2585 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:23
|
2586 |
-
msgid "Edit-profile Forms"
|
2587 |
-
msgstr ""
|
2588 |
-
|
2589 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:18
|
2590 |
-
msgid "View the Edit-profile Form"
|
2591 |
-
msgstr ""
|
2592 |
-
|
2593 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:19
|
2594 |
-
msgid "Search the Edit-profile Forms"
|
2595 |
-
msgstr ""
|
2596 |
-
|
2597 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:20
|
2598 |
-
msgid "No Edit-profile Form found"
|
2599 |
-
msgstr ""
|
2600 |
-
|
2601 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:21
|
2602 |
-
msgid "No Edit-profile Forms found in trash"
|
2603 |
-
msgstr ""
|
2604 |
-
|
2605 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:131
|
2606 |
-
#: ../modules/multiple-forms/register-forms.php:134
|
2607 |
-
#: ../modules/user-listing/userlisting.php:1140
|
2608 |
-
msgid "Shortcode"
|
2609 |
-
msgstr ""
|
2610 |
-
|
2611 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:151
|
2612 |
-
#: ../modules/multiple-forms/register-forms.php:155
|
2613 |
-
#: ../modules/user-listing/userlisting.php:1161
|
2614 |
-
msgid "(no title)"
|
2615 |
-
msgstr ""
|
2616 |
-
|
2617 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:171
|
2618 |
-
#: ../modules/multiple-forms/register-forms.php:174
|
2619 |
-
#: ../modules/user-listing/userlisting.php:1181
|
2620 |
-
msgid "The shortcode will be available after you publish this form."
|
2621 |
-
msgstr ""
|
2622 |
-
|
2623 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:173
|
2624 |
-
#: ../modules/multiple-forms/register-forms.php:176
|
2625 |
-
#: ../modules/user-listing/userlisting.php:1183
|
2626 |
-
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2627 |
-
msgstr ""
|
2628 |
-
|
2629 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2630 |
-
#: ../modules/multiple-forms/register-forms.php:180
|
2631 |
-
#: ../modules/user-listing/userlisting.php:1187
|
2632 |
-
msgid ""
|
2633 |
-
"<span style=\"color:red;\">Note:</span> changing the form title also changes "
|
2634 |
-
"the shortcode!"
|
2635 |
-
msgstr ""
|
2636 |
-
|
2637 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:183
|
2638 |
-
#: ../modules/multiple-forms/register-forms.php:186
|
2639 |
-
#: ../modules/user-listing/userlisting.php:1220
|
2640 |
-
msgid "Form Shortcode"
|
2641 |
-
msgstr ""
|
2642 |
-
|
2643 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
2644 |
-
#: ../modules/multiple-forms/register-forms.php:226
|
2645 |
-
msgid "Whether to redirect the user to a specific page or not"
|
2646 |
-
msgstr ""
|
2647 |
-
|
2648 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
2649 |
-
#: ../modules/multiple-forms/register-forms.php:227
|
2650 |
-
msgid "Display Messages"
|
2651 |
-
msgstr ""
|
2652 |
-
|
2653 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
2654 |
-
#: ../modules/multiple-forms/register-forms.php:227
|
2655 |
-
msgid "Allowed time to display any success messages (in seconds)"
|
2656 |
-
msgstr ""
|
2657 |
-
|
2658 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
2659 |
-
msgid ""
|
2660 |
-
"Specify the URL of the page users will be redirected once they updated their "
|
2661 |
-
"profile using this form<br/>Use the following format: http://www.mysite.com"
|
2662 |
-
msgstr ""
|
2663 |
-
|
2664 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:211
|
2665 |
-
msgid "After Profile Update..."
|
2666 |
-
msgstr ""
|
2667 |
-
|
2668 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:237
|
2669 |
-
#: ../modules/multiple-forms/register-forms.php:258
|
2670 |
-
msgid "Add New Field to the List"
|
2671 |
-
msgstr ""
|
2672 |
-
|
2673 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
2674 |
-
#: ../modules/multiple-forms/register-forms.php:262
|
2675 |
-
msgid "Choose one of the supported fields you manage <a href=\""
|
2676 |
-
msgstr ""
|
2677 |
-
|
2678 |
-
#: ../modules/multiple-forms/edit-profile-forms.php:270
|
2679 |
-
msgid "This form is empty."
|
2680 |
-
msgstr ""
|
2681 |
-
|
2682 |
-
#: ../modules/multiple-forms/multiple-forms.php:232
|
2683 |
-
msgid "You need to specify the title of the form before creating it"
|
2684 |
-
msgstr ""
|
2685 |
-
|
2686 |
-
#: ../modules/multiple-forms/multiple-forms.php:416
|
2687 |
-
msgid "<pre>Title (Type)</pre>"
|
2688 |
-
msgstr ""
|
2689 |
-
|
2690 |
-
#: ../modules/multiple-forms/multiple-forms.php:416
|
2691 |
-
msgid "Delete all items"
|
2692 |
-
msgstr ""
|
2693 |
-
|
2694 |
-
#: ../modules/multiple-forms/multiple-forms.php:416
|
2695 |
-
msgid "Delete all"
|
2696 |
-
msgstr ""
|
2697 |
-
|
2698 |
-
#: ../modules/multiple-forms/register-forms.php:11
|
2699 |
-
#: ../modules/multiple-forms/register-forms.php:12
|
2700 |
-
msgid "Registration Form"
|
2701 |
-
msgstr ""
|
2702 |
-
|
2703 |
-
#: ../modules/multiple-forms/register-forms.php:14
|
2704 |
-
msgid "Add new Registration Form"
|
2705 |
-
msgstr ""
|
2706 |
-
|
2707 |
-
#: ../modules/multiple-forms/register-forms.php:15
|
2708 |
-
msgid "Edit the Registration Forms"
|
2709 |
-
msgstr ""
|
2710 |
-
|
2711 |
-
#: ../modules/multiple-forms/register-forms.php:16
|
2712 |
-
msgid "New Registration Form"
|
2713 |
-
msgstr ""
|
2714 |
-
|
2715 |
-
#: ../modules/multiple-forms/register-forms.php:17
|
2716 |
-
#: ../modules/multiple-forms/register-forms.php:23
|
2717 |
-
msgid "Registration Forms"
|
2718 |
-
msgstr ""
|
2719 |
-
|
2720 |
-
#: ../modules/multiple-forms/register-forms.php:18
|
2721 |
-
msgid "View the Registration Form"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: ../modules/multiple-forms/register-forms.php:19
|
2725 |
-
msgid "Search the Registration Forms"
|
2726 |
-
msgstr ""
|
2727 |
-
|
2728 |
-
#: ../modules/multiple-forms/register-forms.php:20
|
2729 |
-
msgid "No Registration Form found"
|
2730 |
-
msgstr ""
|
2731 |
-
|
2732 |
-
#: ../modules/multiple-forms/register-forms.php:21
|
2733 |
-
msgid "No Registration Forms found in trash"
|
2734 |
-
msgstr ""
|
2735 |
-
|
2736 |
-
#: ../modules/multiple-forms/register-forms.php:215
|
2737 |
-
msgid "Default Role"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: ../modules/multiple-forms/register-forms.php:224
|
2741 |
-
msgid "Set Role"
|
2742 |
-
msgstr ""
|
2743 |
-
|
2744 |
-
#: ../modules/multiple-forms/register-forms.php:224
|
2745 |
-
msgid ""
|
2746 |
-
"Choose what role the user will have after (s)he registered<br/>If not "
|
2747 |
-
"specified, defaults to the role set in the WordPress settings"
|
2748 |
-
msgstr ""
|
2749 |
-
|
2750 |
-
#: ../modules/multiple-forms/register-forms.php:225
|
2751 |
-
msgid "Automatically Log In"
|
2752 |
-
msgstr ""
|
2753 |
-
|
2754 |
-
#: ../modules/multiple-forms/register-forms.php:225
|
2755 |
-
msgid ""
|
2756 |
-
"Whether to automatically log in the newly registered user or not<br/>Only "
|
2757 |
-
"works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
|
2758 |
-
"features activated<br/>WARNING: Caching the registration form will make "
|
2759 |
-
"automatic login not work"
|
2760 |
-
msgstr ""
|
2761 |
-
|
2762 |
-
#: ../modules/multiple-forms/register-forms.php:226
|
2763 |
-
msgid "Choose..."
|
2764 |
-
msgstr ""
|
2765 |
-
|
2766 |
-
#: ../modules/multiple-forms/register-forms.php:228
|
2767 |
-
msgid ""
|
2768 |
-
"Specify the URL of the page users will be redirected once registered using "
|
2769 |
-
"this form<br/>Use the following format: http://www.mysite.com"
|
2770 |
-
msgstr ""
|
2771 |
-
|
2772 |
-
#: ../modules/multiple-forms/register-forms.php:234
|
2773 |
-
msgid "After Registration..."
|
2774 |
-
msgstr ""
|
2775 |
-
|
2776 |
-
#: ../modules/user-listing/class-userlisting.php:466
|
2777 |
-
#: ../modules/user-listing/userlisting.php:709
|
2778 |
-
#: ../modules/user-listing/userlisting.php:953
|
2779 |
-
#: ../modules/user-listing/userlisting.php:996
|
2780 |
-
#: ../modules/user-listing/userlisting.php:1340
|
2781 |
-
msgid "Search Users by All Fields"
|
2782 |
-
msgstr ""
|
2783 |
-
|
2784 |
-
#: ../modules/user-listing/userlisting.php:14
|
2785 |
-
msgid "Add new User Listing"
|
2786 |
-
msgstr ""
|
2787 |
-
|
2788 |
-
#: ../modules/user-listing/userlisting.php:15
|
2789 |
-
msgid "Edit the User Listing"
|
2790 |
-
msgstr ""
|
2791 |
-
|
2792 |
-
#: ../modules/user-listing/userlisting.php:16
|
2793 |
-
msgid "New User Listing"
|
2794 |
-
msgstr ""
|
2795 |
-
|
2796 |
-
#: ../modules/user-listing/userlisting.php:18
|
2797 |
-
msgid "View the User Listing"
|
2798 |
-
msgstr ""
|
2799 |
-
|
2800 |
-
#: ../modules/user-listing/userlisting.php:19
|
2801 |
-
msgid "Search the User Listing"
|
2802 |
-
msgstr ""
|
2803 |
-
|
2804 |
-
#: ../modules/user-listing/userlisting.php:20
|
2805 |
-
msgid "No User Listing found"
|
2806 |
-
msgstr ""
|
2807 |
-
|
2808 |
-
#: ../modules/user-listing/userlisting.php:21
|
2809 |
-
msgid "No User Listing found in trash"
|
2810 |
-
msgstr ""
|
2811 |
-
|
2812 |
-
#: ../modules/user-listing/userlisting.php:95
|
2813 |
-
msgid "Display name as"
|
2814 |
-
msgstr ""
|
2815 |
-
|
2816 |
-
#: ../modules/user-listing/userlisting.php:125
|
2817 |
-
#: ../modules/user-listing/userlisting.php:1248
|
2818 |
-
msgid "Registration Date"
|
2819 |
-
msgstr ""
|
2820 |
-
|
2821 |
-
#: ../modules/user-listing/userlisting.php:126
|
2822 |
-
#: ../modules/user-listing/userlisting.php:1252
|
2823 |
-
msgid "Number of Posts"
|
2824 |
-
msgstr ""
|
2825 |
-
|
2826 |
-
#: ../modules/user-listing/userlisting.php:130
|
2827 |
-
msgid "More Info"
|
2828 |
-
msgstr ""
|
2829 |
-
|
2830 |
-
#: ../modules/user-listing/userlisting.php:131
|
2831 |
-
msgid "More Info Url"
|
2832 |
-
msgstr ""
|
2833 |
-
|
2834 |
-
#: ../modules/user-listing/userlisting.php:132
|
2835 |
-
msgid "Avatar or Gravatar"
|
2836 |
-
msgstr ""
|
2837 |
-
|
2838 |
-
#: ../modules/user-listing/userlisting.php:134
|
2839 |
-
msgid "User Nicename"
|
2840 |
-
msgstr ""
|
2841 |
-
|
2842 |
-
#: ../modules/user-listing/userlisting.php:161
|
2843 |
-
msgid "Meta Variables"
|
2844 |
-
msgstr ""
|
2845 |
-
|
2846 |
-
#: ../modules/user-listing/userlisting.php:167
|
2847 |
-
msgid "Sort Variables"
|
2848 |
-
msgstr ""
|
2849 |
-
|
2850 |
-
#: ../modules/user-listing/userlisting.php:171
|
2851 |
-
#: ../modules/user-listing/userlisting.php:198
|
2852 |
-
msgid "Extra Functions"
|
2853 |
-
msgstr ""
|
2854 |
-
|
2855 |
-
#: ../modules/user-listing/userlisting.php:173
|
2856 |
-
msgid "Pagination"
|
2857 |
-
msgstr ""
|
2858 |
-
|
2859 |
-
#: ../modules/user-listing/userlisting.php:174
|
2860 |
-
msgid "Search all Fields"
|
2861 |
-
msgstr ""
|
2862 |
-
|
2863 |
-
#: ../modules/user-listing/userlisting.php:200
|
2864 |
-
msgid "Go Back Link"
|
2865 |
-
msgstr ""
|
2866 |
-
|
2867 |
-
#: ../modules/user-listing/userlisting.php:218
|
2868 |
-
msgid "All-userlisting Template"
|
2869 |
-
msgstr ""
|
2870 |
-
|
2871 |
-
#: ../modules/user-listing/userlisting.php:221
|
2872 |
-
msgid "Single-userlisting Template"
|
2873 |
-
msgstr ""
|
2874 |
-
|
2875 |
-
#: ../modules/user-listing/userlisting.php:338
|
2876 |
-
msgid "You do not have permission to view this user list"
|
2877 |
-
msgstr ""
|
2878 |
-
|
2879 |
-
#: ../modules/user-listing/userlisting.php:351
|
2880 |
-
msgid "You do not have the required user role to view this user list"
|
2881 |
-
msgstr ""
|
2882 |
-
|
2883 |
-
#: ../modules/user-listing/userlisting.php:364
|
2884 |
-
msgid "User not found"
|
2885 |
-
msgstr ""
|
2886 |
-
|
2887 |
-
#: ../modules/user-listing/userlisting.php:442
|
2888 |
-
msgid "None"
|
2889 |
-
msgstr ""
|
2890 |
-
|
2891 |
-
#: ../modules/user-listing/userlisting.php:599
|
2892 |
-
msgid "First/Lastname"
|
2893 |
-
msgstr ""
|
2894 |
-
|
2895 |
-
#: ../modules/user-listing/userlisting.php:605
|
2896 |
-
msgid "Sign-up Date"
|
2897 |
-
msgstr ""
|
2898 |
-
|
2899 |
-
#: ../modules/user-listing/userlisting.php:614
|
2900 |
-
#: ../modules/user-listing/userlisting.php:1251
|
2901 |
-
msgid "Display Name"
|
2902 |
-
msgstr ""
|
2903 |
-
|
2904 |
-
#: ../modules/user-listing/userlisting.php:623
|
2905 |
-
msgid "Posts"
|
2906 |
-
msgstr ""
|
2907 |
-
|
2908 |
-
#: ../modules/user-listing/userlisting.php:626
|
2909 |
-
#: ../modules/user-listing/userlisting.php:1257
|
2910 |
-
msgid "Aim"
|
2911 |
-
msgstr ""
|
2912 |
-
|
2913 |
-
#: ../modules/user-listing/userlisting.php:629
|
2914 |
-
#: ../modules/user-listing/userlisting.php:1258
|
2915 |
-
msgid "Yim"
|
2916 |
-
msgstr ""
|
2917 |
-
|
2918 |
-
#: ../modules/user-listing/userlisting.php:632
|
2919 |
-
#: ../modules/user-listing/userlisting.php:1259
|
2920 |
-
msgid "Jabber"
|
2921 |
-
msgstr ""
|
2922 |
-
|
2923 |
-
#: ../modules/user-listing/userlisting.php:812
|
2924 |
-
msgid "Click here to see more information about this user"
|
2925 |
-
msgstr ""
|
2926 |
-
|
2927 |
-
#: ../modules/user-listing/userlisting.php:812
|
2928 |
-
msgid "More..."
|
2929 |
-
msgstr ""
|
2930 |
-
|
2931 |
-
#: ../modules/user-listing/userlisting.php:815
|
2932 |
-
msgid "Click here to see more information about this user."
|
2933 |
-
msgstr ""
|
2934 |
-
|
2935 |
-
#: ../modules/user-listing/userlisting.php:907
|
2936 |
-
#: ../modules/user-listing/userlisting.php:910
|
2937 |
-
msgid "Click here to go back"
|
2938 |
-
msgstr ""
|
2939 |
-
|
2940 |
-
#: ../modules/user-listing/userlisting.php:907
|
2941 |
-
msgid "Back"
|
2942 |
-
msgstr ""
|
2943 |
-
|
2944 |
-
#: ../modules/user-listing/userlisting.php:940
|
2945 |
-
msgid "«« First"
|
2946 |
-
msgstr ""
|
2947 |
-
|
2948 |
-
#: ../modules/user-listing/userlisting.php:941
|
2949 |
-
msgid "« Prev"
|
2950 |
-
msgstr ""
|
2951 |
-
|
2952 |
-
#: ../modules/user-listing/userlisting.php:942
|
2953 |
-
msgid "Next » "
|
2954 |
-
msgstr ""
|
2955 |
-
|
2956 |
-
#: ../modules/user-listing/userlisting.php:943
|
2957 |
-
msgid "Last »»"
|
2958 |
-
msgstr ""
|
2959 |
-
|
2960 |
-
#: ../modules/user-listing/userlisting.php:972
|
2961 |
-
msgid "You don't have any pagination settings on this userlisting!"
|
2962 |
-
msgstr ""
|
2963 |
-
|
2964 |
-
#: ../modules/user-listing/userlisting.php:1013
|
2965 |
-
msgid "Search"
|
2966 |
-
msgstr ""
|
2967 |
-
|
2968 |
-
#: ../modules/user-listing/userlisting.php:1014
|
2969 |
-
msgid "Clear Results"
|
2970 |
-
msgstr ""
|
2971 |
-
|
2972 |
-
#: ../modules/user-listing/userlisting.php:1190
|
2973 |
-
#: ../modules/user-listing/userlisting.php:1194
|
2974 |
-
msgid "Extra shortcode parameters"
|
2975 |
-
msgstr ""
|
2976 |
-
|
2977 |
-
#: ../modules/user-listing/userlisting.php:1192
|
2978 |
-
msgid "View all extra shortcode parameters"
|
2979 |
-
msgstr ""
|
2980 |
-
|
2981 |
-
#: ../modules/user-listing/userlisting.php:1197
|
2982 |
-
msgid ""
|
2983 |
-
"displays users having a certain meta-value within a certain (extra) meta-"
|
2984 |
-
"field"
|
2985 |
-
msgstr ""
|
2986 |
-
|
2987 |
-
#: ../modules/user-listing/userlisting.php:1198
|
2988 |
-
msgid "Example:"
|
2989 |
-
msgstr ""
|
2990 |
-
|
2991 |
-
#: ../modules/user-listing/userlisting.php:1200
|
2992 |
-
msgid ""
|
2993 |
-
"Remember though, that the field-value combination must exist in the database."
|
2994 |
-
msgstr ""
|
2995 |
-
|
2996 |
-
#: ../modules/user-listing/userlisting.php:1206
|
2997 |
-
msgid "displays only the users that you specified the user_id for"
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
#: ../modules/user-listing/userlisting.php:1212
|
3001 |
-
msgid "displays all users except the ones you specified the user_id for"
|
3002 |
-
msgstr ""
|
3003 |
-
|
3004 |
-
#: ../modules/user-listing/userlisting.php:1269
|
3005 |
-
msgid "Random (very slow on large databases > 10K user)"
|
3006 |
-
msgstr ""
|
3007 |
-
|
3008 |
-
#: ../modules/user-listing/userlisting.php:1282
|
3009 |
-
msgid "Roles to Display"
|
3010 |
-
msgstr ""
|
3011 |
-
|
3012 |
-
#: ../modules/user-listing/userlisting.php:1282
|
3013 |
-
msgid ""
|
3014 |
-
"Restrict the userlisting to these selected roles only<br/>If not specified, "
|
3015 |
-
"defaults to all existing roles"
|
3016 |
-
msgstr ""
|
3017 |
-
|
3018 |
-
#: ../modules/user-listing/userlisting.php:1283
|
3019 |
-
msgid "Number of Users/Page"
|
3020 |
-
msgstr ""
|
3021 |
-
|
3022 |
-
#: ../modules/user-listing/userlisting.php:1283
|
3023 |
-
msgid ""
|
3024 |
-
"Set the number of users to be displayed on every paginated part of the all-"
|
3025 |
-
"userlisting"
|
3026 |
-
msgstr ""
|
3027 |
-
|
3028 |
-
#: ../modules/user-listing/userlisting.php:1284
|
3029 |
-
msgid "Default Sorting Criteria"
|
3030 |
-
msgstr ""
|
3031 |
-
|
3032 |
-
#: ../modules/user-listing/userlisting.php:1284
|
3033 |
-
msgid ""
|
3034 |
-
"Set the default sorting criteria<br/>This can temporarily be changed for "
|
3035 |
-
"each new session"
|
3036 |
-
msgstr ""
|
3037 |
-
|
3038 |
-
#: ../modules/user-listing/userlisting.php:1285
|
3039 |
-
msgid "Default Sorting Order"
|
3040 |
-
msgstr ""
|
3041 |
-
|
3042 |
-
#: ../modules/user-listing/userlisting.php:1285
|
3043 |
-
msgid ""
|
3044 |
-
"Set the default sorting order<br/>This can temporarily be changed for each "
|
3045 |
-
"new session"
|
3046 |
-
msgstr ""
|
3047 |
-
|
3048 |
-
#: ../modules/user-listing/userlisting.php:1286
|
3049 |
-
msgid "Avatar Size (All-userlisting)"
|
3050 |
-
msgstr ""
|
3051 |
-
|
3052 |
-
#: ../modules/user-listing/userlisting.php:1286
|
3053 |
-
msgid "Set the avatar size on the all-userlisting only"
|
3054 |
-
msgstr ""
|
3055 |
-
|
3056 |
-
#: ../modules/user-listing/userlisting.php:1287
|
3057 |
-
msgid "Avatar Size (Single-userlisting)"
|
3058 |
-
msgstr ""
|
3059 |
-
|
3060 |
-
#: ../modules/user-listing/userlisting.php:1287
|
3061 |
-
msgid "Set the avatar size on the single-userlisting only"
|
3062 |
-
msgstr ""
|
3063 |
-
|
3064 |
-
#: ../modules/user-listing/userlisting.php:1288
|
3065 |
-
msgid "Visible only to logged in users?"
|
3066 |
-
msgstr ""
|
3067 |
-
|
3068 |
-
#: ../modules/user-listing/userlisting.php:1288
|
3069 |
-
msgid "The userlisting will only be visible only to the logged in users"
|
3070 |
-
msgstr ""
|
3071 |
-
|
3072 |
-
#: ../modules/user-listing/userlisting.php:1289
|
3073 |
-
msgid "Visible to following Roles"
|
3074 |
-
msgstr ""
|
3075 |
-
|
3076 |
-
#: ../modules/user-listing/userlisting.php:1289
|
3077 |
-
msgid "The userlisting will only be visible to the following roles"
|
3078 |
-
msgstr ""
|
3079 |
-
|
3080 |
-
#: ../modules/user-listing/userlisting.php:1295
|
3081 |
-
msgid "Userlisting Settings"
|
3082 |
-
msgstr ""
|
3083 |
-
|
3084 |
-
#: ../modules/user-listing/userlisting.php:1316
|
3085 |
-
msgid ""
|
3086 |
-
"You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
3087 |
-
msgstr ""
|
3088 |
-
|
3089 |
-
#: ../modules/user-listing/userlisting.php:1316
|
3090 |
-
msgid "You can find it in the Profile Builder menu."
|
3091 |
-
msgstr ""
|
3092 |
-
|
3093 |
-
#: ../modules/user-listing/userlisting.php:1479
|
3094 |
-
msgid "No results found!"
|
3095 |
-
msgstr ""
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: profilebuilder\n"
|
4 |
+
"POT-Creation-Date: 2015-03-31 16:34+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-03-31 16:34+0200\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: Cozmoslabs\n"
|
8 |
+
"Language: en\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.10\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;_x;_n\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../admin/add-ons.php:10 ../admin/add-ons.php:32
|
20 |
+
msgid "Add-Ons"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: ../admin/add-ons.php:34 ../admin/add-ons.php:115
|
24 |
+
msgid "Activate"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: ../admin/add-ons.php:36
|
28 |
+
msgid "Downloading and installing..."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../admin/add-ons.php:37
|
32 |
+
msgid "Installation complete"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../admin/add-ons.php:39
|
36 |
+
msgid "Add-On is Active"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../admin/add-ons.php:40
|
40 |
+
msgid "Add-On has been activated"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../admin/add-ons.php:41
|
44 |
+
msgid "Retry Install"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: ../admin/add-ons.php:43 ../admin/add-ons.php:121
|
48 |
+
msgid "Add-On is <strong>active</strong>"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: ../admin/add-ons.php:44 ../admin/add-ons.php:116
|
52 |
+
msgid "Add-On is <strong>inactive</strong>"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: ../admin/add-ons.php:46 ../admin/add-ons.php:120
|
56 |
+
msgid "Deactivate"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../admin/add-ons.php:47
|
60 |
+
msgid "Add-On has been deactivated."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../admin/add-ons.php:59
|
64 |
+
msgid ""
|
65 |
+
"Something went wrong, we could not connect to the server. Please try again "
|
66 |
+
"later."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../admin/add-ons.php:128
|
70 |
+
msgid "Buy Now"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../admin/add-ons.php:128
|
74 |
+
msgid "Install Now"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: ../admin/add-ons.php:132
|
78 |
+
msgid "Compatible with your version of Profile Builder."
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../admin/add-ons.php:141
|
82 |
+
msgid "Upgrade Profile Builder"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: ../admin/add-ons.php:142
|
86 |
+
msgid "Not compatible with Profile Builder"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../admin/add-ons.php:149 ../front-end/class-formbuilder.php:294
|
90 |
+
msgid "Update"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: ../admin/add-ons.php:150
|
94 |
+
msgid "Not compatible with your version of Profile Builder."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../admin/add-ons.php:151
|
98 |
+
msgid "Minimum required Profile Builder version:"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: ../admin/add-ons.php:156
|
102 |
+
#, php-format
|
103 |
+
msgid ""
|
104 |
+
"Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
|
105 |
+
"manually</a>."
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: ../admin/admin-bar.php:10
|
109 |
+
msgid "Show/Hide the Admin Bar on the Front-End"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
|
113 |
+
msgid "Admin Bar Settings"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: ../admin/admin-bar.php:48
|
117 |
+
msgid ""
|
118 |
+
"Choose which user roles view the admin bar in the front-end of the website."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: ../admin/admin-bar.php:57
|
122 |
+
msgid "User-Role"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: ../admin/admin-bar.php:58
|
126 |
+
msgid "Visibility"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: ../admin/admin-bar.php:73
|
130 |
+
msgid "Default"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: ../admin/admin-bar.php:74
|
134 |
+
msgid "Show"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: ../admin/admin-bar.php:75
|
138 |
+
msgid "Hide"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:189
|
142 |
+
#: ../admin/register-version.php:95 ../features/functions.php:593
|
143 |
+
#: ../modules/custom-redirects/custom-redirects.php:136
|
144 |
+
#: ../modules/modules.php:142
|
145 |
+
msgid "Save Changes"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: ../admin/admin-functions.php:34
|
149 |
+
#, php-format
|
150 |
+
msgid ""
|
151 |
+
"Login is set to be done using the E-mail. This field will NOT appear in the "
|
152 |
+
"front-end! ( you can change these settings under the \"%s\" tab )"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
|
156 |
+
#: ../admin/general-settings.php:38
|
157 |
+
msgid "General Settings"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: ../admin/admin-functions.php:106
|
161 |
+
#, php-format
|
162 |
+
msgid ""
|
163 |
+
"<strong>ERROR</strong>: The password must have the minimum length of %s "
|
164 |
+
"characters"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:175
|
168 |
+
msgid "Very weak"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:176
|
172 |
+
#: ../features/functions.php:492
|
173 |
+
msgid "Weak"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:177
|
177 |
+
#: ../features/functions.php:492
|
178 |
+
msgid "Medium"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:178
|
182 |
+
#: ../features/functions.php:492
|
183 |
+
msgid "Strong"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: ../admin/admin-functions.php:123
|
187 |
+
#, php-format
|
188 |
+
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: ../admin/admin-functions.php:162
|
192 |
+
msgid "Add Field"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: ../admin/admin-functions.php:164
|
196 |
+
#: ../modules/class-mustache-templates/class-mustache-templates.php:374
|
197 |
+
msgid "Save Settings"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: ../admin/admin-functions.php:175
|
201 |
+
#, php-format
|
202 |
+
msgid ""
|
203 |
+
"If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target="
|
204 |
+
"\"_blank\">rate us on WordPress.org</a> to help us reach more people. More "
|
205 |
+
"happy users means more features, less bugs and better support for everyone. "
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../admin/basic-info.php:10
|
209 |
+
msgid "Basic Information"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: ../admin/basic-info.php:29
|
213 |
+
#, php-format
|
214 |
+
msgid "Version %s"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: ../admin/basic-info.php:30
|
218 |
+
msgid "<strong>Profile Builder </strong>"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: ../admin/basic-info.php:31
|
222 |
+
msgid ""
|
223 |
+
"The best way to add front-end registration, edit profile and login forms."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: ../admin/basic-info.php:33
|
227 |
+
msgid "For Modern User Interaction"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
|
231 |
+
msgid "Login"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: ../admin/basic-info.php:37
|
235 |
+
msgid ""
|
236 |
+
"Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> "
|
237 |
+
"shortcode or a widget."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: ../admin/basic-info.php:40
|
241 |
+
msgid "Registration"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../admin/basic-info.php:41
|
245 |
+
msgid ""
|
246 |
+
"Beautiful registration forms fully customizable using the <strong class="
|
247 |
+
"\"nowrap\">[wppb-register]</strong> shortcode."
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../admin/basic-info.php:44
|
251 |
+
msgid "Edit Profile"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: ../admin/basic-info.php:45
|
255 |
+
msgid ""
|
256 |
+
"Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-"
|
257 |
+
"edit-profile]</strong> shortcode."
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: ../admin/basic-info.php:51
|
261 |
+
msgid "Extra Features"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: ../admin/basic-info.php:52
|
265 |
+
msgid ""
|
266 |
+
"Features that give you more control over your users, increased security and "
|
267 |
+
"help you fight user registration spam."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: ../admin/basic-info.php:53
|
271 |
+
msgid "Enable extra features"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: ../admin/basic-info.php:57
|
275 |
+
msgid "Recover Password"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: ../admin/basic-info.php:58
|
279 |
+
msgid ""
|
280 |
+
"Allow users to recover their password in the front-end using the [wppb-"
|
281 |
+
"recover-password]."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: ../admin/basic-info.php:61
|
285 |
+
msgid "Admin Approval (*)"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../admin/basic-info.php:62
|
289 |
+
msgid ""
|
290 |
+
"You decide who is a user on your website. Get notified via email or approve "
|
291 |
+
"multiple users at once from the WordPress UI."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: ../admin/basic-info.php:65
|
295 |
+
msgid "Email Confirmation"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: ../admin/basic-info.php:66
|
299 |
+
msgid ""
|
300 |
+
"Make sure users sign up with genuine emails. On registration users will "
|
301 |
+
"receive a notification to confirm their email address."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: ../admin/basic-info.php:69
|
305 |
+
msgid "Minimum Password Length and Strength Meter"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: ../admin/basic-info.php:70
|
309 |
+
msgid ""
|
310 |
+
"Eliminate weak passwords altogether by setting a minimum password length and "
|
311 |
+
"enforcing a certain password strength."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: ../admin/basic-info.php:73
|
315 |
+
msgid "Login with Email or Username"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: ../admin/basic-info.php:74
|
319 |
+
msgid ""
|
320 |
+
"Allow users to log in with their email or username when accessing your site."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: ../admin/basic-info.php:87
|
324 |
+
msgid "Customize Your Forms The Way You Want (*)"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: ../admin/basic-info.php:88
|
328 |
+
msgid ""
|
329 |
+
"With Extra Profile Fields you can create the exact registration form your "
|
330 |
+
"project needs."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: ../admin/basic-info.php:90
|
334 |
+
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: ../admin/basic-info.php:92
|
338 |
+
msgid "Get started with extra fields"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: ../admin/basic-info.php:95
|
342 |
+
msgid "Avatar Upload"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: ../admin/basic-info.php:96
|
346 |
+
msgid "Generic Uploads"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: ../admin/basic-info.php:97
|
350 |
+
msgid "Agree To Terms Checkbox"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: ../admin/basic-info.php:98
|
354 |
+
msgid "Datepicker"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: ../admin/basic-info.php:99
|
358 |
+
msgid "reCAPTCHA"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: ../admin/basic-info.php:100
|
362 |
+
msgid "Country Select"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: ../admin/basic-info.php:101
|
366 |
+
msgid "Timezone Select"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: ../admin/basic-info.php:102
|
370 |
+
msgid "Input / Hidden Input"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: ../admin/basic-info.php:103
|
374 |
+
msgid "Checkbox"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: ../admin/basic-info.php:104
|
378 |
+
msgid "Select"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: ../admin/basic-info.php:105
|
382 |
+
msgid "Radio Buttons"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: ../admin/basic-info.php:106
|
386 |
+
msgid "Textarea"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../admin/basic-info.php:115
|
390 |
+
msgid "Powerful Modules (**)"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: ../admin/basic-info.php:116
|
394 |
+
msgid ""
|
395 |
+
"Everything you will need to manage your users is probably already available "
|
396 |
+
"using the Pro Modules."
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../admin/basic-info.php:118
|
400 |
+
msgid "Enable your modules"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../admin/basic-info.php:121
|
404 |
+
msgid "Find out more about PRO Modules"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: ../admin/basic-info.php:126 ../modules/modules.php:111
|
408 |
+
#: ../modules/user-listing/userlisting.php:11
|
409 |
+
#: ../modules/user-listing/userlisting.php:12
|
410 |
+
#: ../modules/user-listing/userlisting.php:17
|
411 |
+
#: ../modules/user-listing/userlisting.php:23
|
412 |
+
msgid "User Listing"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: ../admin/basic-info.php:128
|
416 |
+
msgid ""
|
417 |
+
"Easy to edit templates for listing your website users as well as creating "
|
418 |
+
"single user pages. Shortcode based, offering many options to customize your "
|
419 |
+
"listings."
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: ../admin/basic-info.php:130
|
423 |
+
msgid ""
|
424 |
+
"To create a page containing the users registered to this current site/blog, "
|
425 |
+
"insert the following shortcode in a page of your chosing: <strong class="
|
426 |
+
"\"nowrap\">[wppb-list-users]</strong>."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: ../admin/basic-info.php:134
|
430 |
+
msgid "Email Customizer"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: ../admin/basic-info.php:135
|
434 |
+
msgid ""
|
435 |
+
"Personalize all emails sent to your users or admins. On registration, email "
|
436 |
+
"confirmation, admin approval / un-approval."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: ../admin/basic-info.php:138
|
440 |
+
#: ../modules/custom-redirects/custom-redirects.php:29
|
441 |
+
#: ../modules/modules.php:32 ../modules/modules.php:132
|
442 |
+
msgid "Custom Redirects"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: ../admin/basic-info.php:139
|
446 |
+
msgid ""
|
447 |
+
"Keep your users out of the WordPress dashboard, redirect them to the front-"
|
448 |
+
"page after login or registration, everything is just a few clicks away."
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: ../admin/basic-info.php:144 ../modules/modules.php:97
|
452 |
+
msgid "Multiple Registration Forms"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: ../admin/basic-info.php:145
|
456 |
+
msgid ""
|
457 |
+
"Set up multiple registration forms with different fields for certain user "
|
458 |
+
"roles. Capture different information from different types of users."
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: ../admin/basic-info.php:148 ../modules/modules.php:104
|
462 |
+
msgid "Multiple Edit-profile Forms"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../admin/basic-info.php:149
|
466 |
+
msgid ""
|
467 |
+
"Allow different user roles to edit their specific information. Set up "
|
468 |
+
"multiple edit-profile forms with different fields for certain user roles."
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: ../admin/basic-info.php:161
|
472 |
+
#, php-format
|
473 |
+
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: ../admin/basic-info.php:162
|
477 |
+
#, php-format
|
478 |
+
msgid "** only available in the %1$sPro version%2$s."
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: ../admin/general-settings.php:42
|
482 |
+
msgid "Load Profile Builder's own CSS file in the front-end:"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: ../admin/general-settings.php:45 ../admin/general-settings.php:60
|
486 |
+
#: ../admin/general-settings.php:114
|
487 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
488 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
489 |
+
#: ../modules/user-listing/userlisting.php:1288
|
490 |
+
msgid "Yes"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: ../admin/general-settings.php:47
|
494 |
+
#, php-format
|
495 |
+
msgid "You can find the default file here: %1$s"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: ../admin/general-settings.php:56
|
499 |
+
msgid "\"Email Confirmation\" Activated:"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: ../admin/general-settings.php:61 ../admin/general-settings.php:115
|
503 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
504 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
505 |
+
msgid "No"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: ../admin/general-settings.php:64
|
509 |
+
msgid ""
|
510 |
+
"On single-site installations this works with front-end forms only. "
|
511 |
+
"Recommended to redirect WP default registration to a Profile Builder one "
|
512 |
+
"using \"Custom Redirects\" addon."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: ../admin/general-settings.php:65
|
516 |
+
msgid ""
|
517 |
+
"The \"Email Confirmation\" feature is active (by default) on WPMU "
|
518 |
+
"installations."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: ../admin/general-settings.php:67
|
522 |
+
#, php-format
|
523 |
+
msgid ""
|
524 |
+
"You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
|
525 |
+
"Email Confirmation%2$s."
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: ../admin/general-settings.php:79
|
529 |
+
msgid "\"Email Confirmation\" Landing Page:"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: ../admin/general-settings.php:84
|
533 |
+
msgid "Existing Pages"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: ../admin/general-settings.php:99
|
537 |
+
msgid ""
|
538 |
+
"Specify the page where the users will be directed when confirming the email "
|
539 |
+
"account. This page can differ from the register page(s) and can be changed "
|
540 |
+
"at any time. If none selected, a simple confirmation page will be displayed "
|
541 |
+
"for the user."
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: ../admin/general-settings.php:110
|
545 |
+
msgid "\"Admin Approval\" Activated:"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: ../admin/general-settings.php:118
|
549 |
+
#, php-format
|
550 |
+
msgid ""
|
551 |
+
"You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: ../admin/general-settings.php:130
|
555 |
+
msgid "\"Admin Approval\" Feature:"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: ../admin/general-settings.php:133
|
559 |
+
#, php-format
|
560 |
+
msgid ""
|
561 |
+
"You decide who is a user on your website. Get notified via email or approve "
|
562 |
+
"multiple users at once from the WordPress UI. Enable Admin Approval by "
|
563 |
+
"upgrading to %1$sHobbyist or PRO versions%2$s."
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: ../admin/general-settings.php:140
|
567 |
+
msgid "Allow Users to Log in With:"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: ../admin/general-settings.php:144
|
571 |
+
msgid "Username and Email"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: ../admin/general-settings.php:145 ../admin/manage-fields.php:145
|
575 |
+
#: ../features/admin-approval/class-admin-approval.php:177
|
576 |
+
#: ../features/email-confirmation/class-email-confirmation.php:167
|
577 |
+
#: ../modules/email-customizer/email-customizer.php:28
|
578 |
+
#: ../modules/user-listing/userlisting.php:92
|
579 |
+
#: ../modules/user-listing/userlisting.php:596
|
580 |
+
#: ../modules/user-listing/userlisting.php:1244
|
581 |
+
msgid "Username"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: ../admin/general-settings.php:146 ../front-end/login.php:170
|
585 |
+
#: ../modules/email-customizer/email-customizer.php:29
|
586 |
+
#: ../modules/user-listing/userlisting.php:602
|
587 |
+
#: ../modules/user-listing/userlisting.php:1245
|
588 |
+
msgid "Email"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: ../admin/general-settings.php:149
|
592 |
+
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: ../admin/general-settings.php:150
|
596 |
+
msgid "\"Username\" - users can Log In only with Username."
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: ../admin/general-settings.php:151
|
600 |
+
msgid "\"Email\" - users can Log In only with Email."
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: ../admin/general-settings.php:158
|
604 |
+
msgid "Minimum Password Length:"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: ../admin/general-settings.php:163
|
608 |
+
msgid ""
|
609 |
+
"Enter the minimum characters the password should have. Leave empty for no "
|
610 |
+
"minimum limit"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: ../admin/general-settings.php:170
|
614 |
+
msgid "Minimum Password Strength:"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: ../admin/general-settings.php:174
|
618 |
+
msgid "Disabled"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: ../admin/manage-fields.php:12
|
622 |
+
msgid "Manage Fields"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: ../admin/manage-fields.php:13
|
626 |
+
msgid "Manage Default and Extra Fields"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: ../admin/manage-fields.php:84
|
630 |
+
msgid "Field Title"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: ../admin/manage-fields.php:84
|
634 |
+
msgid "Title of the field"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: ../admin/manage-fields.php:85
|
638 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
639 |
+
#: ../modules/multiple-forms/register-forms.php:262
|
640 |
+
msgid "Field"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: ../admin/manage-fields.php:86
|
644 |
+
msgid "Meta-name"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: ../admin/manage-fields.php:86
|
648 |
+
msgid ""
|
649 |
+
"Use this in conjuction with WordPress functions to display the value in the "
|
650 |
+
"page of your choosing<br/>Auto-completed but in some cases editable (in "
|
651 |
+
"which case it must be uniqe)<br/>Changing this might take long in case of a "
|
652 |
+
"very big user-count"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: ../admin/manage-fields.php:87
|
656 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
657 |
+
#: ../modules/multiple-forms/register-forms.php:263
|
658 |
+
msgid "ID"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: ../admin/manage-fields.php:87
|
662 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
663 |
+
#: ../modules/multiple-forms/register-forms.php:263
|
664 |
+
msgid ""
|
665 |
+
"A unique, auto-generated ID for this particular field<br/>You can use this "
|
666 |
+
"in conjuction with filters to target this element if needed<br/>Can't be "
|
667 |
+
"edited"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: ../admin/manage-fields.php:88
|
671 |
+
msgid "Description"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: ../admin/manage-fields.php:88
|
675 |
+
msgid ""
|
676 |
+
"Enter a (detailed) description of the option for end users to read<br/"
|
677 |
+
">Optional"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: ../admin/manage-fields.php:89
|
681 |
+
msgid "Row Count"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: ../admin/manage-fields.php:89
|
685 |
+
msgid ""
|
686 |
+
"Specify the number of rows for a 'Textarea' field<br/>If not specified, "
|
687 |
+
"defaults to 5"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: ../admin/manage-fields.php:90
|
691 |
+
msgid "Allowed Image Extensions"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: ../admin/manage-fields.php:90
|
695 |
+
msgid ""
|
696 |
+
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
697 |
+
"ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: ../admin/manage-fields.php:91
|
701 |
+
msgid "Allowed Upload Extensions"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: ../admin/manage-fields.php:91
|
705 |
+
msgid ""
|
706 |
+
"Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
|
707 |
+
"ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
|
708 |
+
"extensions (.*)"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: ../admin/manage-fields.php:92
|
712 |
+
msgid "Avatar Size"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: ../admin/manage-fields.php:92
|
716 |
+
msgid ""
|
717 |
+
"Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
|
718 |
+
"specified, defaults to 100"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: ../admin/manage-fields.php:93
|
722 |
+
msgid "Date-format"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: ../admin/manage-fields.php:93
|
726 |
+
msgid ""
|
727 |
+
"Specify the format of the date when using Datepicker<br/>Valid options: mm/"
|
728 |
+
"dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not "
|
729 |
+
"specified, defaults to mm/dd/yy"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: ../admin/manage-fields.php:94
|
733 |
+
msgid "Terms of Agreement"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: ../admin/manage-fields.php:94
|
737 |
+
msgid ""
|
738 |
+
"Enter a detailed description of the temrs of agreement for the user to read."
|
739 |
+
"<br/>Links can be inserted by using standard HTML syntax: <a href="
|
740 |
+
"\"custom_url\">custom_text</a>"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: ../admin/manage-fields.php:95
|
744 |
+
msgid "Options"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: ../admin/manage-fields.php:95
|
748 |
+
msgid ""
|
749 |
+
"Enter a comma separated list of values<br/>This can be anything, as it is "
|
750 |
+
"hidden from the user, but should not contain special characters or "
|
751 |
+
"apostrophes"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: ../admin/manage-fields.php:96
|
755 |
+
msgid "Labels"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: ../admin/manage-fields.php:96
|
759 |
+
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: ../admin/manage-fields.php:97
|
763 |
+
msgid "Public Key"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: ../admin/manage-fields.php:97
|
767 |
+
msgid ""
|
768 |
+
"The public key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
769 |
+
"target=\"_blank\">www.google.com/recaptcha</a>"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: ../admin/manage-fields.php:98
|
773 |
+
msgid "Private Key"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: ../admin/manage-fields.php:98
|
777 |
+
msgid ""
|
778 |
+
"The private key from Google, <a href=\"http://www.google.com/recaptcha\" "
|
779 |
+
"target=\"_blank\">www.google.com/recaptcha</a>"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: ../admin/manage-fields.php:99
|
783 |
+
msgid "User Roles"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: ../admin/manage-fields.php:99
|
787 |
+
msgid ""
|
788 |
+
"Select which user roles to show to the user ( drag and drop to re-order )"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: ../admin/manage-fields.php:100
|
792 |
+
msgid "User Roles Order"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: ../admin/manage-fields.php:100
|
796 |
+
msgid "Save the user role order from the user roles checkboxes"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: ../admin/manage-fields.php:101
|
800 |
+
msgid "Default Value"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: ../admin/manage-fields.php:101
|
804 |
+
msgid "Default value of the field"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: ../admin/manage-fields.php:102
|
808 |
+
msgid "Default Option"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: ../admin/manage-fields.php:102
|
812 |
+
msgid "Specify the option which should be selected by default"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: ../admin/manage-fields.php:103
|
816 |
+
msgid "Default Option(s)"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: ../admin/manage-fields.php:103
|
820 |
+
msgid ""
|
821 |
+
"Specify the option which should be checked by default<br/>If there are "
|
822 |
+
"multiple values, separate them with a ',' (comma)"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: ../admin/manage-fields.php:104
|
826 |
+
msgid "Default Content"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: ../admin/manage-fields.php:104
|
830 |
+
msgid "Default value of the textarea"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: ../admin/manage-fields.php:105
|
834 |
+
msgid "Required"
|
835 |
+
msgstr ""
|
836 |
+
|
837 |
+
#: ../admin/manage-fields.php:105
|
838 |
+
msgid "Whether the field is required or not"
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: ../admin/manage-fields.php:106
|
842 |
+
msgid "Overwrite Existing"
|
843 |
+
msgstr ""
|
844 |
+
|
845 |
+
#: ../admin/manage-fields.php:106
|
846 |
+
msgid ""
|
847 |
+
"Selecting 'Yes' will add the field to the list, but will overwrite any other "
|
848 |
+
"field in the database that has the same meta-name<br/>Use this at your own "
|
849 |
+
"risk"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: ../admin/manage-fields.php:112
|
853 |
+
msgid "Field Properties"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: ../admin/manage-fields.php:125
|
857 |
+
msgid "Registration & Edit Profile"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: ../admin/manage-fields.php:144
|
861 |
+
msgid "Name"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: ../admin/manage-fields.php:145
|
865 |
+
msgid "Usernames cannot be changed."
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: ../admin/manage-fields.php:146
|
869 |
+
msgid "First Name"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: ../admin/manage-fields.php:147
|
873 |
+
msgid "Last Name"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: ../admin/manage-fields.php:148 ../modules/user-listing/userlisting.php:635
|
877 |
+
msgid "Nickname"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: ../admin/manage-fields.php:149
|
881 |
+
msgid "Display name publicly as"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: ../admin/manage-fields.php:150
|
885 |
+
msgid "Contact Info"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: ../admin/manage-fields.php:151
|
889 |
+
#: ../features/admin-approval/class-admin-approval.php:180
|
890 |
+
#: ../features/email-confirmation/class-email-confirmation.php:168
|
891 |
+
#: ../modules/user-listing/userlisting.php:98
|
892 |
+
msgid "E-mail"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: ../admin/manage-fields.php:152
|
896 |
+
#: ../modules/email-customizer/email-customizer.php:32
|
897 |
+
#: ../modules/user-listing/userlisting.php:101
|
898 |
+
#: ../modules/user-listing/userlisting.php:617
|
899 |
+
#: ../modules/user-listing/userlisting.php:1246
|
900 |
+
msgid "Website"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: ../admin/manage-fields.php:156
|
904 |
+
msgid "AIM"
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
#: ../admin/manage-fields.php:157
|
908 |
+
msgid "Yahoo IM"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: ../admin/manage-fields.php:158
|
912 |
+
msgid "Jabber / Google Talk"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: ../admin/manage-fields.php:161
|
916 |
+
msgid "About Yourself"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:104
|
920 |
+
#: ../modules/user-listing/userlisting.php:620
|
921 |
+
#: ../modules/user-listing/userlisting.php:1247
|
922 |
+
msgid "Biographical Info"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: ../admin/manage-fields.php:162
|
926 |
+
msgid ""
|
927 |
+
"Share a little biographical information to fill out your profile. This may "
|
928 |
+
"be shown publicly."
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: ../admin/manage-fields.php:163 ../front-end/recover.php:75
|
932 |
+
#: ../modules/email-customizer/email-customizer.php:30
|
933 |
+
msgid "Password"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: ../admin/manage-fields.php:163
|
937 |
+
msgid "Type your password."
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: ../admin/manage-fields.php:164 ../front-end/recover.php:80
|
941 |
+
msgid "Repeat Password"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: ../admin/manage-fields.php:164
|
945 |
+
msgid "Type your password again. "
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: ../admin/manage-fields.php:321 ../admin/manage-fields.php:465
|
949 |
+
msgid "You must select a field\n"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: ../admin/manage-fields.php:331
|
953 |
+
msgid ""
|
954 |
+
"Please choose a different field type as this one already exists in your form "
|
955 |
+
"(must be unique)\n"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: ../admin/manage-fields.php:342
|
959 |
+
msgid "The entered avatar size is not between 20 and 200\n"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: ../admin/manage-fields.php:345
|
963 |
+
msgid "The entered avatar size is not numerical\n"
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: ../admin/manage-fields.php:353
|
967 |
+
msgid "The entered row number is not numerical\n"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: ../admin/manage-fields.php:356
|
971 |
+
msgid "You must enter a value for the row number\n"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: ../admin/manage-fields.php:364
|
975 |
+
msgid "You must enter the public key\n"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: ../admin/manage-fields.php:366
|
979 |
+
msgid "You must enter the private key\n"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: ../admin/manage-fields.php:374
|
983 |
+
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: ../admin/manage-fields.php:377
|
987 |
+
msgid "You must enter a value for the date-format\n"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: ../admin/manage-fields.php:393
|
991 |
+
msgid "The meta-name cannot be empty\n"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: ../admin/manage-fields.php:405 ../admin/manage-fields.php:413
|
995 |
+
#: ../admin/manage-fields.php:423
|
996 |
+
msgid "That meta-name is already in use\n"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: ../admin/manage-fields.php:445
|
1000 |
+
#, php-format
|
1001 |
+
msgid ""
|
1002 |
+
"The following option(s) did not coincide with the ones in the options list: "
|
1003 |
+
"%s\n"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: ../admin/manage-fields.php:449
|
1007 |
+
#, php-format
|
1008 |
+
msgid ""
|
1009 |
+
"The following option did not coincide with the ones in the options list: %s\n"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: ../admin/manage-fields.php:456
|
1013 |
+
msgid "Please select at least one user role\n"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: ../admin/manage-fields.php:472
|
1017 |
+
msgid "That field is already added in this form\n"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: ../admin/manage-fields.php:521
|
1021 |
+
msgid ""
|
1022 |
+
"<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
|
1023 |
+
"required\">Required</pre>"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: ../admin/manage-fields.php:521
|
1027 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
1028 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
1029 |
+
#: ../features/functions.php:614 ../features/functions.php:621
|
1030 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
1031 |
+
msgid "Edit"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: ../admin/manage-fields.php:521
|
1035 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
1036 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
1037 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
1038 |
+
#: ../features/admin-approval/class-admin-approval.php:235
|
1039 |
+
#: ../features/email-confirmation/class-email-confirmation.php:120
|
1040 |
+
#: ../features/email-confirmation/class-email-confirmation.php:217
|
1041 |
+
#: ../features/functions.php:607 ../features/functions.php:621
|
1042 |
+
msgid "Delete"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: ../admin/manage-fields.php:536
|
1046 |
+
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: ../admin/manage-fields.php:542
|
1050 |
+
msgid ""
|
1051 |
+
"If you're interested in displaying different fields in the registration and "
|
1052 |
+
"edit profile forms, please use the Multiple Registration & Edit Profile "
|
1053 |
+
"Forms Addon."
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: ../admin/register-version.php:14
|
1057 |
+
msgid "Register Your Version"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: ../admin/register-version.php:14
|
1061 |
+
msgid "Register Version"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: ../admin/register-version.php:22
|
1065 |
+
msgid "Profile Builder Register"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: ../admin/register-version.php:69
|
1069 |
+
#, php-format
|
1070 |
+
msgid ""
|
1071 |
+
"Now that you acquired a copy of %s, you should take the time and register it "
|
1072 |
+
"with the serial number you received"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: ../admin/register-version.php:70
|
1076 |
+
msgid ""
|
1077 |
+
"If you register this version of Profile Builder, you'll receive information "
|
1078 |
+
"regarding upgrades, patches, and technical support."
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: ../admin/register-version.php:72
|
1082 |
+
msgid " Serial Number:"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: ../admin/register-version.php:77
|
1086 |
+
msgid "The serial number was successfully validated!"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: ../admin/register-version.php:79
|
1090 |
+
msgid "The serial number entered couldn't be validated!"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: ../admin/register-version.php:81
|
1094 |
+
msgid "The serial number is about to expire soon!"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: ../admin/register-version.php:81
|
1098 |
+
#, php-format
|
1099 |
+
msgid ""
|
1100 |
+
" Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: ../admin/register-version.php:83
|
1104 |
+
msgid "The serial number couldn't be validated because it expired!"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: ../admin/register-version.php:83
|
1108 |
+
#, php-format
|
1109 |
+
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: ../admin/register-version.php:85
|
1113 |
+
msgid ""
|
1114 |
+
"The serial number couldn't be validated because process timed out. This is "
|
1115 |
+
"possible due to the server being down. Please try again later!"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: ../admin/register-version.php:87
|
1119 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: ../admin/register-version.php:243
|
1123 |
+
#, php-format
|
1124 |
+
msgid ""
|
1125 |
+
"<p>Your <strong>Profile Builder</strong> serial number is invalid or "
|
1126 |
+
"missing. <br/>Please %1$sregister your copy%2$s to receive access to "
|
1127 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s</"
|
1128 |
+
"p>"
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
+
#: ../admin/register-version.php:246
|
1132 |
+
#, php-format
|
1133 |
+
msgid ""
|
1134 |
+
"<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
|
1135 |
+
"%1$sRenew Your Licence%2$s to continue receiving access to product "
|
1136 |
+
"downloads, automatic updates and support. %3$sRenew now and get 50% off "
|
1137 |
+
"%4$s %5$sDismiss%6$s</p>"
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: ../admin/register-version.php:251
|
1141 |
+
#, php-format
|
1142 |
+
msgid ""
|
1143 |
+
"<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
|
1144 |
+
"<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
|
1145 |
+
"product downloads, automatic updates and support. %3$sRenew now and get "
|
1146 |
+
"50% off %4$s %6$sDismiss%7$s</p>"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: ../assets/lib/wck-api/fields/country select.php:14
|
1150 |
+
#: ../assets/lib/wck-api/fields/cpt select.php:17
|
1151 |
+
#: ../assets/lib/wck-api/fields/select.php:14
|
1152 |
+
#: ../assets/lib/wck-api/fields/user select.php:15
|
1153 |
+
msgid "...Choose"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: ../assets/lib/wck-api/fields/nested repeater.php:8
|
1157 |
+
#, php-format
|
1158 |
+
msgid "You can add the information for the %s after you add a entry"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: ../assets/lib/wck-api/fields/upload.php:37
|
1162 |
+
msgid "Remove"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: ../assets/lib/wck-api/fields/upload.php:54
|
1166 |
+
msgid "Upload "
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
1170 |
+
#: ../modules/class-mustache-templates/class-mustache-templates.php:242
|
1171 |
+
msgid "Save"
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
1175 |
+
msgid "Add Entry"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
1179 |
+
#: ../features/functions.php:621
|
1180 |
+
msgid "Content"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
1184 |
+
msgid "Edit this item"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
1188 |
+
msgid "Delete this item"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:671
|
1192 |
+
msgid "Please enter a value for the required field "
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1150
|
1196 |
+
msgid "Syncronize WCK"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1162
|
1200 |
+
msgid "Syncronize WCK Translation"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: ../features/admin-approval/admin-approval.php:7
|
1204 |
+
#: ../features/admin-approval/class-admin-approval.php:496
|
1205 |
+
msgid "Admin Approval"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: ../features/admin-approval/admin-approval.php:21
|
1209 |
+
#: ../features/email-confirmation/email-confirmation.php:58
|
1210 |
+
msgid "Do you want to"
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: ../features/admin-approval/admin-approval.php:44
|
1214 |
+
msgid "Your session has expired! Please refresh the page and try again"
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: ../features/admin-approval/admin-approval.php:55
|
1218 |
+
msgid "User successfully approved!"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: ../features/admin-approval/admin-approval.php:63
|
1222 |
+
msgid "User successfully unapproved!"
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: ../features/admin-approval/admin-approval.php:69
|
1226 |
+
msgid "User successfully deleted!"
|
1227 |
+
msgstr ""
|
1228 |
+
|
1229 |
+
#: ../features/admin-approval/admin-approval.php:74
|
1230 |
+
#: ../features/admin-approval/admin-approval.php:139
|
1231 |
+
#: ../features/email-confirmation/email-confirmation.php:135
|
1232 |
+
msgid "You either don't have permission for that action or there was an error!"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: ../features/admin-approval/admin-approval.php:86
|
1236 |
+
msgid "Your session has expired! Please refresh the page and try again."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: ../features/admin-approval/admin-approval.php:106
|
1240 |
+
msgid "Users successfully approved!"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: ../features/admin-approval/admin-approval.php:121
|
1244 |
+
msgid "Users successfully unapproved!"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: ../features/admin-approval/admin-approval.php:134
|
1248 |
+
msgid "Users successfully deleted!"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: ../features/admin-approval/admin-approval.php:149
|
1252 |
+
#, php-format
|
1253 |
+
msgid "Your account on %1$s has been approved!"
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: ../features/admin-approval/admin-approval.php:150
|
1257 |
+
#: ../features/admin-approval/admin-approval.php:153
|
1258 |
+
msgid "approved"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: ../features/admin-approval/admin-approval.php:152
|
1262 |
+
#, php-format
|
1263 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: ../features/admin-approval/admin-approval.php:156
|
1267 |
+
#, php-format
|
1268 |
+
msgid "Your account on %1$s has been unapproved!"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: ../features/admin-approval/admin-approval.php:157
|
1272 |
+
#: ../features/admin-approval/admin-approval.php:160
|
1273 |
+
msgid "unapproved"
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: ../features/admin-approval/admin-approval.php:159
|
1277 |
+
#, php-format
|
1278 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: ../features/admin-approval/admin-approval.php:176
|
1282 |
+
msgid ""
|
1283 |
+
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1284 |
+
"before you can log in."
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: ../features/admin-approval/admin-approval.php:188
|
1288 |
+
msgid ""
|
1289 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
1290 |
+
"\"Password Recovery\" feature."
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: ../features/admin-approval/class-admin-approval.php:119
|
1294 |
+
msgid "View or Edit"
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
1298 |
+
msgid "delete this user?"
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
1302 |
+
msgid "unapprove this user?"
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
1306 |
+
#: ../features/admin-approval/class-admin-approval.php:234
|
1307 |
+
msgid "Unapprove"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
1311 |
+
msgid "approve this user?"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
1315 |
+
#: ../features/admin-approval/class-admin-approval.php:233
|
1316 |
+
msgid "Approve"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: ../features/admin-approval/class-admin-approval.php:178
|
1320 |
+
#: ../modules/user-listing/userlisting.php:608
|
1321 |
+
#: ../modules/user-listing/userlisting.php:1249
|
1322 |
+
msgid "Firstname"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: ../features/admin-approval/class-admin-approval.php:179
|
1326 |
+
#: ../modules/user-listing/userlisting.php:611
|
1327 |
+
#: ../modules/user-listing/userlisting.php:1250
|
1328 |
+
msgid "Lastname"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: ../features/admin-approval/class-admin-approval.php:181
|
1332 |
+
#: ../modules/user-listing/userlisting.php:124
|
1333 |
+
#: ../modules/user-listing/userlisting.php:638
|
1334 |
+
#: ../modules/user-listing/userlisting.php:1253
|
1335 |
+
msgid "Role"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: ../features/admin-approval/class-admin-approval.php:182
|
1339 |
+
#: ../features/email-confirmation/class-email-confirmation.php:169
|
1340 |
+
msgid "Registered"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: ../features/admin-approval/class-admin-approval.php:183
|
1344 |
+
msgid "User-status"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: ../features/admin-approval/class-admin-approval.php:263
|
1348 |
+
msgid "Do you want to bulk approve the selected users?"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: ../features/admin-approval/class-admin-approval.php:271
|
1352 |
+
msgid "Do you want to bulk unapprove the selected users?"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: ../features/admin-approval/class-admin-approval.php:277
|
1356 |
+
msgid "Do you want to bulk delete the selected users?"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: ../features/admin-approval/class-admin-approval.php:285
|
1360 |
+
#: ../features/email-confirmation/class-email-confirmation.php:278
|
1361 |
+
msgid "Sorry, but you don't have permission to do that!"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: ../features/admin-approval/class-admin-approval.php:325
|
1365 |
+
msgid "Approved"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: ../features/admin-approval/class-admin-approval.php:327
|
1369 |
+
msgid "Unapproved"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: ../features/admin-approval/class-admin-approval.php:499
|
1373 |
+
#: ../features/email-confirmation/class-email-confirmation.php:469
|
1374 |
+
msgid "All Users"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: ../features/class-list-table.php:184
|
1378 |
+
msgid "No items found."
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: ../features/class-list-table.php:308
|
1382 |
+
msgid "Bulk Actions"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: ../features/class-list-table.php:318
|
1386 |
+
msgid "Apply"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: ../features/class-list-table.php:402
|
1390 |
+
msgid "Show all dates"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: ../features/class-list-table.php:415
|
1394 |
+
#, php-format
|
1395 |
+
msgid "%1$s %2$d"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: ../features/class-list-table.php:431
|
1399 |
+
msgid "List View"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: ../features/class-list-table.php:432
|
1403 |
+
msgid "Excerpt View"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: ../features/class-list-table.php:458
|
1407 |
+
#, php-format
|
1408 |
+
msgid "%s pending"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
1412 |
+
msgid "1 item"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: ../features/class-list-table.php:566
|
1416 |
+
#, php-format
|
1417 |
+
msgid "%1$s of %2$s"
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: ../features/class-list-table.php:713
|
1421 |
+
msgid "Select All"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: ../features/email-confirmation/class-email-confirmation.php:91
|
1425 |
+
#: ../features/email-confirmation/class-email-confirmation.php:170
|
1426 |
+
#: ../modules/email-customizer/email-customizer.php:11
|
1427 |
+
msgid "User Meta"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: ../features/email-confirmation/class-email-confirmation.php:91
|
1431 |
+
msgid "show"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: ../features/email-confirmation/class-email-confirmation.php:120
|
1435 |
+
msgid "delete this user from the _signups table?"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: ../features/email-confirmation/class-email-confirmation.php:121
|
1439 |
+
msgid "confirm this email yourself?"
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: ../features/email-confirmation/class-email-confirmation.php:121
|
1443 |
+
#: ../features/email-confirmation/class-email-confirmation.php:218
|
1444 |
+
msgid "Confirm Email"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: ../features/email-confirmation/class-email-confirmation.php:122
|
1448 |
+
msgid "resend the activation link?"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: ../features/email-confirmation/class-email-confirmation.php:122
|
1452 |
+
#: ../features/email-confirmation/class-email-confirmation.php:219
|
1453 |
+
msgid "Resend Activation Email"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: ../features/email-confirmation/class-email-confirmation.php:249
|
1457 |
+
#, php-format
|
1458 |
+
msgid "%s couldn't be deleted"
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: ../features/email-confirmation/class-email-confirmation.php:253
|
1462 |
+
msgid "All users have been successfully deleted"
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: ../features/email-confirmation/class-email-confirmation.php:263
|
1466 |
+
msgid "The selected users have been activated"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: ../features/email-confirmation/class-email-confirmation.php:274
|
1470 |
+
msgid "The selected users have had their activation emails resent"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: ../features/email-confirmation/class-email-confirmation.php:466
|
1474 |
+
#: ../features/email-confirmation/email-confirmation.php:47
|
1475 |
+
msgid "Users with Unconfirmed Email Address"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: ../features/email-confirmation/email-confirmation.php:110
|
1479 |
+
msgid "There was an error performing that action!"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: ../features/email-confirmation/email-confirmation.php:118
|
1483 |
+
msgid "The selected user couldn't be deleted"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: ../features/email-confirmation/email-confirmation.php:129
|
1487 |
+
msgid "Email notification resent to user"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: ../features/email-confirmation/email-confirmation.php:364
|
1491 |
+
#, php-format
|
1492 |
+
msgid "[%1$s] Activate %2$s"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: ../features/email-confirmation/email-confirmation.php:367
|
1496 |
+
#, php-format
|
1497 |
+
msgid ""
|
1498 |
+
"To activate your user, please click the following link:\n"
|
1499 |
+
"\n"
|
1500 |
+
"%s%s%s\n"
|
1501 |
+
"\n"
|
1502 |
+
"After you activate it you will receive yet *another email* with your login."
|
1503 |
+
msgstr ""
|
1504 |
+
|
1505 |
+
#: ../features/email-confirmation/email-confirmation.php:406
|
1506 |
+
#: ../front-end/register.php:68
|
1507 |
+
msgid "Could not create user!"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: ../features/email-confirmation/email-confirmation.php:409
|
1511 |
+
msgid "That username is already activated!"
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: ../features/email-confirmation/email-confirmation.php:438
|
1515 |
+
msgid "There was an error while trying to activate the user"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: ../features/email-confirmation/email-confirmation.php:483
|
1519 |
+
#: ../modules/email-customizer/admin-email-customizer.php:73
|
1520 |
+
msgid "A new subscriber has (been) registered!"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: ../features/email-confirmation/email-confirmation.php:486
|
1524 |
+
#, php-format
|
1525 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: ../features/email-confirmation/email-confirmation.php:491
|
1529 |
+
msgid ""
|
1530 |
+
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
1531 |
+
"please remember that you need to approve this user before he/she can log in!"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: ../features/email-confirmation/email-confirmation.php:506
|
1535 |
+
#, php-format
|
1536 |
+
msgid "[%1$s] Your new account information"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: ../features/email-confirmation/email-confirmation.php:510
|
1540 |
+
#: ../features/email-confirmation/email-confirmation.php:513
|
1541 |
+
#: ../modules/email-customizer/email-customizer.php:395
|
1542 |
+
#: ../modules/email-customizer/email-customizer.php:402
|
1543 |
+
#: ../modules/email-customizer/email-customizer.php:416
|
1544 |
+
msgid "Your selected password at signup"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: ../features/email-confirmation/email-confirmation.php:512
|
1548 |
+
#, php-format
|
1549 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: ../features/email-confirmation/email-confirmation.php:521
|
1553 |
+
#: ../front-end/register.php:103
|
1554 |
+
msgid ""
|
1555 |
+
"Before you can access your account, an administrator needs to approve it. "
|
1556 |
+
"You will be notified via email."
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: ../features/functions.php:199 ../features/functions.php:200
|
1560 |
+
msgid "Profile Builder"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: ../features/functions.php:273
|
1564 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: ../features/functions.php:284
|
1568 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: ../features/functions.php:467
|
1572 |
+
msgid "Strength indicator"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: ../features/functions.php:492
|
1576 |
+
msgid "Very Weak"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: ../features/functions.php:506
|
1580 |
+
#, php-format
|
1581 |
+
msgid "Minimum length of %d characters"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: ../features/functions.php:580
|
1585 |
+
msgid "This field is required"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: ../features/functions.php:600
|
1589 |
+
msgid "Cancel"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: ../features/functions.php:632
|
1593 |
+
#, php-format
|
1594 |
+
msgid ""
|
1595 |
+
"To allow users to register for your website via Profile Builder, you first "
|
1596 |
+
"must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
|
1597 |
+
"Registration Settings make sure to check “User accounts may be registered”. "
|
1598 |
+
"%3$sDismiss%4$s"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: ../features/functions.php:636
|
1602 |
+
#, php-format
|
1603 |
+
msgid ""
|
1604 |
+
"To allow users to register for your website via Profile Builder, you first "
|
1605 |
+
"must enable user registration. Go to %1$sSettings -> General%2$s tab, and "
|
1606 |
+
"under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: ../features/login-widget/login-widget.php:10
|
1610 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: ../features/login-widget/login-widget.php:15
|
1614 |
+
msgid "Profile Builder Login Widget"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: ../features/login-widget/login-widget.php:63
|
1618 |
+
msgid "Title:"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: ../features/login-widget/login-widget.php:68
|
1622 |
+
msgid "After login redirect URL (optional):"
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: ../features/login-widget/login-widget.php:73
|
1626 |
+
msgid "Register page URL (optional):"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: ../features/login-widget/login-widget.php:78
|
1630 |
+
msgid "Password Recovery page URL (optional):"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: ../features/upgrades/upgrades-functions.php:91
|
1634 |
+
#: ../features/upgrades/upgrades-functions.php:134
|
1635 |
+
msgid "The usernames cannot be changed."
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: ../front-end/class-formbuilder.php:89
|
1639 |
+
msgid "Only an administrator can add new users."
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: ../front-end/class-formbuilder.php:99
|
1643 |
+
msgid "Users can register themselves or you can manually create users here."
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: ../front-end/class-formbuilder.php:99
|
1647 |
+
#: ../front-end/class-formbuilder.php:102
|
1648 |
+
msgid "This message is only visible by administrators"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: ../front-end/class-formbuilder.php:102
|
1652 |
+
msgid ""
|
1653 |
+
"Users cannot currently register themselves, but you can manually create "
|
1654 |
+
"users here."
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: ../front-end/class-formbuilder.php:114
|
1658 |
+
#, php-format
|
1659 |
+
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: ../front-end/class-formbuilder.php:114
|
1663 |
+
msgid "Log out of this account."
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: ../front-end/class-formbuilder.php:114
|
1667 |
+
msgid "Logout"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: ../front-end/class-formbuilder.php:120
|
1671 |
+
msgid "You must be logged in to edit your profile."
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: ../front-end/class-formbuilder.php:142
|
1675 |
+
msgid "here"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: ../front-end/class-formbuilder.php:144
|
1679 |
+
#, php-format
|
1680 |
+
msgid ""
|
1681 |
+
"You will soon be redirected automatically. If you see this page for more "
|
1682 |
+
"than %1$d seconds, please click %2$s.%3$s"
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
+
#: ../front-end/class-formbuilder.php:237
|
1686 |
+
#: ../front-end/class-formbuilder.php:244
|
1687 |
+
#, php-format
|
1688 |
+
msgid "The account %1s has been successfully created!"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: ../front-end/class-formbuilder.php:240
|
1692 |
+
#: ../front-end/class-formbuilder.php:250
|
1693 |
+
#, php-format
|
1694 |
+
msgid ""
|
1695 |
+
"Before you can access your account %1s, you need to confirm your email "
|
1696 |
+
"address. Please check your inbox and click the activation link."
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: ../front-end/class-formbuilder.php:246
|
1700 |
+
#, php-format
|
1701 |
+
msgid ""
|
1702 |
+
"Before you can access your account %1s, an administrator has to approve it. "
|
1703 |
+
"You will be notified via email."
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: ../front-end/class-formbuilder.php:260
|
1707 |
+
msgid "Your profile has been successfully updated!"
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: ../front-end/class-formbuilder.php:270
|
1711 |
+
msgid "There was an error in the submitted form"
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: ../front-end/class-formbuilder.php:291
|
1715 |
+
msgid "Add User"
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: ../front-end/class-formbuilder.php:291 ../front-end/login.php:202
|
1719 |
+
msgid "Register"
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: ../front-end/class-formbuilder.php:336
|
1723 |
+
#: ../front-end/extra-fields/extra-fields.php:35
|
1724 |
+
msgid "The avatar was successfully deleted!"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: ../front-end/class-formbuilder.php:336
|
1728 |
+
#: ../front-end/extra-fields/extra-fields.php:37
|
1729 |
+
msgid "The following attachment was successfully deleted:"
|
1730 |
+
msgstr ""
|
1731 |
+
|
1732 |
+
#: ../front-end/class-formbuilder.php:348
|
1733 |
+
msgid "Send these credentials via email."
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: ../front-end/class-formbuilder.php:496
|
1737 |
+
msgid "User to edit:"
|
1738 |
+
msgstr ""
|
1739 |
+
|
1740 |
+
#: ../front-end/default-fields/email/email.php:42
|
1741 |
+
msgid "The email you entered is not a valid email address."
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
#: ../front-end/default-fields/email/email.php:46
|
1745 |
+
msgid "You must enter a valid email address."
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
+
#: ../front-end/default-fields/email/email.php:55
|
1749 |
+
#: ../front-end/default-fields/email/email.php:60
|
1750 |
+
msgid "This email is already reserved to be used soon."
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: ../front-end/default-fields/email/email.php:55
|
1754 |
+
#: ../front-end/default-fields/email/email.php:60
|
1755 |
+
#: ../front-end/default-fields/email/email.php:68
|
1756 |
+
#: ../front-end/default-fields/email/email.php:79
|
1757 |
+
#: ../front-end/default-fields/username/username.php:44
|
1758 |
+
#: ../front-end/default-fields/username/username.php:54
|
1759 |
+
msgid "Please try a different one!"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: ../front-end/default-fields/email/email.php:68
|
1763 |
+
#: ../front-end/default-fields/email/email.php:79
|
1764 |
+
msgid "This email is already in use."
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:35
|
1768 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:39
|
1769 |
+
msgid "The passwords do not match"
|
1770 |
+
msgstr ""
|
1771 |
+
|
1772 |
+
#: ../front-end/default-fields/password/password.php:44
|
1773 |
+
#: ../front-end/recover.php:236
|
1774 |
+
#, php-format
|
1775 |
+
msgid "The password must have the minimum length of %s characters"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: ../front-end/default-fields/password/password.php:48
|
1779 |
+
#: ../front-end/recover.php:240
|
1780 |
+
#, php-format
|
1781 |
+
msgid "The password must have a minimum strength of %s"
|
1782 |
+
msgstr ""
|
1783 |
+
|
1784 |
+
#: ../front-end/default-fields/username/username.php:44
|
1785 |
+
msgid "This username already exists."
|
1786 |
+
msgstr ""
|
1787 |
+
|
1788 |
+
#: ../front-end/default-fields/username/username.php:47
|
1789 |
+
msgid "This username is invalid because it uses illegal characters."
|
1790 |
+
msgstr ""
|
1791 |
+
|
1792 |
+
#: ../front-end/default-fields/username/username.php:47
|
1793 |
+
msgid "Please enter a valid username."
|
1794 |
+
msgstr ""
|
1795 |
+
|
1796 |
+
#: ../front-end/default-fields/username/username.php:54
|
1797 |
+
msgid "This username is already reserved to be used soon."
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: ../front-end/extra-fields/avatar/avatar.php:65
|
1801 |
+
#: ../front-end/extra-fields/avatar/avatar.php:103
|
1802 |
+
#: ../front-end/extra-fields/upload/upload.php:29
|
1803 |
+
#: ../front-end/extra-fields/upload/upload.php:68
|
1804 |
+
msgid "max upload size"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1808 |
+
msgid "Current avatar: No uploaded avatar"
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: ../front-end/extra-fields/avatar/avatar.php:76
|
1812 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1813 |
+
msgid "Avatar"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1817 |
+
#: ../front-end/extra-fields/avatar/avatar.php:85
|
1818 |
+
#: ../front-end/extra-fields/avatar/avatar.php:113
|
1819 |
+
#: ../front-end/extra-fields/avatar/avatar.php:115
|
1820 |
+
msgid "Click to see the current avatar"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1824 |
+
#: ../front-end/extra-fields/avatar/avatar.php:113
|
1825 |
+
msgid ""
|
1826 |
+
"The avatar can't be deleted (It was marked as required by the administrator)"
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: ../front-end/extra-fields/avatar/avatar.php:87
|
1830 |
+
#: ../front-end/extra-fields/avatar/avatar.php:115
|
1831 |
+
msgid "Are you sure you want to delete this avatar?"
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: ../front-end/extra-fields/avatar/avatar.php:88
|
1835 |
+
#: ../front-end/extra-fields/avatar/avatar.php:115
|
1836 |
+
msgid "Click to delete the current avatar"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: ../front-end/extra-fields/avatar/avatar.php:96
|
1840 |
+
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1841 |
+
#: ../front-end/extra-fields/datepicker/datepicker.php:47
|
1842 |
+
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1843 |
+
#: ../front-end/extra-fields/input/input.php:28
|
1844 |
+
#: ../front-end/extra-fields/radio/radio.php:42
|
1845 |
+
#: ../front-end/extra-fields/select-multiple/select-multiple.php:44
|
1846 |
+
#: ../front-end/extra-fields/select-timezone/select-timezone.php:42
|
1847 |
+
#: ../front-end/extra-fields/select/select.php:44
|
1848 |
+
#: ../front-end/extra-fields/textarea/textarea.php:28
|
1849 |
+
#: ../front-end/extra-fields/upload/upload.php:62
|
1850 |
+
#: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
1851 |
+
msgid "required"
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: ../front-end/extra-fields/avatar/avatar.php:106
|
1855 |
+
msgid "Current avatar"
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: ../front-end/extra-fields/avatar/avatar.php:106
|
1859 |
+
msgid "No uploaded avatar"
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: ../front-end/extra-fields/avatar/avatar.php:124
|
1863 |
+
#, php-format
|
1864 |
+
msgid ""
|
1865 |
+
"The image file set in the %s field for this user could not be found on the "
|
1866 |
+
"server. The default WordPress avatar is being used at the moment."
|
1867 |
+
msgstr ""
|
1868 |
+
|
1869 |
+
#: ../front-end/extra-fields/avatar/avatar.php:212
|
1870 |
+
#: ../front-end/extra-fields/upload/upload.php:173
|
1871 |
+
msgid "The extension of the file did not match"
|
1872 |
+
msgstr ""
|
1873 |
+
|
1874 |
+
#: ../front-end/extra-fields/avatar/avatar.php:215
|
1875 |
+
#: ../front-end/extra-fields/avatar/avatar.php:218
|
1876 |
+
#: ../front-end/extra-fields/upload/upload.php:177
|
1877 |
+
#: ../front-end/extra-fields/upload/upload.php:180
|
1878 |
+
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1879 |
+
msgstr ""
|
1880 |
+
|
1881 |
+
#: ../front-end/extra-fields/avatar/avatar.php:221
|
1882 |
+
#: ../front-end/extra-fields/upload/upload.php:183
|
1883 |
+
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: ../front-end/extra-fields/avatar/avatar.php:224
|
1887 |
+
msgid "The file could only partially be uploaded "
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: ../front-end/extra-fields/avatar/avatar.php:227
|
1891 |
+
#: ../front-end/extra-fields/avatar/avatar.php:251
|
1892 |
+
#: ../front-end/extra-fields/avatar/avatar.php:254
|
1893 |
+
#: ../front-end/extra-fields/upload/upload.php:189
|
1894 |
+
#: ../front-end/extra-fields/upload/upload.php:213
|
1895 |
+
#: ../front-end/extra-fields/upload/upload.php:216
|
1896 |
+
msgid "No file was selected"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: ../front-end/extra-fields/avatar/avatar.php:230
|
1900 |
+
#: ../front-end/extra-fields/upload/upload.php:192
|
1901 |
+
msgid "The temporary upload folder is missing from the system"
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: ../front-end/extra-fields/avatar/avatar.php:233
|
1905 |
+
#: ../front-end/extra-fields/upload/upload.php:195
|
1906 |
+
msgid "The file failed to write to the disk"
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: ../front-end/extra-fields/avatar/avatar.php:236
|
1910 |
+
#: ../front-end/extra-fields/upload/upload.php:198
|
1911 |
+
msgid "A PHP extension stopped the file upload"
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
+
#: ../front-end/extra-fields/avatar/avatar.php:239
|
1915 |
+
msgid "Unknown error occurred"
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:89
|
1919 |
+
#: ../front-end/login.php:96 ../front-end/login.php:110
|
1920 |
+
#: ../front-end/recover.php:17 ../front-end/recover.php:213
|
1921 |
+
msgid "ERROR"
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:45
|
1925 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:75
|
1929 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:137
|
1933 |
+
msgid "To use reCAPTCHA you must get an API public key from:"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:140
|
1937 |
+
msgid "To use reCAPTCHA you must get an API private key from:"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: ../front-end/extra-fields/upload/upload.php:35
|
1941 |
+
msgid "Current file: No uploaded attachment"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: ../front-end/extra-fields/upload/upload.php:39
|
1945 |
+
#: ../front-end/extra-fields/upload/upload.php:48
|
1946 |
+
#: ../front-end/extra-fields/upload/upload.php:71
|
1947 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
1948 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1949 |
+
msgid "Current file"
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#: ../front-end/extra-fields/upload/upload.php:42
|
1953 |
+
#: ../front-end/extra-fields/upload/upload.php:51
|
1954 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
1955 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1956 |
+
msgid "Click to see the current attachment"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: ../front-end/extra-fields/upload/upload.php:44
|
1960 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
1961 |
+
msgid ""
|
1962 |
+
"The attachment can't be deleted (It was marked as required by the "
|
1963 |
+
"administrator)"
|
1964 |
+
msgstr ""
|
1965 |
+
|
1966 |
+
#: ../front-end/extra-fields/upload/upload.php:53
|
1967 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1968 |
+
msgid "Are you sure you want to delete this attachment?"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: ../front-end/extra-fields/upload/upload.php:54
|
1972 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1973 |
+
msgid "Click to delete the current attachment"
|
1974 |
+
msgstr ""
|
1975 |
+
|
1976 |
+
#: ../front-end/extra-fields/upload/upload.php:71
|
1977 |
+
msgid "No uploaded attachment"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: ../front-end/extra-fields/upload/upload.php:164
|
1981 |
+
msgid "The extension of the file is not allowed"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: ../front-end/extra-fields/upload/upload.php:186
|
1985 |
+
msgid "The file could only partially be uploaded"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: ../front-end/extra-fields/upload/upload.php:201
|
1989 |
+
msgid "This field wasn't updated because an unknown error occured"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: ../front-end/extra-fields/user-role/user-role.php:65
|
1993 |
+
#: ../front-end/extra-fields/user-role/user-role.php:78
|
1994 |
+
msgid "Only administrators can see this field on edit profile forms."
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
#: ../front-end/extra-fields/user-role/user-role.php:74
|
1998 |
+
msgid "As an administrator you cannot change your role."
|
1999 |
+
msgstr ""
|
2000 |
+
|
2001 |
+
#: ../front-end/extra-fields/user-role/user-role.php:106
|
2002 |
+
msgid "You cannot register this user role"
|
2003 |
+
msgstr ""
|
2004 |
+
|
2005 |
+
#: ../front-end/login.php:89
|
2006 |
+
msgid "The password you entered is incorrect."
|
2007 |
+
msgstr ""
|
2008 |
+
|
2009 |
+
#: ../front-end/login.php:90 ../front-end/login.php:97
|
2010 |
+
msgid "Password Lost and Found."
|
2011 |
+
msgstr ""
|
2012 |
+
|
2013 |
+
#: ../front-end/login.php:90 ../front-end/login.php:97
|
2014 |
+
msgid "Lost your password"
|
2015 |
+
msgstr ""
|
2016 |
+
|
2017 |
+
#: ../front-end/login.php:96
|
2018 |
+
msgid "Invalid username."
|
2019 |
+
msgstr ""
|
2020 |
+
|
2021 |
+
#: ../front-end/login.php:101 ../front-end/login.php:105
|
2022 |
+
msgid "username"
|
2023 |
+
msgstr ""
|
2024 |
+
|
2025 |
+
#: ../front-end/login.php:101
|
2026 |
+
msgid "email"
|
2027 |
+
msgstr ""
|
2028 |
+
|
2029 |
+
#: ../front-end/login.php:105
|
2030 |
+
msgid "username or email"
|
2031 |
+
msgstr ""
|
2032 |
+
|
2033 |
+
#: ../front-end/login.php:110
|
2034 |
+
msgid "Both fields are empty."
|
2035 |
+
msgstr ""
|
2036 |
+
|
2037 |
+
#: ../front-end/login.php:174
|
2038 |
+
msgid "Username or Email"
|
2039 |
+
msgstr ""
|
2040 |
+
|
2041 |
+
#: ../front-end/login.php:208
|
2042 |
+
msgid "Lost your password?"
|
2043 |
+
msgstr ""
|
2044 |
+
|
2045 |
+
#: ../front-end/login.php:241 ../front-end/logout.php:17
|
2046 |
+
msgid "Log out of this account"
|
2047 |
+
msgstr ""
|
2048 |
+
|
2049 |
+
#: ../front-end/login.php:241
|
2050 |
+
msgid "Log out"
|
2051 |
+
msgstr ""
|
2052 |
+
|
2053 |
+
#: ../front-end/login.php:242
|
2054 |
+
#, php-format
|
2055 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: ../front-end/logout.php:15
|
2059 |
+
#, php-format
|
2060 |
+
msgid "You are currently logged in as %s. "
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: ../front-end/logout.php:15
|
2064 |
+
msgid "Log out »"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: ../front-end/recover.php:17
|
2068 |
+
msgid ""
|
2069 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
2070 |
+
"\"Password Reset\" feature."
|
2071 |
+
msgstr ""
|
2072 |
+
|
2073 |
+
#: ../front-end/recover.php:91
|
2074 |
+
msgid "Reset Password"
|
2075 |
+
msgstr ""
|
2076 |
+
|
2077 |
+
#: ../front-end/recover.php:111
|
2078 |
+
msgid "Please enter your username or email address."
|
2079 |
+
msgstr ""
|
2080 |
+
|
2081 |
+
#: ../front-end/recover.php:112
|
2082 |
+
msgid "You will receive a link to create a new password via email."
|
2083 |
+
msgstr ""
|
2084 |
+
|
2085 |
+
#: ../front-end/recover.php:119
|
2086 |
+
msgid "Username or E-mail"
|
2087 |
+
msgstr ""
|
2088 |
+
|
2089 |
+
#: ../front-end/recover.php:125
|
2090 |
+
msgid "Get New Password"
|
2091 |
+
msgstr ""
|
2092 |
+
|
2093 |
+
#: ../front-end/recover.php:166
|
2094 |
+
msgid "The username entered wasn't found in the database!"
|
2095 |
+
msgstr ""
|
2096 |
+
|
2097 |
+
#: ../front-end/recover.php:166
|
2098 |
+
msgid "Please check that you entered the correct username."
|
2099 |
+
msgstr ""
|
2100 |
+
|
2101 |
+
#: ../front-end/recover.php:181
|
2102 |
+
msgid "Check your e-mail for the confirmation link."
|
2103 |
+
msgstr ""
|
2104 |
+
|
2105 |
+
#: ../front-end/recover.php:201
|
2106 |
+
#, php-format
|
2107 |
+
msgid ""
|
2108 |
+
"Someone requested that the password be reset for the following account: <b>"
|
2109 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
2110 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
2111 |
+
msgstr ""
|
2112 |
+
|
2113 |
+
#: ../front-end/recover.php:204
|
2114 |
+
#, php-format
|
2115 |
+
msgid "Password Reset from \"%1$s\""
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: ../front-end/recover.php:213
|
2119 |
+
#, php-format
|
2120 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: ../front-end/recover.php:222
|
2124 |
+
msgid "The email address entered wasn't found in the database!"
|
2125 |
+
msgstr ""
|
2126 |
+
|
2127 |
+
#: ../front-end/recover.php:222
|
2128 |
+
msgid "Please check that you entered the correct email address."
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: ../front-end/recover.php:247
|
2132 |
+
msgid "Your password has been successfully changed!"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: ../front-end/recover.php:266
|
2136 |
+
#, php-format
|
2137 |
+
msgid "You have successfully reset your password to: %1$s"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: ../front-end/recover.php:269 ../front-end/recover.php:283
|
2141 |
+
#, php-format
|
2142 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
2143 |
+
msgstr ""
|
2144 |
+
|
2145 |
+
#: ../front-end/recover.php:280
|
2146 |
+
#, php-format
|
2147 |
+
msgid ""
|
2148 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
2149 |
+
"her new password is:%2$s"
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: ../front-end/recover.php:299
|
2153 |
+
msgid "The entered passwords don't match!"
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: ../front-end/recover.php:344
|
2157 |
+
msgid "ERROR:"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: ../front-end/recover.php:344
|
2161 |
+
msgid "Invalid key!"
|
2162 |
+
msgstr ""
|
2163 |
+
|
2164 |
+
#: ../front-end/register.php:46
|
2165 |
+
msgid "Invalid activation key!"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: ../front-end/register.php:50
|
2169 |
+
msgid "This username is now active!"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: ../front-end/register.php:71
|
2173 |
+
msgid "This username is already activated!"
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: ../front-end/register.php:102
|
2177 |
+
msgid "Your email was successfully confirmed."
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
#: ../front-end/register.php:112
|
2181 |
+
msgid "There was an error while trying to activate the user."
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: ../index.php:34
|
2185 |
+
msgid ""
|
2186 |
+
" is also activated. You need to deactivate it before activating this version "
|
2187 |
+
"of the plugin."
|
2188 |
+
msgstr ""
|
2189 |
+
|
2190 |
+
#: ../modules/custom-redirects/custom-redirects.php:35
|
2191 |
+
msgid "Redirects on custom page requests:"
|
2192 |
+
msgstr ""
|
2193 |
+
|
2194 |
+
#: ../modules/custom-redirects/custom-redirects.php:39
|
2195 |
+
#: ../modules/custom-redirects/custom-redirects.php:85
|
2196 |
+
msgid "Action"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: ../modules/custom-redirects/custom-redirects.php:40
|
2200 |
+
#: ../modules/custom-redirects/custom-redirects.php:86
|
2201 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
2202 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
2203 |
+
msgid "Redirect"
|
2204 |
+
msgstr ""
|
2205 |
+
|
2206 |
+
#: ../modules/custom-redirects/custom-redirects.php:41
|
2207 |
+
#: ../modules/custom-redirects/custom-redirects.php:87
|
2208 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
2209 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
2210 |
+
msgid "URL"
|
2211 |
+
msgstr ""
|
2212 |
+
|
2213 |
+
#: ../modules/custom-redirects/custom-redirects.php:46
|
2214 |
+
msgid "After Registration:"
|
2215 |
+
msgstr ""
|
2216 |
+
|
2217 |
+
#: ../modules/custom-redirects/custom-redirects.php:48
|
2218 |
+
#: ../modules/custom-redirects/custom-redirects.php:58
|
2219 |
+
#: ../modules/custom-redirects/custom-redirects.php:68
|
2220 |
+
#: ../modules/custom-redirects/custom-redirects.php:94
|
2221 |
+
#: ../modules/custom-redirects/custom-redirects.php:104
|
2222 |
+
#: ../modules/custom-redirects/custom-redirects.php:114
|
2223 |
+
#: ../modules/custom-redirects/custom-redirects.php:124
|
2224 |
+
#: ../modules/modules.php:99 ../modules/modules.php:106
|
2225 |
+
#: ../modules/modules.php:113 ../modules/modules.php:120
|
2226 |
+
#: ../modules/modules.php:127 ../modules/modules.php:134
|
2227 |
+
msgid "Active"
|
2228 |
+
msgstr ""
|
2229 |
+
|
2230 |
+
#: ../modules/custom-redirects/custom-redirects.php:49
|
2231 |
+
#: ../modules/custom-redirects/custom-redirects.php:59
|
2232 |
+
#: ../modules/custom-redirects/custom-redirects.php:69
|
2233 |
+
#: ../modules/custom-redirects/custom-redirects.php:95
|
2234 |
+
#: ../modules/custom-redirects/custom-redirects.php:105
|
2235 |
+
#: ../modules/custom-redirects/custom-redirects.php:115
|
2236 |
+
#: ../modules/custom-redirects/custom-redirects.php:125
|
2237 |
+
#: ../modules/modules.php:100 ../modules/modules.php:107
|
2238 |
+
#: ../modules/modules.php:114 ../modules/modules.php:121
|
2239 |
+
#: ../modules/modules.php:128 ../modules/modules.php:135
|
2240 |
+
msgid "Inactive"
|
2241 |
+
msgstr ""
|
2242 |
+
|
2243 |
+
#: ../modules/custom-redirects/custom-redirects.php:56
|
2244 |
+
msgid "After Login:"
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: ../modules/custom-redirects/custom-redirects.php:66
|
2248 |
+
msgid "Recover Password (*)"
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: ../modules/custom-redirects/custom-redirects.php:77
|
2252 |
+
msgid ""
|
2253 |
+
"When activated this feature will redirect the user on both the default "
|
2254 |
+
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
2255 |
+
"Profile Builder on the front-end login page."
|
2256 |
+
msgstr ""
|
2257 |
+
|
2258 |
+
#: ../modules/custom-redirects/custom-redirects.php:81
|
2259 |
+
msgid "Redirects on default WordPress page requests:"
|
2260 |
+
msgstr ""
|
2261 |
+
|
2262 |
+
#: ../modules/custom-redirects/custom-redirects.php:92
|
2263 |
+
msgid "Default WordPress Login Page"
|
2264 |
+
msgstr ""
|
2265 |
+
|
2266 |
+
#: ../modules/custom-redirects/custom-redirects.php:102
|
2267 |
+
msgid "Default WordPress Logout Page"
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
+
#: ../modules/custom-redirects/custom-redirects.php:112
|
2271 |
+
msgid "Default WordPress Register Page"
|
2272 |
+
msgstr ""
|
2273 |
+
|
2274 |
+
#: ../modules/custom-redirects/custom-redirects.php:122
|
2275 |
+
msgid "Default WordPress Dashboard (*)"
|
2276 |
+
msgstr ""
|
2277 |
+
|
2278 |
+
#: ../modules/custom-redirects/custom-redirects.php:133
|
2279 |
+
msgid ""
|
2280 |
+
"Redirects every user-role EXCEPT the ones with administrator privileges (can "
|
2281 |
+
"manage options)."
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: ../modules/email-customizer/admin-email-customizer.php:11
|
2285 |
+
#: ../modules/email-customizer/admin-email-customizer.php:12
|
2286 |
+
#: ../modules/modules.php:118
|
2287 |
+
msgid "Admin Email Customizer"
|
2288 |
+
msgstr ""
|
2289 |
+
|
2290 |
+
#: ../modules/email-customizer/admin-email-customizer.php:38
|
2291 |
+
msgid ""
|
2292 |
+
"These settings are also replicated in the \"User Email Customizer\" settings-"
|
2293 |
+
"page upon save."
|
2294 |
+
msgstr ""
|
2295 |
+
|
2296 |
+
#: ../modules/email-customizer/admin-email-customizer.php:38
|
2297 |
+
#: ../modules/email-customizer/user-email-customizer.php:38
|
2298 |
+
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
2299 |
+
msgstr ""
|
2300 |
+
|
2301 |
+
#: ../modules/email-customizer/admin-email-customizer.php:41
|
2302 |
+
#: ../modules/email-customizer/user-email-customizer.php:41
|
2303 |
+
msgid "From (name)"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: ../modules/email-customizer/admin-email-customizer.php:49
|
2307 |
+
#: ../modules/email-customizer/user-email-customizer.php:49
|
2308 |
+
msgid "From (reply-to email)"
|
2309 |
+
msgstr ""
|
2310 |
+
|
2311 |
+
#: ../modules/email-customizer/admin-email-customizer.php:54
|
2312 |
+
#: ../modules/email-customizer/user-email-customizer.php:54
|
2313 |
+
msgid ""
|
2314 |
+
"Must be a valid email address or the tag {{reply_to}} which defaults to the "
|
2315 |
+
"administrator email"
|
2316 |
+
msgstr ""
|
2317 |
+
|
2318 |
+
#: ../modules/email-customizer/admin-email-customizer.php:57
|
2319 |
+
#: ../modules/email-customizer/user-email-customizer.php:57
|
2320 |
+
msgid "Common Settings"
|
2321 |
+
msgstr ""
|
2322 |
+
|
2323 |
+
#: ../modules/email-customizer/admin-email-customizer.php:60
|
2324 |
+
msgid ""
|
2325 |
+
"\n"
|
2326 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
2327 |
+
"<p>Username:{{username}}</p>\n"
|
2328 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
+
#: ../modules/email-customizer/admin-email-customizer.php:69
|
2332 |
+
#: ../modules/email-customizer/admin-email-customizer.php:99
|
2333 |
+
#: ../modules/email-customizer/admin-email-customizer.php:126
|
2334 |
+
#: ../modules/email-customizer/user-email-customizer.php:71
|
2335 |
+
#: ../modules/email-customizer/user-email-customizer.php:99
|
2336 |
+
#: ../modules/email-customizer/user-email-customizer.php:128
|
2337 |
+
#: ../modules/email-customizer/user-email-customizer.php:155
|
2338 |
+
#: ../modules/email-customizer/user-email-customizer.php:183
|
2339 |
+
#: ../modules/email-customizer/user-email-customizer.php:214
|
2340 |
+
#: ../modules/email-customizer/user-email-customizer.php:241
|
2341 |
+
msgid "Email Subject"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: ../modules/email-customizer/admin-email-customizer.php:84
|
2345 |
+
msgid "Default Registration & Registration with Email Confirmation"
|
2346 |
+
msgstr ""
|
2347 |
+
|
2348 |
+
#: ../modules/email-customizer/admin-email-customizer.php:87
|
2349 |
+
msgid ""
|
2350 |
+
"\n"
|
2351 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
2352 |
+
"<p>Username:{{username}}</p>\n"
|
2353 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
2354 |
+
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
2355 |
+
"so please remember that you need to approve this user before he/she can log "
|
2356 |
+
"in!</p>\n"
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: ../modules/email-customizer/admin-email-customizer.php:114
|
2360 |
+
#: ../modules/email-customizer/user-email-customizer.php:143
|
2361 |
+
msgid "Registration with Admin Approval"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: ../modules/email-customizer/admin-email-customizer.php:117
|
2365 |
+
msgid ""
|
2366 |
+
"\n"
|
2367 |
+
"<p>{{username}} has requested a password change via the password reset "
|
2368 |
+
"feature.</p>\n"
|
2369 |
+
"<p>His/her new password is: {{password}}</p>\n"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: ../modules/email-customizer/admin-email-customizer.php:141
|
2373 |
+
msgid "Admin Notification for User Password Reset"
|
2374 |
+
msgstr ""
|
2375 |
+
|
2376 |
+
#: ../modules/email-customizer/email-customizer.php:7
|
2377 |
+
msgid "Available Tags"
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: ../modules/email-customizer/email-customizer.php:21
|
2381 |
+
msgid "Site Url"
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
+
#: ../modules/email-customizer/email-customizer.php:22
|
2385 |
+
msgid "Site Name"
|
2386 |
+
msgstr ""
|
2387 |
+
|
2388 |
+
#: ../modules/email-customizer/email-customizer.php:25
|
2389 |
+
#: ../modules/user-listing/userlisting.php:133
|
2390 |
+
msgid "User Id"
|
2391 |
+
msgstr ""
|
2392 |
+
|
2393 |
+
#: ../modules/email-customizer/email-customizer.php:31
|
2394 |
+
msgid "User Role"
|
2395 |
+
msgstr ""
|
2396 |
+
|
2397 |
+
#: ../modules/email-customizer/email-customizer.php:33
|
2398 |
+
msgid "Reply To"
|
2399 |
+
msgstr ""
|
2400 |
+
|
2401 |
+
#: ../modules/email-customizer/email-customizer.php:36
|
2402 |
+
msgid "Activation Key"
|
2403 |
+
msgstr ""
|
2404 |
+
|
2405 |
+
#: ../modules/email-customizer/email-customizer.php:37
|
2406 |
+
msgid "Activation Url"
|
2407 |
+
msgstr ""
|
2408 |
+
|
2409 |
+
#: ../modules/email-customizer/email-customizer.php:38
|
2410 |
+
msgid "Activation Link"
|
2411 |
+
msgstr ""
|
2412 |
+
|
2413 |
+
#: ../modules/email-customizer/email-customizer.php:42
|
2414 |
+
msgid "Reset Key"
|
2415 |
+
msgstr ""
|
2416 |
+
|
2417 |
+
#: ../modules/email-customizer/email-customizer.php:43
|
2418 |
+
msgid "Reset Url"
|
2419 |
+
msgstr ""
|
2420 |
+
|
2421 |
+
#: ../modules/email-customizer/email-customizer.php:44
|
2422 |
+
msgid "Reset Link"
|
2423 |
+
msgstr ""
|
2424 |
+
|
2425 |
+
#: ../modules/email-customizer/user-email-customizer.php:11
|
2426 |
+
#: ../modules/email-customizer/user-email-customizer.php:12
|
2427 |
+
#: ../modules/modules.php:125
|
2428 |
+
msgid "User Email Customizer"
|
2429 |
+
msgstr ""
|
2430 |
+
|
2431 |
+
#: ../modules/email-customizer/user-email-customizer.php:38
|
2432 |
+
msgid ""
|
2433 |
+
"These settings are also replicated in the \"Admin Email Customizer\" "
|
2434 |
+
"settings-page upon save."
|
2435 |
+
msgstr ""
|
2436 |
+
|
2437 |
+
#: ../modules/email-customizer/user-email-customizer.php:64
|
2438 |
+
msgid ""
|
2439 |
+
"\n"
|
2440 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
2441 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
2442 |
+
msgstr ""
|
2443 |
+
|
2444 |
+
#: ../modules/email-customizer/user-email-customizer.php:85
|
2445 |
+
msgid "Default Registration"
|
2446 |
+
msgstr ""
|
2447 |
+
|
2448 |
+
#: ../modules/email-customizer/user-email-customizer.php:91
|
2449 |
+
msgid ""
|
2450 |
+
"\n"
|
2451 |
+
"<p>To activate your user, please click the following link:<br/>\n"
|
2452 |
+
"{{{activation_link}}}</p>\n"
|
2453 |
+
"<p>After you activate, you will receive another email with your credentials."
|
2454 |
+
"</p>\n"
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: ../modules/email-customizer/user-email-customizer.php:103
|
2458 |
+
msgid "[{{site_name}}] Activate {{username}}"
|
2459 |
+
msgstr ""
|
2460 |
+
|
2461 |
+
#: ../modules/email-customizer/user-email-customizer.php:114
|
2462 |
+
msgid "Registration with Email Confirmation"
|
2463 |
+
msgstr ""
|
2464 |
+
|
2465 |
+
#: ../modules/email-customizer/user-email-customizer.php:120
|
2466 |
+
msgid ""
|
2467 |
+
"\n"
|
2468 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
2469 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
2470 |
+
"<p>Before you can access your account, an administrator needs to approve it. "
|
2471 |
+
"You will be notified via email.</p>\n"
|
2472 |
+
msgstr ""
|
2473 |
+
|
2474 |
+
#: ../modules/email-customizer/user-email-customizer.php:132
|
2475 |
+
msgid "A new account has been created for you on {{site_name}}"
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: ../modules/email-customizer/user-email-customizer.php:148
|
2479 |
+
msgid ""
|
2480 |
+
"\n"
|
2481 |
+
"<h3>Good News!</h3>\n"
|
2482 |
+
"<p>An administrator has just approved your account: {{username}} on "
|
2483 |
+
"{{site_name}}.</p>\n"
|
2484 |
+
msgstr ""
|
2485 |
+
|
2486 |
+
#: ../modules/email-customizer/user-email-customizer.php:159
|
2487 |
+
msgid "Your account on {{site_name}} has been approved!"
|
2488 |
+
msgstr ""
|
2489 |
+
|
2490 |
+
#: ../modules/email-customizer/user-email-customizer.php:170
|
2491 |
+
msgid "User Approval Notification"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: ../modules/email-customizer/user-email-customizer.php:175
|
2495 |
+
msgid ""
|
2496 |
+
"\n"
|
2497 |
+
"<h3>Hello,</h3>\n"
|
2498 |
+
"<p>Unfortunatelly an administrator has just unapproved your account: "
|
2499 |
+
"{{username}} on {{site_name}}.</p>\n"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: ../modules/email-customizer/user-email-customizer.php:187
|
2503 |
+
msgid "Your account on {{site_name}} has been unapproved!"
|
2504 |
+
msgstr ""
|
2505 |
+
|
2506 |
+
#: ../modules/email-customizer/user-email-customizer.php:198
|
2507 |
+
msgid "Unapproved User Notification"
|
2508 |
+
msgstr ""
|
2509 |
+
|
2510 |
+
#: ../modules/email-customizer/user-email-customizer.php:204
|
2511 |
+
msgid ""
|
2512 |
+
"\n"
|
2513 |
+
"<p>Someone requested that the password be reset for the following account: "
|
2514 |
+
"{{site_name}}<br/>\n"
|
2515 |
+
"Username: {{username}}</p>\n"
|
2516 |
+
"<p>If this was a mistake, just ignore this email and nothing will happen.</"
|
2517 |
+
"p>\n"
|
2518 |
+
"<p>To reset your password, visit the following address:<br/>\n"
|
2519 |
+
"{{{reset_link}}}</p>\n"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: ../modules/email-customizer/user-email-customizer.php:218
|
2523 |
+
msgid "[{{site_name}}] Password Reset"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: ../modules/email-customizer/user-email-customizer.php:229
|
2527 |
+
msgid "Password Reset Email"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: ../modules/email-customizer/user-email-customizer.php:235
|
2531 |
+
msgid ""
|
2532 |
+
"\n"
|
2533 |
+
"<p>You have successfully reset your password to: {{password}}</p>\n"
|
2534 |
+
msgstr ""
|
2535 |
+
|
2536 |
+
#: ../modules/email-customizer/user-email-customizer.php:245
|
2537 |
+
msgid "[{{site_name}}] Password Reset Successfully"
|
2538 |
+
msgstr ""
|
2539 |
+
|
2540 |
+
#: ../modules/email-customizer/user-email-customizer.php:256
|
2541 |
+
msgid "Password Reset Success Email"
|
2542 |
+
msgstr ""
|
2543 |
+
|
2544 |
+
#: ../modules/modules.php:11 ../modules/modules.php:80
|
2545 |
+
msgid "Modules"
|
2546 |
+
msgstr ""
|
2547 |
+
|
2548 |
+
#: ../modules/modules.php:81
|
2549 |
+
msgid ""
|
2550 |
+
"Here you can activate / deactivate available modules for Profile Builder."
|
2551 |
+
msgstr ""
|
2552 |
+
|
2553 |
+
#: ../modules/modules.php:91
|
2554 |
+
msgid "Name/Description"
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: ../modules/modules.php:92
|
2558 |
+
msgid "Status"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:11
|
2562 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:12
|
2563 |
+
msgid "Edit-profile Form"
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:13
|
2567 |
+
#: ../modules/multiple-forms/register-forms.php:13
|
2568 |
+
#: ../modules/user-listing/userlisting.php:13
|
2569 |
+
msgid "Add New"
|
2570 |
+
msgstr ""
|
2571 |
+
|
2572 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:14
|
2573 |
+
msgid "Add new Edit-profile Form"
|
2574 |
+
msgstr ""
|
2575 |
+
|
2576 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:15
|
2577 |
+
msgid "Edit the Edit-profile Forms"
|
2578 |
+
msgstr ""
|
2579 |
+
|
2580 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:16
|
2581 |
+
msgid "New Edit-profile Form"
|
2582 |
+
msgstr ""
|
2583 |
+
|
2584 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:17
|
2585 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:23
|
2586 |
+
msgid "Edit-profile Forms"
|
2587 |
+
msgstr ""
|
2588 |
+
|
2589 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:18
|
2590 |
+
msgid "View the Edit-profile Form"
|
2591 |
+
msgstr ""
|
2592 |
+
|
2593 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:19
|
2594 |
+
msgid "Search the Edit-profile Forms"
|
2595 |
+
msgstr ""
|
2596 |
+
|
2597 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:20
|
2598 |
+
msgid "No Edit-profile Form found"
|
2599 |
+
msgstr ""
|
2600 |
+
|
2601 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:21
|
2602 |
+
msgid "No Edit-profile Forms found in trash"
|
2603 |
+
msgstr ""
|
2604 |
+
|
2605 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:131
|
2606 |
+
#: ../modules/multiple-forms/register-forms.php:134
|
2607 |
+
#: ../modules/user-listing/userlisting.php:1140
|
2608 |
+
msgid "Shortcode"
|
2609 |
+
msgstr ""
|
2610 |
+
|
2611 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:151
|
2612 |
+
#: ../modules/multiple-forms/register-forms.php:155
|
2613 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2614 |
+
msgid "(no title)"
|
2615 |
+
msgstr ""
|
2616 |
+
|
2617 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:171
|
2618 |
+
#: ../modules/multiple-forms/register-forms.php:174
|
2619 |
+
#: ../modules/user-listing/userlisting.php:1181
|
2620 |
+
msgid "The shortcode will be available after you publish this form."
|
2621 |
+
msgstr ""
|
2622 |
+
|
2623 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:173
|
2624 |
+
#: ../modules/multiple-forms/register-forms.php:176
|
2625 |
+
#: ../modules/user-listing/userlisting.php:1183
|
2626 |
+
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2627 |
+
msgstr ""
|
2628 |
+
|
2629 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2630 |
+
#: ../modules/multiple-forms/register-forms.php:180
|
2631 |
+
#: ../modules/user-listing/userlisting.php:1187
|
2632 |
+
msgid ""
|
2633 |
+
"<span style=\"color:red;\">Note:</span> changing the form title also changes "
|
2634 |
+
"the shortcode!"
|
2635 |
+
msgstr ""
|
2636 |
+
|
2637 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:183
|
2638 |
+
#: ../modules/multiple-forms/register-forms.php:186
|
2639 |
+
#: ../modules/user-listing/userlisting.php:1220
|
2640 |
+
msgid "Form Shortcode"
|
2641 |
+
msgstr ""
|
2642 |
+
|
2643 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
2644 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
2645 |
+
msgid "Whether to redirect the user to a specific page or not"
|
2646 |
+
msgstr ""
|
2647 |
+
|
2648 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
2649 |
+
#: ../modules/multiple-forms/register-forms.php:227
|
2650 |
+
msgid "Display Messages"
|
2651 |
+
msgstr ""
|
2652 |
+
|
2653 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
2654 |
+
#: ../modules/multiple-forms/register-forms.php:227
|
2655 |
+
msgid "Allowed time to display any success messages (in seconds)"
|
2656 |
+
msgstr ""
|
2657 |
+
|
2658 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
2659 |
+
msgid ""
|
2660 |
+
"Specify the URL of the page users will be redirected once they updated their "
|
2661 |
+
"profile using this form<br/>Use the following format: http://www.mysite.com"
|
2662 |
+
msgstr ""
|
2663 |
+
|
2664 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:211
|
2665 |
+
msgid "After Profile Update..."
|
2666 |
+
msgstr ""
|
2667 |
+
|
2668 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:237
|
2669 |
+
#: ../modules/multiple-forms/register-forms.php:258
|
2670 |
+
msgid "Add New Field to the List"
|
2671 |
+
msgstr ""
|
2672 |
+
|
2673 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
2674 |
+
#: ../modules/multiple-forms/register-forms.php:262
|
2675 |
+
msgid "Choose one of the supported fields you manage <a href=\""
|
2676 |
+
msgstr ""
|
2677 |
+
|
2678 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:270
|
2679 |
+
msgid "This form is empty."
|
2680 |
+
msgstr ""
|
2681 |
+
|
2682 |
+
#: ../modules/multiple-forms/multiple-forms.php:232
|
2683 |
+
msgid "You need to specify the title of the form before creating it"
|
2684 |
+
msgstr ""
|
2685 |
+
|
2686 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
2687 |
+
msgid "<pre>Title (Type)</pre>"
|
2688 |
+
msgstr ""
|
2689 |
+
|
2690 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
2691 |
+
msgid "Delete all items"
|
2692 |
+
msgstr ""
|
2693 |
+
|
2694 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
2695 |
+
msgid "Delete all"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: ../modules/multiple-forms/register-forms.php:11
|
2699 |
+
#: ../modules/multiple-forms/register-forms.php:12
|
2700 |
+
msgid "Registration Form"
|
2701 |
+
msgstr ""
|
2702 |
+
|
2703 |
+
#: ../modules/multiple-forms/register-forms.php:14
|
2704 |
+
msgid "Add new Registration Form"
|
2705 |
+
msgstr ""
|
2706 |
+
|
2707 |
+
#: ../modules/multiple-forms/register-forms.php:15
|
2708 |
+
msgid "Edit the Registration Forms"
|
2709 |
+
msgstr ""
|
2710 |
+
|
2711 |
+
#: ../modules/multiple-forms/register-forms.php:16
|
2712 |
+
msgid "New Registration Form"
|
2713 |
+
msgstr ""
|
2714 |
+
|
2715 |
+
#: ../modules/multiple-forms/register-forms.php:17
|
2716 |
+
#: ../modules/multiple-forms/register-forms.php:23
|
2717 |
+
msgid "Registration Forms"
|
2718 |
+
msgstr ""
|
2719 |
+
|
2720 |
+
#: ../modules/multiple-forms/register-forms.php:18
|
2721 |
+
msgid "View the Registration Form"
|
2722 |
+
msgstr ""
|
2723 |
+
|
2724 |
+
#: ../modules/multiple-forms/register-forms.php:19
|
2725 |
+
msgid "Search the Registration Forms"
|
2726 |
+
msgstr ""
|
2727 |
+
|
2728 |
+
#: ../modules/multiple-forms/register-forms.php:20
|
2729 |
+
msgid "No Registration Form found"
|
2730 |
+
msgstr ""
|
2731 |
+
|
2732 |
+
#: ../modules/multiple-forms/register-forms.php:21
|
2733 |
+
msgid "No Registration Forms found in trash"
|
2734 |
+
msgstr ""
|
2735 |
+
|
2736 |
+
#: ../modules/multiple-forms/register-forms.php:215
|
2737 |
+
msgid "Default Role"
|
2738 |
+
msgstr ""
|
2739 |
+
|
2740 |
+
#: ../modules/multiple-forms/register-forms.php:224
|
2741 |
+
msgid "Set Role"
|
2742 |
+
msgstr ""
|
2743 |
+
|
2744 |
+
#: ../modules/multiple-forms/register-forms.php:224
|
2745 |
+
msgid ""
|
2746 |
+
"Choose what role the user will have after (s)he registered<br/>If not "
|
2747 |
+
"specified, defaults to the role set in the WordPress settings"
|
2748 |
+
msgstr ""
|
2749 |
+
|
2750 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
2751 |
+
msgid "Automatically Log In"
|
2752 |
+
msgstr ""
|
2753 |
+
|
2754 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
2755 |
+
msgid ""
|
2756 |
+
"Whether to automatically log in the newly registered user or not<br/>Only "
|
2757 |
+
"works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
|
2758 |
+
"features activated<br/>WARNING: Caching the registration form will make "
|
2759 |
+
"automatic login not work"
|
2760 |
+
msgstr ""
|
2761 |
+
|
2762 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
2763 |
+
msgid "Choose..."
|
2764 |
+
msgstr ""
|
2765 |
+
|
2766 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
2767 |
+
msgid ""
|
2768 |
+
"Specify the URL of the page users will be redirected once registered using "
|
2769 |
+
"this form<br/>Use the following format: http://www.mysite.com"
|
2770 |
+
msgstr ""
|
2771 |
+
|
2772 |
+
#: ../modules/multiple-forms/register-forms.php:234
|
2773 |
+
msgid "After Registration..."
|
2774 |
+
msgstr ""
|
2775 |
+
|
2776 |
+
#: ../modules/user-listing/class-userlisting.php:466
|
2777 |
+
#: ../modules/user-listing/userlisting.php:709
|
2778 |
+
#: ../modules/user-listing/userlisting.php:953
|
2779 |
+
#: ../modules/user-listing/userlisting.php:996
|
2780 |
+
#: ../modules/user-listing/userlisting.php:1340
|
2781 |
+
msgid "Search Users by All Fields"
|
2782 |
+
msgstr ""
|
2783 |
+
|
2784 |
+
#: ../modules/user-listing/userlisting.php:14
|
2785 |
+
msgid "Add new User Listing"
|
2786 |
+
msgstr ""
|
2787 |
+
|
2788 |
+
#: ../modules/user-listing/userlisting.php:15
|
2789 |
+
msgid "Edit the User Listing"
|
2790 |
+
msgstr ""
|
2791 |
+
|
2792 |
+
#: ../modules/user-listing/userlisting.php:16
|
2793 |
+
msgid "New User Listing"
|
2794 |
+
msgstr ""
|
2795 |
+
|
2796 |
+
#: ../modules/user-listing/userlisting.php:18
|
2797 |
+
msgid "View the User Listing"
|
2798 |
+
msgstr ""
|
2799 |
+
|
2800 |
+
#: ../modules/user-listing/userlisting.php:19
|
2801 |
+
msgid "Search the User Listing"
|
2802 |
+
msgstr ""
|
2803 |
+
|
2804 |
+
#: ../modules/user-listing/userlisting.php:20
|
2805 |
+
msgid "No User Listing found"
|
2806 |
+
msgstr ""
|
2807 |
+
|
2808 |
+
#: ../modules/user-listing/userlisting.php:21
|
2809 |
+
msgid "No User Listing found in trash"
|
2810 |
+
msgstr ""
|
2811 |
+
|
2812 |
+
#: ../modules/user-listing/userlisting.php:95
|
2813 |
+
msgid "Display name as"
|
2814 |
+
msgstr ""
|
2815 |
+
|
2816 |
+
#: ../modules/user-listing/userlisting.php:125
|
2817 |
+
#: ../modules/user-listing/userlisting.php:1248
|
2818 |
+
msgid "Registration Date"
|
2819 |
+
msgstr ""
|
2820 |
+
|
2821 |
+
#: ../modules/user-listing/userlisting.php:126
|
2822 |
+
#: ../modules/user-listing/userlisting.php:1252
|
2823 |
+
msgid "Number of Posts"
|
2824 |
+
msgstr ""
|
2825 |
+
|
2826 |
+
#: ../modules/user-listing/userlisting.php:130
|
2827 |
+
msgid "More Info"
|
2828 |
+
msgstr ""
|
2829 |
+
|
2830 |
+
#: ../modules/user-listing/userlisting.php:131
|
2831 |
+
msgid "More Info Url"
|
2832 |
+
msgstr ""
|
2833 |
+
|
2834 |
+
#: ../modules/user-listing/userlisting.php:132
|
2835 |
+
msgid "Avatar or Gravatar"
|
2836 |
+
msgstr ""
|
2837 |
+
|
2838 |
+
#: ../modules/user-listing/userlisting.php:134
|
2839 |
+
msgid "User Nicename"
|
2840 |
+
msgstr ""
|
2841 |
+
|
2842 |
+
#: ../modules/user-listing/userlisting.php:161
|
2843 |
+
msgid "Meta Variables"
|
2844 |
+
msgstr ""
|
2845 |
+
|
2846 |
+
#: ../modules/user-listing/userlisting.php:167
|
2847 |
+
msgid "Sort Variables"
|
2848 |
+
msgstr ""
|
2849 |
+
|
2850 |
+
#: ../modules/user-listing/userlisting.php:171
|
2851 |
+
#: ../modules/user-listing/userlisting.php:198
|
2852 |
+
msgid "Extra Functions"
|
2853 |
+
msgstr ""
|
2854 |
+
|
2855 |
+
#: ../modules/user-listing/userlisting.php:173
|
2856 |
+
msgid "Pagination"
|
2857 |
+
msgstr ""
|
2858 |
+
|
2859 |
+
#: ../modules/user-listing/userlisting.php:174
|
2860 |
+
msgid "Search all Fields"
|
2861 |
+
msgstr ""
|
2862 |
+
|
2863 |
+
#: ../modules/user-listing/userlisting.php:200
|
2864 |
+
msgid "Go Back Link"
|
2865 |
+
msgstr ""
|
2866 |
+
|
2867 |
+
#: ../modules/user-listing/userlisting.php:218
|
2868 |
+
msgid "All-userlisting Template"
|
2869 |
+
msgstr ""
|
2870 |
+
|
2871 |
+
#: ../modules/user-listing/userlisting.php:221
|
2872 |
+
msgid "Single-userlisting Template"
|
2873 |
+
msgstr ""
|
2874 |
+
|
2875 |
+
#: ../modules/user-listing/userlisting.php:338
|
2876 |
+
msgid "You do not have permission to view this user list"
|
2877 |
+
msgstr ""
|
2878 |
+
|
2879 |
+
#: ../modules/user-listing/userlisting.php:351
|
2880 |
+
msgid "You do not have the required user role to view this user list"
|
2881 |
+
msgstr ""
|
2882 |
+
|
2883 |
+
#: ../modules/user-listing/userlisting.php:364
|
2884 |
+
msgid "User not found"
|
2885 |
+
msgstr ""
|
2886 |
+
|
2887 |
+
#: ../modules/user-listing/userlisting.php:442
|
2888 |
+
msgid "None"
|
2889 |
+
msgstr ""
|
2890 |
+
|
2891 |
+
#: ../modules/user-listing/userlisting.php:599
|
2892 |
+
msgid "First/Lastname"
|
2893 |
+
msgstr ""
|
2894 |
+
|
2895 |
+
#: ../modules/user-listing/userlisting.php:605
|
2896 |
+
msgid "Sign-up Date"
|
2897 |
+
msgstr ""
|
2898 |
+
|
2899 |
+
#: ../modules/user-listing/userlisting.php:614
|
2900 |
+
#: ../modules/user-listing/userlisting.php:1251
|
2901 |
+
msgid "Display Name"
|
2902 |
+
msgstr ""
|
2903 |
+
|
2904 |
+
#: ../modules/user-listing/userlisting.php:623
|
2905 |
+
msgid "Posts"
|
2906 |
+
msgstr ""
|
2907 |
+
|
2908 |
+
#: ../modules/user-listing/userlisting.php:626
|
2909 |
+
#: ../modules/user-listing/userlisting.php:1257
|
2910 |
+
msgid "Aim"
|
2911 |
+
msgstr ""
|
2912 |
+
|
2913 |
+
#: ../modules/user-listing/userlisting.php:629
|
2914 |
+
#: ../modules/user-listing/userlisting.php:1258
|
2915 |
+
msgid "Yim"
|
2916 |
+
msgstr ""
|
2917 |
+
|
2918 |
+
#: ../modules/user-listing/userlisting.php:632
|
2919 |
+
#: ../modules/user-listing/userlisting.php:1259
|
2920 |
+
msgid "Jabber"
|
2921 |
+
msgstr ""
|
2922 |
+
|
2923 |
+
#: ../modules/user-listing/userlisting.php:812
|
2924 |
+
msgid "Click here to see more information about this user"
|
2925 |
+
msgstr ""
|
2926 |
+
|
2927 |
+
#: ../modules/user-listing/userlisting.php:812
|
2928 |
+
msgid "More..."
|
2929 |
+
msgstr ""
|
2930 |
+
|
2931 |
+
#: ../modules/user-listing/userlisting.php:815
|
2932 |
+
msgid "Click here to see more information about this user."
|
2933 |
+
msgstr ""
|
2934 |
+
|
2935 |
+
#: ../modules/user-listing/userlisting.php:907
|
2936 |
+
#: ../modules/user-listing/userlisting.php:910
|
2937 |
+
msgid "Click here to go back"
|
2938 |
+
msgstr ""
|
2939 |
+
|
2940 |
+
#: ../modules/user-listing/userlisting.php:907
|
2941 |
+
msgid "Back"
|
2942 |
+
msgstr ""
|
2943 |
+
|
2944 |
+
#: ../modules/user-listing/userlisting.php:940
|
2945 |
+
msgid "«« First"
|
2946 |
+
msgstr ""
|
2947 |
+
|
2948 |
+
#: ../modules/user-listing/userlisting.php:941
|
2949 |
+
msgid "« Prev"
|
2950 |
+
msgstr ""
|
2951 |
+
|
2952 |
+
#: ../modules/user-listing/userlisting.php:942
|
2953 |
+
msgid "Next » "
|
2954 |
+
msgstr ""
|
2955 |
+
|
2956 |
+
#: ../modules/user-listing/userlisting.php:943
|
2957 |
+
msgid "Last »»"
|
2958 |
+
msgstr ""
|
2959 |
+
|
2960 |
+
#: ../modules/user-listing/userlisting.php:972
|
2961 |
+
msgid "You don't have any pagination settings on this userlisting!"
|
2962 |
+
msgstr ""
|
2963 |
+
|
2964 |
+
#: ../modules/user-listing/userlisting.php:1013
|
2965 |
+
msgid "Search"
|
2966 |
+
msgstr ""
|
2967 |
+
|
2968 |
+
#: ../modules/user-listing/userlisting.php:1014
|
2969 |
+
msgid "Clear Results"
|
2970 |
+
msgstr ""
|
2971 |
+
|
2972 |
+
#: ../modules/user-listing/userlisting.php:1190
|
2973 |
+
#: ../modules/user-listing/userlisting.php:1194
|
2974 |
+
msgid "Extra shortcode parameters"
|
2975 |
+
msgstr ""
|
2976 |
+
|
2977 |
+
#: ../modules/user-listing/userlisting.php:1192
|
2978 |
+
msgid "View all extra shortcode parameters"
|
2979 |
+
msgstr ""
|
2980 |
+
|
2981 |
+
#: ../modules/user-listing/userlisting.php:1197
|
2982 |
+
msgid ""
|
2983 |
+
"displays users having a certain meta-value within a certain (extra) meta-"
|
2984 |
+
"field"
|
2985 |
+
msgstr ""
|
2986 |
+
|
2987 |
+
#: ../modules/user-listing/userlisting.php:1198
|
2988 |
+
msgid "Example:"
|
2989 |
+
msgstr ""
|
2990 |
+
|
2991 |
+
#: ../modules/user-listing/userlisting.php:1200
|
2992 |
+
msgid ""
|
2993 |
+
"Remember though, that the field-value combination must exist in the database."
|
2994 |
+
msgstr ""
|
2995 |
+
|
2996 |
+
#: ../modules/user-listing/userlisting.php:1206
|
2997 |
+
msgid "displays only the users that you specified the user_id for"
|
2998 |
+
msgstr ""
|
2999 |
+
|
3000 |
+
#: ../modules/user-listing/userlisting.php:1212
|
3001 |
+
msgid "displays all users except the ones you specified the user_id for"
|
3002 |
+
msgstr ""
|
3003 |
+
|
3004 |
+
#: ../modules/user-listing/userlisting.php:1269
|
3005 |
+
msgid "Random (very slow on large databases > 10K user)"
|
3006 |
+
msgstr ""
|
3007 |
+
|
3008 |
+
#: ../modules/user-listing/userlisting.php:1282
|
3009 |
+
msgid "Roles to Display"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: ../modules/user-listing/userlisting.php:1282
|
3013 |
+
msgid ""
|
3014 |
+
"Restrict the userlisting to these selected roles only<br/>If not specified, "
|
3015 |
+
"defaults to all existing roles"
|
3016 |
+
msgstr ""
|
3017 |
+
|
3018 |
+
#: ../modules/user-listing/userlisting.php:1283
|
3019 |
+
msgid "Number of Users/Page"
|
3020 |
+
msgstr ""
|
3021 |
+
|
3022 |
+
#: ../modules/user-listing/userlisting.php:1283
|
3023 |
+
msgid ""
|
3024 |
+
"Set the number of users to be displayed on every paginated part of the all-"
|
3025 |
+
"userlisting"
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: ../modules/user-listing/userlisting.php:1284
|
3029 |
+
msgid "Default Sorting Criteria"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: ../modules/user-listing/userlisting.php:1284
|
3033 |
+
msgid ""
|
3034 |
+
"Set the default sorting criteria<br/>This can temporarily be changed for "
|
3035 |
+
"each new session"
|
3036 |
+
msgstr ""
|
3037 |
+
|
3038 |
+
#: ../modules/user-listing/userlisting.php:1285
|
3039 |
+
msgid "Default Sorting Order"
|
3040 |
+
msgstr ""
|
3041 |
+
|
3042 |
+
#: ../modules/user-listing/userlisting.php:1285
|
3043 |
+
msgid ""
|
3044 |
+
"Set the default sorting order<br/>This can temporarily be changed for each "
|
3045 |
+
"new session"
|
3046 |
+
msgstr ""
|
3047 |
+
|
3048 |
+
#: ../modules/user-listing/userlisting.php:1286
|
3049 |
+
msgid "Avatar Size (All-userlisting)"
|
3050 |
+
msgstr ""
|
3051 |
+
|
3052 |
+
#: ../modules/user-listing/userlisting.php:1286
|
3053 |
+
msgid "Set the avatar size on the all-userlisting only"
|
3054 |
+
msgstr ""
|
3055 |
+
|
3056 |
+
#: ../modules/user-listing/userlisting.php:1287
|
3057 |
+
msgid "Avatar Size (Single-userlisting)"
|
3058 |
+
msgstr ""
|
3059 |
+
|
3060 |
+
#: ../modules/user-listing/userlisting.php:1287
|
3061 |
+
msgid "Set the avatar size on the single-userlisting only"
|
3062 |
+
msgstr ""
|
3063 |
+
|
3064 |
+
#: ../modules/user-listing/userlisting.php:1288
|
3065 |
+
msgid "Visible only to logged in users?"
|
3066 |
+
msgstr ""
|
3067 |
+
|
3068 |
+
#: ../modules/user-listing/userlisting.php:1288
|
3069 |
+
msgid "The userlisting will only be visible only to the logged in users"
|
3070 |
+
msgstr ""
|
3071 |
+
|
3072 |
+
#: ../modules/user-listing/userlisting.php:1289
|
3073 |
+
msgid "Visible to following Roles"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: ../modules/user-listing/userlisting.php:1289
|
3077 |
+
msgid "The userlisting will only be visible to the following roles"
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#: ../modules/user-listing/userlisting.php:1295
|
3081 |
+
msgid "Userlisting Settings"
|
3082 |
+
msgstr ""
|
3083 |
+
|
3084 |
+
#: ../modules/user-listing/userlisting.php:1316
|
3085 |
+
msgid ""
|
3086 |
+
"You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
3087 |
+
msgstr ""
|
3088 |
+
|
3089 |
+
#: ../modules/user-listing/userlisting.php:1316
|
3090 |
+
msgid "You can find it in the Profile Builder menu."
|
3091 |
+
msgstr ""
|
3092 |
+
|
3093 |
+
#: ../modules/user-listing/userlisting.php:1479
|
3094 |
+
msgid "No results found!"
|
3095 |
+
msgstr ""
|