Version Description
Download this release
Release Info
Developer | sareiodata |
Plugin | User registration & user profile – Profile Builder |
Version | 3.0.6 |
Comparing to | |
See all releases |
Code changes from version 3.0.5 to 3.0.6
- .gitignore +1 -0
- admin/add-ons.php +5 -2
- admin/manage-fields.php +88 -2
- admin/register-version.php +9 -4
- assets/js/script-front-end.js +9 -0
- features/content-restriction/content-restriction-functions.php +3 -1
- features/functions.php +1 -1
- front-end/class-formbuilder.php +9 -7
- front-end/default-fields/gdpr/gdpr.php +9 -1
- front-end/login.php +1 -1
- front-end/recover.php +238 -217
- front-end/register.php +1 -1
- index.php +3 -19
- package.json +12 -0
- readme.txt +8 -1
- translation/profile-builder.catalog.php +13 -13
- translation/profile-builder.pot +1417 -1422
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
node_modules
|
admin/add-ons.php
CHANGED
@@ -225,7 +225,9 @@ function wppb_add_ons_content() {
|
|
225 |
|
226 |
// Check to see if add-on is in the plugins folder
|
227 |
foreach ($wppb_get_all_plugins as $wppb_plugin_key => $wppb_plugin) {
|
228 |
-
if (strpos(strtolower($wppb_plugin['Name']),
|
|
|
|
|
229 |
$wppb_add_on_exists = 1;
|
230 |
|
231 |
if (in_array($wppb_plugin_key, $wppb_get_active_plugins)) {
|
@@ -238,6 +240,7 @@ function wppb_add_ons_content() {
|
|
238 |
$wppb_add_on_is_active = 1;
|
239 |
}
|
240 |
|
|
|
241 |
$wppb_add_on['plugin_file'] = $wppb_plugin_key;
|
242 |
}
|
243 |
}
|
@@ -448,4 +451,4 @@ function wppb_add_on_get_new_plugin_data() {
|
|
448 |
|
449 |
wp_die();
|
450 |
}
|
451 |
-
add_action( 'wp_ajax_wppb_add_on_get_new_plugin_data', 'wppb_add_on_get_new_plugin_data' );
|
225 |
|
226 |
// Check to see if add-on is in the plugins folder
|
227 |
foreach ($wppb_get_all_plugins as $wppb_plugin_key => $wppb_plugin) {
|
228 |
+
if ( strpos( strtolower( $wppb_plugin['Name'] ), 'profile builder' ) !== false &&
|
229 |
+
strpos( strtolower( $wppb_plugin['Name'] ), strtolower( $wppb_add_on['name'] ) ) !== false &&
|
230 |
+
strpos( strtolower( $wppb_plugin['AuthorName'] ), strtolower('Cozmoslabs') ) !== false ) {
|
231 |
$wppb_add_on_exists = 1;
|
232 |
|
233 |
if (in_array($wppb_plugin_key, $wppb_get_active_plugins)) {
|
240 |
$wppb_add_on_is_active = 1;
|
241 |
}
|
242 |
|
243 |
+
|
244 |
$wppb_add_on['plugin_file'] = $wppb_plugin_key;
|
245 |
}
|
246 |
}
|
451 |
|
452 |
wp_die();
|
453 |
}
|
454 |
+
add_action( 'wp_ajax_wppb_add_on_get_new_plugin_data', 'wppb_add_on_get_new_plugin_data' );
|
admin/manage-fields.php
CHANGED
@@ -175,7 +175,7 @@ function wppb_populate_manage_fields(){
|
|
175 |
$fields = apply_filters( 'wppb_manage_fields', array(
|
176 |
|
177 |
array( 'type' => 'text', 'slug' => 'field-title', 'title' => __( 'Field Title', 'profile-builder' ), 'description' => __( 'Title of the field', 'profile-builder' ) ),
|
178 |
-
array( 'type' => 'select', 'slug' => 'field', 'title' => __( 'Field', 'profile-builder' ), 'options' => apply_filters( '
|
179 |
array( 'type' => 'text', 'slug' => 'meta-name', 'title' => __( 'Meta-name', 'profile-builder' ), 'default' => wppb_get_meta_name(), 'description' => $meta_key_description ),
|
180 |
array( 'type' => 'text', 'slug' => 'id', 'title' => __( 'ID', 'profile-builder' ), 'default' => wppb_get_unique_id(), 'description' => __( "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited", 'profile-builder' ), 'readonly' => true ),
|
181 |
array( 'type' => 'textarea', 'slug' => 'description', 'title' => __( 'Description', 'profile-builder' ), 'description' => __( 'Enter a (detailed) description of the option for end users to read<br/>Optional', 'profile-builder') ),
|
@@ -183,7 +183,7 @@ function wppb_populate_manage_fields(){
|
|
183 |
array( 'type' => 'text', 'slug' => 'allowed-image-extensions', 'title' => __( 'Allowed Image Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)', 'profile-builder' ) ),
|
184 |
array( 'type' => 'text', 'slug' => 'allowed-upload-extensions', 'title' => __( 'Allowed Upload Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)', 'profile-builder' ) ),
|
185 |
array( 'type' => 'text', 'slug' => 'avatar-size', 'title' => __( 'Avatar Size', 'profile-builder' ), 'default' => 100, 'description' => __( "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", 'profile-builder' ) ),
|
186 |
-
array( 'type' => 'text', 'slug' => 'date-format', 'title' => __( 'Date-format', 'profile-builder' ), 'default' => 'mm/dd/yy', 'description' => __( 'Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy', 'profile-builder' ) ),
|
187 |
array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>', 'profile-builder' ) ),
|
188 |
array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profile-builder' ) ),
|
189 |
array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
|
@@ -1147,6 +1147,7 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
|
|
1147 |
if ( $posted_values['field'] == 'Datepicker' ){
|
1148 |
$date_format = strtolower( $posted_values['date-format'] );
|
1149 |
if ( trim( $date_format ) != 'mm/dd/yy' && trim( $date_format ) != 'mm/yy/dd' && trim( $date_format ) != 'dd/yy/mm' &&
|
|
|
1150 |
trim( $date_format ) != 'dd/mm/yy' && trim( $date_format ) != 'yy/dd/mm' && trim( $date_format ) != 'yy/mm/dd' &&
|
1151 |
trim( $date_format ) != 'yy-mm-dd' && trim( $date_format ) != 'DD, dd-M-y' && trim( $date_format ) != 'D, dd M yy' &&
|
1152 |
trim( $date_format ) != 'D, d M y' && trim( $date_format ) != 'D, d M yy' && trim( $date_format ) != 'mm-dd-yy' && trim( $date_format ) != '@' )
|
@@ -1512,6 +1513,91 @@ function wppb_delete_user_map_markers( $user_id, $meta_name ) {
|
|
1512 |
|
1513 |
}
|
1514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1515 |
/**
|
1516 |
* Disable the add button again after we added a field
|
1517 |
*/
|
175 |
$fields = apply_filters( 'wppb_manage_fields', array(
|
176 |
|
177 |
array( 'type' => 'text', 'slug' => 'field-title', 'title' => __( 'Field Title', 'profile-builder' ), 'description' => __( 'Title of the field', 'profile-builder' ) ),
|
178 |
+
array( 'type' => 'select', 'slug' => 'field', 'title' => __( 'Field', 'profile-builder' ), 'options' => apply_filters( 'wppb_manage_fields_types_options', $manage_field_types ), 'default-option' => true, 'description' => $field_description ),
|
179 |
array( 'type' => 'text', 'slug' => 'meta-name', 'title' => __( 'Meta-name', 'profile-builder' ), 'default' => wppb_get_meta_name(), 'description' => $meta_key_description ),
|
180 |
array( 'type' => 'text', 'slug' => 'id', 'title' => __( 'ID', 'profile-builder' ), 'default' => wppb_get_unique_id(), 'description' => __( "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited", 'profile-builder' ), 'readonly' => true ),
|
181 |
array( 'type' => 'textarea', 'slug' => 'description', 'title' => __( 'Description', 'profile-builder' ), 'description' => __( 'Enter a (detailed) description of the option for end users to read<br/>Optional', 'profile-builder') ),
|
183 |
array( 'type' => 'text', 'slug' => 'allowed-image-extensions', 'title' => __( 'Allowed Image Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)', 'profile-builder' ) ),
|
184 |
array( 'type' => 'text', 'slug' => 'allowed-upload-extensions', 'title' => __( 'Allowed Upload Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)', 'profile-builder' ) ),
|
185 |
array( 'type' => 'text', 'slug' => 'avatar-size', 'title' => __( 'Avatar Size', 'profile-builder' ), 'default' => 100, 'description' => __( "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", 'profile-builder' ) ),
|
186 |
+
array( 'type' => 'text', 'slug' => 'date-format', 'title' => __( 'Date-format', 'profile-builder' ), 'default' => 'mm/dd/yy', 'description' => __( 'Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy', 'profile-builder' ) ),
|
187 |
array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>', 'profile-builder' ) ),
|
188 |
array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profile-builder' ) ),
|
189 |
array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
|
1147 |
if ( $posted_values['field'] == 'Datepicker' ){
|
1148 |
$date_format = strtolower( $posted_values['date-format'] );
|
1149 |
if ( trim( $date_format ) != 'mm/dd/yy' && trim( $date_format ) != 'mm/yy/dd' && trim( $date_format ) != 'dd/yy/mm' &&
|
1150 |
+
trim( $date_format ) != 'dd/mm' && trim( $date_format ) != 'mm/dd' && trim( $date_format ) != 'mm/yy' &&
|
1151 |
trim( $date_format ) != 'dd/mm/yy' && trim( $date_format ) != 'yy/dd/mm' && trim( $date_format ) != 'yy/mm/dd' &&
|
1152 |
trim( $date_format ) != 'yy-mm-dd' && trim( $date_format ) != 'DD, dd-M-y' && trim( $date_format ) != 'D, dd M yy' &&
|
1153 |
trim( $date_format ) != 'D, d M y' && trim( $date_format ) != 'D, d M yy' && trim( $date_format ) != 'mm-dd-yy' && trim( $date_format ) != '@' )
|
1513 |
|
1514 |
}
|
1515 |
|
1516 |
+
|
1517 |
+
if ( ! function_exists( 'wppb_options_get_map_settings' ) ) {
|
1518 |
+
/**
|
1519 |
+
* Get all the map related attributes.
|
1520 |
+
*
|
1521 |
+
* @return string
|
1522 |
+
*/
|
1523 |
+
function wppb_options_get_map_settings() {
|
1524 |
+
$manage_fields = apply_filters(
|
1525 |
+
'wppb_form_fields',
|
1526 |
+
get_option( 'wppb_manage_fields', 'not_set' ),
|
1527 |
+
array( 'context' => 'map_api_key' )
|
1528 |
+
);
|
1529 |
+
foreach ( $manage_fields as $field ) {
|
1530 |
+
if ( ! empty( $field['map-api-key'] ) ) {
|
1531 |
+
// Fail-fast. This is what we need.
|
1532 |
+
return $field;
|
1533 |
+
}
|
1534 |
+
}
|
1535 |
+
|
1536 |
+
// Fallback.
|
1537 |
+
return null;
|
1538 |
+
}
|
1539 |
+
}
|
1540 |
+
|
1541 |
+
if ( ! function_exists( 'wppb_get_user_pin_bubble' ) ) {
|
1542 |
+
/**
|
1543 |
+
* Returns the map usable marker info.
|
1544 |
+
*
|
1545 |
+
* @param integer $id The user ID.
|
1546 |
+
* @param float $lat The latitude.
|
1547 |
+
* @param float $lng The longitude.
|
1548 |
+
* @param string $info The bubble inner info.
|
1549 |
+
* @param string $icon The pin custom icon.
|
1550 |
+
* @return string
|
1551 |
+
*/
|
1552 |
+
function wppb_get_user_pin_bubble( $id, $lat, $lng, $info, $icon = '' ) {
|
1553 |
+
return '<div class="marker marker-for-user-' . (int) $id . ' marker-content-info" data-lat="' . esc_attr( $lat ) . '" data-lng="' . esc_attr( $lng ) . '" data-icon="' . esc_attr( $icon ) . '"><div class="marker-content">' . wp_kses_post( $info ) . '</div></div>';
|
1554 |
+
}
|
1555 |
+
}
|
1556 |
+
|
1557 |
+
if ( ! function_exists( 'wppb_compute_simple_pin_content_for_user' ) ) {
|
1558 |
+
/**
|
1559 |
+
* Compute simple pin content for user.
|
1560 |
+
*
|
1561 |
+
* @param integer $id_user User ID.
|
1562 |
+
* @param array $settings Settings array.
|
1563 |
+
* @return string
|
1564 |
+
*/
|
1565 |
+
function wppb_compute_simple_pin_content_for_user( $id_user, $settings = array() ) {
|
1566 |
+
|
1567 |
+
if ( empty( $id_user ) ) {
|
1568 |
+
// Fail-fast.
|
1569 |
+
return '';
|
1570 |
+
}
|
1571 |
+
if ( empty( $settings ) ) {
|
1572 |
+
// Get one time the settings.
|
1573 |
+
$settings = wppb_options_get_map_settings();
|
1574 |
+
}
|
1575 |
+
|
1576 |
+
$args = ( ! empty( $settings['map-bubble-fields'] ) ) ? explode( ', ', $settings['map-bubble-fields'] ) : array();
|
1577 |
+
$result = '';
|
1578 |
+
if ( ! empty( $args ) ) {
|
1579 |
+
foreach ( $args as $tag ) {
|
1580 |
+
// Go to souce.
|
1581 |
+
if ( 'avatar_or_gravatar' == $tag ) {
|
1582 |
+
$val = apply_filters( 'mustache_variable_avatar_or_gravatar', '', $tag, array(), array(
|
1583 |
+
'user_id' => $id_user,
|
1584 |
+
) );
|
1585 |
+
} else {
|
1586 |
+
$val = apply_filters( 'mustache_variable_default_user_field', '', $tag, array(), array(
|
1587 |
+
'user_id' => $id_user,
|
1588 |
+
) );
|
1589 |
+
}
|
1590 |
+
if ( ! empty( $val ) ) {
|
1591 |
+
$result .= '<p class="marker-info-' . esc_attr( $tag ) . '">' . wp_kses_post( $val ) . '</p>';
|
1592 |
+
}
|
1593 |
+
}
|
1594 |
+
}
|
1595 |
+
|
1596 |
+
return $result;
|
1597 |
+
}
|
1598 |
+
}
|
1599 |
+
|
1600 |
+
|
1601 |
/**
|
1602 |
* Disable the add button again after we added a field
|
1603 |
*/
|
admin/register-version.php
CHANGED
@@ -102,7 +102,7 @@ function wppb_serial_form($version, $fullname){
|
|
102 |
|
103 |
|
104 |
//the function to check the validity of the serial number and save a variable in the DB; purely visual
|
105 |
-
function wppb_check_serial_number($oldVal, $newVal){
|
106 |
|
107 |
$serial_number_set = $newVal;
|
108 |
|
@@ -110,10 +110,15 @@ function wppb_check_serial_number($oldVal, $newVal){
|
|
110 |
$response = wp_remote_get( 'http://updatemetadata.cozmoslabs.com/checkserial/?serialNumberSent='.$serial_number_set );
|
111 |
if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
|
112 |
wppb_update_serial_status($response, 'pro');
|
113 |
-
|
|
|
|
|
|
|
114 |
} else {
|
115 |
wppb_update_serial_status($response, 'hobbyist');
|
116 |
-
|
|
|
|
|
117 |
}
|
118 |
$user_ID = get_current_user_id();
|
119 |
delete_user_meta( $user_ID, 'wppb_dismiss_notification' );
|
@@ -146,7 +151,7 @@ function wppb_update_serial_status($response, $version)
|
|
146 |
function wppb_check_serial_number_fix($newvalue, $oldvalue){
|
147 |
|
148 |
if ( $newvalue == $oldvalue )
|
149 |
-
wppb_check_serial_number( $oldvalue, $newvalue );
|
150 |
|
151 |
return $newvalue;
|
152 |
}
|
102 |
|
103 |
|
104 |
//the function to check the validity of the serial number and save a variable in the DB; purely visual
|
105 |
+
function wppb_check_serial_number($oldVal, $newVal, $resetCron = false){
|
106 |
|
107 |
$serial_number_set = $newVal;
|
108 |
|
110 |
$response = wp_remote_get( 'http://updatemetadata.cozmoslabs.com/checkserial/?serialNumberSent='.$serial_number_set );
|
111 |
if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
|
112 |
wppb_update_serial_status($response, 'pro');
|
113 |
+
|
114 |
+
if( $resetCron === true )
|
115 |
+
wp_clear_scheduled_hook( "check_plugin_updates-profile-builder-pro-update" );
|
116 |
+
|
117 |
} else {
|
118 |
wppb_update_serial_status($response, 'hobbyist');
|
119 |
+
|
120 |
+
if( $resetCron === true )
|
121 |
+
wp_clear_scheduled_hook( "check_plugin_updates-profile-builder-hobbyist-update" );
|
122 |
}
|
123 |
$user_ID = get_current_user_id();
|
124 |
delete_user_meta( $user_ID, 'wppb_dismiss_notification' );
|
151 |
function wppb_check_serial_number_fix($newvalue, $oldvalue){
|
152 |
|
153 |
if ( $newvalue == $oldvalue )
|
154 |
+
wppb_check_serial_number( $oldvalue, $newvalue, true );
|
155 |
|
156 |
return $newvalue;
|
157 |
}
|
assets/js/script-front-end.js
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function(){
|
2 |
+
jQuery('#wppb-register-user').submit(function (e) {
|
3 |
+
//stop submitting the form to see the disabled button effect
|
4 |
+
e.preventDefault();
|
5 |
+
//disable the submit button
|
6 |
+
jQuery('.form-submit #register').attr('disabled', true);
|
7 |
+
this.submit();
|
8 |
+
});
|
9 |
+
});
|
features/content-restriction/content-restriction-functions.php
CHANGED
@@ -123,7 +123,9 @@ function wppb_content_restriction_post_redirect() {
|
|
123 |
}
|
124 |
}
|
125 |
|
126 |
-
|
|
|
|
|
127 |
|
128 |
$redirect_url = '';
|
129 |
$post_restriction_type = get_post_meta( $post->ID, 'wppb-content-restrict-type', true );
|
123 |
}
|
124 |
}
|
125 |
|
126 |
+
if ( !($post instanceof WP_Post) ){
|
127 |
+
return;
|
128 |
+
}
|
129 |
|
130 |
$redirect_url = '';
|
131 |
$post_restriction_type = get_post_meta( $post->ID, 'wppb-content-restrict-type', true );
|
features/functions.php
CHANGED
@@ -40,7 +40,7 @@ function wppb_add_plugin_stylesheet() {
|
|
40 |
if ( ( file_exists( WPPB_PLUGIN_DIR . '/assets/css/style-front-end.css' ) ) && ( isset( $wppb_generalSettings['extraFieldsLayout'] ) && ( $wppb_generalSettings['extraFieldsLayout'] == 'default' ) ) ){
|
41 |
wp_register_style( 'wppb_stylesheet', WPPB_PLUGIN_URL . 'assets/css/style-front-end.css', array(), PROFILE_BUILDER_VERSION );
|
42 |
wp_enqueue_style( 'wppb_stylesheet' );
|
43 |
-
|
44 |
if( is_rtl() ) {
|
45 |
if ( ( file_exists( WPPB_PLUGIN_DIR . '/assets/css/rtl.css' ) ) && ( isset( $wppb_generalSettings['extraFieldsLayout'] ) && ( $wppb_generalSettings['extraFieldsLayout'] == 'default' ) ) ){
|
46 |
wp_register_style( 'wppb_stylesheet_rtl', WPPB_PLUGIN_URL . 'assets/css/rtl.css', array(), PROFILE_BUILDER_VERSION );
|
40 |
if ( ( file_exists( WPPB_PLUGIN_DIR . '/assets/css/style-front-end.css' ) ) && ( isset( $wppb_generalSettings['extraFieldsLayout'] ) && ( $wppb_generalSettings['extraFieldsLayout'] == 'default' ) ) ){
|
41 |
wp_register_style( 'wppb_stylesheet', WPPB_PLUGIN_URL . 'assets/css/style-front-end.css', array(), PROFILE_BUILDER_VERSION );
|
42 |
wp_enqueue_style( 'wppb_stylesheet' );
|
43 |
+
}
|
44 |
if( is_rtl() ) {
|
45 |
if ( ( file_exists( WPPB_PLUGIN_DIR . '/assets/css/rtl.css' ) ) && ( isset( $wppb_generalSettings['extraFieldsLayout'] ) && ( $wppb_generalSettings['extraFieldsLayout'] == 'default' ) ) ){
|
46 |
wp_register_style( 'wppb_stylesheet_rtl', WPPB_PLUGIN_URL . 'assets/css/rtl.css', array(), PROFILE_BUILDER_VERSION );
|
front-end/class-formbuilder.php
CHANGED
@@ -18,13 +18,15 @@ class Profile_Builder_Form_Creator{
|
|
18 |
|
19 |
/* we should stop the execution of the forms if they are in the wp_head hook because it should not be there.
|
20 |
SEO plugins can execute shortcodes in the auto generated descriptions */
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
28 |
|
29 |
// Merge the input arguments and the defaults
|
30 |
$this->args = wp_parse_args( $args, $this->defaults );
|
18 |
|
19 |
/* we should stop the execution of the forms if they are in the wp_head hook because it should not be there.
|
20 |
SEO plugins can execute shortcodes in the auto generated descriptions */
|
21 |
+
if( apply_filters( 'wppb_dont_render_form_in_wp_head_hook', true ) ){
|
22 |
+
global $wp_current_filter;
|
23 |
+
if( !empty( $wp_current_filter ) && is_array( $wp_current_filter ) ){
|
24 |
+
foreach( $wp_current_filter as $filter ){
|
25 |
+
if( $filter == 'wp_head' )
|
26 |
+
return;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
30 |
|
31 |
// Merge the input arguments and the defaults
|
32 |
$this->args = wp_parse_args( $args, $this->defaults );
|
front-end/default-fields/gdpr/gdpr.php
CHANGED
@@ -57,4 +57,12 @@ function wppb_check_gdpr_value( $message, $field, $request_data, $form_location
|
|
57 |
}
|
58 |
return $message;
|
59 |
}
|
60 |
-
add_filter( 'wppb_check_form_field_gdpr-checkbox', 'wppb_check_gdpr_value', 10, 4 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
return $message;
|
59 |
}
|
60 |
+
add_filter( 'wppb_check_form_field_gdpr-checkbox', 'wppb_check_gdpr_value', 10, 4 );
|
61 |
+
|
62 |
+
add_filter( 'wppb_field_css_class', 'wppb_gdpr_add_checkbox_class', 20, 2);
|
63 |
+
function wppb_gdpr_add_checkbox_class( $classes, $field ){
|
64 |
+
if( $field['field'] == 'GDPR Checkbox' )
|
65 |
+
$classes .= ' wppb-checkbox';
|
66 |
+
|
67 |
+
return $classes;
|
68 |
+
}
|
front-end/login.php
CHANGED
@@ -322,7 +322,7 @@ function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
|
|
322 |
}
|
323 |
|
324 |
if( $user->get_error_code() == 'incorrect_password' || $user->get_error_code() == 'invalid_username' )
|
325 |
-
$error_string .= '<a href="' . esc_url( $LostPassURL ) . '" title="' . __('Password Lost and Found.', 'profile-builder') . '">' . __('Lost your password', 'profile-builder') . '</a
|
326 |
|
327 |
}
|
328 |
// if the error string is empty it means that none of the fields were completed
|
322 |
}
|
323 |
|
324 |
if( $user->get_error_code() == 'incorrect_password' || $user->get_error_code() == 'invalid_username' )
|
325 |
+
$error_string .= '<a href="' . esc_url( $LostPassURL ) . '" title="' . __('Password Lost and Found.', 'profile-builder') . '">' . __('Lost your password ?', 'profile-builder') . '</a>';
|
326 |
|
327 |
}
|
328 |
// if the error string is empty it means that none of the fields were completed
|
front-end/recover.php
CHANGED
@@ -6,22 +6,19 @@
|
|
6 |
* @param string $what what field we query for when getting the user
|
7 |
*/
|
8 |
function wppb_check_for_unapproved_user( $data, $what ){
|
9 |
-
$
|
10 |
-
$messageNo = '';
|
11 |
|
12 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
13 |
if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ){
|
14 |
$user = ( ( $what == 'user_email' ) ? get_user_by( 'email', $data ) : get_user_by( 'login', $data ) );
|
15 |
|
16 |
if ( wp_get_object_terms( $user->data->ID, 'user_status' ) ){
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
$messageNo = '6';
|
21 |
}
|
22 |
}
|
23 |
|
24 |
-
return
|
25 |
}
|
26 |
|
27 |
/**
|
@@ -56,7 +53,7 @@ function wppb_retrieve_activation_key( $requested_user_login ){
|
|
56 |
*/
|
57 |
function wppb_create_recover_password_form( $user, $post_data ){
|
58 |
?>
|
59 |
-
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo esc_url(
|
60 |
<ul>
|
61 |
<?php
|
62 |
|
@@ -110,7 +107,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
|
|
110 |
*/
|
111 |
function wppb_create_generate_password_form( $post_data ){
|
112 |
?>
|
113 |
-
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo esc_url(
|
114 |
<?php
|
115 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
116 |
|
@@ -146,272 +143,296 @@ function wppb_create_recover_password_form( $user, $post_data ){
|
|
146 |
}
|
147 |
|
148 |
/**
|
149 |
-
*
|
150 |
-
*
|
|
|
151 |
*/
|
152 |
-
function
|
153 |
-
|
154 |
-
$
|
155 |
-
$message = $messageNo = $message2 = $messageNo2 = $linkLoginName = $linkKey = '';
|
156 |
|
157 |
-
|
|
|
|
|
|
|
158 |
|
159 |
-
|
160 |
-
|
161 |
|
162 |
-
|
|
|
|
|
|
|
|
|
|
|
163 |
|
164 |
-
|
165 |
-
$
|
|
|
166 |
|
167 |
-
|
168 |
-
|
169 |
-
// filter must be applied on the $_POST variable so that the value returned to the form can be corrected too
|
170 |
-
$_POST['username_email'] = apply_filters( 'wppb_before_processing_email_from_forms', $_POST['username_email'] ); //we get the raw data
|
171 |
-
$postedData = $_POST['username_email'];
|
172 |
-
//check to see if it's an e-mail (and if this is valid/present in the database) or is a username
|
173 |
-
|
174 |
-
|
175 |
-
// if we do not have an email in the posted date we try to get the email for that user
|
176 |
-
if( !is_email( $postedData ) ){
|
177 |
-
/* make sure it is a username */
|
178 |
-
$postedData = sanitize_user( $postedData );
|
179 |
-
if (username_exists($postedData)){
|
180 |
-
$query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_login= %s", $postedData ) );
|
181 |
-
if( !empty( $query[0] ) ){
|
182 |
-
$postedData = $query[0]->user_email;
|
183 |
-
}
|
184 |
-
}
|
185 |
-
else{
|
186 |
-
$message = __( 'The username entered wasn\'t found in the database!', 'profile-builder').'<br/>'.__('Please check that you entered the correct username.', 'profile-builder' );
|
187 |
-
$message = apply_filters( 'wppb_recover_password_sent_message4', $message );
|
188 |
-
$messageNo = '4';
|
189 |
-
}
|
190 |
-
}
|
191 |
|
192 |
-
|
193 |
-
if ( is_email( $postedData ) ){
|
194 |
-
if ( email_exists( $postedData ) ){
|
195 |
-
$retVal = wppb_check_for_unapproved_user($postedData, 'user_email');
|
196 |
-
if ($retVal[0] != ''){
|
197 |
-
$message = $retVal[0];
|
198 |
-
$messageNo = $retVal [1];
|
199 |
-
|
200 |
-
}else{
|
201 |
-
$message = sprintf( __( 'Check your e-mail for the confirmation link.', 'profile-builder'), $postedData );
|
202 |
-
$message = apply_filters( 'wppb_recover_password_sent_message1', $message, $postedData );
|
203 |
-
$messageNo = '1';
|
204 |
-
|
205 |
-
}
|
206 |
-
|
207 |
-
}elseif ( !email_exists( $postedData ) ){
|
208 |
-
$message = __('The email address entered wasn\'t found in the database!', 'profile-builder').'<br/>'.__('Please check that you entered the correct email address.', 'profile-builder');
|
209 |
-
$message = apply_filters('wppb_recover_password_sent_message2', $message);
|
210 |
-
$messageNo = '2';
|
211 |
-
}
|
212 |
-
}
|
213 |
|
214 |
-
|
215 |
-
|
|
|
216 |
|
217 |
-
|
|
|
218 |
|
219 |
-
|
220 |
-
|
221 |
-
if( !empty( $query[0] ) ){
|
222 |
-
$requestedUserID = $query[0]->ID;
|
223 |
-
$requestedUserLogin = $query[0]->user_login;
|
224 |
-
$requestedUserEmail = $query[0]->user_email;
|
225 |
-
$urlUsername = rawurlencode( $query[0]->user_login );
|
226 |
|
227 |
-
if( $wppb_generalSettings['loginWith'] == 'username' || $wppb_generalSettings['loginWith'] == 'usernameemail' )
|
228 |
-
$display_username_email = $query[0]->user_login;
|
229 |
-
else
|
230 |
-
$display_username_email = $query[0]->user_email;
|
231 |
|
232 |
-
|
233 |
-
|
|
|
|
|
|
|
234 |
|
235 |
-
|
236 |
-
$recoveruserMailMessage1 = sprintf( __('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profile-builder'), $display_username_email, '<a href="'.esc_url( add_query_arg( array( 'loginName' => $urlUsername, 'key' => $key ), wppb_curpageurl() ) ).'">'.esc_url( add_query_arg( array( 'loginName' => $urlUsername, 'key' => $key ), wppb_curpageurl() ) ).'</a>' );
|
237 |
-
$recoveruserMailMessage1 = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recoveruserMailMessage1, $requestedUserID, $requestedUserLogin, $requestedUserEmail );
|
238 |
|
239 |
-
|
240 |
-
$recoveruserMailMessageTitle1 = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoveruserMailMessageTitle1, $requestedUserLogin);
|
241 |
|
242 |
-
|
243 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
}
|
254 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
}
|
|
|
|
|
|
|
257 |
|
258 |
-
|
259 |
-
|
260 |
-
|
|
|
|
|
|
|
|
|
261 |
|
262 |
-
if( ( $_POST['passw1'] == $_POST['passw2'] ) && ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){
|
263 |
if( !empty( $wppb_generalSettings['minimum_password_length'] ) || ( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ) ){
|
264 |
-
$message2 = '';
|
265 |
if( wppb_check_password_length( $_POST['passw1'] ) ){
|
266 |
-
$
|
267 |
-
$
|
268 |
}
|
269 |
if( wppb_check_password_strength() ){
|
270 |
-
$
|
271 |
-
$
|
272 |
}
|
273 |
}
|
274 |
|
275 |
-
if( $
|
|
|
|
|
|
|
|
|
|
|
276 |
|
277 |
-
$message2 = __( 'Your password has been successfully changed!', 'profile-builder' );
|
278 |
-
$messageNo2 = '1';
|
279 |
|
280 |
$userID = absint( $_POST['userData'] );
|
281 |
$new_pass = $_POST['passw1'];
|
282 |
|
283 |
//update the new password and delete the key
|
284 |
do_action( 'wppb_password_reset', $userID, $new_pass );
|
285 |
-
|
286 |
wp_set_password( $new_pass, $userID );
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
|
293 |
$user_info = get_userdata( $userID );
|
294 |
|
295 |
-
|
296 |
-
|
297 |
-
else
|
298 |
-
$display_username_email = $user_info->user_email;
|
299 |
-
|
300 |
-
//send secondary mail to the user containing the username and the new password
|
301 |
-
$recoveruserMailMessage2 = __( 'You have successfully reset your password.', 'profile-builder' );
|
302 |
-
$recoveruserMailMessage2 = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recoveruserMailMessage2, $display_username_email, $new_pass, $userID );
|
303 |
-
|
304 |
-
$recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname') );
|
305 |
-
$recoveruserMailMessageTitle2 = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recoveruserMailMessageTitle2, $display_username_email );
|
306 |
-
|
307 |
-
$recoveruserMailFrom2 = apply_filters ( 'wppb_recover_password_success_notification_email_from_field', get_bloginfo( 'name' ) );
|
308 |
-
$recoveruserMailContext2 = 'email_user_recover_success';
|
309 |
-
|
310 |
-
//send mail to the user notifying him of the reset request
|
311 |
-
if ( trim( $recoveruserMailMessageTitle2 ) != '' )
|
312 |
-
wppb_mail( $user_info->user_email, $recoveruserMailMessageTitle2, $recoveruserMailMessage2, $recoveruserMailFrom2, $recoveruserMailContext2 );
|
313 |
|
314 |
//send email to admin
|
315 |
-
|
316 |
-
$recoveradminMailMessage = apply_filters( 'wppb_recover_password_message_content_sent_to_admin', $recoveradminMailMessage, $display_username_email, $_POST['passw1'], $userID );
|
317 |
-
|
318 |
-
$recoveradminMailMessageTitle = sprintf( __( 'Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname'), ENT_QUOTES );
|
319 |
-
$recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle, $display_username_email );
|
320 |
|
|
|
|
|
|
|
|
|
321 |
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
$recoveradminMailContext = 'email_admin_recover_success';
|
327 |
-
|
328 |
-
//send mail to the admin notifying him of of a user with a password reset request
|
329 |
-
if (trim($recoveradminMailMessageTitle) != '')
|
330 |
-
wppb_mail(get_option('admin_email'), $recoveradminMailMessageTitle, $recoveradminMailMessage, $recoveruserMailFrom2, $recoveradminMailContext);
|
331 |
}
|
332 |
-
|
333 |
else{
|
334 |
-
$
|
335 |
-
$
|
336 |
}
|
|
|
337 |
|
338 |
-
|
|
|
339 |
|
340 |
-
?>
|
341 |
|
342 |
-
|
|
|
343 |
|
344 |
-
|
345 |
-
// use this action hook to add extra content before the password recovery form
|
346 |
-
do_action( 'wppb_before_recover_password_fields' );
|
347 |
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message2', '<p class="wppb-error">'.$message2.'</p>', $message2 );
|
362 |
-
|
363 |
-
wppb_create_recover_password_form( $user, $_POST );
|
364 |
-
|
365 |
-
}elseif( $messageNo2 == '1' )
|
366 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message1', '<p class="wppb-success">'.$message2.'</p>', $message2 );
|
367 |
-
|
368 |
-
}else{
|
369 |
-
wppb_create_recover_password_form( $user, $_POST );
|
370 |
-
}
|
371 |
-
}else{
|
372 |
-
if( $messageNo2 == '1' ) {
|
373 |
-
// CHECK FOR REDIRECT
|
374 |
-
$redirect_url = wppb_get_redirect_url( 'normal', 'after_success_password_reset', '', sanitize_user( $_GET['loginName'] ) );
|
375 |
-
$redirect_delay = apply_filters( 'wppb_success_password_reset_redirect_delay', 3, sanitize_user( $_GET['loginName'] ) );
|
376 |
-
$redirect_message = wppb_build_redirect( $redirect_url, $redirect_delay, 'after_success_password_reset' );
|
377 |
-
|
378 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message1', '<p class="wppb-success">' . $message2 . '</p>', $message2 );
|
379 |
-
|
380 |
-
if( isset( $redirect_message ) && ! empty( $redirect_message ) ) {
|
381 |
-
echo '<p>' . $redirect_message . '</p>';
|
382 |
-
}
|
383 |
-
}
|
384 |
-
|
385 |
-
elseif( $messageNo2 == '2' )
|
386 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message2', '<p class="wppb-error">'.$message2.'</p>', $message2 );
|
387 |
-
|
388 |
-
else
|
389 |
-
echo apply_filters( 'wppb_recover_password_invalid_key_message', '<p class="wppb-warning"><b>'.__( 'ERROR:', 'profile-builder' ).'</b>'.__( 'Invalid key!', 'profile-builder' ).'</p>' );
|
390 |
-
}
|
391 |
-
|
392 |
-
}else{
|
393 |
-
//display error message and the form
|
394 |
-
if (($messageNo == '') || ($messageNo == '2') || ($messageNo == '4')){
|
395 |
-
if( !empty( $message ) )
|
396 |
-
echo apply_filters( 'wppb_recover_password_displayed_message1', '<p class="wppb-warning">'.$message.'</p>' );
|
397 |
|
398 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
|
400 |
-
|
401 |
-
|
402 |
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
|
412 |
-
|
413 |
-
|
414 |
-
|
|
|
415 |
|
416 |
-
|
|
|
|
|
417 |
}
|
6 |
* @param string $what what field we query for when getting the user
|
7 |
*/
|
8 |
function wppb_check_for_unapproved_user( $data, $what ){
|
9 |
+
$message = '';
|
|
|
10 |
|
11 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
12 |
if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ){
|
13 |
$user = ( ( $what == 'user_email' ) ? get_user_by( 'email', $data ) : get_user_by( 'login', $data ) );
|
14 |
|
15 |
if ( wp_get_object_terms( $user->data->ID, 'user_status' ) ){
|
16 |
+
$message = '<strong>'. __('ERROR', 'profile-builder') . '</strong>: ' . __('Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.', 'profile-builder');
|
17 |
+
$message = apply_filters('wppb_recover_password_unapporved_user', $message);
|
|
|
|
|
18 |
}
|
19 |
}
|
20 |
|
21 |
+
return $message;
|
22 |
}
|
23 |
|
24 |
/**
|
53 |
*/
|
54 |
function wppb_create_recover_password_form( $user, $post_data ){
|
55 |
?>
|
56 |
+
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo esc_url( wppb_curpageurl() ); ?>">
|
57 |
<ul>
|
58 |
<?php
|
59 |
|
107 |
*/
|
108 |
function wppb_create_generate_password_form( $post_data ){
|
109 |
?>
|
110 |
+
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo esc_url( wppb_curpageurl() ); ?>">
|
111 |
<?php
|
112 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
113 |
|
143 |
}
|
144 |
|
145 |
/**
|
146 |
+
* Determine based on the PB login settings what to display in the email sent on password reset: username or email
|
147 |
+
* @param $user
|
148 |
+
* @return mixed
|
149 |
*/
|
150 |
+
function wppb_get_email_display_username($user){
|
151 |
+
//Get general settings
|
152 |
+
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
|
|
153 |
|
154 |
+
if( $wppb_generalSettings['loginWith'] == 'username' || $wppb_generalSettings['loginWith'] == 'usernameemail' )
|
155 |
+
$display_username_email = $user->user_login;
|
156 |
+
else
|
157 |
+
$display_username_email = $user->user_email;
|
158 |
|
159 |
+
return $display_username_email;
|
160 |
+
}
|
161 |
|
162 |
+
/**
|
163 |
+
* Send the email for the password recovery request
|
164 |
+
* @param $user
|
165 |
+
* @return bool|string|void
|
166 |
+
*/
|
167 |
+
function wppb_send_recovery_email( $user ){
|
168 |
|
169 |
+
$requested_user_id = $user->ID;
|
170 |
+
$requested_user_login = $user->user_login;
|
171 |
+
$requested_user_email = $user->user_email;
|
172 |
|
173 |
+
//search if there is already an activation key present, if not create one
|
174 |
+
$key = wppb_retrieve_activation_key( $requested_user_login );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
+
$display_username_email = wppb_get_email_display_username($user);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
|
178 |
+
//send primary email message
|
179 |
+
$recovery_email_message = sprintf( __('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profile-builder'), $display_username_email, '<a href="'.esc_url( add_query_arg( array( 'key' => $key ), wppb_curpageurl() ) ).'">'.esc_url( add_query_arg( array( 'key' => $key ), wppb_curpageurl() ) ).'</a>' );
|
180 |
+
$recovery_email_message = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recovery_email_message, $requested_user_id, $requested_user_login, $requested_user_email );
|
181 |
|
182 |
+
$recovery_email_message_title = sprintf(__('Password Reset from "%1$s"', 'profile-builder'), $blogname = get_option('blogname') );
|
183 |
+
$recovery_email_message_title = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recovery_email_message_title, $requested_user_login);
|
184 |
|
185 |
+
$recovery_email_from = apply_filters ( 'wppb_recover_password_notification_email_from_field', get_bloginfo( 'name' ) );
|
186 |
+
$recovery_email_context = 'email_user_recover';
|
|
|
|
|
|
|
|
|
|
|
187 |
|
|
|
|
|
|
|
|
|
188 |
|
189 |
+
$sent = false;
|
190 |
+
//send mail to the user notifying him of the reset request
|
191 |
+
if (trim($recovery_email_message_title) != '') {
|
192 |
+
$sent = wppb_mail($requested_user_email, $recovery_email_message_title, $recovery_email_message, $recovery_email_from, $recovery_email_context);
|
193 |
+
}
|
194 |
|
195 |
+
return $sent;
|
|
|
|
|
196 |
|
197 |
+
}
|
|
|
198 |
|
199 |
+
/**
|
200 |
+
* Function that sends the successful password reset email to the user
|
201 |
+
* @param $user
|
202 |
+
* @param $new_pass
|
203 |
+
*/
|
204 |
+
function wppb_send_successful_password_reset_email( $user, $new_pass ){
|
205 |
+
|
206 |
+
$display_username_email = wppb_get_email_display_username($user);
|
207 |
+
|
208 |
+
//send secondary mail to the user containing the username and the new password
|
209 |
+
$recovery_email_message = __( 'You have successfully reset your password.', 'profile-builder' );
|
210 |
+
$recovery_email_message = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recovery_email_message, $display_username_email, $new_pass, $user->ID );
|
211 |
+
$recovery_email_message_title = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profile-builder' ), $display_username_email, $blogname = get_option('blogname') );
|
212 |
+
$recovery_email_message_title = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recovery_email_message_title, $display_username_email );
|
213 |
+
$recovery_email_from = apply_filters ( 'wppb_recover_password_success_notification_email_from_field', get_bloginfo( 'name' ) );
|
214 |
+
$recovery_email_context = 'email_user_recover_success';
|
215 |
+
//send mail to the user notifying him of the reset request
|
216 |
+
if ( trim( $recovery_email_message_title ) != '' )
|
217 |
+
wppb_mail( $user->user_email, $recovery_email_message_title, $recovery_email_message, $recovery_email_from, $recovery_email_context );
|
218 |
+
}
|
219 |
|
220 |
+
/**
|
221 |
+
* Function that sends an email to the admin after the password was reset
|
222 |
+
* we disable the feature to send the admin a notification mail but can be still used using filters
|
223 |
+
* @param $user
|
224 |
+
*/
|
225 |
+
function wppb_send_admin_password_reset_email( $user ){
|
226 |
+
|
227 |
+
$display_username_email = wppb_get_email_display_username($user);
|
228 |
+
|
229 |
+
$recovery_admin_email_message = sprintf( __( '%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s', 'profile-builder' ), $display_username_email, '' );
|
230 |
+
$recovery_admin_email_message = apply_filters( 'wppb_recover_password_message_content_sent_to_admin', $recovery_admin_email_message, $display_username_email, '', $user->ID );
|
231 |
+
//we disable the feature to send the admin a notification mail but can be still used using filters
|
232 |
+
$recovery_admin_email_title = '';
|
233 |
+
$recovery_admin_email_title = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recovery_admin_email_title, $display_username_email );
|
234 |
+
$recovery_email_from = apply_filters ( 'wppb_recover_password_success_notification_email_from_field', get_bloginfo( 'name' ) );
|
235 |
+
$recovery_admin_email_context = 'email_admin_recover_success';
|
236 |
+
//send mail to the admin notifying him of of a user with a password reset request
|
237 |
+
if (trim($recovery_admin_email_title) != '')
|
238 |
+
wppb_mail(get_option('admin_email'), $recovery_admin_email_title, $recovery_admin_email_message, $recovery_email_from, $recovery_admin_email_context);
|
239 |
+
}
|
240 |
+
|
241 |
+
/**
|
242 |
+
* The function for the recover password shortcode
|
243 |
+
*
|
244 |
+
*/
|
245 |
+
function wppb_front_end_password_recovery(){
|
246 |
+
global $wppb_shortcode_on_front;
|
247 |
+
$wppb_shortcode_on_front = true;
|
248 |
+
|
249 |
+
$output = '<div class="wppb_holder" id="wppb-recover-password-container">';
|
250 |
+
|
251 |
+
global $wpdb;
|
252 |
+
|
253 |
+
if( is_user_logged_in() )
|
254 |
+
return apply_filters( 'wppb_recover_password_already_logged_in', __( 'You are already logged in. You can change your password on the edit profile form.', 'profile-builder' ) );
|
255 |
+
|
256 |
+
//Get general settings
|
257 |
+
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
258 |
+
|
259 |
+
// If the user entered an email/username, process the request
|
260 |
+
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'recover_password' && wp_verify_nonce($_POST['password_recovery_nonce_field'],'verify_true_password_recovery') ) {
|
261 |
+
// filter must be applied on the $_POST variable so that the value returned to the form can be corrected too
|
262 |
+
$username_email = apply_filters( 'wppb_before_processing_email_from_forms', $_POST['username_email'] ); //we get the raw data
|
263 |
+
|
264 |
+
//check to see if it's an e-mail (and if this is valid/present in the database) or is a username
|
265 |
+
|
266 |
+
// if we do not have an email in the posted date we try to get the email for that user
|
267 |
+
if( !is_email( $username_email ) ){
|
268 |
+
/* make sure it is a username */
|
269 |
+
$username = sanitize_user( $username_email );
|
270 |
+
if ( username_exists($username) ){
|
271 |
+
$query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_login= %s", $username ) );
|
272 |
+
if( !empty( $query[0] ) ){
|
273 |
+
$username_email = $query[0]->user_email;
|
274 |
}
|
275 |
}
|
276 |
+
else{
|
277 |
+
$warning = __( 'The username entered wasn\'t found in the database!', 'profile-builder').'<br/>'.__('Please check that you entered the correct username.', 'profile-builder' );
|
278 |
+
$warning = apply_filters( 'wppb_recover_password_sent_message4', $warning );
|
279 |
+
$output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' );
|
280 |
+
}
|
281 |
+
}
|
282 |
+
|
283 |
+
// we should have an email by this point
|
284 |
+
if ( is_email( $username_email ) ){
|
285 |
+
if ( email_exists( $username_email ) ){
|
286 |
+
$warning = wppb_check_for_unapproved_user($username_email, 'user_email');
|
287 |
+
if ($warning != ''){
|
288 |
+
$output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' );
|
289 |
+
}else{
|
290 |
+
$success = sprintf( __( 'Check your e-mail for the confirmation link.', 'profile-builder'), $username_email );
|
291 |
+
$success = apply_filters( 'wppb_recover_password_sent_message1', $success, $username_email );
|
292 |
+
$output .= wppb_password_recovery_success( $success, 'wppb_recover_password_displayed_message2' );
|
293 |
+
|
294 |
+
//verify e-mail validity
|
295 |
+
$query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_email= %s", sanitize_email( $username_email ) ) );
|
296 |
+
if( !empty( $query[0] ) ){
|
297 |
+
$user = $query[0];
|
298 |
+
|
299 |
+
//send mail to the user notifying him of the reset request
|
300 |
+
$sent = wppb_send_recovery_email( $user );
|
301 |
+
if ($sent === false){
|
302 |
+
$warning = '<b>'. __( 'ERROR', 'profile-builder' ) .': </b>' . sprintf( __( 'There was an error while trying to send the activation link to %1$s!', 'profile-builder' ), $username_email );
|
303 |
+
$warning = apply_filters( 'wppb_recover_password_sent_message_error_sending', $warning );
|
304 |
+
wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' );
|
305 |
+
}
|
306 |
+
else
|
307 |
+
$password_email_sent = true;
|
308 |
+
|
309 |
+
}
|
310 |
|
311 |
+
}
|
312 |
+
}elseif ( !email_exists( $username_email ) ){
|
313 |
+
$warning = __('The email address entered wasn\'t found in the database!', 'profile-builder').'<br/>'.__('Please check that you entered the correct email address.', 'profile-builder');
|
314 |
+
$warning = apply_filters('wppb_recover_password_sent_message2', $warning);
|
315 |
+
$output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' );
|
316 |
+
}
|
317 |
}
|
318 |
+
}
|
319 |
+
// If the user used the correct key-code, update his/her password
|
320 |
+
elseif ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action2'] ) && $_POST['action2'] == 'recover_password2' && wp_verify_nonce( $_POST['password_recovery_nonce_field2'], 'verify_true_password_recovery2_'.absint( $_POST['userData'] ) ) ) {
|
321 |
|
322 |
+
$password_change_message = '';
|
323 |
+
|
324 |
+
if( ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){
|
325 |
+
if( $_POST['passw1'] != $_POST['passw2'] ) {
|
326 |
+
$password_change_message = __('The entered passwords don\'t match!', 'profile-builder');
|
327 |
+
$output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' );
|
328 |
+
}
|
329 |
|
|
|
330 |
if( !empty( $wppb_generalSettings['minimum_password_length'] ) || ( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ) ){
|
|
|
331 |
if( wppb_check_password_length( $_POST['passw1'] ) ){
|
332 |
+
$password_change_message = sprintf( __( "The password must have the minimum length of %s characters", "profile-builder" ), $wppb_generalSettings['minimum_password_length'] ) . '<br/>';
|
333 |
+
$output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' );
|
334 |
}
|
335 |
if( wppb_check_password_strength() ){
|
336 |
+
$password_change_message = sprintf( __( "The password must have a minimum strength of %s", "profile-builder" ), wppb_check_password_strength() );
|
337 |
+
$output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' );
|
338 |
}
|
339 |
}
|
340 |
|
341 |
+
if( empty($password_change_message) ){
|
342 |
+
|
343 |
+
$password_change_message = __( 'Your password has been successfully changed!', 'profile-builder' );
|
344 |
+
$output .= wppb_password_recovery_success( $password_change_message, 'wppb_recover_password_password_changed_message1' );
|
345 |
+
$password_changed_success = true;
|
346 |
+
|
347 |
|
|
|
|
|
348 |
|
349 |
$userID = absint( $_POST['userData'] );
|
350 |
$new_pass = $_POST['passw1'];
|
351 |
|
352 |
//update the new password and delete the key
|
353 |
do_action( 'wppb_password_reset', $userID, $new_pass );
|
|
|
354 |
wp_set_password( $new_pass, $userID );
|
355 |
|
356 |
+
/* log out of all sessions on password reset */
|
357 |
+
$sessions = WP_Session_Tokens::get_instance( $userID );
|
358 |
+
$sessions->destroy_all();
|
|
|
359 |
|
360 |
$user_info = get_userdata( $userID );
|
361 |
|
362 |
+
//send email to user
|
363 |
+
wppb_send_successful_password_reset_email( $user_info, $new_pass );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
|
365 |
//send email to admin
|
366 |
+
wppb_send_admin_password_reset_email( $user_info );
|
|
|
|
|
|
|
|
|
367 |
|
368 |
+
// CHECK FOR REDIRECT
|
369 |
+
$redirect_url = wppb_get_redirect_url( 'normal', 'after_success_password_reset', '', sanitize_user( $user_info->user_login ) );
|
370 |
+
$redirect_delay = apply_filters( 'wppb_success_password_reset_redirect_delay', 3, sanitize_user( $user_info->user_login ) );
|
371 |
+
$redirect_message = wppb_build_redirect( $redirect_url, $redirect_delay, 'after_success_password_reset' );
|
372 |
|
373 |
+
if( isset( $redirect_message ) && ! empty( $redirect_message ) ) {
|
374 |
+
$output .= '<p>' . $redirect_message . '</p>';
|
375 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
}
|
377 |
+
}
|
378 |
else{
|
379 |
+
$password_change_message .= __( "The password must not be empty!", "profile-builder" );
|
380 |
+
$output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' );
|
381 |
}
|
382 |
+
}
|
383 |
|
384 |
+
// use this action hook to add extra content before the password recovery form
|
385 |
+
do_action( 'wppb_before_recover_password_fields' );
|
386 |
|
|
|
387 |
|
388 |
+
//this is the part that shows the forms
|
389 |
+
if( isset( $_GET['key'] ) && !empty( $_GET['key'] ) ){
|
390 |
|
391 |
+
if( !$password_changed_success ) {
|
|
|
|
|
392 |
|
393 |
+
//get the login name and key and verify if they match the ones in the database
|
394 |
+
$key = sanitize_text_field( $_GET['key'] );
|
395 |
+
$user = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_activation_key = %s", $key ) );
|
396 |
|
397 |
+
if( !empty( $user ) ) {
|
398 |
+
ob_start();
|
399 |
+
wppb_create_recover_password_form($user, $_POST);
|
400 |
+
$output .= ob_get_contents();
|
401 |
+
ob_end_clean();
|
402 |
+
}
|
403 |
+
else {
|
404 |
+
$output .= wppb_password_recovery_error('<b>' . __('ERROR:', 'profile-builder') . '</b>' . __('Invalid key!', 'profile-builder'), 'wppb_recover_password_invalid_key_message');
|
405 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
|
407 |
+
}
|
408 |
+
}
|
409 |
+
else{
|
410 |
+
if( !$password_email_sent ) {
|
411 |
+
ob_start();
|
412 |
+
wppb_create_generate_password_form($_POST);
|
413 |
+
$output .= ob_get_contents();
|
414 |
+
ob_end_clean();
|
415 |
+
}
|
416 |
+
}
|
417 |
|
418 |
+
// use this action hook to add extra content after the password recovery form.
|
419 |
+
do_action( 'wppb_after_recover_password_fields' );
|
420 |
|
421 |
+
$output .= '</div>';
|
422 |
+
return $output;
|
423 |
+
}
|
424 |
|
425 |
+
/* function for displaying success messages on the recover password page */
|
426 |
+
function wppb_password_recovery_success( $message, $filter ){
|
427 |
+
return apply_filters( $filter, '<p class="wppb-success">'.$message.'</p>', $message );
|
428 |
+
}
|
429 |
|
430 |
+
/* function for displaying warning messages on the recover password page */
|
431 |
+
function wppb_password_recovery_warning( $message, $filter ){
|
432 |
+
return apply_filters( $filter, '<p class="wppb-warning">'.$message.'</p>', $message );
|
433 |
+
}
|
434 |
|
435 |
+
/* function for displaying error messages on the recover password page */
|
436 |
+
function wppb_password_recovery_error( $message, $filter ){
|
437 |
+
return apply_filters( $filter, '<p class="wppb-error">'.$message.'</p>', $message );
|
438 |
}
|
front-end/register.php
CHANGED
@@ -166,7 +166,7 @@ function wppb_front_end_register( $atts ){
|
|
166 |
|
167 |
// function to choose whether to display the registration page or the validation message
|
168 |
function wppb_front_end_register_handler( $atts ){
|
169 |
-
|
170 |
return ( isset( $_GET['activation_key'] ) ? wppb_activate_signup ( sanitize_text_field( $_GET['activation_key'] ) ) : wppb_front_end_register( $atts ) );
|
171 |
}
|
172 |
|
166 |
|
167 |
// function to choose whether to display the registration page or the validation message
|
168 |
function wppb_front_end_register_handler( $atts ){
|
169 |
+
wp_enqueue_script( 'wppb_front_end_script', WPPB_PLUGIN_URL.'assets/js/script-front-end.js', array('jquery'), PROFILE_BUILDER_VERSION, true );
|
170 |
return ( isset( $_GET['activation_key'] ) ? wppb_activate_signup ( sanitize_text_field( $_GET['activation_key'] ) ) : wppb_front_end_register( $atts ) );
|
171 |
}
|
172 |
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.0.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -55,19 +55,7 @@ function wppb_free_plugin_init() {
|
|
55 |
*/
|
56 |
function wppb_return_bytes($val)
|
57 |
{
|
58 |
-
|
59 |
-
|
60 |
-
switch (strtolower($val[strlen($val) - 1])) {
|
61 |
-
// The 'G' modifier is available since PHP 5.1.0
|
62 |
-
case 'g':
|
63 |
-
$val = intval($val) * 1024;
|
64 |
-
case 'm':
|
65 |
-
$val = intval($val) * 1024;
|
66 |
-
case 'k':
|
67 |
-
$val = intval($val) * 1024;
|
68 |
-
}
|
69 |
-
|
70 |
-
return $val;
|
71 |
}
|
72 |
|
73 |
/**
|
@@ -75,14 +63,10 @@ function wppb_free_plugin_init() {
|
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
-
define('PROFILE_BUILDER_VERSION', '3.0.
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
82 |
-
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
83 |
-
define('WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA', apply_filters('wppb_server_max_upload_size_mega_constant', ini_get('upload_max_filesize')));
|
84 |
-
define('WPPB_SERVER_MAX_POST_SIZE_BYTE', apply_filters('wppb_server_max_post_size_byte_constant', wppb_return_bytes(ini_get('post_max_size'))));
|
85 |
-
define('WPPB_SERVER_MAX_POST_SIZE_MEGA', apply_filters('wppb_server_max_post_size_mega_constant', ini_get('post_max_size')));
|
86 |
define('WPPB_TRANSLATE_DIR', WPPB_PLUGIN_DIR . '/translation');
|
87 |
define('WPPB_TRANSLATE_DOMAIN', 'profile-builder');
|
88 |
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.0.6
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
55 |
*/
|
56 |
function wppb_return_bytes($val)
|
57 |
{
|
58 |
+
return wp_convert_hr_to_bytes($val);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
}
|
60 |
|
61 |
/**
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.0.6' );
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
|
|
|
|
|
|
|
|
70 |
define('WPPB_TRANSLATE_DIR', WPPB_PLUGIN_DIR . '/translation');
|
71 |
define('WPPB_TRANSLATE_DOMAIN', 'profile-builder');
|
72 |
|
package.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "profile-builder",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "",
|
5 |
+
"private": true,
|
6 |
+
"main": "index.js",
|
7 |
+
"dependencies": {
|
8 |
+
"gulp": "^4.0.0",
|
9 |
+
"gulp-git": "^2.8.1",
|
10 |
+
"gulp-wp-pot": "^2.3.3"
|
11 |
+
}
|
12 |
+
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.2.3
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,13 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.0.5 =
|
173 |
* Fixed: Elementor Templates restriction brakes rendering of templates
|
174 |
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.2.3
|
7 |
+
Stable tag: 3.0.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.0.6=
|
173 |
+
* Fix: php notice. Check if global actually is set before moving forward
|
174 |
+
* Fix: check add-ons for 'Profile Builder' in their names before determining if an add-on is activated.
|
175 |
+
* Fix: refactored the password reset shortcode
|
176 |
+
* Enhancement: included the question mark in the Lost your password message
|
177 |
+
* Enhancement: disables the button in Profile Builder registration form if the form was submited in order to prevent double submissions.
|
178 |
+
|
179 |
= 3.0.5 =
|
180 |
* Fixed: Elementor Templates restriction brakes rendering of templates
|
181 |
|
translation/profile-builder.catalog.php
CHANGED
@@ -589,7 +589,7 @@
|
|
589 |
<?php __("Avatar Size", "profile-builder"); ?>
|
590 |
<?php __("Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", "profile-builder"); ?>
|
591 |
<?php __("Date-format", "profile-builder"); ?>
|
592 |
-
<?php __("Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy", "profile-builder"); ?>
|
593 |
<?php __("Terms of Agreement", "profile-builder"); ?>
|
594 |
<?php __("Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>", "profile-builder"); ?>
|
595 |
<?php __("Options", "profile-builder"); ?>
|
@@ -1165,7 +1165,7 @@
|
|
1165 |
<?php __("Invalid username or email.", "profile-builder"); ?>
|
1166 |
<?php __("Invalid username.", "profile-builder"); ?>
|
1167 |
<?php __("Password Lost and Found.", "profile-builder"); ?>
|
1168 |
-
<?php __("Lost your password", "profile-builder"); ?>
|
1169 |
<?php __("Both fields are empty.", "profile-builder"); ?>
|
1170 |
<?php __("Username or Email", "profile-builder"); ?>
|
1171 |
<?php __("Lost your password?", "profile-builder"); ?>
|
@@ -1181,22 +1181,23 @@
|
|
1181 |
<?php __("Username or E-mail", "profile-builder"); ?>
|
1182 |
<?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
|
1183 |
<?php __("Get New Password", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
1184 |
<?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
|
1185 |
<?php __("The username entered wasn't found in the database!", "profile-builder"); ?>
|
1186 |
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1187 |
<?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
|
|
|
1188 |
<?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
|
1189 |
<?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
|
1190 |
-
<?php __("
|
1191 |
-
<?php __("Password Reset from \"%1$s\"", "profile-builder"); ?>
|
1192 |
-
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1193 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1194 |
<?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
|
1195 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1196 |
-
<?php __("
|
1197 |
-
<?php __("Password Successfully Reset for %1$s on \"%2$s\"", "profile-builder"); ?>
|
1198 |
-
<?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
|
1199 |
-
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1200 |
<?php __("ERROR:", "profile-builder"); ?>
|
1201 |
<?php __("Invalid key!", "profile-builder"); ?>
|
1202 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
@@ -1212,8 +1213,6 @@
|
|
1212 |
<?php __("Status", "profile-builder"); ?>
|
1213 |
<?php __("Active", "profile-builder"); ?>
|
1214 |
<?php __("Inactive", "profile-builder"); ?>
|
1215 |
-
<?php __("$validation_message", "profile-builder"); ?>
|
1216 |
-
<?php __("$text", "profile-builder"); ?>
|
1217 |
<?php __("This display name is already in use. Please choose another one.", "profile-builder"); ?>
|
1218 |
<?php __("Resend activation email", "profile-builder"); ?>
|
1219 |
<?php __("Allow users with the 'delete_users' capability to view the Admin Approval list", "profile-builder"); ?>
|
@@ -1526,11 +1525,11 @@
|
|
1526 |
<?php __("User Email Customizer", "profile-builder"); ?>
|
1527 |
<?php __("User Email Customizer Settings", "profile-builder"); ?>
|
1528 |
<?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
|
1529 |
-
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n", "profile-builder"); ?>
|
1530 |
<?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
|
1531 |
<?php __("[{{site_name}}] Activate {{username}}", "profile-builder"); ?>
|
1532 |
<?php __("Registration with Email Confirmation", "profile-builder"); ?>
|
1533 |
-
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n", "profile-builder"); ?>
|
1534 |
<?php __("A new account has been created for you on {{site_name}}", "profile-builder"); ?>
|
1535 |
<?php __("<h3>Good News!</h3>\n<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
|
1536 |
<?php __("Your account on {{site_name}} has been approved!", "profile-builder"); ?>
|
@@ -1730,6 +1729,7 @@
|
|
1730 |
<?php __("Remove", "profile-builder"); ?>
|
1731 |
<?php __("Select File", "profile-builder"); ?>
|
1732 |
<?php __("Upload ", "profile-builder"); ?>
|
|
|
1733 |
<?php __("Sorry, you cannot upload this file type for this field.", "profile-builder"); ?>
|
1734 |
<?php __("An error occurred, please try again later.", "profile-builder"); ?>
|
1735 |
<?php __("Limit", "profile-builder"); ?>
|
589 |
<?php __("Avatar Size", "profile-builder"); ?>
|
590 |
<?php __("Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", "profile-builder"); ?>
|
591 |
<?php __("Date-format", "profile-builder"); ?>
|
592 |
+
<?php __("Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy", "profile-builder"); ?>
|
593 |
<?php __("Terms of Agreement", "profile-builder"); ?>
|
594 |
<?php __("Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>", "profile-builder"); ?>
|
595 |
<?php __("Options", "profile-builder"); ?>
|
1165 |
<?php __("Invalid username or email.", "profile-builder"); ?>
|
1166 |
<?php __("Invalid username.", "profile-builder"); ?>
|
1167 |
<?php __("Password Lost and Found.", "profile-builder"); ?>
|
1168 |
+
<?php __("Lost your password ?", "profile-builder"); ?>
|
1169 |
<?php __("Both fields are empty.", "profile-builder"); ?>
|
1170 |
<?php __("Username or Email", "profile-builder"); ?>
|
1171 |
<?php __("Lost your password?", "profile-builder"); ?>
|
1181 |
<?php __("Username or E-mail", "profile-builder"); ?>
|
1182 |
<?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
|
1183 |
<?php __("Get New Password", "profile-builder"); ?>
|
1184 |
+
<?php __("Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s", "profile-builder"); ?>
|
1185 |
+
<?php __("Password Reset from \"%1$s\"", "profile-builder"); ?>
|
1186 |
+
<?php __("You have successfully reset your password.", "profile-builder"); ?>
|
1187 |
+
<?php __("Password Successfully Reset for %1$s on \"%2$s\"", "profile-builder"); ?>
|
1188 |
+
<?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
|
1189 |
<?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
|
1190 |
<?php __("The username entered wasn't found in the database!", "profile-builder"); ?>
|
1191 |
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1192 |
<?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
|
1193 |
+
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1194 |
<?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
|
1195 |
<?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
|
1196 |
+
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
|
|
|
|
1197 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1198 |
<?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
|
1199 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1200 |
+
<?php __("The password must not be empty!", "profile-builder"); ?>
|
|
|
|
|
|
|
1201 |
<?php __("ERROR:", "profile-builder"); ?>
|
1202 |
<?php __("Invalid key!", "profile-builder"); ?>
|
1203 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
1213 |
<?php __("Status", "profile-builder"); ?>
|
1214 |
<?php __("Active", "profile-builder"); ?>
|
1215 |
<?php __("Inactive", "profile-builder"); ?>
|
|
|
|
|
1216 |
<?php __("This display name is already in use. Please choose another one.", "profile-builder"); ?>
|
1217 |
<?php __("Resend activation email", "profile-builder"); ?>
|
1218 |
<?php __("Allow users with the 'delete_users' capability to view the Admin Approval list", "profile-builder"); ?>
|
1525 |
<?php __("User Email Customizer", "profile-builder"); ?>
|
1526 |
<?php __("User Email Customizer Settings", "profile-builder"); ?>
|
1527 |
<?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
|
1528 |
+
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is: {{username}} and password:{{password}}</p>\n", "profile-builder"); ?>
|
1529 |
<?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
|
1530 |
<?php __("[{{site_name}}] Activate {{username}}", "profile-builder"); ?>
|
1531 |
<?php __("Registration with Email Confirmation", "profile-builder"); ?>
|
1532 |
+
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is: {{username}} and password:{{password}}</p>\n<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n", "profile-builder"); ?>
|
1533 |
<?php __("A new account has been created for you on {{site_name}}", "profile-builder"); ?>
|
1534 |
<?php __("<h3>Good News!</h3>\n<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
|
1535 |
<?php __("Your account on {{site_name}} has been approved!", "profile-builder"); ?>
|
1729 |
<?php __("Remove", "profile-builder"); ?>
|
1730 |
<?php __("Select File", "profile-builder"); ?>
|
1731 |
<?php __("Upload ", "profile-builder"); ?>
|
1732 |
+
<?php __("Files must be smaller than ", "profile-builder"); ?>
|
1733 |
<?php __("Sorry, you cannot upload this file type for this field.", "profile-builder"); ?>
|
1734 |
<?php __("An error occurred, please try again later.", "profile-builder"); ?>
|
1735 |
<?php __("Limit", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307,
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -85,7 +85,7 @@ msgstr ""
|
|
85 |
msgid "Registration form:"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../pb-add-on-buddypress/buddypress-page.php:65,
|
89 |
msgid "Default Registration"
|
90 |
msgstr ""
|
91 |
|
@@ -209,7 +209,7 @@ msgstr ""
|
|
209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../pb-add-on-buddypress/index.php:508, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228,
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
@@ -233,7 +233,7 @@ msgstr ""
|
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../pb-add-on-buddypress/index.php:531,
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
@@ -241,7 +241,7 @@ msgstr ""
|
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../pb-add-on-buddypress/index.php:538,
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
@@ -313,7 +313,7 @@ msgstr ""
|
|
313 |
msgid "Login Label"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../pb-add-on-custom-profile-menus/index.php:180, ../pb-add-on-custom-profile-menus/index.php:302, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:13, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:60,
|
317 |
msgid "Login"
|
318 |
msgstr ""
|
319 |
|
@@ -321,7 +321,7 @@ msgstr ""
|
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../pb-add-on-custom-profile-menus/index.php:188, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16,
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
@@ -349,7 +349,7 @@ msgstr ""
|
|
349 |
msgid "Display Mode"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../pb-add-on-custom-profile-menus/index.php:252,
|
353 |
msgid "Logged In Users"
|
354 |
msgstr ""
|
355 |
|
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74,
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
@@ -389,35 +389,35 @@ msgstr ""
|
|
389 |
msgid "Width (px)"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: index.php:40
|
393 |
msgid "Forms"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: index.php:41
|
397 |
msgid "Fields"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: index.php:42
|
401 |
msgid "Userlisting"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: index.php:43
|
405 |
msgid "Shortcodes"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: index.php:44
|
409 |
msgid "Admin"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: index.php:62, index.php:72
|
413 |
msgid "Customization Toolbox"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: index.php:62
|
417 |
msgid "Toolbox"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: index.php:147, ../pb-add-on-social-connect/index.php:237,
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
@@ -425,7 +425,7 @@ msgstr ""
|
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../pb-add-on-field-visibility/index.php:208,
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
@@ -453,11 +453,11 @@ msgstr ""
|
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:228, ../pb-add-on-labels-edit/pble.php:354,
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:228,
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
@@ -550,9 +550,7 @@ msgid "Easily import the labels from another site."
|
|
550 |
msgstr ""
|
551 |
|
552 |
#: ../pb-add-on-labels-edit/pble.php:308
|
553 |
-
msgid ""
|
554 |
-
"This will overwrite all your old edited labels!\n"
|
555 |
-
"Are you sure you want to continue?"
|
556 |
msgstr ""
|
557 |
|
558 |
#: ../pb-add-on-labels-edit/pble.php:313
|
@@ -567,11 +565,11 @@ msgstr ""
|
|
567 |
msgid "You must select a label to edit!"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../pb-add-on-labels-edit/pble.php:354,
|
571 |
msgid "Labels"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../pb-add-on-labels-edit/pble.php:354, ../pb-add-on-labels-edit/pble.php:354,
|
575 |
msgid "Delete all"
|
576 |
msgstr ""
|
577 |
|
@@ -685,11 +683,11 @@ msgstr ""
|
|
685 |
msgid "Replace labels with placeholders:"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324,
|
689 |
msgid "Yes"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325,
|
693 |
msgid "No"
|
694 |
msgstr ""
|
695 |
|
@@ -877,7 +875,7 @@ msgstr ""
|
|
877 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../pb-add-on-social-connect/index.php:390,
|
881 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
882 |
msgstr ""
|
883 |
|
@@ -885,7 +883,7 @@ msgstr ""
|
|
885 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../pb-add-on-social-connect/index.php:392,
|
889 |
msgid "here"
|
890 |
msgstr ""
|
891 |
|
@@ -921,7 +919,7 @@ msgstr ""
|
|
921 |
msgid "Profile Builder not active!"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: ../pb-add-on-social-connect/index.php:834,
|
925 |
msgid "General Settings"
|
926 |
msgstr ""
|
927 |
|
@@ -945,11 +943,11 @@ msgstr ""
|
|
945 |
msgid "Country"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6,
|
949 |
msgid "First Name"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7,
|
953 |
msgid "Last Name"
|
954 |
msgstr ""
|
955 |
|
@@ -1057,7 +1055,7 @@ msgstr ""
|
|
1057 |
msgid "Field Name"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: ../pb-add-on-woocommerce/index.php:304,
|
1061 |
msgid "Required"
|
1062 |
msgstr ""
|
1063 |
|
@@ -1065,7 +1063,7 @@ msgstr ""
|
|
1065 |
msgid "Click to edit "
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: ../pb-add-on-woocommerce/index.php:391,
|
1069 |
msgid "The email you entered is not a valid email address."
|
1070 |
msgstr ""
|
1071 |
|
@@ -1085,11 +1083,11 @@ msgstr ""
|
|
1085 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:
|
1089 |
msgid "Display on WooCommerce Checkout"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:
|
1093 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1094 |
msgstr ""
|
1095 |
|
@@ -1117,7 +1115,7 @@ msgstr ""
|
|
1117 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#:
|
1121 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1122 |
msgstr ""
|
1123 |
|
@@ -1129,7 +1127,7 @@ msgstr ""
|
|
1129 |
msgid "Campaign Monitor Integration"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340,
|
1133 |
msgid "Save"
|
1134 |
msgstr ""
|
1135 |
|
@@ -1197,7 +1195,7 @@ msgstr ""
|
|
1197 |
msgid "Click to edit"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171,
|
1201 |
msgid "Cancel"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1331,7 +1329,7 @@ msgstr ""
|
|
1331 |
msgid "Communication Preferences"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9,
|
1335 |
msgid "E-mail"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1359,7 +1357,7 @@ msgstr ""
|
|
1359 |
msgid "Save the communication preferences order"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:44, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:87,
|
1363 |
msgid "required"
|
1364 |
msgstr ""
|
1365 |
|
@@ -1419,7 +1417,7 @@ msgstr ""
|
|
1419 |
msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:540,
|
1423 |
msgid "Edit this item"
|
1424 |
msgstr ""
|
1425 |
|
@@ -1505,9 +1503,6 @@ msgstr ""
|
|
1505 |
msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: ../pb-add-on-mailchimp-integration/admin/widget.php:154, ../pb-add-on-mailchimp-integration/front-end/mailchimp-field.php:80, ../pb-add-on-mailchimp-integration/front-end/mailchimp-field.php:107
|
1509 |
-
msgstr ""
|
1510 |
-
|
1511 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:201
|
1512 |
msgid "Select..."
|
1513 |
msgstr ""
|
@@ -1602,4461 +1597,4457 @@ msgstr ""
|
|
1602 |
msgid "Sign in with Twitter"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#:
|
1606 |
msgid "Add-Ons"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#:
|
1610 |
msgid "Recommended Plugins"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#:
|
1614 |
msgid "Free"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#:
|
1618 |
msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#:
|
1622 |
msgid "Activate"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#:
|
1626 |
msgid "Deactivate"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#:
|
1630 |
msgid "Plugin is <strong>inactive</strong>"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#:
|
1634 |
msgid "Plugin is <strong>active</strong>"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#:
|
1638 |
msgid "Install Now"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#:
|
1642 |
msgid "Compatible with your version of Profile Builder."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#:
|
1646 |
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#:
|
1650 |
msgid "Accept user payments, create subscription plans and restrict content on your membership site."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#:
|
1654 |
msgid "Downloading and installing..."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#:
|
1658 |
msgid "Installation complete"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#:
|
1662 |
msgid "Add-On is Active"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid "Add-On has been activated"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#:
|
1670 |
msgid "Retry Install"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#:
|
1674 |
msgid "Add-On is <strong>active</strong>"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#:
|
1678 |
msgid "Add-On is <strong>inactive</strong>"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#:
|
1682 |
msgid "Add-On has been deactivated."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#:
|
1686 |
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#:
|
1690 |
msgid "Available in Hobbyist and Pro Versions"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#:
|
1694 |
msgid "Available in All Versions"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#:
|
1698 |
msgid "Learn More"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#:
|
1702 |
msgid "Download Now"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#:
|
1706 |
msgid "Upgrade Profile Builder"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#:
|
1710 |
msgid "Not compatible with Profile Builder"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#:
|
1714 |
msgid "Update"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#:
|
1718 |
msgid "Not compatible with your version of Profile Builder."
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#:
|
1722 |
msgid "Minimum required Profile Builder version:"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#:
|
1726 |
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#:
|
1730 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#:
|
1734 |
msgid "Admin Bar Settings"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#:
|
1738 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#:
|
1742 |
msgid "User-Role"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#:
|
1746 |
msgid "Default"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#:
|
1750 |
msgid "Show"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#:
|
1754 |
msgid "Hide"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#:
|
1758 |
msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#:
|
1762 |
msgid "Display name publicly as - only appears on the Edit Profile page!"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#:
|
1766 |
msgid "Blog Details - only appears on the Registration page!"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#:
|
1770 |
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#:
|
1774 |
msgid "Very weak"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#:
|
1778 |
msgid "Weak"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#:
|
1782 |
msgid "Medium"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#:
|
1786 |
msgid "Strong"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#:
|
1790 |
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#:
|
1794 |
msgid "Add Field"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#:
|
1798 |
msgid "Save Settings"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#:
|
1802 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#:
|
1806 |
msgid "View Profile Builder documentation"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#:
|
1810 |
msgid "Docs"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#:
|
1814 |
msgid "Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder."
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#:
|
1818 |
msgid "See details"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#:
|
1822 |
msgid "Dismiss this notice."
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#:
|
1826 |
msgid "Basic Information"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#:
|
1830 |
msgid "<strong>Profile Builder </strong> %s"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#:
|
1834 |
msgid "The best way to add front-end registration, edit profile and login forms."
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#:
|
1838 |
msgid "Speed up the setup process by automatically creating the form pages:"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#:
|
1842 |
msgid "Create Form Pages"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#:
|
1846 |
msgid "You can see all the pages with Profile Builder form shortcodes here:"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#:
|
1850 |
msgid "View Form Pages"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#:
|
1854 |
msgid "Login Form"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#:
|
1858 |
msgid "Friction-less login using %s shortcode or a widget."
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#:
|
1862 |
msgid "Registration Form"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#:
|
1866 |
msgid "Beautiful registration forms fully customizable using the %s shortcode."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#:
|
1870 |
msgid "Edit Profile Form"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#:
|
1874 |
msgid "Straight forward edit profile forms using %s shortcode."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#:
|
1878 |
msgid "Extra Features"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#:
|
1882 |
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#:
|
1886 |
msgid "Enable extra features"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#:
|
1890 |
msgid "Recover Password"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#:
|
1894 |
msgid "Allow users to recover their password in the front-end using the %s."
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#:
|
1898 |
msgid "Admin Approval (*)"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#:
|
1902 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#:
|
1906 |
msgid "Email Confirmation"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#:
|
1910 |
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#:
|
1914 |
msgid "Content Restriction"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#:
|
1918 |
msgid "Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#:
|
1922 |
msgid "Minimum Password Length and Strength Meter"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#:
|
1926 |
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#:
|
1930 |
msgid "Login with Email or Username"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#:
|
1934 |
msgid "Allow users to log in with their email or username when accessing your site."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#:
|
1938 |
msgid "Roles Editor"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#:
|
1942 |
msgid "Add, remove, clone and edit roles and also capabilities for these roles."
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#:
|
1946 |
msgid "Customize Your Forms The Way You Want (*)"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#:
|
1950 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#:
|
1954 |
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#:
|
1958 |
msgid "Get started with extra fields"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#:
|
1962 |
msgid "Avatar Upload"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#:
|
1966 |
msgid "Generic Uploads"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#:
|
1970 |
msgid "Agree To Terms Checkbox"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#:
|
1974 |
msgid "Datepicker"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#:
|
1978 |
msgid "Timepicker"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#:
|
1982 |
msgid "Colorpicker"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#:
|
1986 |
msgid "reCAPTCHA"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#:
|
1990 |
msgid "Country Select"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#:
|
1994 |
msgid "Currency Select"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#:
|
1998 |
msgid "Timezone Select"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#:
|
2002 |
msgid "Input / Hidden Input"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#:
|
2006 |
msgid "Number"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#:
|
2010 |
msgid "Checkbox"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#:
|
2014 |
msgid "Select"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#:
|
2018 |
msgid "Radio Buttons"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#:
|
2022 |
msgid "Textarea"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#:
|
2026 |
msgid "Validation"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#:
|
2030 |
msgid "Map"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#:
|
2034 |
msgid "HTML"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#:
|
2038 |
msgid "Powerful Modules (**)"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#:
|
2042 |
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#:
|
2046 |
msgid "Enable your modules"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#:
|
2050 |
msgid "Find out more about PRO Modules"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#:
|
2054 |
msgid "User Listing"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#:
|
2058 |
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#:
|
2062 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#:
|
2066 |
msgid "Email Customizer"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#:
|
2070 |
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#:
|
2074 |
msgid "Custom Redirects"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#:
|
2078 |
msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#:
|
2082 |
msgid "Multiple Registration Forms"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#:
|
2086 |
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#:
|
2090 |
msgid "Multiple Edit-profile Forms"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#:
|
2094 |
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#:
|
2098 |
msgid "Repeater Fields"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#:
|
2102 |
msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#:
|
2106 |
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#:
|
2110 |
msgid "** only available in the %1$sPro version%2$s."
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#:
|
2114 |
msgid "Quick Feedback"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#:
|
2118 |
msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#:
|
2122 |
msgid "Lacking certain features"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#:
|
2126 |
msgid "What feature would you like to see?"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#:
|
2130 |
msgid "Hard to use"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#:
|
2134 |
msgid "How can we improve our user experience ?"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#:
|
2138 |
msgid "Unsatisfactory support"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#:
|
2142 |
msgid "Other"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#:
|
2146 |
msgid "Please tell us more"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#:
|
2150 |
msgid "Poor Documentation"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#:
|
2154 |
msgid "Tell us what you couldn't find"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#:
|
2158 |
msgid "Submit & Deactivate"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#:
|
2162 |
msgid "Skip and Deactivate"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
-
#:
|
2166 |
msgid "Submit and Deactivate"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#:
|
2170 |
msgid "Admin Bar"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#:
|
2174 |
msgid "Private Website"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#:
|
2178 |
msgid "User Emails"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#:
|
2182 |
msgid "Administrator Emails"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#:
|
2186 |
msgid "Profile Builder Settings"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#:
|
2190 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#:
|
2194 |
msgid "You can find the default file here: %1$s"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#:
|
2198 |
msgid "\"Email Confirmation\" Activated:"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#:
|
2202 |
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#:
|
2206 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#:
|
2210 |
msgid "\"Email Confirmation\" Landing Page:"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#:
|
2214 |
msgid "Existing Pages"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#:
|
2218 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#:
|
2222 |
msgid "\"Admin Approval\" Activated:"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#:
|
2226 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#:
|
2230 |
msgid "\"Admin Approval\" on User Role:"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#:
|
2234 |
msgid "Select on what user roles to activate Admin Approval."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#:
|
2238 |
msgid "\"Roles Editor\" Activated:"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#:
|
2242 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#:
|
2246 |
msgid "\"Admin Approval\" Feature:"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#:
|
2250 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#:
|
2254 |
msgid "Allow Users to Log in With:"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#:
|
2258 |
msgid "Username and Email"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#:
|
2262 |
msgid "Username"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#:
|
2266 |
msgid "Email"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#:
|
2270 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#:
|
2274 |
msgid "\"Username\" - users can Log In only with Username."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#:
|
2278 |
msgid "\"Email\" - users can Log In only with Email."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#:
|
2282 |
msgid "Minimum Password Length:"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#:
|
2286 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#:
|
2290 |
msgid "Minimum Password Strength:"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#:
|
2294 |
msgid "Disabled"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#:
|
2298 |
msgid "Form Fields"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#:
|
2302 |
msgid "Manage Form Fields"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#:
|
2306 |
msgid "Choose one of the supported field types"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#:
|
2310 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#:
|
2314 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#:
|
2318 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#:
|
2322 |
msgid "Field Title"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#:
|
2326 |
msgid "Title of the field"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#:
|
2330 |
msgid "Field"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#:
|
2334 |
msgid "Meta-name"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#:
|
2338 |
msgid "ID"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#:
|
2342 |
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#:
|
2346 |
msgid "Description"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#:
|
2350 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#:
|
2354 |
msgid "Row Count"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#:
|
2358 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#:
|
2362 |
msgid "Allowed Image Extensions"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#:
|
2366 |
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#:
|
2370 |
msgid "Allowed Upload Extensions"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#:
|
2374 |
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#:
|
2378 |
msgid "Avatar Size"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#:
|
2382 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#:
|
2386 |
msgid "Date-format"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#:
|
2390 |
-
msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#:
|
2394 |
msgid "Terms of Agreement"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#:
|
2398 |
msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#:
|
2402 |
msgid "Options"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#:
|
2406 |
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#:
|
2410 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#:
|
2414 |
msgid "reCAPTCHA Type"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#:
|
2418 |
msgid "Choose the <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\">type of reCAPTCHA</a> you wish to add to this site."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#:
|
2422 |
msgid "Site Key"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#:
|
2426 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#:
|
2430 |
msgid "Secret Key"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#:
|
2434 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#:
|
2438 |
msgid "Display on PB forms"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#:
|
2442 |
msgid "PB Login"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#:
|
2446 |
msgid "PB Register"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#:
|
2450 |
msgid "PB Recover Password"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#:
|
2454 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#:
|
2458 |
msgid "Display on default WP forms"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#:
|
2462 |
msgid "Default WP Login"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#:
|
2466 |
msgid "Default WP Register"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#:
|
2470 |
msgid "Default WP Recover Password"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#:
|
2474 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#:
|
2478 |
msgid "User Roles"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#:
|
2482 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#:
|
2486 |
msgid "User Roles Order"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#:
|
2490 |
msgid "Save the user role order from the user roles checkboxes"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#:
|
2494 |
msgid "Default Value"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#:
|
2498 |
msgid "Default value of the field"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#:
|
2502 |
msgid "Default Option"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#:
|
2506 |
msgid "Specify the option which should be selected by default"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#:
|
2510 |
msgid "Default Option(s)"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#:
|
2514 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#:
|
2518 |
msgid "Default option of the field"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#:
|
2522 |
msgid "Show Currency Symbol"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#:
|
2526 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#:
|
2530 |
msgid "Show Post Type"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#:
|
2534 |
msgid "Posts from what post type will be displayed in the select."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#:
|
2538 |
msgid "Allowable Values"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#:
|
2542 |
msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#:
|
2546 |
msgid "Error Message"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#:
|
2550 |
msgid "Set a custom error message that will be displayed to the user."
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#:
|
2554 |
msgid "Time Format"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#:
|
2558 |
msgid "Specify the time format."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#:
|
2562 |
msgid "Google Maps API Key"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#:
|
2566 |
msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#:
|
2570 |
msgid "Default Latitude"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#:
|
2574 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#:
|
2578 |
msgid "Default Longitude"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#:
|
2582 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#:
|
2586 |
msgid "Default Zoom Level"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#:
|
2590 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#:
|
2594 |
msgid "Map Height"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#:
|
2598 |
msgid "The height of the map."
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#:
|
2602 |
msgid "Default Content"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#:
|
2606 |
msgid "Default value of the textarea"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#:
|
2610 |
msgid "HTML Content"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#:
|
2614 |
msgid "Add your HTML (or text) content"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#:
|
2618 |
msgid "Phone Format"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#:
|
2622 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2623 |
msgstr ""
|
2624 |
|
2625 |
-
#:
|
2626 |
msgid "Eg. (###) ###-####"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#:
|
2630 |
msgid "Empty field won't check for correct phone number."
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#:
|
2634 |
msgid "Heading Tag"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#:
|
2638 |
msgid "Change heading field size on front-end forms"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#:
|
2642 |
msgid "Min Number Value"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#:
|
2646 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#:
|
2650 |
msgid "Leave it empty for no min value"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#:
|
2654 |
msgid "Max Number Value"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#:
|
2658 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#:
|
2662 |
msgid "Leave it empty for no max value"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#:
|
2666 |
msgid "Number Step Value"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#:
|
2670 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#:
|
2674 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#:
|
2678 |
msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#:
|
2682 |
msgid "Leave it empty for no restriction"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#:
|
2686 |
msgid "Whether the field is required or not"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#:
|
2690 |
msgid "Overwrite Existing"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#:
|
2694 |
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#:
|
2698 |
msgid "POIs Load Type"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#:
|
2702 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#:
|
2706 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#:
|
2710 |
msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#:
|
2714 |
msgid "POI Bubble Info"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#:
|
2718 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#:
|
2722 |
msgid "Number of Users per Map Iteration"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#:
|
2726 |
msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#:
|
2730 |
msgid "Form Field Properties"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#:
|
2734 |
msgid "Registration & Edit Profile Forms"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#:
|
2738 |
msgid "Usernames cannot be changed."
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#:
|
2742 |
msgid "Nickname"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#:
|
2746 |
msgid "Display name publicly as"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#:
|
2750 |
msgid "Website"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#:
|
2754 |
msgid "AIM"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#:
|
2758 |
msgid "Yahoo IM"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#:
|
2762 |
msgid "Jabber / Google Talk"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#:
|
2766 |
msgid "Biographical Info"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#:
|
2770 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#:
|
2774 |
msgid "Password"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#:
|
2778 |
msgid "Type your password."
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#:
|
2782 |
msgid "Repeat Password"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#:
|
2786 |
msgid "Type your password again. "
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#:
|
2790 |
msgid "Blog Details"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#:
|
2794 |
msgid "Select a Country"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#:
|
2798 |
msgid "Afghanistan"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#:
|
2802 |
msgid "Aland Islands"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#:
|
2806 |
msgid "Albania"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#:
|
2810 |
msgid "Algeria"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#:
|
2814 |
msgid "American Samoa"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#:
|
2818 |
msgid "Andorra"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#:
|
2822 |
msgid "Angola"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#:
|
2826 |
msgid "Anguilla"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#:
|
2830 |
msgid "Antarctica"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#:
|
2834 |
msgid "Antigua and Barbuda"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#:
|
2838 |
msgid "Argentina"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#:
|
2842 |
msgid "Armenia"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#:
|
2846 |
msgid "Aruba"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#:
|
2850 |
msgid "Australia"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#:
|
2854 |
msgid "Austria"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#:
|
2858 |
msgid "Azerbaijan"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#:
|
2862 |
msgid "Bahamas"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#:
|
2866 |
msgid "Bahrain"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#:
|
2870 |
msgid "Bangladesh"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#:
|
2874 |
msgid "Barbados"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#:
|
2878 |
msgid "Belarus"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#:
|
2882 |
msgid "Belgium"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#:
|
2886 |
msgid "Belize"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#:
|
2890 |
msgid "Benin"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#:
|
2894 |
msgid "Bermuda"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#:
|
2898 |
msgid "Bhutan"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#:
|
2902 |
msgid "Bolivia"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#:
|
2906 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#:
|
2910 |
msgid "Bosnia and Herzegovina"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#:
|
2914 |
msgid "Botswana"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
-
#:
|
2918 |
msgid "Bouvet Island"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#:
|
2922 |
msgid "Brazil"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#:
|
2926 |
msgid "British Indian Ocean Territory"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#:
|
2930 |
msgid "British Virgin Islands"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#:
|
2934 |
msgid "Brunei"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#:
|
2938 |
msgid "Bulgaria"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#:
|
2942 |
msgid "Burkina Faso"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#:
|
2946 |
msgid "Burundi"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#:
|
2950 |
msgid "Cambodia"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#:
|
2954 |
msgid "Cameroon"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#:
|
2958 |
msgid "Canada"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#:
|
2962 |
msgid "Cape Verde"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#:
|
2966 |
msgid "Cayman Islands"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#:
|
2970 |
msgid "Central African Republic"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#:
|
2974 |
msgid "Chad"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#:
|
2978 |
msgid "Chile"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#:
|
2982 |
msgid "China"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#:
|
2986 |
msgid "Christmas Island"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#:
|
2990 |
msgid "Cocos Islands"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#:
|
2994 |
msgid "Colombia"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#:
|
2998 |
msgid "Comoros"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#:
|
3002 |
msgid "Cook Islands"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#:
|
3006 |
msgid "Costa Rica"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#:
|
3010 |
msgid "Croatia"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#:
|
3014 |
msgid "Cuba"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#:
|
3018 |
msgid "Curacao"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#:
|
3022 |
msgid "Cyprus"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#:
|
3026 |
msgid "Czech Republic"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#:
|
3030 |
msgid "Democratic Republic of the Congo"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#:
|
3034 |
msgid "Denmark"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#:
|
3038 |
msgid "Djibouti"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#:
|
3042 |
msgid "Dominica"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#:
|
3046 |
msgid "Dominican Republic"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#:
|
3050 |
msgid "East Timor"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#:
|
3054 |
msgid "Ecuador"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#:
|
3058 |
msgid "Egypt"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#:
|
3062 |
msgid "El Salvador"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#:
|
3066 |
msgid "Equatorial Guinea"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#:
|
3070 |
msgid "Eritrea"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#:
|
3074 |
msgid "Estonia"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#:
|
3078 |
msgid "Ethiopia"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#:
|
3082 |
msgid "Falkland Islands"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#:
|
3086 |
msgid "Faroe Islands"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#:
|
3090 |
msgid "Fiji"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#:
|
3094 |
msgid "Finland"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#:
|
3098 |
msgid "France"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#:
|
3102 |
msgid "French Guiana"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#:
|
3106 |
msgid "French Polynesia"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#:
|
3110 |
msgid "French Southern Territories"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#:
|
3114 |
msgid "Gabon"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#:
|
3118 |
msgid "Gambia"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#:
|
3122 |
msgid "Georgia"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#:
|
3126 |
msgid "Germany"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#:
|
3130 |
msgid "Ghana"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#:
|
3134 |
msgid "Gibraltar"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#:
|
3138 |
msgid "Greece"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#:
|
3142 |
msgid "Greenland"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#:
|
3146 |
msgid "Grenada"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#:
|
3150 |
msgid "Guadeloupe"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#:
|
3154 |
msgid "Guam"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#:
|
3158 |
msgid "Guatemala"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#:
|
3162 |
msgid "Guernsey"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#:
|
3166 |
msgid "Guinea"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#:
|
3170 |
msgid "Guinea-Bissau"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#:
|
3174 |
msgid "Guyana"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#:
|
3178 |
msgid "Haiti"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#:
|
3182 |
msgid "Heard Island and McDonald Islands"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#:
|
3186 |
msgid "Honduras"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#:
|
3190 |
msgid "Hong Kong"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#:
|
3194 |
msgid "Hungary"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#:
|
3198 |
msgid "Iceland"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#:
|
3202 |
msgid "India"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#:
|
3206 |
msgid "Indonesia"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#:
|
3210 |
msgid "Iran"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#:
|
3214 |
msgid "Iraq"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#:
|
3218 |
msgid "Ireland"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#:
|
3222 |
msgid "Isle of Man"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#:
|
3226 |
msgid "Israel"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#:
|
3230 |
msgid "Italy"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#:
|
3234 |
msgid "Ivory Coast"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#:
|
3238 |
msgid "Jamaica"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#:
|
3242 |
msgid "Japan"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#:
|
3246 |
msgid "Jersey"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#:
|
3250 |
msgid "Jordan"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#:
|
3254 |
msgid "Kazakhstan"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#:
|
3258 |
msgid "Kenya"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#:
|
3262 |
msgid "Kiribati"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#:
|
3266 |
msgid "Kosovo"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#:
|
3270 |
msgid "Kuwait"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#:
|
3274 |
msgid "Kyrgyzstan"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#:
|
3278 |
msgid "Laos"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#:
|
3282 |
msgid "Latvia"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#:
|
3286 |
msgid "Lebanon"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#:
|
3290 |
msgid "Lesotho"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#:
|
3294 |
msgid "Liberia"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#:
|
3298 |
msgid "Libya"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#:
|
3302 |
msgid "Liechtenstein"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#:
|
3306 |
msgid "Lithuania"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#:
|
3310 |
msgid "Luxembourg"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#:
|
3314 |
msgid "Macao"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#:
|
3318 |
msgid "Macedonia"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#:
|
3322 |
msgid "Madagascar"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#:
|
3326 |
msgid "Malawi"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#:
|
3330 |
msgid "Malaysia"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#:
|
3334 |
msgid "Maldives"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#:
|
3338 |
msgid "Mali"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#:
|
3342 |
msgid "Malta"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#:
|
3346 |
msgid "Marshall Islands"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#:
|
3350 |
msgid "Martinique"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#:
|
3354 |
msgid "Mauritania"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#:
|
3358 |
msgid "Mauritius"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#:
|
3362 |
msgid "Mayotte"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#:
|
3366 |
msgid "Mexico"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#:
|
3370 |
msgid "Micronesia"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#:
|
3374 |
msgid "Moldova"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#:
|
3378 |
msgid "Monaco"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#:
|
3382 |
msgid "Mongolia"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#:
|
3386 |
msgid "Montenegro"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#:
|
3390 |
msgid "Montserrat"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#:
|
3394 |
msgid "Morocco"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#:
|
3398 |
msgid "Mozambique"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#:
|
3402 |
msgid "Myanmar"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#:
|
3406 |
msgid "Namibia"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#:
|
3410 |
msgid "Nauru"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#:
|
3414 |
msgid "Nepal"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#:
|
3418 |
msgid "Netherlands"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#:
|
3422 |
msgid "New Caledonia"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#:
|
3426 |
msgid "New Zealand"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#:
|
3430 |
msgid "Nicaragua"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#:
|
3434 |
msgid "Niger"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#:
|
3438 |
msgid "Nigeria"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#:
|
3442 |
msgid "Niue"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#:
|
3446 |
msgid "Norfolk Island"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#:
|
3450 |
msgid "North Korea"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#:
|
3454 |
msgid "Northern Mariana Islands"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#:
|
3458 |
msgid "Norway"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#:
|
3462 |
msgid "Oman"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
-
#:
|
3466 |
msgid "Pakistan"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#:
|
3470 |
msgid "Palau"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#:
|
3474 |
msgid "Palestinian Territory"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#:
|
3478 |
msgid "Panama"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#:
|
3482 |
msgid "Papua New Guinea"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#:
|
3486 |
msgid "Paraguay"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#:
|
3490 |
msgid "Peru"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#:
|
3494 |
msgid "Philippines"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#:
|
3498 |
msgid "Pitcairn"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#:
|
3502 |
msgid "Poland"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#:
|
3506 |
msgid "Portugal"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#:
|
3510 |
msgid "Puerto Rico"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#:
|
3514 |
msgid "Qatar"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#:
|
3518 |
msgid "Republic of the Congo"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#:
|
3522 |
msgid "Reunion"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#:
|
3526 |
msgid "Romania"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#:
|
3530 |
msgid "Russia"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
-
#:
|
3534 |
msgid "Rwanda"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#:
|
3538 |
msgid "Saint Barthelemy"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
-
#:
|
3542 |
msgid "Saint Helena"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#:
|
3546 |
msgid "Saint Kitts and Nevis"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#:
|
3550 |
msgid "Saint Lucia"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
-
#:
|
3554 |
msgid "Saint Martin"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
#:
|
3558 |
msgid "Saint Pierre and Miquelon"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
-
#:
|
3562 |
msgid "Saint Vincent and the Grenadines"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#:
|
3566 |
msgid "Samoa"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#:
|
3570 |
msgid "San Marino"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
-
#:
|
3574 |
msgid "Sao Tome and Principe"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
-
#:
|
3578 |
msgid "Saudi Arabia"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
-
#:
|
3582 |
msgid "Senegal"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
-
#:
|
3586 |
msgid "Serbia"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
-
#:
|
3590 |
msgid "Seychelles"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#:
|
3594 |
msgid "Sierra Leone"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#:
|
3598 |
msgid "Singapore"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#:
|
3602 |
msgid "Sint Maarten"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
-
#:
|
3606 |
msgid "Slovakia"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#:
|
3610 |
msgid "Slovenia"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
-
#:
|
3614 |
msgid "Solomon Islands"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#:
|
3618 |
msgid "Somalia"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
-
#:
|
3622 |
msgid "South Africa"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
-
#:
|
3626 |
msgid "South Georgia and the South Sandwich Islands"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
-
#:
|
3630 |
msgid "South Korea"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
-
#:
|
3634 |
msgid "South Sudan"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
-
#:
|
3638 |
msgid "Spain"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#:
|
3642 |
msgid "Sri Lanka"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#:
|
3646 |
msgid "Sudan"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#:
|
3650 |
msgid "Suriname"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#:
|
3654 |
msgid "Svalbard and Jan Mayen"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#:
|
3658 |
msgid "Swaziland"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#:
|
3662 |
msgid "Sweden"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#:
|
3666 |
msgid "Switzerland"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#:
|
3670 |
msgid "Syria"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#:
|
3674 |
msgid "Taiwan"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#:
|
3678 |
msgid "Tajikistan"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#:
|
3682 |
msgid "Tanzania"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#:
|
3686 |
msgid "Thailand"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
-
#:
|
3690 |
msgid "Togo"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#:
|
3694 |
msgid "Tokelau"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#:
|
3698 |
msgid "Tonga"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#:
|
3702 |
msgid "Trinidad and Tobago"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#:
|
3706 |
msgid "Tunisia"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#:
|
3710 |
msgid "Turkey"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
-
#:
|
3714 |
msgid "Turkmenistan"
|
3715 |
msgstr ""
|
3716 |
|
3717 |
-
#:
|
3718 |
msgid "Turks and Caicos Islands"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#:
|
3722 |
msgid "Tuvalu"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#:
|
3726 |
msgid "U.S. Virgin Islands"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#:
|
3730 |
msgid "Uganda"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#:
|
3734 |
msgid "Ukraine"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#:
|
3738 |
msgid "United Arab Emirates"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#:
|
3742 |
msgid "United Kingdom"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#:
|
3746 |
msgid "United States"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#:
|
3750 |
msgid "United States Minor Outlying Islands"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#:
|
3754 |
msgid "Uruguay"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#:
|
3758 |
msgid "Uzbekistan"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#:
|
3762 |
msgid "Vanuatu"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#:
|
3766 |
msgid "Vatican"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#:
|
3770 |
msgid "Venezuela"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#:
|
3774 |
msgid "Vietnam"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#:
|
3778 |
msgid "Wallis and Futuna"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#:
|
3782 |
msgid "Western Sahara"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#:
|
3786 |
msgid "Yemen"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#:
|
3790 |
msgid "Zambia"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#:
|
3794 |
msgid "Zimbabwe"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#:
|
3798 |
msgid "Albania Lek"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#:
|
3802 |
msgid "Afghanistan Afghani"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#:
|
3806 |
msgid "Argentina Peso"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#:
|
3810 |
msgid "Australia Dollar"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#:
|
3814 |
msgid "Azerbaijan New Manat"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#:
|
3818 |
msgid "Bahamas Dollar"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#:
|
3822 |
msgid "Barbados Dollar"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
-
#:
|
3826 |
msgid "Bangladeshi taka"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#:
|
3830 |
msgid "Belarus Ruble"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#:
|
3834 |
msgid "Belize Dollar"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#:
|
3838 |
msgid "Bermuda Dollar"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#:
|
3842 |
msgid "Bolivia Boliviano"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#:
|
3846 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#:
|
3850 |
msgid "Botswana Pula"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#:
|
3854 |
msgid "Bulgaria Lev"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#:
|
3858 |
msgid "Brazil Real"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#:
|
3862 |
msgid "Brunei Darussalam Dollar"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#:
|
3866 |
msgid "Cambodia Riel"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#:
|
3870 |
msgid "Canada Dollar"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#:
|
3874 |
msgid "Cayman Islands Dollar"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#:
|
3878 |
msgid "Chile Peso"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#:
|
3882 |
msgid "China Yuan Renminbi"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#:
|
3886 |
msgid "Colombia Peso"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#:
|
3890 |
msgid "Costa Rica Colon"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#:
|
3894 |
msgid "Croatia Kuna"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#:
|
3898 |
msgid "Cuba Peso"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#:
|
3902 |
msgid "Czech Republic Koruna"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#:
|
3906 |
msgid "Denmark Krone"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#:
|
3910 |
msgid "Dominican Republic Peso"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#:
|
3914 |
msgid "East Caribbean Dollar"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#:
|
3918 |
msgid "Egypt Pound"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#:
|
3922 |
msgid "El Salvador Colon"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#:
|
3926 |
msgid "Estonia Kroon"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#:
|
3930 |
msgid "Euro"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#:
|
3934 |
msgid "Falkland Islands (Malvinas) Pound"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#:
|
3938 |
msgid "Fiji Dollar"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#:
|
3942 |
msgid "Ghana Cedis"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#:
|
3946 |
msgid "Gibraltar Pound"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#:
|
3950 |
msgid "Guatemala Quetzal"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#:
|
3954 |
msgid "Guernsey Pound"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#:
|
3958 |
msgid "Guyana Dollar"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#:
|
3962 |
msgid "Honduras Lempira"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#:
|
3966 |
msgid "Hong Kong Dollar"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#:
|
3970 |
msgid "Hungary Forint"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#:
|
3974 |
msgid "Iceland Krona"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#:
|
3978 |
msgid "India Rupee"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#:
|
3982 |
msgid "Indonesia Rupiah"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#:
|
3986 |
msgid "Iran Rial"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#:
|
3990 |
msgid "Isle of Man Pound"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#:
|
3994 |
msgid "Israel Shekel"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#:
|
3998 |
msgid "Jamaica Dollar"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#:
|
4002 |
msgid "Japan Yen"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#:
|
4006 |
msgid "Jersey Pound"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#:
|
4010 |
msgid "Kazakhstan Tenge"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#:
|
4014 |
msgid "Korea (North) Won"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#:
|
4018 |
msgid "Korea (South) Won"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#:
|
4022 |
msgid "Kyrgyzstan Som"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#:
|
4026 |
msgid "Laos Kip"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#:
|
4030 |
msgid "Latvia Lat"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#:
|
4034 |
msgid "Lebanon Pound"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#:
|
4038 |
msgid "Liberia Dollar"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#:
|
4042 |
msgid "Lithuania Litas"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#:
|
4046 |
msgid "Macedonia Denar"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#:
|
4050 |
msgid "Malaysia Ringgit"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#:
|
4054 |
msgid "Mauritius Rupee"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#:
|
4058 |
msgid "Mexico Peso"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#:
|
4062 |
msgid "Mongolia Tughrik"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#:
|
4066 |
msgid "Mozambique Metical"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
-
#:
|
4070 |
msgid "Namibia Dollar"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#:
|
4074 |
msgid "Nepal Rupee"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
-
#:
|
4078 |
msgid "Netherlands Antilles Guilder"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#:
|
4082 |
msgid "New Zealand Dollar"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
-
#:
|
4086 |
msgid "Nicaragua Cordoba"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#:
|
4090 |
msgid "Nigeria Naira"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#:
|
4094 |
msgid "Norway Krone"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#:
|
4098 |
msgid "Oman Rial"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#:
|
4102 |
msgid "Pakistan Rupee"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#:
|
4106 |
msgid "Panama Balboa"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
-
#:
|
4110 |
msgid "Paraguay Guarani"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
-
#:
|
4114 |
msgid "Peru Nuevo Sol"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#:
|
4118 |
msgid "Philippines Peso"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
-
#:
|
4122 |
msgid "Poland Zloty"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
-
#:
|
4126 |
msgid "Qatar Riyal"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#:
|
4130 |
msgid "Romania New Leu"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#:
|
4134 |
msgid "Russia Ruble"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
-
#:
|
4138 |
msgid "Saint Helena Pound"
|
4139 |
msgstr ""
|
4140 |
|
4141 |
-
#:
|
4142 |
msgid "Saudi Arabia Riyal"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
-
#:
|
4146 |
msgid "Serbia Dinar"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
-
#:
|
4150 |
msgid "Seychelles Rupee"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#:
|
4154 |
msgid "Singapore Dollar"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
-
#:
|
4158 |
msgid "Solomon Islands Dollar"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
-
#:
|
4162 |
msgid "Somalia Shilling"
|
4163 |
msgstr ""
|
4164 |
|
4165 |
-
#:
|
4166 |
msgid "South Africa Rand"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
-
#:
|
4170 |
msgid "Sri Lanka Rupee"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
-
#:
|
4174 |
msgid "Sweden Krona"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#:
|
4178 |
msgid "Switzerland Franc"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#:
|
4182 |
msgid "Suriname Dollar"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#:
|
4186 |
msgid "Syria Pound"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
-
#:
|
4190 |
msgid "Taiwan New Dollar"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#:
|
4194 |
msgid "Thailand Baht"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
-
#:
|
4198 |
msgid "Trinidad and Tobago Dollar"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
-
#:
|
4202 |
msgid "Turkey Lira"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#:
|
4206 |
msgid "Tuvalu Dollar"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
-
#:
|
4210 |
msgid "Ukraine Hryvna"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
#:
|
4214 |
msgid "United Kingdom Pound"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#:
|
4218 |
msgid "Uganda Shilling"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#:
|
4222 |
msgid "US Dollar"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#:
|
4226 |
msgid "Uruguay Peso"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#:
|
4230 |
msgid "Uzbekistan Som"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#:
|
4234 |
msgid "Venezuela Bolivar"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
-
#:
|
4238 |
msgid "Viet Nam Dong"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#:
|
4242 |
msgid "Yemen Rial"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#:
|
4246 |
msgid "Zimbabwe Dollar"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#:
|
4250 |
msgid ""
|
4251 |
"You must select a field\n"
|
4252 |
""
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#:
|
4256 |
msgid ""
|
4257 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4258 |
""
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#:
|
4262 |
msgid ""
|
4263 |
"The entered avatar size is not between 20 and 200\n"
|
4264 |
""
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#:
|
4268 |
msgid ""
|
4269 |
"The entered avatar size is not numerical\n"
|
4270 |
""
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#:
|
4274 |
msgid ""
|
4275 |
"The entered row number is not numerical\n"
|
4276 |
""
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#:
|
4280 |
msgid ""
|
4281 |
"You must enter a value for the row number\n"
|
4282 |
""
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
#:
|
4286 |
msgid ""
|
4287 |
"You must enter the site key\n"
|
4288 |
""
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#:
|
4292 |
msgid ""
|
4293 |
"You must enter the secret key\n"
|
4294 |
""
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#:
|
4298 |
msgid ""
|
4299 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4300 |
""
|
4301 |
msgstr ""
|
4302 |
|
4303 |
-
#:
|
4304 |
msgid ""
|
4305 |
"You must enter a value for the date-format\n"
|
4306 |
""
|
4307 |
msgstr ""
|
4308 |
|
4309 |
-
#:
|
4310 |
msgid ""
|
4311 |
"The meta-name cannot be empty\n"
|
4312 |
""
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#:
|
4316 |
msgid ""
|
4317 |
"That meta-name is already in use\n"
|
4318 |
""
|
4319 |
msgstr ""
|
4320 |
|
4321 |
-
#:
|
4322 |
msgid ""
|
4323 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4324 |
""
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#:
|
4328 |
msgid ""
|
4329 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4330 |
""
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#:
|
4334 |
msgid ""
|
4335 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4336 |
""
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#:
|
4340 |
msgid ""
|
4341 |
"Please select at least one user role\n"
|
4342 |
""
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#:
|
4346 |
msgid ""
|
4347 |
"That field is already added in this form\n"
|
4348 |
""
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#:
|
4352 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#:
|
4356 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#:
|
4360 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#:
|
4364 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#:
|
4368 |
msgid "Search Location"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#:
|
4372 |
msgid "Paid Accounts"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#:
|
4376 |
msgid "Paid Member Subscriptions - a free WordPress plugin"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#:
|
4380 |
msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#:
|
4384 |
msgid "Paid & Free Subscriptions"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#:
|
4388 |
msgid "Restrict Content"
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#:
|
4392 |
msgid "Member Management"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
-
#:
|
4396 |
msgid "Email Templates"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#:
|
4400 |
msgid "Account Management"
|
4401 |
msgstr ""
|
4402 |
|
4403 |
-
#:
|
4404 |
msgid "Subscription Management"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
-
#:
|
4408 |
msgid "Payment Management"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#:
|
4412 |
msgid "Plugin is Active"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#:
|
4416 |
msgid "Plugin has been activated"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#:
|
4420 |
msgid "Plugin has been deactivated."
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#:
|
4424 |
msgid "Accept user payments, create subscription plans and restrict content on your website."
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#:
|
4428 |
msgid "Step by Step Quick Setup"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#:
|
4432 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#:
|
4436 |
msgid "Private Website Settings"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#:
|
4440 |
msgid "Enable Private Website"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#:
|
4444 |
msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#:
|
4448 |
msgid "Redirect to"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#:
|
4452 |
msgid "Default WordPress login page"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
-
#:
|
4456 |
msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
|
4457 |
msgstr ""
|
4458 |
|
4459 |
-
#:
|
4460 |
msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#:
|
4464 |
msgid "Allowed Pages"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#:
|
4468 |
msgid "Allow these pages to be accessed even if you are not logged in"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#:
|
4472 |
msgid "Hide all Menus"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#:
|
4476 |
msgid "Hide all menu items if you are not logged in."
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
#:
|
4480 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#:
|
4484 |
msgid "Save Changes"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#:
|
4488 |
msgid "Register Your Version"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#:
|
4492 |
msgid "Register Version"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#:
|
4496 |
msgid "Profile Builder Register"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#:
|
4500 |
msgid "Register your version of %s"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#:
|
4504 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#:
|
4508 |
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#:
|
4512 |
msgid " Serial Number:"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#:
|
4516 |
msgid "The serial number was successfully validated!"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
-
#:
|
4520 |
msgid "The serial number entered couldn't be validated!"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#:
|
4524 |
msgid "The serial number is about to expire soon!"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
-
#:
|
4528 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
4529 |
msgstr ""
|
4530 |
|
4531 |
-
#:
|
4532 |
msgid "The serial number couldn't be validated because it expired!"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#:
|
4536 |
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
4537 |
msgstr ""
|
4538 |
|
4539 |
-
#:
|
4540 |
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
-
#:
|
4544 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#:
|
4548 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4549 |
msgstr ""
|
4550 |
|
4551 |
-
#:
|
4552 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4553 |
msgstr ""
|
4554 |
|
4555 |
-
#:
|
4556 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#:
|
4560 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#:
|
4564 |
msgid "GDPR Checkbox"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#:
|
4568 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#:
|
4572 |
msgid "Strength indicator"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#:
|
4576 |
msgid "Very Weak"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
#:
|
4580 |
msgid "Minimum length of %d characters."
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#:
|
4584 |
msgid "The password must have a minimum strength of %s."
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#:
|
4588 |
msgid "This field is required"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
-
#:
|
4592 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4593 |
msgstr ""
|
4594 |
|
4595 |
-
#:
|
4596 |
msgid "Incorrect phone number"
|
4597 |
msgstr ""
|
4598 |
|
4599 |
-
#:
|
4600 |
msgid "Content"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
-
#:
|
4604 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4605 |
msgstr ""
|
4606 |
|
4607 |
-
#:
|
4608 |
msgid "<br><br>You can visit your site at "
|
4609 |
msgstr ""
|
4610 |
|
4611 |
-
#:
|
4612 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4613 |
msgstr ""
|
4614 |
|
4615 |
-
#:
|
4616 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
-
#:
|
4620 |
msgid "You are not currently logged in."
|
4621 |
msgstr ""
|
4622 |
|
4623 |
-
#:
|
4624 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4625 |
msgstr ""
|
4626 |
|
4627 |
-
#:
|
4628 |
msgid "Only an administrator can add new users."
|
4629 |
msgstr ""
|
4630 |
|
4631 |
-
#:
|
4632 |
msgid "Users can register themselves or you can manually create users here."
|
4633 |
msgstr ""
|
4634 |
|
4635 |
-
#:
|
4636 |
msgid "This message is only visible by administrators"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
-
#:
|
4640 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4641 |
msgstr ""
|
4642 |
|
4643 |
-
#:
|
4644 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4645 |
msgstr ""
|
4646 |
|
4647 |
-
#:
|
4648 |
msgid "Log out of this account."
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#:
|
4652 |
msgid "You must be logged in to edit your profile."
|
4653 |
msgstr ""
|
4654 |
|
4655 |
-
#:
|
4656 |
msgid "You are not allowed to do this."
|
4657 |
msgstr ""
|
4658 |
|
4659 |
-
#:
|
4660 |
msgid "The account %1s has been successfully created!"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#:
|
4664 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
#:
|
4668 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4669 |
msgstr ""
|
4670 |
|
4671 |
-
#:
|
4672 |
msgid "Your profile has been successfully updated!"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#:
|
4676 |
msgid "There was an error in the submitted form"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#:
|
4680 |
msgid "Add User"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#:
|
4684 |
msgid "Send these credentials via email."
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#:
|
4688 |
msgid "User to edit:"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#:
|
4692 |
msgid "Select User"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#:
|
4696 |
msgid "There are no other users to edit"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#:
|
4700 |
msgid "Something went wrong. Please try again!"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#:
|
4704 |
msgid "ERROR"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#:
|
4708 |
msgid "The password you entered is incorrect."
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#:
|
4712 |
msgid "Invalid email."
|
4713 |
msgstr ""
|
4714 |
|
4715 |
-
#:
|
4716 |
msgid "Invalid username or email."
|
4717 |
msgstr ""
|
4718 |
|
4719 |
-
#:
|
4720 |
msgid "Invalid username."
|
4721 |
msgstr ""
|
4722 |
|
4723 |
-
#:
|
4724 |
msgid "Password Lost and Found."
|
4725 |
msgstr ""
|
4726 |
|
4727 |
-
#:
|
4728 |
-
msgid "Lost your password"
|
4729 |
msgstr ""
|
4730 |
|
4731 |
-
#:
|
4732 |
msgid "Both fields are empty."
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#:
|
4736 |
msgid "Username or Email"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#:
|
4740 |
msgid "Lost your password?"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#:
|
4744 |
msgid "Log out of this account"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#:
|
4748 |
msgid "Log out"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#:
|
4752 |
msgid "You are currently logged in as %1$s. %2$s"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#:
|
4756 |
msgid "You are currently logged in as %s. "
|
4757 |
msgstr ""
|
4758 |
|
4759 |
-
#:
|
4760 |
msgid "Log out »"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#:
|
4764 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#:
|
4768 |
msgid "Reset Password"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#:
|
4772 |
msgid "Please enter your email address."
|
4773 |
msgstr ""
|
4774 |
|
4775 |
-
#:
|
4776 |
msgid "Please enter your username or email address."
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#:
|
4780 |
msgid "Username or E-mail"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#:
|
4784 |
msgid "You will receive a link to create a new password via email."
|
4785 |
msgstr ""
|
4786 |
|
4787 |
-
#:
|
4788 |
msgid "Get New Password"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
-
#:
|
4792 |
-
msgid "
|
4793 |
msgstr ""
|
4794 |
|
4795 |
-
#:
|
4796 |
-
msgid "
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#:
|
4800 |
-
msgid "
|
4801 |
msgstr ""
|
4802 |
|
4803 |
-
#:
|
4804 |
-
msgid "
|
4805 |
msgstr ""
|
4806 |
|
4807 |
-
#:
|
4808 |
-
msgid "
|
4809 |
msgstr ""
|
4810 |
|
4811 |
-
#:
|
4812 |
-
msgid "
|
4813 |
msgstr ""
|
4814 |
|
4815 |
-
#:
|
4816 |
-
msgid "
|
4817 |
msgstr ""
|
4818 |
|
4819 |
-
#:
|
4820 |
-
msgid "
|
4821 |
msgstr ""
|
4822 |
|
4823 |
-
#:
|
|
|
|
|
|
|
|
|
4824 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
-
#:
|
4828 |
-
msgid "The
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#:
|
4832 |
-
msgid "
|
4833 |
msgstr ""
|
4834 |
|
4835 |
-
#:
|
4836 |
-
msgid "
|
4837 |
msgstr ""
|
4838 |
|
4839 |
-
#:
|
4840 |
-
msgid "
|
4841 |
msgstr ""
|
4842 |
|
4843 |
-
#:
|
4844 |
-
msgid "
|
4845 |
msgstr ""
|
4846 |
|
4847 |
-
#:
|
4848 |
-
msgid "
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#:
|
4852 |
-
msgid "The
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#:
|
4856 |
msgid "ERROR:"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#:
|
4860 |
msgid "Invalid key!"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#:
|
4864 |
msgid "Invalid activation key!"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
-
#:
|
4868 |
msgid "This username is now active!"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#:
|
4872 |
msgid "Could not create user!"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
-
#:
|
4876 |
msgid "This username is already activated!"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
-
#:
|
4880 |
msgid "Your email was successfully confirmed."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#:
|
4884 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#:
|
4888 |
msgid "There was an error while trying to activate the user."
|
4889 |
msgstr ""
|
4890 |
|
4891 |
-
#:
|
4892 |
msgid "Modules"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
-
#:
|
4896 |
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
4897 |
msgstr ""
|
4898 |
|
4899 |
-
#:
|
4900 |
msgid "Name/Description"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
-
#:
|
4904 |
msgid "Status"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
-
#:
|
4908 |
msgid "Active"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
-
#:
|
4912 |
msgid "Inactive"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
-
#:
|
4916 |
-
msgid "$validation_message"
|
4917 |
-
msgstr ""
|
4918 |
-
|
4919 |
-
#: includes/fields/send-credentials-text.php:12
|
4920 |
-
msgid "$text"
|
4921 |
-
msgstr ""
|
4922 |
-
|
4923 |
-
#: includes/fields/unique-display-name.php:19
|
4924 |
msgid "This display name is already in use. Please choose another one."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#: includes/shortcodes/resend-activation.php:5
|
4928 |
msgid "Resend activation email"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: includes/views/view-admin.php:14
|
4932 |
msgid "Allow users with the 'delete_users' capability to view the Admin Approval list"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#: includes/views/view-admin.php:23
|
4936 |
msgid "By checking this option, you will allow users that have the 'delete_users' capability to access and use the Admin Approval list."
|
4937 |
msgstr ""
|
4938 |
|
4939 |
-
#: includes/views/view-admin.php:30
|
4940 |
msgid "Allow users with the 'delete_users' capability to view the list of Unconfirmed Emails"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: includes/views/view-admin.php:39
|
4944 |
msgid "By checking this option, you will allow users that have the 'delete_users' capability to see the list of Unconfirmed Email Addresses."
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#: includes/views/view-fields.php:14
|
4948 |
msgid "Automatically generate password for users"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: includes/views/view-fields.php:23
|
4952 |
msgid "By checking this option, the password will be automatically generated and emailed to the user."
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#: includes/views/view-fields.php:30
|
4956 |
msgid "Modify 'Send Credentials' checkbox"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: includes/views/view-fields.php:34
|
4960 |
msgid "Hidden and checked"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: includes/views/view-fields.php:39
|
4964 |
msgid "Field text:"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: includes/views/view-fields.php:49
|
4968 |
msgid "By default, the user needs to choose if he wants to receive a registration email."
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#: includes/views/view-fields.php:52
|
4972 |
msgid "By checking the <strong>Hidden and checked</strong> option, the field won't be shown and the message will always be sent to the user."
|
4973 |
msgstr ""
|
4974 |
|
4975 |
-
#: includes/views/view-fields.php:55
|
4976 |
msgid "If you choose to show the field, you can modify the default text by entering something in the field from above."
|
4977 |
msgstr ""
|
4978 |
|
4979 |
-
#: includes/views/view-fields.php:62
|
4980 |
msgid "Redirect users to a page if they have empty required fields"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#: includes/views/view-fields.php:71
|
4984 |
msgid "Redirect Page:"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
-
#: includes/views/view-fields.php:91
|
4988 |
msgid "By activating this option, logged in users which have empty required fields on their profile will be redirected to the page you added above."
|
4989 |
msgstr ""
|
4990 |
|
4991 |
-
#: includes/views/view-fields.php:94
|
4992 |
msgid "For example, you can redirect these users to the Edit Profile form so they can add the missing info."
|
4993 |
msgstr ""
|
4994 |
|
4995 |
-
#: includes/views/view-fields.php:101
|
4996 |
msgid "Ban certain words from being used in fields"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#: includes/views/view-fields.php:108, includes/views/view-forms.php:21
|
5000 |
msgid "On"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#: includes/views/view-fields.php:116
|
5004 |
msgid "Affected fields:"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#: includes/views/view-fields.php:140
|
5008 |
msgid "Banned words:"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: includes/views/view-fields.php:159, includes/views/view-forms.php:66
|
5012 |
msgid "Error message:"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: includes/views/view-fields.php:170
|
5016 |
msgid "Allows you to define some words which users cannot use in their Username, First Name or Last Name when registering."
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#: includes/views/view-fields.php:177
|
5020 |
msgid "Unique 'Display Name' for users"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: includes/views/view-fields.php:186
|
5024 |
msgid "By checking this option, users will not be able to choose a <strong>Display Name</strong> that is already used by another account."
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: includes/views/view-fields.php:193
|
5028 |
msgid "Always capitalize 'First Name' and 'Last Name' default fields"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#: includes/views/view-fields.php:202
|
5032 |
msgid "If you have these fields in your forms, they will be always saved with the first letter as uppercase."
|
5033 |
msgstr ""
|
5034 |
|
5035 |
-
#: includes/views/view-fields.php:205
|
5036 |
msgid "eg.: <strong>John Doe</strong> instead of <strong>john doe</strong>"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: includes/views/view-fields.php:213
|
5040 |
msgid "Datepicker starts on Monday"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: includes/views/view-fields.php:222
|
5044 |
msgid "Will make all Datepickers use Monday as the first day of the week."
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#: includes/views/view-fields.php:236
|
5048 |
msgid "Hide Repeater Fields from the back-end profile page"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: includes/views/view-fields.php:245
|
5052 |
msgid "Repeater Fields from Profile Builder do not work on the back-end user profile page, they are just displayed. If you want to remove them completely, you can use this option."
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: includes/views/view-fields.php:248
|
5056 |
msgid "You will still be able to use them from a front-end edit profile form."
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: includes/views/view-fields.php:257
|
5060 |
msgid "Update database entries when changing meta key"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: includes/views/view-fields.php:266
|
5064 |
msgid "If you activate this option, when changing the meta key of a field, existing entries from the database will be updated as well."
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: includes/views/view-forms.php:14
|
5068 |
msgid "Allow or deny email domains from registering"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: includes/views/view-forms.php:29
|
5072 |
msgid "Type:"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: includes/views/view-forms.php:34
|
5076 |
msgid "Allow"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: includes/views/view-forms.php:40
|
5080 |
msgid "Deny"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: includes/views/view-forms.php:47
|
5084 |
msgid "Restricted domains:"
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: includes/views/view-forms.php:77
|
5088 |
msgid "This option lets you allow registrations only from certain domains or deny registrations from certain domains."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: includes/views/view-forms.php:80
|
5092 |
msgid "You should add only the domain in the list from above. eg.: gmail.com"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: includes/views/view-forms.php:92
|
5096 |
msgid "Forms that should bypass Email Confirmation"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: includes/views/view-forms.php:119
|
5100 |
msgid "Users registering through any of the selected forms will not need to confirm their email address."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: includes/views/view-forms.php:128
|
5104 |
msgid "Disable Email Confirmation for Social Connect registrations"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: includes/views/view-forms.php:137
|
5108 |
msgid "If checked, will allow users that register through the Social Connect add-on to bypass the Email Confirmation feature."
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: includes/views/view-forms.php:145
|
5112 |
msgid "Remember me checked by default"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
-
#: includes/views/view-forms.php:154
|
5116 |
msgid "Check the 'Remember Me' checkbox on Login forms, by default."
|
5117 |
msgstr ""
|
5118 |
|
5119 |
-
#: includes/views/view-forms.php:160
|
5120 |
msgid "Remove validation from back-end profile page"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
-
#: includes/views/view-forms.php:169
|
5124 |
msgid "When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#: includes/views/view-forms.php:180
|
5128 |
msgid "Always show edit other users dropdown"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
-
#: includes/views/view-forms.php:189
|
5132 |
msgid "For perfomance reasons, we disable the select if you have more than 5000 users on your website. This option lets you enable it again."
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: includes/views/view-forms.php:197
|
5136 |
msgid "Consider 'Anyone can Register' WordPress option"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: includes/views/view-forms.php:207
|
5140 |
msgid "setting"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#: includes/views/view-forms.php:209
|
5144 |
msgid "By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it."
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#: includes/views/view-forms.php:217
|
5148 |
msgid "Modify default Redirect Delay timer"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#: includes/views/view-forms.php:224
|
5152 |
msgid "This allows you to change the amount of seconds it takes for the <strong>'After Registration'</strong> redirect to happen."
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: includes/views/view-forms.php:227
|
5156 |
msgid "The default is 3 seconds. Leave empty if you do not want to change it."
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#: includes/views/view-forms.php:235
|
5160 |
msgid "Save Admin Approval status in usermeta"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
-
#: includes/views/view-forms.php:244
|
5164 |
msgid "By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user."
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: includes/views/view-forms.php:247
|
5168 |
msgid "If you check this option, the status will also be saved in the '*_usermeta' table under the <strong>wppb_approval_status</strong> meta name."
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: includes/views/view-forms.php:256
|
5172 |
msgid "Redirect '/author' page if user is not approved"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: includes/views/view-forms.php:265
|
5176 |
msgid "By default, users placed in Admin Approval will not be able to login, but the Author pages will be accessible."
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: includes/views/view-forms.php:268
|
5180 |
msgid "Using this option you can redirect these pages, sending users who try to access them to your home page."
|
5181 |
msgstr ""
|
5182 |
|
5183 |
-
#: includes/views/view-forms.php:276
|
5184 |
msgid "Save 'Last Login' date in usermeta"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
-
#: includes/views/view-forms.php:285
|
5188 |
msgid "By checking this option, each time a user logins, the date and time will be saved in the database."
|
5189 |
msgstr ""
|
5190 |
|
5191 |
-
#: includes/views/view-forms.php:288
|
5192 |
msgid "The meta name for the field will be <strong>last_login_date</strong>."
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#: includes/views/view-forms.php:291, includes/views/view-forms.php:313
|
5196 |
msgid "You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms."
|
5197 |
msgstr ""
|
5198 |
|
5199 |
-
#: includes/views/view-forms.php:298
|
5200 |
msgid "Save 'Last Profile Update' date in usermeta"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#: includes/views/view-forms.php:307
|
5204 |
msgid "By checking this option, each time a modifies his profile the date and time will be saved in the database."
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: includes/views/view-forms.php:310
|
5208 |
msgid "The meta name for the field will be <strong>last_profile_update_date</strong>."
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#: includes/views/view-shortcodes.php:12
|
5212 |
msgid "Enable Compare shortcode"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: includes/views/view-shortcodes.php:21
|
5216 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/compare-shortcode/\">this url</a>."
|
5217 |
msgstr ""
|
5218 |
|
5219 |
-
#: includes/views/view-shortcodes.php:28
|
5220 |
msgid "Enable Usermeta shortcode"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: includes/views/view-shortcodes.php:37
|
5224 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/display-user-meta/\">this url</a>."
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#: includes/views/view-shortcodes.php:44
|
5228 |
msgid "Enable Resend Activation Email shortcode"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: includes/views/view-shortcodes.php:53
|
5232 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/resend-confirmation-email/\">this url</a>."
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: includes/views/view-shortcodes.php:60
|
5236 |
msgid "Enable Format Date shortcode"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: includes/views/view-shortcodes.php:69
|
5240 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/format-date-shortcode/\">this url</a>."
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: includes/views/view-userlisting.php:12
|
5244 |
msgid "Change placeholder text for Search box"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: includes/views/view-userlisting.php:19
|
5248 |
msgid "This refers to the placeholder text from the <strong>{{{extra_search_all_fields}}}</strong> tag."
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: includes/views/view-userlisting.php:22
|
5252 |
msgid "Default text is <strong>Search Users by All Fields</strong>, use this option to change it to something else. Leave empty if you do not want to change it."
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: includes/views/view-userlisting.php:29
|
5256 |
msgid "Modify base URL for Single Userlisting"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: includes/views/view-userlisting.php:37
|
5260 |
msgid "By default Single Userlisting URLs contain the word <strong>user</strong>. eg.: "
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: includes/views/view-userlisting.php:42
|
5264 |
msgid "Using this option, you can change the word <strong>user</strong> to something else. Leave empty if you do not want to change it."
|
5265 |
msgstr ""
|
5266 |
|
5267 |
-
#: includes/views/view-userlisting.php:49
|
5268 |
msgid "Make the Single Userlisting URLs work with user nicename"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: includes/views/view-userlisting.php:59
|
5272 |
msgid "By default Single Userlisting URLs are generated using the users ID. eg.: "
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: includes/views/view-userlisting.php:64
|
5276 |
msgid "With this option activated, the URLs will be generated using the users <strong>nicename</strong>."
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: includes/views/view-userlisting.php:71
|
5280 |
msgid "Remove repetition counts from Faceted Menus"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: includes/views/view-userlisting.php:80
|
5284 |
msgid "The number of users that share a particular value is shown for the Select and Checkbox facet types."
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: includes/views/view-userlisting.php:83
|
5288 |
msgid "If you enable this option they will be hidden."
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#:
|
5292 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
5293 |
msgstr ""
|
5294 |
|
5295 |
-
#:
|
5296 |
msgid "Admin Approval"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#:
|
5300 |
msgid "Do you want to"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#:
|
5304 |
msgid "Your session has expired! Please refresh the page and try again."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#:
|
5308 |
msgid "User successfully approved!"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#:
|
5312 |
msgid "User successfully unapproved!"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#:
|
5316 |
msgid "User successfully deleted!"
|
5317 |
msgstr ""
|
5318 |
|
5319 |
-
#:
|
5320 |
msgid "You either don't have permission for that action or there was an error!"
|
5321 |
msgstr ""
|
5322 |
|
5323 |
-
#:
|
5324 |
msgid "Users successfully approved!"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
-
#:
|
5328 |
msgid "Users successfully unapproved!"
|
5329 |
msgstr ""
|
5330 |
|
5331 |
-
#:
|
5332 |
msgid "Users successfully deleted!"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
#:
|
5336 |
msgid "Your account on %1$s has been approved!"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
-
#:
|
5340 |
msgid "approved"
|
5341 |
msgstr ""
|
5342 |
|
5343 |
-
#:
|
5344 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#:
|
5348 |
msgid "Your account on %1$s has been unapproved!"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#:
|
5352 |
msgid "unapproved"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
-
#:
|
5356 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#:
|
5360 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#:
|
5364 |
msgid "Your account has been successfully created!"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#:
|
5368 |
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#:
|
5372 |
msgid "delete this user?"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#:
|
5376 |
msgid "unapprove this user?"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#:
|
5380 |
msgid "Unapprove"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
-
#:
|
5384 |
msgid "approve this user?"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#:
|
5388 |
msgid "Approve"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
-
#:
|
5392 |
msgid "Firstname"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
-
#:
|
5396 |
msgid "Lastname"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#:
|
5400 |
msgid "Role"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#:
|
5404 |
msgid "Registered"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#:
|
5408 |
msgid "User-status"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#:
|
5412 |
msgid "Do you want to bulk approve the selected users?"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#:
|
5416 |
msgid "Do you want to bulk unapprove the selected users?"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
-
#:
|
5420 |
msgid "Do you want to bulk delete the selected users?"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
-
#:
|
5424 |
msgid "Sorry, but you don't have permission to do that!"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#:
|
5428 |
msgid "Approved"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
-
#:
|
5432 |
msgid "Unapproved"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
-
#:
|
5436 |
msgid "All Users"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#:
|
5440 |
msgid "Conditional Logic"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#:
|
5444 |
msgid "Conditional Rules"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
-
#:
|
5448 |
msgid "This field has conditional logic enabled."
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#:
|
5452 |
msgid "Profile Builder Content Restriction"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#:
|
5456 |
msgid "Restrict to logged in users"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#:
|
5460 |
msgid "Allow only logged in users to see this content."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#:
|
5464 |
msgid "Restrict by User Roles"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#:
|
5468 |
msgid "Allow users which have the specified role to see this content."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#:
|
5472 |
msgid "Restriction Messages"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#:
|
5476 |
msgid "Enable Restriction Messages"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
#:
|
5480 |
msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#:
|
5484 |
msgid "Enable Custom Messages"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#:
|
5488 |
msgid "Add a custom message or template."
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#:
|
5492 |
msgid "Content type"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#:
|
5496 |
msgid "Text"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#:
|
5500 |
msgid "Template"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#:
|
5504 |
msgid "Select Template"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#:
|
5508 |
msgid "You must be logged in to view this content."
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#:
|
5512 |
msgid "This content is restricted for your user role."
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#:
|
5516 |
msgid "Display Options"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#:
|
5520 |
msgid "Message"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#:
|
5524 |
msgid "Redirect"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#:
|
5528 |
msgid "Type of Restriction"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#:
|
5532 |
msgid "Settings Default"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#:
|
5536 |
msgid "Display For"
|
5537 |
msgstr ""
|
5538 |
|
5539 |
-
#:
|
5540 |
msgid "Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role."
|
5541 |
msgstr ""
|
5542 |
|
5543 |
-
#:
|
5544 |
msgid "Checking any user role will show this %s only to users that have one of those user roles assigned."
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#:
|
5548 |
msgid "Restriction Redirect URL"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#:
|
5552 |
msgid "Enable Custom Redirect URL"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#:
|
5556 |
msgid "Check if you wish to add a custom redirect URL for this %s."
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#:
|
5560 |
msgid "Custom Redirect URL"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#:
|
5564 |
msgid "Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly."
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#:
|
5568 |
msgid "Check if you wish to add custom messages for this %s."
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#:
|
5572 |
msgid "Messages for logged-out users"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#:
|
5576 |
msgid "Messages for logged-in users"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#:
|
5580 |
msgid "Content Restriction Settings"
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#:
|
5584 |
msgid "Enable Content Restriction"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#:
|
5588 |
msgid "Activate Content Restriction"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
-
#:
|
5592 |
msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
|
5593 |
msgstr ""
|
5594 |
|
5595 |
-
#:
|
5596 |
msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#:
|
5600 |
msgid "Redirect URL"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#:
|
5604 |
msgid "Message for logged-out users"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#:
|
5608 |
msgid "Message for logged-in users"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#:
|
5612 |
msgid "Restricted Posts Preview"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#:
|
5616 |
msgid "Show the first %s words of the post's content"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
-
#:
|
5620 |
msgid "Show the content before the \"more\" tag"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#:
|
5624 |
msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#:
|
5628 |
msgid "User Meta"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#:
|
5632 |
msgid "show"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
-
#:
|
5636 |
msgid "delete this user from the _signups table?"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#:
|
5640 |
msgid "confirm this email yourself?"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#:
|
5644 |
msgid "Confirm Email"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#:
|
5648 |
msgid "resend the activation link?"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#:
|
5652 |
msgid "Resend Activation Email"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#:
|
5656 |
msgid "%s couldn't be deleted"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#:
|
5660 |
msgid "All users have been successfully deleted"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#:
|
5664 |
msgid "The selected users have been activated"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
-
#:
|
5668 |
msgid "The selected users have had their activation emails resent"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#:
|
5672 |
msgid "Users with Unconfirmed Email Address"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#:
|
5676 |
msgid "There was an error performing that action!"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
-
#:
|
5680 |
msgid "The selected user couldn't be deleted"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#:
|
5684 |
msgid "Email notification resent to user"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#:
|
5688 |
msgid "[%1$s] Activate %2$s"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#:
|
5692 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#:
|
5696 |
msgid "That username is already activated!"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#:
|
5700 |
msgid "There was an error while trying to activate the user"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#:
|
5704 |
msgid "A new subscriber has (been) registered!"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
-
#:
|
5708 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
#:
|
5712 |
msgid "[%1$s] Your new account information"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#:
|
5716 |
msgid "Your selected password at signup"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
-
#:
|
5720 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#:
|
5724 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#:
|
5728 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#:
|
5732 |
msgid "This login widget lets you add a login form in the sidebar."
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#:
|
5736 |
msgid "Profile Builder Login Widget"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#:
|
5740 |
msgid "Title:"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#:
|
5744 |
msgid "After login redirect URL (optional):"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#:
|
5748 |
msgid "Register page URL (optional):"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#:
|
5752 |
msgid "Password Recovery page URL (optional):"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#:
|
5756 |
msgid "Capability"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#:
|
5760 |
msgid "You can't delete this capability from your role."
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#:
|
5764 |
msgid "Add New Role"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#:
|
5768 |
msgid "Edit Role"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#:
|
5772 |
msgid "New Role"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#:
|
5776 |
msgid "View Role"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#:
|
5780 |
msgid "Search the Roles Editor"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#:
|
5784 |
msgid "No roles found"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#:
|
5788 |
msgid "No roles found in trash"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#:
|
5792 |
msgid "Role updated."
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#:
|
5796 |
msgid "Custom field updated."
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#:
|
5800 |
msgid "Custom field deleted."
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#:
|
5804 |
msgid "Role created."
|
5805 |
msgstr ""
|
5806 |
|
5807 |
-
#:
|
5808 |
msgid "Role saved."
|
5809 |
msgstr ""
|
5810 |
|
5811 |
-
#:
|
5812 |
msgid "Role submitted."
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#:
|
5816 |
msgid "Role scheduled for: <strong>%1$s</strong>"
|
5817 |
msgstr ""
|
5818 |
|
5819 |
-
#:
|
5820 |
msgid "Role draft updated."
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#:
|
5824 |
msgid "Role Name"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#:
|
5828 |
msgid "Role Slug"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
-
#:
|
5832 |
msgid "Capabilities"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#:
|
5836 |
msgid "Users"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#:
|
5840 |
msgid "Clone"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#:
|
5844 |
msgid "You can't delete your role."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#:
|
5848 |
msgid "Change Default"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#:
|
5852 |
msgid "You can't delete the default role. Change it first."
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#:
|
5856 |
msgid "Edit User Roles"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#:
|
5860 |
msgid "The usernames cannot be changed."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#:
|
5864 |
msgid "After Login"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#:
|
5868 |
msgid "After Logout"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#:
|
5872 |
msgid "After Registration"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#:
|
5876 |
msgid "After Edit Profile"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#:
|
5880 |
msgid "After Successful Email Confirmation"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#:
|
5884 |
msgid "After Successful Password Reset"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#:
|
5888 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#:
|
5892 |
msgid "User ID"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#:
|
5896 |
msgid "User ID or Username"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#:
|
5900 |
msgid "User ID / Username"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#:
|
5904 |
msgid "Please select and enter the ID or username of your user."
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#:
|
5908 |
msgid "Redirect Type"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#:
|
5912 |
msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#:
|
5916 |
msgid "Individual User Redirects"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#:
|
5920 |
msgid "User Role"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#:
|
5924 |
msgid "Select a user role."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#:
|
5928 |
msgid "User Role based Redirects"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#:
|
5932 |
msgid "Global Redirects"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
-
#:
|
5936 |
msgid "Login ( wp-login.php )"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#:
|
5940 |
msgid "Register ( wp-login.php?action=register )"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#:
|
5944 |
msgid "Lost Password ( wp-login.php?action=lostpassword )"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#:
|
5948 |
msgid "Author Archive ( http://sitename.com/author/admin )"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#:
|
5952 |
msgid "Redirect Default WordPress Forms and Pages"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#:
|
5956 |
msgid "How does this work?"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#:
|
5960 |
msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#:
|
5964 |
msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#:
|
5968 |
msgid "<pre>Redirect</pre><pre>URL</pre>"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#:
|
5972 |
msgid "These redirects happen after a successful action, like registration or after a successful login."
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#:
|
5976 |
msgid "Which redirect happens depends on the following priority:"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#:
|
5980 |
msgid "Multiple Registration and Edit Profile form settings Redirects"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#:
|
5984 |
msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#:
|
5988 |
msgid "Redirect Default WordPress forms and pages"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
-
#:
|
5992 |
msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
|
5993 |
msgstr ""
|
5994 |
|
5995 |
-
#:
|
5996 |
msgid "Available tags for dynamic URLs"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
-
#:
|
6000 |
msgid "You use the following tags in your URLs to redirect users to various pages."
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#:
|
6004 |
msgid "generates a url of the current website homepage."
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#:
|
6008 |
msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#:
|
6012 |
msgid "the ID of the user"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#:
|
6016 |
msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#:
|
6020 |
msgid "the URL of the previously visited page"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#:
|
6024 |
msgid "You can't add duplicate redirects!"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#:
|
6028 |
msgid "Admin Email Customizer"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
-
#:
|
6032 |
msgid "Admin Email Customizer Settings"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
-
#:
|
6036 |
msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#:
|
6040 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#:
|
6044 |
msgid "From (name)"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#:
|
6048 |
msgid "From (reply-to email)"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#:
|
6052 |
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#:
|
6056 |
msgid "Common Settings"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#:
|
6060 |
msgid ""
|
6061 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
6062 |
"<p>Username:{{username}}</p>\n"
|
@@ -6064,19 +6055,19 @@ msgid ""
|
|
6064 |
""
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#:
|
6068 |
msgid "Email Subject"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#:
|
6072 |
msgid "Enable email"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
-
#:
|
6076 |
msgid "Default Registration & Registration with Email Confirmation"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#:
|
6080 |
msgid ""
|
6081 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
6082 |
"<p>Username:{{username}}</p>\n"
|
@@ -6085,109 +6076,109 @@ msgid ""
|
|
6085 |
"so please remember that you need to approve this user before he/she can log in!</p>"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
-
#:
|
6089 |
msgid "Registration with Admin Approval"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
-
#:
|
6093 |
msgid ""
|
6094 |
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
6095 |
"<p>His/her new password is: {{password}}</p>\n"
|
6096 |
""
|
6097 |
msgstr ""
|
6098 |
|
6099 |
-
#:
|
6100 |
msgid "Admin Notification for User Password Reset"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#:
|
6104 |
msgid "Available Tags"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
-
#:
|
6108 |
msgid "User Fields Tags"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
-
#:
|
6112 |
msgid "Site Url"
|
6113 |
msgstr ""
|
6114 |
|
6115 |
-
#:
|
6116 |
msgid "Site Name"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
-
#:
|
6120 |
msgid "User Id"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
-
#:
|
6124 |
msgid "User Role Label"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
-
#:
|
6128 |
msgid "Reply To"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#:
|
6132 |
msgid "Blog URL"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
-
#:
|
6136 |
msgid "Activation Key"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
-
#:
|
6140 |
msgid "Activation Url"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
-
#:
|
6144 |
msgid "Activation Link"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#:
|
6148 |
msgid "Reset Key"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
-
#:
|
6152 |
msgid "Reset Url"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
-
#:
|
6156 |
msgid "Reset Link"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
-
#:
|
6160 |
msgid "Approve User Url"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
-
#:
|
6164 |
msgid "Approve User Link"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
-
#:
|
6168 |
msgid "The users selected password at signup"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#:
|
6172 |
msgid "User Email Customizer"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#:
|
6176 |
msgid "User Email Customizer Settings"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
-
#:
|
6180 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
6181 |
msgstr ""
|
6182 |
|
6183 |
-
#:
|
6184 |
msgid ""
|
6185 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6186 |
-
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
6187 |
""
|
6188 |
msgstr ""
|
6189 |
|
6190 |
-
#:
|
6191 |
msgid ""
|
6192 |
"<p>To activate your user, please click the following link:<br/>\n"
|
6193 |
"{{{activation_link}}}</p>\n"
|
@@ -6195,57 +6186,57 @@ msgid ""
|
|
6195 |
""
|
6196 |
msgstr ""
|
6197 |
|
6198 |
-
#:
|
6199 |
msgid "[{{site_name}}] Activate {{username}}"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
-
#:
|
6203 |
msgid "Registration with Email Confirmation"
|
6204 |
msgstr ""
|
6205 |
|
6206 |
-
#:
|
6207 |
msgid ""
|
6208 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6209 |
-
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
6210 |
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
6211 |
""
|
6212 |
msgstr ""
|
6213 |
|
6214 |
-
#:
|
6215 |
msgid "A new account has been created for you on {{site_name}}"
|
6216 |
msgstr ""
|
6217 |
|
6218 |
-
#:
|
6219 |
msgid ""
|
6220 |
"<h3>Good News!</h3>\n"
|
6221 |
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
6222 |
""
|
6223 |
msgstr ""
|
6224 |
|
6225 |
-
#:
|
6226 |
msgid "Your account on {{site_name}} has been approved!"
|
6227 |
msgstr ""
|
6228 |
|
6229 |
-
#:
|
6230 |
msgid "User Approval Notification"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
-
#:
|
6234 |
msgid ""
|
6235 |
"<h3>Hello,</h3>\n"
|
6236 |
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
6237 |
""
|
6238 |
msgstr ""
|
6239 |
|
6240 |
-
#:
|
6241 |
msgid "Your account on {{site_name}} has been unapproved!"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
-
#:
|
6245 |
msgid "Unapproved User Notification"
|
6246 |
msgstr ""
|
6247 |
|
6248 |
-
#:
|
6249 |
msgid ""
|
6250 |
"<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
|
6251 |
"Username: {{username}}</p>\n"
|
@@ -6255,29 +6246,29 @@ msgid ""
|
|
6255 |
""
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#:
|
6259 |
msgid "[{{site_name}}] Password Reset"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#:
|
6263 |
msgid "Password Reset Email"
|
6264 |
msgstr ""
|
6265 |
|
6266 |
-
#:
|
6267 |
msgid ""
|
6268 |
"<p>You have successfully reset your password.</p>\n"
|
6269 |
""
|
6270 |
msgstr ""
|
6271 |
|
6272 |
-
#:
|
6273 |
msgid "[{{site_name}}] Password Reset Successfully"
|
6274 |
msgstr ""
|
6275 |
|
6276 |
-
#:
|
6277 |
msgid "Password Reset Success Email"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
-
#:
|
6281 |
msgid ""
|
6282 |
"<h3>Hi {{username}},</h3>\n"
|
6283 |
"<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
|
@@ -6288,595 +6279,595 @@ msgid ""
|
|
6288 |
"<a href=\"{{site_url}}\">{{site_url}}</a></p>"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#:
|
6292 |
msgid "[{{site_name}}] Notice of Email Change"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#:
|
6296 |
msgid "Changed Email Address Notification"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#:
|
6300 |
msgid "Edit-profile Form"
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#:
|
6304 |
msgid "Add New"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#:
|
6308 |
msgid "Add new Edit-profile Form"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
-
#:
|
6312 |
msgid "Edit the Edit-profile Forms"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
-
#:
|
6316 |
msgid "New Edit-profile Form"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#:
|
6320 |
msgid "Edit-profile Forms"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#:
|
6324 |
msgid "View the Edit-profile Form"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#:
|
6328 |
msgid "Search the Edit-profile Forms"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
-
#:
|
6332 |
msgid "No Edit-profile Form found"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
-
#:
|
6336 |
msgid "No Edit-profile Forms found in trash"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#:
|
6340 |
msgid "Shortcode"
|
6341 |
msgstr ""
|
6342 |
|
6343 |
-
#:
|
6344 |
msgid "(no title)"
|
6345 |
msgstr ""
|
6346 |
|
6347 |
-
#:
|
6348 |
msgid "The shortcode will be available after you publish this form."
|
6349 |
msgstr ""
|
6350 |
|
6351 |
-
#:
|
6352 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6353 |
msgstr ""
|
6354 |
|
6355 |
-
#:
|
6356 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6357 |
msgstr ""
|
6358 |
|
6359 |
-
#:
|
6360 |
msgid "Form Shortcode"
|
6361 |
msgstr ""
|
6362 |
|
6363 |
-
#:
|
6364 |
msgid "Whether to redirect the user to a specific page or not"
|
6365 |
msgstr ""
|
6366 |
|
6367 |
-
#:
|
6368 |
msgid "Display Messages"
|
6369 |
msgstr ""
|
6370 |
|
6371 |
-
#:
|
6372 |
msgid "Allowed time to display any success messages (in seconds)"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
-
#:
|
6376 |
msgid "URL"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
-
#:
|
6380 |
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
-
#:
|
6384 |
msgid "After Profile Update..."
|
6385 |
msgstr ""
|
6386 |
|
6387 |
-
#:
|
6388 |
msgid "Add New Field to the List"
|
6389 |
msgstr ""
|
6390 |
|
6391 |
-
#:
|
6392 |
msgid "Choose one of the supported fields you manage <a href=\"%s\">here</a>"
|
6393 |
msgstr ""
|
6394 |
|
6395 |
-
#:
|
6396 |
msgid "This form is empty."
|
6397 |
msgstr ""
|
6398 |
|
6399 |
-
#:
|
6400 |
msgid "You need to specify the title of the form before creating it"
|
6401 |
msgstr ""
|
6402 |
|
6403 |
-
#:
|
6404 |
msgid "<pre>Title (Type)</pre>"
|
6405 |
msgstr ""
|
6406 |
|
6407 |
-
#:
|
6408 |
msgid "Delete all items"
|
6409 |
msgstr ""
|
6410 |
|
6411 |
-
#:
|
6412 |
msgid "Add new Registration Form"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
-
#:
|
6416 |
msgid "Edit the Registration Forms"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
-
#:
|
6420 |
msgid "New Registration Form"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
-
#:
|
6424 |
msgid "Registration Forms"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
-
#:
|
6428 |
msgid "View the Registration Form"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
-
#:
|
6432 |
msgid "Search the Registration Forms"
|
6433 |
msgstr ""
|
6434 |
|
6435 |
-
#:
|
6436 |
msgid "No Registration Form found"
|
6437 |
msgstr ""
|
6438 |
|
6439 |
-
#:
|
6440 |
msgid "No Registration Forms found in trash"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
-
#:
|
6444 |
msgid "Default Role"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
-
#:
|
6448 |
msgid "Set Role"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
-
#:
|
6452 |
msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
|
6453 |
msgstr ""
|
6454 |
|
6455 |
-
#:
|
6456 |
msgid "Automatically Log In"
|
6457 |
msgstr ""
|
6458 |
|
6459 |
-
#:
|
6460 |
msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
-
#:
|
6464 |
msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
-
#:
|
6468 |
msgid "After Registration..."
|
6469 |
msgstr ""
|
6470 |
|
6471 |
-
#:
|
6472 |
msgid "Are you sure you want to delete this?"
|
6473 |
msgstr ""
|
6474 |
|
6475 |
-
#:
|
6476 |
msgid "Please wait while the pins are loading..."
|
6477 |
msgstr ""
|
6478 |
|
6479 |
-
#:
|
6480 |
msgid "The API Key was not provided."
|
6481 |
msgstr ""
|
6482 |
|
6483 |
-
#:
|
6484 |
msgid "Add new User Listing"
|
6485 |
msgstr ""
|
6486 |
|
6487 |
-
#:
|
6488 |
msgid "Edit the User Listing"
|
6489 |
msgstr ""
|
6490 |
|
6491 |
-
#:
|
6492 |
msgid "New User Listing"
|
6493 |
msgstr ""
|
6494 |
|
6495 |
-
#:
|
6496 |
msgid "View the User Listing"
|
6497 |
msgstr ""
|
6498 |
|
6499 |
-
#:
|
6500 |
msgid "Search the User Listing"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#:
|
6504 |
msgid "No User Listing found"
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#:
|
6508 |
msgid "No User Listing found in trash"
|
6509 |
msgstr ""
|
6510 |
|
6511 |
-
#:
|
6512 |
msgid "Display name as"
|
6513 |
msgstr ""
|
6514 |
|
6515 |
-
#:
|
6516 |
msgid "Registration Date"
|
6517 |
msgstr ""
|
6518 |
|
6519 |
-
#:
|
6520 |
msgid "Number of Posts"
|
6521 |
msgstr ""
|
6522 |
|
6523 |
-
#:
|
6524 |
msgid "More Info"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
-
#:
|
6528 |
msgid "More Info Url"
|
6529 |
msgstr ""
|
6530 |
|
6531 |
-
#:
|
6532 |
msgid "Avatar or Gravatar"
|
6533 |
msgstr ""
|
6534 |
|
6535 |
-
#:
|
6536 |
msgid "User Nicename"
|
6537 |
msgstr ""
|
6538 |
|
6539 |
-
#:
|
6540 |
msgid "Sort Tags"
|
6541 |
msgstr ""
|
6542 |
|
6543 |
-
#:
|
6544 |
msgid "Extra Functions"
|
6545 |
msgstr ""
|
6546 |
|
6547 |
-
#:
|
6548 |
msgid "Pagination"
|
6549 |
msgstr ""
|
6550 |
|
6551 |
-
#:
|
6552 |
msgid "Search all Fields"
|
6553 |
msgstr ""
|
6554 |
|
6555 |
-
#:
|
6556 |
msgid "Faceted Menus"
|
6557 |
msgstr ""
|
6558 |
|
6559 |
-
#:
|
6560 |
msgid "User Count"
|
6561 |
msgstr ""
|
6562 |
|
6563 |
-
#:
|
6564 |
msgid "Map of listed users"
|
6565 |
msgstr ""
|
6566 |
|
6567 |
-
#:
|
6568 |
msgid "Go Back Link"
|
6569 |
msgstr ""
|
6570 |
|
6571 |
-
#:
|
6572 |
msgid "All-userlisting Template"
|
6573 |
msgstr ""
|
6574 |
|
6575 |
-
#:
|
6576 |
msgid "Single-userlisting Template"
|
6577 |
msgstr ""
|
6578 |
|
6579 |
-
#:
|
6580 |
msgid "Avatar"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#:
|
6584 |
msgid "Posts"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
-
#:
|
6588 |
msgid "Sign-up Date"
|
6589 |
msgstr ""
|
6590 |
|
6591 |
-
#:
|
6592 |
msgid "More"
|
6593 |
msgstr ""
|
6594 |
|
6595 |
-
#:
|
6596 |
msgid "You do not have permission to view this user list."
|
6597 |
msgstr ""
|
6598 |
|
6599 |
-
#:
|
6600 |
msgid "You do not have the required user role to view this user list."
|
6601 |
msgstr ""
|
6602 |
|
6603 |
-
#:
|
6604 |
msgid "User not found"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
-
#:
|
6608 |
msgid "First/Lastname"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#:
|
6612 |
msgid "Display Name"
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#:
|
6616 |
msgid "Aim"
|
6617 |
msgstr ""
|
6618 |
|
6619 |
-
#:
|
6620 |
msgid "Yim"
|
6621 |
msgstr ""
|
6622 |
|
6623 |
-
#:
|
6624 |
msgid "Jabber"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
-
#:
|
6628 |
msgid "Search Users by All Fields"
|
6629 |
msgstr ""
|
6630 |
|
6631 |
-
#:
|
6632 |
msgid "Click here to see more information about this user"
|
6633 |
msgstr ""
|
6634 |
|
6635 |
-
#:
|
6636 |
msgid "More..."
|
6637 |
msgstr ""
|
6638 |
|
6639 |
-
#:
|
6640 |
msgid "Click here to see more information about this user."
|
6641 |
msgstr ""
|
6642 |
|
6643 |
-
#:
|
6644 |
msgid "View Map"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
-
#:
|
6648 |
msgid "Click here to go back"
|
6649 |
msgstr ""
|
6650 |
|
6651 |
-
#:
|
6652 |
msgid "Back"
|
6653 |
msgstr ""
|
6654 |
|
6655 |
-
#:
|
6656 |
msgid "«« First"
|
6657 |
msgstr ""
|
6658 |
|
6659 |
-
#:
|
6660 |
msgid "« Prev"
|
6661 |
msgstr ""
|
6662 |
|
6663 |
-
#:
|
6664 |
msgid "Next » "
|
6665 |
msgstr ""
|
6666 |
|
6667 |
-
#:
|
6668 |
msgid "Last »»"
|
6669 |
msgstr ""
|
6670 |
|
6671 |
-
#:
|
6672 |
msgid "You don't have any pagination settings on this userlisting!"
|
6673 |
msgstr ""
|
6674 |
|
6675 |
-
#:
|
6676 |
msgid "Show All"
|
6677 |
msgstr ""
|
6678 |
|
6679 |
-
#:
|
6680 |
msgid "Choose..."
|
6681 |
msgstr ""
|
6682 |
|
6683 |
-
#:
|
6684 |
msgid "No options available"
|
6685 |
msgstr ""
|
6686 |
|
6687 |
-
#:
|
6688 |
msgid "Remove All Filters"
|
6689 |
msgstr ""
|
6690 |
|
6691 |
-
#:
|
6692 |
msgid "Search"
|
6693 |
msgstr ""
|
6694 |
|
6695 |
-
#:
|
6696 |
msgid "Clear Results"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
-
#:
|
6700 |
msgid "Extra shortcode parameters"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
-
#:
|
6704 |
msgid "View all extra shortcode parameters"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#:
|
6708 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6709 |
msgstr ""
|
6710 |
|
6711 |
-
#:
|
6712 |
msgid "Example:"
|
6713 |
msgstr ""
|
6714 |
|
6715 |
-
#:
|
6716 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6717 |
msgstr ""
|
6718 |
|
6719 |
-
#:
|
6720 |
msgid "displays only the users that you specified the user_id for"
|
6721 |
msgstr ""
|
6722 |
|
6723 |
-
#:
|
6724 |
msgid "displays all users except the ones you specified the user_id for"
|
6725 |
msgstr ""
|
6726 |
|
6727 |
-
#:
|
6728 |
msgid "Random (very slow on large databases > 10K user)"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
-
#:
|
6732 |
msgid "Ascending"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
-
#:
|
6736 |
msgid "Descending"
|
6737 |
msgstr ""
|
6738 |
|
6739 |
-
#:
|
6740 |
msgid "Roles to Display"
|
6741 |
msgstr ""
|
6742 |
|
6743 |
-
#:
|
6744 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6745 |
msgstr ""
|
6746 |
|
6747 |
-
#:
|
6748 |
msgid "Number of Users/Page"
|
6749 |
msgstr ""
|
6750 |
|
6751 |
-
#:
|
6752 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6753 |
msgstr ""
|
6754 |
|
6755 |
-
#:
|
6756 |
msgid "Default Sorting Criteria"
|
6757 |
msgstr ""
|
6758 |
|
6759 |
-
#:
|
6760 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6761 |
msgstr ""
|
6762 |
|
6763 |
-
#:
|
6764 |
msgid "Default Sorting Order"
|
6765 |
msgstr ""
|
6766 |
|
6767 |
-
#:
|
6768 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6769 |
msgstr ""
|
6770 |
|
6771 |
-
#:
|
6772 |
msgid "Avatar Size (All-userlisting)"
|
6773 |
msgstr ""
|
6774 |
|
6775 |
-
#:
|
6776 |
msgid "Set the avatar size on the all-userlisting only"
|
6777 |
msgstr ""
|
6778 |
|
6779 |
-
#:
|
6780 |
msgid "Avatar Size (Single-userlisting)"
|
6781 |
msgstr ""
|
6782 |
|
6783 |
-
#:
|
6784 |
msgid "Set the avatar size on the single-userlisting only"
|
6785 |
msgstr ""
|
6786 |
|
6787 |
-
#:
|
6788 |
msgid "Visible only to logged in users?"
|
6789 |
msgstr ""
|
6790 |
|
6791 |
-
#:
|
6792 |
msgid "The userlisting will only be visible only to the logged in users"
|
6793 |
msgstr ""
|
6794 |
|
6795 |
-
#:
|
6796 |
msgid "Visible to following Roles"
|
6797 |
msgstr ""
|
6798 |
|
6799 |
-
#:
|
6800 |
msgid "The userlisting will only be visible to the following roles"
|
6801 |
msgstr ""
|
6802 |
|
6803 |
-
#:
|
6804 |
msgid "Userlisting Settings"
|
6805 |
msgstr ""
|
6806 |
|
6807 |
-
#:
|
6808 |
msgid "Label"
|
6809 |
msgstr ""
|
6810 |
|
6811 |
-
#:
|
6812 |
msgid "Choose the facet name that appears on the frontend"
|
6813 |
msgstr ""
|
6814 |
|
6815 |
-
#:
|
6816 |
msgid "Facet Type"
|
6817 |
msgstr ""
|
6818 |
|
6819 |
-
#:
|
6820 |
msgid "Choose the facet menu type"
|
6821 |
msgstr ""
|
6822 |
|
6823 |
-
#:
|
6824 |
msgid "Facet Meta"
|
6825 |
msgstr ""
|
6826 |
|
6827 |
-
#:
|
6828 |
msgid "Choose the meta field for the facet menu"
|
6829 |
msgstr ""
|
6830 |
|
6831 |
-
#:
|
6832 |
msgid "Behaviour"
|
6833 |
msgstr ""
|
6834 |
|
6835 |
-
#:
|
6836 |
msgid "Narrow the results"
|
6837 |
msgstr ""
|
6838 |
|
6839 |
-
#:
|
6840 |
msgid "Expand the results"
|
6841 |
msgstr ""
|
6842 |
|
6843 |
-
#:
|
6844 |
msgid "Choose how multiple selections affect the results"
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#:
|
6848 |
msgid "Visible choices"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
#:
|
6852 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#:
|
6856 |
msgid "Search Fields"
|
6857 |
msgstr ""
|
6858 |
|
6859 |
-
#:
|
6860 |
msgid "Choose the fields in which the Search Field will look in"
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
#:
|
6864 |
msgid "Search Settings"
|
6865 |
msgstr ""
|
6866 |
|
6867 |
-
#:
|
6868 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6869 |
msgstr ""
|
6870 |
|
6871 |
-
#:
|
6872 |
msgid "You can find it in the Profile Builder menu."
|
6873 |
msgstr ""
|
6874 |
|
6875 |
-
#:
|
6876 |
msgid "No results found!"
|
6877 |
msgstr ""
|
6878 |
|
6879 |
-
#: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:541,
|
6880 |
msgid "Delete this item"
|
6881 |
msgstr ""
|
6882 |
|
@@ -6888,211 +6879,215 @@ msgstr ""
|
|
6888 |
msgid "Syncronize WCK Translation"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
-
#:
|
6892 |
msgid "Yes, I'd like to create a new site"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
-
#:
|
6896 |
msgid "Your site url will look like this:<br>"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
-
#:
|
6900 |
msgid "Site URL slug"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
-
#:
|
6904 |
msgid "Site Title"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
-
#:
|
6908 |
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
6909 |
msgstr ""
|
6910 |
|
6911 |
-
#:
|
6912 |
msgid "You must enter a valid email address."
|
6913 |
msgstr ""
|
6914 |
|
6915 |
-
#:
|
6916 |
msgid "This email is already reserved to be used soon."
|
6917 |
msgstr ""
|
6918 |
|
6919 |
-
#:
|
6920 |
msgid "Please try a different one!"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#:
|
6924 |
msgid "This email is already in use."
|
6925 |
msgstr ""
|
6926 |
|
6927 |
-
#:
|
6928 |
msgid "Type %s to confirm deleting your account and all data associated with it:"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
-
#:
|
6932 |
msgid "You did not type %s. Try again!"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
-
#:
|
6936 |
msgid "The passwords do not match"
|
6937 |
msgstr ""
|
6938 |
|
6939 |
-
#:
|
6940 |
msgid "To use reCAPTCHA you must get an API key from"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#:
|
6944 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#:
|
6948 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
-
#:
|
6952 |
msgid "Click the BACK button on your browser, and try again."
|
6953 |
msgstr ""
|
6954 |
|
6955 |
-
#:
|
6956 |
msgid "Only administrators can see this field on edit profile forms."
|
6957 |
msgstr ""
|
6958 |
|
6959 |
-
#:
|
6960 |
msgid "As an administrator you cannot change your role."
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#:
|
6964 |
msgid "You cannot register this user role"
|
6965 |
msgstr ""
|
6966 |
|
6967 |
-
#:
|
6968 |
msgid "This username already exists."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
-
#:
|
6972 |
msgid "This username is invalid because it uses illegal characters."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
-
#:
|
6976 |
msgid "Please enter a valid username."
|
6977 |
msgstr ""
|
6978 |
|
6979 |
-
#:
|
6980 |
msgid "This username is already reserved to be used soon."
|
6981 |
msgstr ""
|
6982 |
|
6983 |
-
#:
|
6984 |
msgid "You must enter a valid URL."
|
6985 |
msgstr ""
|
6986 |
|
6987 |
-
#:
|
6988 |
msgid "Please add the Google Maps API key for this field."
|
6989 |
msgstr ""
|
6990 |
|
6991 |
-
#:
|
6992 |
msgid "Something went wrong. Please try again."
|
6993 |
msgstr ""
|
6994 |
|
6995 |
-
#:
|
6996 |
msgid "Please enter numbers only"
|
6997 |
msgstr ""
|
6998 |
|
6999 |
-
#:
|
7000 |
msgid "Value must be a multiplier of %1$s"
|
7001 |
msgstr ""
|
7002 |
|
7003 |
-
#:
|
7004 |
msgid "Value must be greater than or equal to %1$s"
|
7005 |
msgstr ""
|
7006 |
|
7007 |
-
#:
|
7008 |
msgid "Value must be less than or equal to %1$s"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#:
|
7012 |
msgid "Required phone number format: "
|
7013 |
msgstr ""
|
7014 |
|
7015 |
-
#:
|
7016 |
msgid "...Choose"
|
7017 |
msgstr ""
|
7018 |
|
7019 |
-
#:
|
7020 |
msgid "Remove"
|
7021 |
msgstr ""
|
7022 |
|
7023 |
-
#:
|
7024 |
msgid "Select File"
|
7025 |
msgstr ""
|
7026 |
|
7027 |
-
#:
|
7028 |
msgid "Upload "
|
7029 |
msgstr ""
|
7030 |
|
7031 |
-
#:
|
|
|
|
|
|
|
|
|
7032 |
msgid "Sorry, you cannot upload this file type for this field."
|
7033 |
msgstr ""
|
7034 |
|
7035 |
-
#:
|
7036 |
msgid "An error occurred, please try again later."
|
7037 |
msgstr ""
|
7038 |
|
7039 |
-
#:
|
7040 |
msgid "Limit"
|
7041 |
msgstr ""
|
7042 |
|
7043 |
-
#:
|
7044 |
msgid "Enable limit to the number of fields to be generated by users in front end forms "
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#:
|
7048 |
msgid "General Limit"
|
7049 |
msgstr ""
|
7050 |
|
7051 |
-
#:
|
7052 |
msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
|
7053 |
msgstr ""
|
7054 |
|
7055 |
-
#:
|
7056 |
msgid "Limit reached message"
|
7057 |
msgstr ""
|
7058 |
|
7059 |
-
#:
|
7060 |
msgid "The maximum number of fields has been reached."
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#:
|
7064 |
msgid "The popup message to display when the limit of repeater groups is reached."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#:
|
7068 |
msgid "Limit per Role"
|
7069 |
msgstr ""
|
7070 |
|
7071 |
-
#:
|
7072 |
msgid "Leave 0 for unlimited."
|
7073 |
msgstr ""
|
7074 |
|
7075 |
-
#:
|
7076 |
msgid "Repeated field group"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#:
|
7080 |
msgid "Manage field or group of fields that will be repeatable."
|
7081 |
msgstr ""
|
7082 |
|
7083 |
-
#:
|
7084 |
msgid "Edit field group"
|
7085 |
msgstr ""
|
7086 |
|
7087 |
-
#:
|
7088 |
msgid "Repeatable fields saved!"
|
7089 |
msgstr ""
|
7090 |
|
7091 |
-
#:
|
7092 |
msgid "Please enter a unique field title."
|
7093 |
msgstr ""
|
7094 |
|
7095 |
-
#:
|
7096 |
msgid ""
|
7097 |
"Please enter a unique field title.\n"
|
7098 |
""
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, features/content-restriction/content-restriction.php:135
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
85 |
msgid "Registration form:"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:65, modules/email-customizer/user-email-customizer.php:104
|
89 |
msgid "Default Registration"
|
90 |
msgstr ""
|
91 |
|
209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../pb-add-on-buddypress/index.php:508, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, admin/manage-fields.php:316
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../pb-add-on-buddypress/index.php:531, admin/manage-fields.php:322
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../pb-add-on-buddypress/index.php:538, admin/manage-fields.php:333
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
313 |
msgid "Login Label"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../pb-add-on-custom-profile-menus/index.php:180, ../pb-add-on-custom-profile-menus/index.php:302, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:13, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:60, features/login-widget/login-widget.php:59
|
317 |
msgid "Login"
|
318 |
msgstr ""
|
319 |
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../pb-add-on-custom-profile-menus/index.php:188, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, front-end/class-formbuilder.php:171
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
349 |
msgid "Display Mode"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../pb-add-on-custom-profile-menus/index.php:252, features/content-restriction/content-restriction-meta-box.php:67
|
353 |
msgid "Logged In Users"
|
354 |
msgstr ""
|
355 |
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:424, front-end/login.php:421
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
389 |
msgid "Width (px)"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../pb-add-on-customization-toolbox/index.php:40
|
393 |
msgid "Forms"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../pb-add-on-customization-toolbox/index.php:41
|
397 |
msgid "Fields"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../pb-add-on-customization-toolbox/index.php:42
|
401 |
msgid "Userlisting"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../pb-add-on-customization-toolbox/index.php:43
|
405 |
msgid "Shortcodes"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../pb-add-on-customization-toolbox/index.php:44
|
409 |
msgid "Admin"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../pb-add-on-customization-toolbox/index.php:62, ../pb-add-on-customization-toolbox/index.php:72
|
413 |
msgid "Customization Toolbox"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../pb-add-on-customization-toolbox/index.php:62
|
417 |
msgid "Toolbox"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../pb-add-on-customization-toolbox/index.php:147, ../pb-add-on-social-connect/index.php:237, admin/admin-functions.php:226, admin/general-settings.php:76, admin/general-settings.php:76
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:208, admin/admin-bar.php:63
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:228, ../pb-add-on-labels-edit/pble.php:354, admin/manage-fields.php:1313, features/functions.php:788, features/functions.php:795, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:228, admin/manage-fields.php:1313, features/functions.php:781, features/functions.php:795, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:179, features/roles-editor/roles-editor.php:884, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:904, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
550 |
msgstr ""
|
551 |
|
552 |
#: ../pb-add-on-labels-edit/pble.php:308
|
553 |
+
msgid "This will overwrite all your old edited labels!\nAre you sure you want to continue?"
|
|
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
#: ../pb-add-on-labels-edit/pble.php:313
|
565 |
msgid "You must select a label to edit!"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../pb-add-on-labels-edit/pble.php:354, admin/manage-fields.php:189
|
569 |
msgid "Labels"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../pb-add-on-labels-edit/pble.php:354, ../pb-add-on-labels-edit/pble.php:354, modules/multiple-forms/multiple-forms.php:406
|
573 |
msgid "Delete all"
|
574 |
msgstr ""
|
575 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/private-website.php:60, admin/private-website.php:117, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2365
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:127, admin/general-settings.php:176, admin/general-settings.php:221, admin/private-website.php:59, admin/private-website.php:116, features/content-restriction/content-restriction.php:87, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
875 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: ../pb-add-on-social-connect/index.php:390, features/admin-approval/admin-approval.php:180
|
879 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
880 |
msgstr ""
|
881 |
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:1060
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
919 |
msgid "Profile Builder not active!"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../pb-add-on-social-connect/index.php:834, admin/admin-functions.php:37, admin/general-settings.php:8
|
923 |
msgid "General Settings"
|
924 |
msgstr ""
|
925 |
|
943 |
msgid "Country"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:318, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:127
|
947 |
msgid "First Name"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:319, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:133
|
951 |
msgid "Last Name"
|
952 |
msgstr ""
|
953 |
|
1055 |
msgid "Field Name"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:240
|
1059 |
msgid "Required"
|
1060 |
msgstr ""
|
1061 |
|
1063 |
msgid "Click to edit "
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: ../pb-add-on-woocommerce/index.php:391, front-end/default-fields/email/email.php:47
|
1067 |
msgid "The email you entered is not a valid email address."
|
1068 |
msgstr ""
|
1069 |
|
1083 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:82
|
1087 |
msgid "Display on WooCommerce Checkout"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:82
|
1091 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1092 |
msgstr ""
|
1093 |
|
1115 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: index.php:36
|
1119 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1120 |
msgstr ""
|
1121 |
|
1127 |
msgid "Campaign Monitor Integration"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, assets/lib/wck-api/wordpress-creation-kit.php:343
|
1131 |
msgid "Save"
|
1132 |
msgstr ""
|
1133 |
|
1195 |
msgid "Click to edit"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:774, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1199 |
msgid "Cancel"
|
1200 |
msgstr ""
|
1201 |
|
1329 |
msgid "Communication Preferences"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/manage-fields.php:323, front-end/recover.php:116, ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:9, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, modules/user-listing/userlisting.php:117
|
1333 |
msgid "E-mail"
|
1334 |
msgstr ""
|
1335 |
|
1357 |
msgid "Save the communication preferences order"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:44, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:87, front-end/extra-fields/avatar/avatar.php:78, front-end/extra-fields/checkbox/checkbox.php:46, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/map/map.php:51, front-end/extra-fields/number/number.php:30, front-end/extra-fields/phone/phone.php:39, front-end/extra-fields/radio/radio.php:44, front-end/extra-fields/select/select.php:51, front-end/extra-fields/select-cpt/select-cpt.php:58, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:74, front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
1361 |
msgid "required"
|
1362 |
msgstr ""
|
1363 |
|
1417 |
msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:540, assets/lib/wck-api/wordpress-creation-kit.php:544
|
1421 |
msgid "Edit this item"
|
1422 |
msgstr ""
|
1423 |
|
1503 |
msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
|
1504 |
msgstr ""
|
1505 |
|
|
|
|
|
|
|
1506 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:201
|
1507 |
msgid "Select..."
|
1508 |
msgstr ""
|
1597 |
msgid "Sign in with Twitter"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: admin/add-ons.php:10, admin/add-ons.php:10, admin/add-ons.php:193
|
1601 |
msgid "Add-Ons"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: admin/add-ons.php:41
|
1605 |
msgid "Recommended Plugins"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: admin/add-ons.php:72, admin/add-ons.php:143, admin/pms-cross-promotion.php:102
|
1609 |
msgid "Free"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: admin/add-ons.php:74
|
1613 |
msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: admin/add-ons.php:84, admin/add-ons.php:155, admin/add-ons.php:195, admin/add-ons.php:287, admin/pms-cross-promotion.php:78, admin/pms-cross-promotion.php:114, admin/pms-cross-promotion.php:193
|
1617 |
msgid "Activate"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: admin/add-ons.php:88, admin/add-ons.php:159, admin/add-ons.php:207, admin/add-ons.php:291, admin/pms-cross-promotion.php:90, admin/pms-cross-promotion.php:118, admin/pms-cross-promotion.php:197
|
1621 |
msgid "Deactivate"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: admin/add-ons.php:93, admin/add-ons.php:164, admin/pms-cross-promotion.php:88, admin/pms-cross-promotion.php:123, admin/pms-cross-promotion.php:202
|
1625 |
msgid "Plugin is <strong>inactive</strong>"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: admin/add-ons.php:95, admin/add-ons.php:166, admin/pms-cross-promotion.php:87, admin/pms-cross-promotion.php:125, admin/pms-cross-promotion.php:204
|
1629 |
msgid "Plugin is <strong>active</strong>"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: admin/add-ons.php:101, admin/add-ons.php:172, admin/pms-cross-promotion.php:137, admin/pms-cross-promotion.php:216
|
1633 |
msgid "Install Now"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: admin/add-ons.php:104, admin/add-ons.php:175, admin/add-ons.php:311, admin/pms-cross-promotion.php:141, admin/pms-cross-promotion.php:220
|
1637 |
msgid "Compatible with your version of Profile Builder."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: admin/add-ons.php:109, admin/add-ons.php:180, admin/pms-cross-promotion.php:146
|
1641 |
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: admin/add-ons.php:145
|
1645 |
msgid "Accept user payments, create subscription plans and restrict content on your membership site."
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: admin/add-ons.php:197, admin/pms-cross-promotion.php:80
|
1649 |
msgid "Downloading and installing..."
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: admin/add-ons.php:198, admin/pms-cross-promotion.php:81
|
1653 |
msgid "Installation complete"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: admin/add-ons.php:200
|
1657 |
msgid "Add-On is Active"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: admin/add-ons.php:201
|
1661 |
msgid "Add-On has been activated"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: admin/add-ons.php:202, admin/pms-cross-promotion.php:85
|
1665 |
msgid "Retry Install"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: admin/add-ons.php:204, admin/add-ons.php:298
|
1669 |
msgid "Add-On is <strong>active</strong>"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: admin/add-ons.php:205, admin/add-ons.php:296
|
1673 |
msgid "Add-On is <strong>inactive</strong>"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: admin/add-ons.php:208
|
1677 |
msgid "Add-On has been deactivated."
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: admin/add-ons.php:216
|
1681 |
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: admin/add-ons.php:263
|
1685 |
msgid "Available in Hobbyist and Pro Versions"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: admin/add-ons.php:265
|
1689 |
msgid "Available in All Versions"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: admin/add-ons.php:306
|
1693 |
msgid "Learn More"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: admin/add-ons.php:306, admin/pms-cross-promotion.php:134, admin/pms-cross-promotion.php:213
|
1697 |
msgid "Download Now"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: admin/add-ons.php:320
|
1701 |
msgid "Upgrade Profile Builder"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: admin/add-ons.php:321
|
1705 |
msgid "Not compatible with Profile Builder"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: admin/add-ons.php:328, front-end/class-formbuilder.php:427
|
1709 |
msgid "Update"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: admin/add-ons.php:329
|
1713 |
msgid "Not compatible with your version of Profile Builder."
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: admin/add-ons.php:330
|
1717 |
msgid "Minimum required Profile Builder version:"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: admin/add-ons.php:335
|
1721 |
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: admin/admin-bar.php:10
|
1725 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: admin/admin-bar.php:10, admin/admin-bar.php:47
|
1729 |
msgid "Admin Bar Settings"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: admin/admin-bar.php:53
|
1733 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: admin/admin-bar.php:62
|
1737 |
msgid "User-Role"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: admin/admin-bar.php:78, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230
|
1741 |
msgid "Default"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: admin/admin-bar.php:79
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1644
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: admin/admin-functions.php:37
|
1753 |
msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: admin/admin-functions.php:41
|
1757 |
msgid "Display name publicly as - only appears on the Edit Profile page!"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: admin/admin-functions.php:44
|
1761 |
msgid "Blog Details - only appears on the Registration page!"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: admin/admin-functions.php:132
|
1765 |
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:281
|
1769 |
msgid "Very weak"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:608, features/functions.php:632
|
1773 |
msgid "Weak"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:608, features/functions.php:632
|
1777 |
msgid "Medium"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:608, features/functions.php:632
|
1781 |
msgid "Strong"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: admin/admin-functions.php:148
|
1785 |
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: admin/admin-functions.php:187
|
1789 |
msgid "Add Field"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: admin/admin-functions.php:189
|
1793 |
msgid "Save Settings"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: admin/admin-functions.php:200
|
1797 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: admin/admin-functions.php:240
|
1801 |
msgid "View Profile Builder documentation"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: admin/admin-functions.php:240
|
1805 |
msgid "Docs"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: admin/admin-functions.php:260
|
1809 |
msgid "Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: admin/admin-functions.php:262
|
1813 |
msgid "See details"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: admin/admin-functions.php:263
|
1817 |
msgid "Dismiss this notice."
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: admin/basic-info.php:10, admin/basic-info.php:10
|
1821 |
msgid "Basic Information"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: admin/basic-info.php:30
|
1825 |
msgid "<strong>Profile Builder </strong> %s"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: admin/basic-info.php:31
|
1829 |
msgid "The best way to add front-end registration, edit profile and login forms."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: admin/basic-info.php:39
|
1833 |
msgid "Speed up the setup process by automatically creating the form pages:"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: admin/basic-info.php:40
|
1837 |
msgid "Create Form Pages"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: admin/basic-info.php:44
|
1841 |
msgid "You can see all the pages with Profile Builder form shortcodes here:"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: admin/basic-info.php:45
|
1845 |
msgid "View Form Pages"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: admin/basic-info.php:51
|
1849 |
msgid "Login Form"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: admin/basic-info.php:52
|
1853 |
msgid "Friction-less login using %s shortcode or a widget."
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: admin/basic-info.php:55, modules/multiple-forms/register-forms.php:11, modules/multiple-forms/register-forms.php:12
|
1857 |
msgid "Registration Form"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: admin/basic-info.php:56
|
1861 |
msgid "Beautiful registration forms fully customizable using the %s shortcode."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: admin/basic-info.php:59
|
1865 |
msgid "Edit Profile Form"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: admin/basic-info.php:60
|
1869 |
msgid "Straight forward edit profile forms using %s shortcode."
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: admin/basic-info.php:66
|
1873 |
msgid "Extra Features"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: admin/basic-info.php:67
|
1877 |
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: admin/basic-info.php:68
|
1881 |
msgid "Enable extra features"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: admin/basic-info.php:72
|
1885 |
msgid "Recover Password"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: admin/basic-info.php:73
|
1889 |
msgid "Allow users to recover their password in the front-end using the %s."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: admin/basic-info.php:76
|
1893 |
msgid "Admin Approval (*)"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: admin/basic-info.php:77
|
1897 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: admin/basic-info.php:80
|
1901 |
msgid "Email Confirmation"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: admin/basic-info.php:81
|
1905 |
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: admin/basic-info.php:84, admin/general-settings.php:10, features/content-restriction/content-restriction.php:26, features/content-restriction/content-restriction.php:26
|
1909 |
msgid "Content Restriction"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: admin/basic-info.php:85
|
1913 |
msgid "Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status."
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: admin/basic-info.php:88
|
1917 |
msgid "Minimum Password Length and Strength Meter"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: admin/basic-info.php:89
|
1921 |
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: admin/basic-info.php:92
|
1925 |
msgid "Login with Email or Username"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: admin/basic-info.php:93
|
1929 |
msgid "Allow users to log in with their email or username when accessing your site."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: admin/basic-info.php:96, features/roles-editor/roles-editor.php:244, features/roles-editor/roles-editor.php:245, features/roles-editor/roles-editor.php:250, features/roles-editor/roles-editor.php:257
|
1933 |
msgid "Roles Editor"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: admin/basic-info.php:97
|
1937 |
msgid "Add, remove, clone and edit roles and also capabilities for these roles."
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: admin/basic-info.php:110
|
1941 |
msgid "Customize Your Forms The Way You Want (*)"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: admin/basic-info.php:111
|
1945 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: admin/basic-info.php:113
|
1949 |
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: admin/basic-info.php:115
|
1953 |
msgid "Get started with extra fields"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: admin/basic-info.php:118
|
1957 |
msgid "Avatar Upload"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: admin/basic-info.php:119
|
1961 |
msgid "Generic Uploads"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: admin/basic-info.php:120
|
1965 |
msgid "Agree To Terms Checkbox"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: admin/basic-info.php:121
|
1969 |
msgid "Datepicker"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: admin/basic-info.php:122
|
1973 |
msgid "Timepicker"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: admin/basic-info.php:123
|
1977 |
msgid "Colorpicker"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: admin/basic-info.php:124
|
1981 |
msgid "reCAPTCHA"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: admin/basic-info.php:125
|
1985 |
msgid "Country Select"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: admin/basic-info.php:126
|
1989 |
msgid "Currency Select"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: admin/basic-info.php:127
|
1993 |
msgid "Timezone Select"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: admin/basic-info.php:131
|
1997 |
msgid "Input / Hidden Input"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: admin/basic-info.php:132
|
2001 |
msgid "Number"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: admin/basic-info.php:133
|
2005 |
msgid "Checkbox"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: admin/basic-info.php:134
|
2009 |
msgid "Select"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: admin/basic-info.php:135
|
2013 |
msgid "Radio Buttons"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: admin/basic-info.php:136
|
2017 |
msgid "Textarea"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: admin/basic-info.php:137
|
2021 |
msgid "Validation"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: admin/basic-info.php:138
|
2025 |
msgid "Map"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: admin/basic-info.php:139
|
2029 |
msgid "HTML"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: admin/basic-info.php:148
|
2033 |
msgid "Powerful Modules (**)"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: admin/basic-info.php:149
|
2037 |
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: admin/basic-info.php:151
|
2041 |
msgid "Enable your modules"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: admin/basic-info.php:154
|
2045 |
msgid "Find out more about PRO Modules"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: admin/basic-info.php:159, modules/modules.php:87, modules/user-listing/userlisting.php:11, modules/user-listing/userlisting.php:12, modules/user-listing/userlisting.php:17, modules/user-listing/userlisting.php:23
|
2049 |
msgid "User Listing"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: admin/basic-info.php:161
|
2053 |
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: admin/basic-info.php:163
|
2057 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: admin/basic-info.php:167, admin/general-settings.php:17, modules/modules.php:94
|
2061 |
msgid "Email Customizer"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: admin/basic-info.php:168
|
2065 |
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: admin/basic-info.php:171, modules/modules.php:106, modules/custom-redirects/custom_redirects_admin.php:33, modules/custom-redirects/custom_redirects_admin.php:34
|
2069 |
msgid "Custom Redirects"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: admin/basic-info.php:172
|
2073 |
msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: admin/basic-info.php:177, modules/modules.php:73
|
2077 |
msgid "Multiple Registration Forms"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: admin/basic-info.php:178
|
2081 |
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: admin/basic-info.php:181, modules/modules.php:80
|
2085 |
msgid "Multiple Edit-profile Forms"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: admin/basic-info.php:182
|
2089 |
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: admin/basic-info.php:185, modules/modules.php:113
|
2093 |
msgid "Repeater Fields"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: admin/basic-info.php:186
|
2097 |
msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: admin/basic-info.php:222
|
2101 |
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: admin/basic-info.php:223
|
2105 |
msgid "** only available in the %1$sPro version%2$s."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: admin/feedback.php:23
|
2109 |
msgid "Quick Feedback"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: admin/feedback.php:24
|
2113 |
msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin."
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: admin/feedback.php:30
|
2117 |
msgid "Lacking certain features"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: admin/feedback.php:31
|
2121 |
msgid "What feature would you like to see?"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: admin/feedback.php:35
|
2125 |
msgid "Hard to use"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: admin/feedback.php:36
|
2129 |
msgid "How can we improve our user experience ?"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: admin/feedback.php:40
|
2133 |
msgid "Unsatisfactory support"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: admin/feedback.php:45
|
2137 |
msgid "Other"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: admin/feedback.php:46
|
2141 |
msgid "Please tell us more"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: admin/feedback.php:50
|
2145 |
msgid "Poor Documentation"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: admin/feedback.php:51
|
2149 |
msgid "Tell us what you couldn't find"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: admin/feedback.php:56
|
2153 |
msgid "Submit & Deactivate"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: admin/feedback.php:59
|
2157 |
msgid "Skip and Deactivate"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: admin/feedback.php:163
|
2161 |
msgid "Submit and Deactivate"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: admin/general-settings.php:9
|
2165 |
msgid "Admin Bar"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: admin/general-settings.php:11, admin/private-website.php:11, admin/private-website.php:11
|
2169 |
msgid "Private Website"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: admin/general-settings.php:19
|
2173 |
msgid "User Emails"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: admin/general-settings.php:20
|
2177 |
msgid "Administrator Emails"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: admin/general-settings.php:97
|
2181 |
msgid "Profile Builder Settings"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: admin/general-settings.php:110
|
2185 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: admin/general-settings.php:115
|
2189 |
msgid "You can find the default file here: %1$s"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: admin/general-settings.php:122
|
2193 |
msgid "\"Email Confirmation\" Activated:"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: admin/general-settings.php:130
|
2197 |
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: admin/general-settings.php:132
|
2201 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: admin/general-settings.php:140
|
2205 |
msgid "\"Email Confirmation\" Landing Page:"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: admin/general-settings.php:145
|
2209 |
msgid "Existing Pages"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: admin/general-settings.php:160
|
2213 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: admin/general-settings.php:171
|
2217 |
msgid "\"Admin Approval\" Activated:"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: admin/general-settings.php:179
|
2221 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: admin/general-settings.php:186
|
2225 |
msgid "\"Admin Approval\" on User Role:"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: admin/general-settings.php:205
|
2229 |
msgid "Select on what user roles to activate Admin Approval."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: admin/general-settings.php:217
|
2233 |
msgid "\"Roles Editor\" Activated:"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: admin/general-settings.php:225
|
2237 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: admin/general-settings.php:236
|
2241 |
msgid "\"Admin Approval\" Feature:"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: admin/general-settings.php:239
|
2245 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: admin/general-settings.php:246
|
2249 |
msgid "Allow Users to Log in With:"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: admin/general-settings.php:250
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:317, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:792, modules/user-listing/userlisting.php:2316
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:798, modules/user-listing/userlisting.php:2317
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: admin/general-settings.php:255
|
2265 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: admin/general-settings.php:256
|
2269 |
msgid "\"Username\" - users can Log In only with Username."
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: admin/general-settings.php:257
|
2273 |
msgid "\"Email\" - users can Log In only with Email."
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: admin/general-settings.php:264
|
2277 |
msgid "Minimum Password Length:"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: admin/general-settings.php:269
|
2281 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: admin/general-settings.php:276
|
2285 |
msgid "Minimum Password Strength:"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: admin/general-settings.php:280
|
2289 |
msgid "Disabled"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: admin/manage-fields.php:17
|
2293 |
msgid "Form Fields"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: admin/manage-fields.php:18
|
2297 |
msgid "Manage Form Fields"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: admin/manage-fields.php:125
|
2301 |
msgid "Choose one of the supported field types"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: admin/manage-fields.php:127
|
2305 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: admin/manage-fields.php:160
|
2309 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: admin/manage-fields.php:163
|
2313 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: admin/manage-fields.php:177
|
2317 |
msgid "Field Title"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: admin/manage-fields.php:177
|
2321 |
msgid "Title of the field"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: admin/manage-fields.php:178, modules/multiple-forms/edit-profile-forms.php:245, modules/multiple-forms/register-forms.php:266
|
2325 |
msgid "Field"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: admin/manage-fields.php:179
|
2329 |
msgid "Meta-name"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: admin/manage-fields.php:180, modules/custom-redirects/custom_redirects_admin.php:69, modules/custom-redirects/custom_redirects_admin.php:99, modules/custom-redirects/custom_redirects_admin.php:118, modules/custom-redirects/custom_redirects_admin.php:143, modules/multiple-forms/edit-profile-forms.php:246, modules/multiple-forms/register-forms.php:267
|
2333 |
msgid "ID"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: admin/manage-fields.php:180, modules/multiple-forms/edit-profile-forms.php:246, modules/multiple-forms/register-forms.php:267
|
2337 |
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: admin/manage-fields.php:181
|
2341 |
msgid "Description"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: admin/manage-fields.php:181
|
2345 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: admin/manage-fields.php:182
|
2349 |
msgid "Row Count"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: admin/manage-fields.php:182
|
2353 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: admin/manage-fields.php:183
|
2357 |
msgid "Allowed Image Extensions"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: admin/manage-fields.php:183
|
2361 |
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: admin/manage-fields.php:184
|
2365 |
msgid "Allowed Upload Extensions"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: admin/manage-fields.php:184
|
2369 |
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: admin/manage-fields.php:185
|
2373 |
msgid "Avatar Size"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: admin/manage-fields.php:185
|
2377 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: admin/manage-fields.php:186
|
2381 |
msgid "Date-format"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: admin/manage-fields.php:186
|
2385 |
+
msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: admin/manage-fields.php:187
|
2389 |
msgid "Terms of Agreement"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: admin/manage-fields.php:187
|
2393 |
msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: admin/manage-fields.php:188
|
2397 |
msgid "Options"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: admin/manage-fields.php:188
|
2401 |
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: admin/manage-fields.php:189
|
2405 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: admin/manage-fields.php:190
|
2409 |
msgid "reCAPTCHA Type"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: admin/manage-fields.php:190
|
2413 |
msgid "Choose the <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\">type of reCAPTCHA</a> you wish to add to this site."
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: admin/manage-fields.php:191
|
2417 |
msgid "Site Key"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: admin/manage-fields.php:191
|
2421 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: admin/manage-fields.php:192
|
2425 |
msgid "Secret Key"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: admin/manage-fields.php:192
|
2429 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: admin/manage-fields.php:193
|
2433 |
msgid "Display on PB forms"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: admin/manage-fields.php:193
|
2437 |
msgid "PB Login"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: admin/manage-fields.php:193
|
2441 |
msgid "PB Register"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: admin/manage-fields.php:193
|
2445 |
msgid "PB Recover Password"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: admin/manage-fields.php:193
|
2449 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: admin/manage-fields.php:194
|
2453 |
msgid "Display on default WP forms"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: admin/manage-fields.php:194
|
2457 |
msgid "Default WP Login"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: admin/manage-fields.php:194
|
2461 |
msgid "Default WP Register"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: admin/manage-fields.php:194
|
2465 |
msgid "Default WP Recover Password"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: admin/manage-fields.php:194
|
2469 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: admin/manage-fields.php:195
|
2473 |
msgid "User Roles"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: admin/manage-fields.php:195
|
2477 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: admin/manage-fields.php:196
|
2481 |
msgid "User Roles Order"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: admin/manage-fields.php:196
|
2485 |
msgid "Save the user role order from the user roles checkboxes"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: admin/manage-fields.php:197
|
2489 |
msgid "Default Value"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: admin/manage-fields.php:197
|
2493 |
msgid "Default value of the field"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: admin/manage-fields.php:198, admin/manage-fields.php:200, admin/manage-fields.php:201, admin/manage-fields.php:202
|
2497 |
msgid "Default Option"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: admin/manage-fields.php:198
|
2501 |
msgid "Specify the option which should be selected by default"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: admin/manage-fields.php:199
|
2505 |
msgid "Default Option(s)"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: admin/manage-fields.php:199
|
2509 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: admin/manage-fields.php:200, admin/manage-fields.php:201, admin/manage-fields.php:202
|
2513 |
msgid "Default option of the field"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: admin/manage-fields.php:203
|
2517 |
msgid "Show Currency Symbol"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: admin/manage-fields.php:203
|
2521 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: admin/manage-fields.php:204
|
2525 |
msgid "Show Post Type"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: admin/manage-fields.php:204
|
2529 |
msgid "Posts from what post type will be displayed in the select."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: admin/manage-fields.php:205
|
2533 |
msgid "Allowable Values"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: admin/manage-fields.php:205
|
2537 |
msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: admin/manage-fields.php:206
|
2541 |
msgid "Error Message"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: admin/manage-fields.php:206
|
2545 |
msgid "Set a custom error message that will be displayed to the user."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: admin/manage-fields.php:207
|
2549 |
msgid "Time Format"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: admin/manage-fields.php:207
|
2553 |
msgid "Specify the time format."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: admin/manage-fields.php:208
|
2557 |
msgid "Google Maps API Key"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: admin/manage-fields.php:208
|
2561 |
msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: admin/manage-fields.php:213
|
2565 |
msgid "Default Latitude"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: admin/manage-fields.php:214
|
2569 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: admin/manage-fields.php:220
|
2573 |
msgid "Default Longitude"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: admin/manage-fields.php:221
|
2577 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: admin/manage-fields.php:227
|
2581 |
msgid "Default Zoom Level"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: admin/manage-fields.php:228
|
2585 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: admin/manage-fields.php:232
|
2589 |
msgid "Map Height"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: admin/manage-fields.php:232
|
2593 |
msgid "The height of the map."
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: admin/manage-fields.php:233
|
2597 |
msgid "Default Content"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: admin/manage-fields.php:233
|
2601 |
msgid "Default value of the textarea"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: admin/manage-fields.php:234
|
2605 |
msgid "HTML Content"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: admin/manage-fields.php:234
|
2609 |
msgid "Add your HTML (or text) content"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: admin/manage-fields.php:235
|
2613 |
msgid "Phone Format"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: admin/manage-fields.php:235
|
2617 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: admin/manage-fields.php:235
|
2621 |
msgid "Eg. (###) ###-####"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: admin/manage-fields.php:235
|
2625 |
msgid "Empty field won't check for correct phone number."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: admin/manage-fields.php:236
|
2629 |
msgid "Heading Tag"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: admin/manage-fields.php:236
|
2633 |
msgid "Change heading field size on front-end forms"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: admin/manage-fields.php:237
|
2637 |
msgid "Min Number Value"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: admin/manage-fields.php:237
|
2641 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: admin/manage-fields.php:237
|
2645 |
msgid "Leave it empty for no min value"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: admin/manage-fields.php:238
|
2649 |
msgid "Max Number Value"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: admin/manage-fields.php:238
|
2653 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: admin/manage-fields.php:238
|
2657 |
msgid "Leave it empty for no max value"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: admin/manage-fields.php:239
|
2661 |
msgid "Number Step Value"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: admin/manage-fields.php:239
|
2665 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: admin/manage-fields.php:239
|
2669 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: admin/manage-fields.php:239
|
2673 |
msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: admin/manage-fields.php:239
|
2677 |
msgid "Leave it empty for no restriction"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: admin/manage-fields.php:240
|
2681 |
msgid "Whether the field is required or not"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: admin/manage-fields.php:241
|
2685 |
msgid "Overwrite Existing"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: admin/manage-fields.php:241
|
2689 |
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: admin/manage-fields.php:247
|
2693 |
msgid "POIs Load Type"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: admin/manage-fields.php:249
|
2697 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: admin/manage-fields.php:250
|
2701 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: admin/manage-fields.php:253
|
2705 |
msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: admin/manage-fields.php:260
|
2709 |
msgid "POI Bubble Info"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: admin/manage-fields.php:263
|
2713 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: admin/manage-fields.php:274
|
2717 |
msgid "Number of Users per Map Iteration"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: admin/manage-fields.php:275
|
2721 |
msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: admin/manage-fields.php:283
|
2725 |
msgid "Form Field Properties"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: admin/manage-fields.php:297
|
2729 |
msgid "Registration & Edit Profile Forms"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: admin/manage-fields.php:317
|
2733 |
msgid "Usernames cannot be changed."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: admin/manage-fields.php:320, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2324
|
2737 |
msgid "Nickname"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: admin/manage-fields.php:321
|
2741 |
msgid "Display name publicly as"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: admin/manage-fields.php:324, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2318
|
2745 |
msgid "Website"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: admin/manage-fields.php:328
|
2749 |
msgid "AIM"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: admin/manage-fields.php:329
|
2753 |
msgid "Yahoo IM"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: admin/manage-fields.php:330
|
2757 |
msgid "Jabber / Google Talk"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: admin/manage-fields.php:334, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2319
|
2761 |
msgid "Biographical Info"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: admin/manage-fields.php:334
|
2765 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: admin/manage-fields.php:335, front-end/recover.php:70, modules/email-customizer/email-customizer.php:30
|
2769 |
msgid "Password"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: admin/manage-fields.php:335
|
2773 |
msgid "Type your password."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: admin/manage-fields.php:336, front-end/recover.php:71
|
2777 |
msgid "Repeat Password"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: admin/manage-fields.php:336
|
2781 |
msgid "Type your password again. "
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: admin/manage-fields.php:338
|
2785 |
msgid "Blog Details"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: admin/manage-fields.php:397
|
2789 |
msgid "Select a Country"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: admin/manage-fields.php:398
|
2793 |
msgid "Afghanistan"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: admin/manage-fields.php:399
|
2797 |
msgid "Aland Islands"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: admin/manage-fields.php:400
|
2801 |
msgid "Albania"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: admin/manage-fields.php:401
|
2805 |
msgid "Algeria"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: admin/manage-fields.php:402
|
2809 |
msgid "American Samoa"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: admin/manage-fields.php:403
|
2813 |
msgid "Andorra"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: admin/manage-fields.php:404
|
2817 |
msgid "Angola"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: admin/manage-fields.php:405
|
2821 |
msgid "Anguilla"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: admin/manage-fields.php:406
|
2825 |
msgid "Antarctica"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: admin/manage-fields.php:407
|
2829 |
msgid "Antigua and Barbuda"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: admin/manage-fields.php:408
|
2833 |
msgid "Argentina"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: admin/manage-fields.php:409
|
2837 |
msgid "Armenia"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: admin/manage-fields.php:410
|
2841 |
msgid "Aruba"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: admin/manage-fields.php:411
|
2845 |
msgid "Australia"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: admin/manage-fields.php:412
|
2849 |
msgid "Austria"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: admin/manage-fields.php:413
|
2853 |
msgid "Azerbaijan"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: admin/manage-fields.php:414
|
2857 |
msgid "Bahamas"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: admin/manage-fields.php:415
|
2861 |
msgid "Bahrain"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: admin/manage-fields.php:416
|
2865 |
msgid "Bangladesh"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: admin/manage-fields.php:417
|
2869 |
msgid "Barbados"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: admin/manage-fields.php:418
|
2873 |
msgid "Belarus"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: admin/manage-fields.php:419
|
2877 |
msgid "Belgium"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: admin/manage-fields.php:420
|
2881 |
msgid "Belize"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: admin/manage-fields.php:421
|
2885 |
msgid "Benin"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: admin/manage-fields.php:422
|
2889 |
msgid "Bermuda"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: admin/manage-fields.php:423
|
2893 |
msgid "Bhutan"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: admin/manage-fields.php:424
|
2897 |
msgid "Bolivia"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: admin/manage-fields.php:425
|
2901 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: admin/manage-fields.php:426
|
2905 |
msgid "Bosnia and Herzegovina"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: admin/manage-fields.php:427
|
2909 |
msgid "Botswana"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: admin/manage-fields.php:428
|
2913 |
msgid "Bouvet Island"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: admin/manage-fields.php:429
|
2917 |
msgid "Brazil"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: admin/manage-fields.php:430
|
2921 |
msgid "British Indian Ocean Territory"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: admin/manage-fields.php:431
|
2925 |
msgid "British Virgin Islands"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: admin/manage-fields.php:432
|
2929 |
msgid "Brunei"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: admin/manage-fields.php:433
|
2933 |
msgid "Bulgaria"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: admin/manage-fields.php:434
|
2937 |
msgid "Burkina Faso"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: admin/manage-fields.php:435
|
2941 |
msgid "Burundi"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: admin/manage-fields.php:436
|
2945 |
msgid "Cambodia"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: admin/manage-fields.php:437
|
2949 |
msgid "Cameroon"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: admin/manage-fields.php:438
|
2953 |
msgid "Canada"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: admin/manage-fields.php:439
|
2957 |
msgid "Cape Verde"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: admin/manage-fields.php:440
|
2961 |
msgid "Cayman Islands"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: admin/manage-fields.php:441
|
2965 |
msgid "Central African Republic"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: admin/manage-fields.php:442
|
2969 |
msgid "Chad"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: admin/manage-fields.php:443
|
2973 |
msgid "Chile"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: admin/manage-fields.php:444
|
2977 |
msgid "China"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: admin/manage-fields.php:445
|
2981 |
msgid "Christmas Island"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: admin/manage-fields.php:446
|
2985 |
msgid "Cocos Islands"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: admin/manage-fields.php:447
|
2989 |
msgid "Colombia"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: admin/manage-fields.php:448
|
2993 |
msgid "Comoros"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: admin/manage-fields.php:449
|
2997 |
msgid "Cook Islands"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: admin/manage-fields.php:450
|
3001 |
msgid "Costa Rica"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: admin/manage-fields.php:451
|
3005 |
msgid "Croatia"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: admin/manage-fields.php:452
|
3009 |
msgid "Cuba"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: admin/manage-fields.php:453
|
3013 |
msgid "Curacao"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: admin/manage-fields.php:454
|
3017 |
msgid "Cyprus"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: admin/manage-fields.php:455
|
3021 |
msgid "Czech Republic"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: admin/manage-fields.php:456
|
3025 |
msgid "Democratic Republic of the Congo"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: admin/manage-fields.php:457
|
3029 |
msgid "Denmark"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: admin/manage-fields.php:458
|
3033 |
msgid "Djibouti"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: admin/manage-fields.php:459
|
3037 |
msgid "Dominica"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: admin/manage-fields.php:460
|
3041 |
msgid "Dominican Republic"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: admin/manage-fields.php:461
|
3045 |
msgid "East Timor"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: admin/manage-fields.php:462
|
3049 |
msgid "Ecuador"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: admin/manage-fields.php:463
|
3053 |
msgid "Egypt"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: admin/manage-fields.php:464
|
3057 |
msgid "El Salvador"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: admin/manage-fields.php:465
|
3061 |
msgid "Equatorial Guinea"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: admin/manage-fields.php:466
|
3065 |
msgid "Eritrea"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: admin/manage-fields.php:467
|
3069 |
msgid "Estonia"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: admin/manage-fields.php:468
|
3073 |
msgid "Ethiopia"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: admin/manage-fields.php:469
|
3077 |
msgid "Falkland Islands"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: admin/manage-fields.php:470
|
3081 |
msgid "Faroe Islands"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: admin/manage-fields.php:471
|
3085 |
msgid "Fiji"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: admin/manage-fields.php:472
|
3089 |
msgid "Finland"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: admin/manage-fields.php:473
|
3093 |
msgid "France"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: admin/manage-fields.php:474
|
3097 |
msgid "French Guiana"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: admin/manage-fields.php:475
|
3101 |
msgid "French Polynesia"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: admin/manage-fields.php:476
|
3105 |
msgid "French Southern Territories"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: admin/manage-fields.php:477
|
3109 |
msgid "Gabon"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: admin/manage-fields.php:478
|
3113 |
msgid "Gambia"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: admin/manage-fields.php:479
|
3117 |
msgid "Georgia"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: admin/manage-fields.php:480
|
3121 |
msgid "Germany"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: admin/manage-fields.php:481
|
3125 |
msgid "Ghana"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: admin/manage-fields.php:482
|
3129 |
msgid "Gibraltar"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: admin/manage-fields.php:483
|
3133 |
msgid "Greece"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: admin/manage-fields.php:484
|
3137 |
msgid "Greenland"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: admin/manage-fields.php:485
|
3141 |
msgid "Grenada"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: admin/manage-fields.php:486
|
3145 |
msgid "Guadeloupe"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: admin/manage-fields.php:487
|
3149 |
msgid "Guam"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: admin/manage-fields.php:488
|
3153 |
msgid "Guatemala"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: admin/manage-fields.php:489
|
3157 |
msgid "Guernsey"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: admin/manage-fields.php:490
|
3161 |
msgid "Guinea"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: admin/manage-fields.php:491
|
3165 |
msgid "Guinea-Bissau"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: admin/manage-fields.php:492
|
3169 |
msgid "Guyana"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: admin/manage-fields.php:493
|
3173 |
msgid "Haiti"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: admin/manage-fields.php:494
|
3177 |
msgid "Heard Island and McDonald Islands"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: admin/manage-fields.php:495
|
3181 |
msgid "Honduras"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: admin/manage-fields.php:496
|
3185 |
msgid "Hong Kong"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: admin/manage-fields.php:497
|
3189 |
msgid "Hungary"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: admin/manage-fields.php:498
|
3193 |
msgid "Iceland"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: admin/manage-fields.php:499
|
3197 |
msgid "India"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: admin/manage-fields.php:500
|
3201 |
msgid "Indonesia"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: admin/manage-fields.php:501
|
3205 |
msgid "Iran"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: admin/manage-fields.php:502
|
3209 |
msgid "Iraq"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: admin/manage-fields.php:503
|
3213 |
msgid "Ireland"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: admin/manage-fields.php:504
|
3217 |
msgid "Isle of Man"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: admin/manage-fields.php:505
|
3221 |
msgid "Israel"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: admin/manage-fields.php:506
|
3225 |
msgid "Italy"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: admin/manage-fields.php:507
|
3229 |
msgid "Ivory Coast"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: admin/manage-fields.php:508
|
3233 |
msgid "Jamaica"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: admin/manage-fields.php:509
|
3237 |
msgid "Japan"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: admin/manage-fields.php:510
|
3241 |
msgid "Jersey"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: admin/manage-fields.php:511
|
3245 |
msgid "Jordan"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: admin/manage-fields.php:512
|
3249 |
msgid "Kazakhstan"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: admin/manage-fields.php:513
|
3253 |
msgid "Kenya"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: admin/manage-fields.php:514
|
3257 |
msgid "Kiribati"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: admin/manage-fields.php:515
|
3261 |
msgid "Kosovo"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: admin/manage-fields.php:516
|
3265 |
msgid "Kuwait"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: admin/manage-fields.php:517
|
3269 |
msgid "Kyrgyzstan"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: admin/manage-fields.php:518
|
3273 |
msgid "Laos"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: admin/manage-fields.php:519
|
3277 |
msgid "Latvia"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: admin/manage-fields.php:520
|
3281 |
msgid "Lebanon"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: admin/manage-fields.php:521
|
3285 |
msgid "Lesotho"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: admin/manage-fields.php:522
|
3289 |
msgid "Liberia"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: admin/manage-fields.php:523
|
3293 |
msgid "Libya"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: admin/manage-fields.php:524
|
3297 |
msgid "Liechtenstein"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: admin/manage-fields.php:525
|
3301 |
msgid "Lithuania"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: admin/manage-fields.php:526
|
3305 |
msgid "Luxembourg"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: admin/manage-fields.php:527
|
3309 |
msgid "Macao"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: admin/manage-fields.php:528
|
3313 |
msgid "Macedonia"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: admin/manage-fields.php:529
|
3317 |
msgid "Madagascar"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: admin/manage-fields.php:530
|
3321 |
msgid "Malawi"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: admin/manage-fields.php:531
|
3325 |
msgid "Malaysia"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: admin/manage-fields.php:532
|
3329 |
msgid "Maldives"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: admin/manage-fields.php:533
|
3333 |
msgid "Mali"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: admin/manage-fields.php:534
|
3337 |
msgid "Malta"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: admin/manage-fields.php:535
|
3341 |
msgid "Marshall Islands"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: admin/manage-fields.php:536
|
3345 |
msgid "Martinique"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: admin/manage-fields.php:537
|
3349 |
msgid "Mauritania"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: admin/manage-fields.php:538
|
3353 |
msgid "Mauritius"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: admin/manage-fields.php:539
|
3357 |
msgid "Mayotte"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: admin/manage-fields.php:540
|
3361 |
msgid "Mexico"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: admin/manage-fields.php:541
|
3365 |
msgid "Micronesia"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: admin/manage-fields.php:542
|
3369 |
msgid "Moldova"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: admin/manage-fields.php:543
|
3373 |
msgid "Monaco"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: admin/manage-fields.php:544
|
3377 |
msgid "Mongolia"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: admin/manage-fields.php:545
|
3381 |
msgid "Montenegro"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: admin/manage-fields.php:546
|
3385 |
msgid "Montserrat"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: admin/manage-fields.php:547
|
3389 |
msgid "Morocco"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: admin/manage-fields.php:548
|
3393 |
msgid "Mozambique"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: admin/manage-fields.php:549
|
3397 |
msgid "Myanmar"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: admin/manage-fields.php:550
|
3401 |
msgid "Namibia"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: admin/manage-fields.php:551
|
3405 |
msgid "Nauru"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: admin/manage-fields.php:552
|
3409 |
msgid "Nepal"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: admin/manage-fields.php:553
|
3413 |
msgid "Netherlands"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: admin/manage-fields.php:554
|
3417 |
msgid "New Caledonia"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: admin/manage-fields.php:555
|
3421 |
msgid "New Zealand"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: admin/manage-fields.php:556
|
3425 |
msgid "Nicaragua"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: admin/manage-fields.php:557
|
3429 |
msgid "Niger"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: admin/manage-fields.php:558
|
3433 |
msgid "Nigeria"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: admin/manage-fields.php:559
|
3437 |
msgid "Niue"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: admin/manage-fields.php:560
|
3441 |
msgid "Norfolk Island"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: admin/manage-fields.php:561
|
3445 |
msgid "North Korea"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: admin/manage-fields.php:562
|
3449 |
msgid "Northern Mariana Islands"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: admin/manage-fields.php:563
|
3453 |
msgid "Norway"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: admin/manage-fields.php:564
|
3457 |
msgid "Oman"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: admin/manage-fields.php:565
|
3461 |
msgid "Pakistan"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: admin/manage-fields.php:566
|
3465 |
msgid "Palau"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: admin/manage-fields.php:567
|
3469 |
msgid "Palestinian Territory"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: admin/manage-fields.php:568
|
3473 |
msgid "Panama"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: admin/manage-fields.php:569
|
3477 |
msgid "Papua New Guinea"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: admin/manage-fields.php:570
|
3481 |
msgid "Paraguay"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: admin/manage-fields.php:571
|
3485 |
msgid "Peru"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: admin/manage-fields.php:572
|
3489 |
msgid "Philippines"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: admin/manage-fields.php:573
|
3493 |
msgid "Pitcairn"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: admin/manage-fields.php:574
|
3497 |
msgid "Poland"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: admin/manage-fields.php:575
|
3501 |
msgid "Portugal"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: admin/manage-fields.php:576
|
3505 |
msgid "Puerto Rico"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: admin/manage-fields.php:577
|
3509 |
msgid "Qatar"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: admin/manage-fields.php:578
|
3513 |
msgid "Republic of the Congo"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: admin/manage-fields.php:579
|
3517 |
msgid "Reunion"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: admin/manage-fields.php:580
|
3521 |
msgid "Romania"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: admin/manage-fields.php:581
|
3525 |
msgid "Russia"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: admin/manage-fields.php:582
|
3529 |
msgid "Rwanda"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: admin/manage-fields.php:583
|
3533 |
msgid "Saint Barthelemy"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: admin/manage-fields.php:584
|
3537 |
msgid "Saint Helena"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: admin/manage-fields.php:585
|
3541 |
msgid "Saint Kitts and Nevis"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: admin/manage-fields.php:586
|
3545 |
msgid "Saint Lucia"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: admin/manage-fields.php:587
|
3549 |
msgid "Saint Martin"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: admin/manage-fields.php:588
|
3553 |
msgid "Saint Pierre and Miquelon"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: admin/manage-fields.php:589
|
3557 |
msgid "Saint Vincent and the Grenadines"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: admin/manage-fields.php:590
|
3561 |
msgid "Samoa"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: admin/manage-fields.php:591
|
3565 |
msgid "San Marino"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: admin/manage-fields.php:592
|
3569 |
msgid "Sao Tome and Principe"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: admin/manage-fields.php:593
|
3573 |
msgid "Saudi Arabia"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: admin/manage-fields.php:594
|
3577 |
msgid "Senegal"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: admin/manage-fields.php:595
|
3581 |
msgid "Serbia"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: admin/manage-fields.php:596
|
3585 |
msgid "Seychelles"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: admin/manage-fields.php:597
|
3589 |
msgid "Sierra Leone"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: admin/manage-fields.php:598
|
3593 |
msgid "Singapore"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
+
#: admin/manage-fields.php:599
|
3597 |
msgid "Sint Maarten"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: admin/manage-fields.php:600
|
3601 |
msgid "Slovakia"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: admin/manage-fields.php:601
|
3605 |
msgid "Slovenia"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: admin/manage-fields.php:602
|
3609 |
msgid "Solomon Islands"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: admin/manage-fields.php:603
|
3613 |
msgid "Somalia"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: admin/manage-fields.php:604
|
3617 |
msgid "South Africa"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: admin/manage-fields.php:605
|
3621 |
msgid "South Georgia and the South Sandwich Islands"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: admin/manage-fields.php:606
|
3625 |
msgid "South Korea"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: admin/manage-fields.php:607
|
3629 |
msgid "South Sudan"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: admin/manage-fields.php:608
|
3633 |
msgid "Spain"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: admin/manage-fields.php:609
|
3637 |
msgid "Sri Lanka"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: admin/manage-fields.php:610
|
3641 |
msgid "Sudan"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: admin/manage-fields.php:611
|
3645 |
msgid "Suriname"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: admin/manage-fields.php:612
|
3649 |
msgid "Svalbard and Jan Mayen"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: admin/manage-fields.php:613
|
3653 |
msgid "Swaziland"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: admin/manage-fields.php:614
|
3657 |
msgid "Sweden"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: admin/manage-fields.php:615
|
3661 |
msgid "Switzerland"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: admin/manage-fields.php:616
|
3665 |
msgid "Syria"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: admin/manage-fields.php:617
|
3669 |
msgid "Taiwan"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: admin/manage-fields.php:618
|
3673 |
msgid "Tajikistan"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: admin/manage-fields.php:619
|
3677 |
msgid "Tanzania"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: admin/manage-fields.php:620
|
3681 |
msgid "Thailand"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: admin/manage-fields.php:621
|
3685 |
msgid "Togo"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: admin/manage-fields.php:622
|
3689 |
msgid "Tokelau"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: admin/manage-fields.php:623
|
3693 |
msgid "Tonga"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: admin/manage-fields.php:624
|
3697 |
msgid "Trinidad and Tobago"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: admin/manage-fields.php:625
|
3701 |
msgid "Tunisia"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: admin/manage-fields.php:626
|
3705 |
msgid "Turkey"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: admin/manage-fields.php:627
|
3709 |
msgid "Turkmenistan"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: admin/manage-fields.php:628
|
3713 |
msgid "Turks and Caicos Islands"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: admin/manage-fields.php:629
|
3717 |
msgid "Tuvalu"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: admin/manage-fields.php:630
|
3721 |
msgid "U.S. Virgin Islands"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: admin/manage-fields.php:631
|
3725 |
msgid "Uganda"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: admin/manage-fields.php:632
|
3729 |
msgid "Ukraine"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: admin/manage-fields.php:633
|
3733 |
msgid "United Arab Emirates"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: admin/manage-fields.php:634
|
3737 |
msgid "United Kingdom"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: admin/manage-fields.php:635
|
3741 |
msgid "United States"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: admin/manage-fields.php:636
|
3745 |
msgid "United States Minor Outlying Islands"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: admin/manage-fields.php:637
|
3749 |
msgid "Uruguay"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: admin/manage-fields.php:638
|
3753 |
msgid "Uzbekistan"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: admin/manage-fields.php:639
|
3757 |
msgid "Vanuatu"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: admin/manage-fields.php:640
|
3761 |
msgid "Vatican"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: admin/manage-fields.php:641
|
3765 |
msgid "Venezuela"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: admin/manage-fields.php:642
|
3769 |
msgid "Vietnam"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: admin/manage-fields.php:643
|
3773 |
msgid "Wallis and Futuna"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: admin/manage-fields.php:644
|
3777 |
msgid "Western Sahara"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: admin/manage-fields.php:645
|
3781 |
msgid "Yemen"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: admin/manage-fields.php:646
|
3785 |
msgid "Zambia"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: admin/manage-fields.php:647
|
3789 |
msgid "Zimbabwe"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: admin/manage-fields.php:680
|
3793 |
msgid "Albania Lek"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: admin/manage-fields.php:681
|
3797 |
msgid "Afghanistan Afghani"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: admin/manage-fields.php:682
|
3801 |
msgid "Argentina Peso"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: admin/manage-fields.php:684
|
3805 |
msgid "Australia Dollar"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: admin/manage-fields.php:685
|
3809 |
msgid "Azerbaijan New Manat"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: admin/manage-fields.php:686
|
3813 |
msgid "Bahamas Dollar"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: admin/manage-fields.php:687
|
3817 |
msgid "Barbados Dollar"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: admin/manage-fields.php:688
|
3821 |
msgid "Bangladeshi taka"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: admin/manage-fields.php:689
|
3825 |
msgid "Belarus Ruble"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: admin/manage-fields.php:690
|
3829 |
msgid "Belize Dollar"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: admin/manage-fields.php:691
|
3833 |
msgid "Bermuda Dollar"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: admin/manage-fields.php:692
|
3837 |
msgid "Bolivia Boliviano"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: admin/manage-fields.php:693
|
3841 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: admin/manage-fields.php:694
|
3845 |
msgid "Botswana Pula"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: admin/manage-fields.php:695
|
3849 |
msgid "Bulgaria Lev"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: admin/manage-fields.php:696
|
3853 |
msgid "Brazil Real"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: admin/manage-fields.php:697
|
3857 |
msgid "Brunei Darussalam Dollar"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: admin/manage-fields.php:698
|
3861 |
msgid "Cambodia Riel"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: admin/manage-fields.php:699
|
3865 |
msgid "Canada Dollar"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: admin/manage-fields.php:700
|
3869 |
msgid "Cayman Islands Dollar"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: admin/manage-fields.php:701
|
3873 |
msgid "Chile Peso"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: admin/manage-fields.php:702
|
3877 |
msgid "China Yuan Renminbi"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: admin/manage-fields.php:703
|
3881 |
msgid "Colombia Peso"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: admin/manage-fields.php:704
|
3885 |
msgid "Costa Rica Colon"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: admin/manage-fields.php:705
|
3889 |
msgid "Croatia Kuna"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: admin/manage-fields.php:706
|
3893 |
msgid "Cuba Peso"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: admin/manage-fields.php:707
|
3897 |
msgid "Czech Republic Koruna"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: admin/manage-fields.php:708
|
3901 |
msgid "Denmark Krone"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: admin/manage-fields.php:709
|
3905 |
msgid "Dominican Republic Peso"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: admin/manage-fields.php:710
|
3909 |
msgid "East Caribbean Dollar"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: admin/manage-fields.php:711
|
3913 |
msgid "Egypt Pound"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: admin/manage-fields.php:712
|
3917 |
msgid "El Salvador Colon"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: admin/manage-fields.php:713
|
3921 |
msgid "Estonia Kroon"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: admin/manage-fields.php:714
|
3925 |
msgid "Euro"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: admin/manage-fields.php:715
|
3929 |
msgid "Falkland Islands (Malvinas) Pound"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: admin/manage-fields.php:716
|
3933 |
msgid "Fiji Dollar"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: admin/manage-fields.php:717
|
3937 |
msgid "Ghana Cedis"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: admin/manage-fields.php:718
|
3941 |
msgid "Gibraltar Pound"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: admin/manage-fields.php:719
|
3945 |
msgid "Guatemala Quetzal"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: admin/manage-fields.php:720
|
3949 |
msgid "Guernsey Pound"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: admin/manage-fields.php:721
|
3953 |
msgid "Guyana Dollar"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: admin/manage-fields.php:722
|
3957 |
msgid "Honduras Lempira"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: admin/manage-fields.php:723
|
3961 |
msgid "Hong Kong Dollar"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: admin/manage-fields.php:724
|
3965 |
msgid "Hungary Forint"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: admin/manage-fields.php:725
|
3969 |
msgid "Iceland Krona"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: admin/manage-fields.php:726
|
3973 |
msgid "India Rupee"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: admin/manage-fields.php:727
|
3977 |
msgid "Indonesia Rupiah"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: admin/manage-fields.php:728
|
3981 |
msgid "Iran Rial"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: admin/manage-fields.php:729
|
3985 |
msgid "Isle of Man Pound"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: admin/manage-fields.php:730
|
3989 |
msgid "Israel Shekel"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: admin/manage-fields.php:731
|
3993 |
msgid "Jamaica Dollar"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: admin/manage-fields.php:732
|
3997 |
msgid "Japan Yen"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: admin/manage-fields.php:733
|
4001 |
msgid "Jersey Pound"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: admin/manage-fields.php:734
|
4005 |
msgid "Kazakhstan Tenge"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: admin/manage-fields.php:735
|
4009 |
msgid "Korea (North) Won"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: admin/manage-fields.php:736
|
4013 |
msgid "Korea (South) Won"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: admin/manage-fields.php:737
|
4017 |
msgid "Kyrgyzstan Som"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: admin/manage-fields.php:738
|
4021 |
msgid "Laos Kip"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: admin/manage-fields.php:739
|
4025 |
msgid "Latvia Lat"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: admin/manage-fields.php:740
|
4029 |
msgid "Lebanon Pound"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: admin/manage-fields.php:741
|
4033 |
msgid "Liberia Dollar"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: admin/manage-fields.php:742
|
4037 |
msgid "Lithuania Litas"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: admin/manage-fields.php:743
|
4041 |
msgid "Macedonia Denar"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: admin/manage-fields.php:744
|
4045 |
msgid "Malaysia Ringgit"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: admin/manage-fields.php:745
|
4049 |
msgid "Mauritius Rupee"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: admin/manage-fields.php:746
|
4053 |
msgid "Mexico Peso"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: admin/manage-fields.php:747
|
4057 |
msgid "Mongolia Tughrik"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: admin/manage-fields.php:748
|
4061 |
msgid "Mozambique Metical"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: admin/manage-fields.php:749
|
4065 |
msgid "Namibia Dollar"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: admin/manage-fields.php:750
|
4069 |
msgid "Nepal Rupee"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: admin/manage-fields.php:751
|
4073 |
msgid "Netherlands Antilles Guilder"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: admin/manage-fields.php:752
|
4077 |
msgid "New Zealand Dollar"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: admin/manage-fields.php:753
|
4081 |
msgid "Nicaragua Cordoba"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: admin/manage-fields.php:754
|
4085 |
msgid "Nigeria Naira"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: admin/manage-fields.php:755
|
4089 |
msgid "Norway Krone"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: admin/manage-fields.php:756
|
4093 |
msgid "Oman Rial"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: admin/manage-fields.php:757
|
4097 |
msgid "Pakistan Rupee"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: admin/manage-fields.php:758
|
4101 |
msgid "Panama Balboa"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: admin/manage-fields.php:759
|
4105 |
msgid "Paraguay Guarani"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: admin/manage-fields.php:760
|
4109 |
msgid "Peru Nuevo Sol"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: admin/manage-fields.php:761
|
4113 |
msgid "Philippines Peso"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: admin/manage-fields.php:762
|
4117 |
msgid "Poland Zloty"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: admin/manage-fields.php:763
|
4121 |
msgid "Qatar Riyal"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: admin/manage-fields.php:764
|
4125 |
msgid "Romania New Leu"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: admin/manage-fields.php:765
|
4129 |
msgid "Russia Ruble"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: admin/manage-fields.php:766
|
4133 |
msgid "Saint Helena Pound"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
+
#: admin/manage-fields.php:767
|
4137 |
msgid "Saudi Arabia Riyal"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: admin/manage-fields.php:768
|
4141 |
msgid "Serbia Dinar"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: admin/manage-fields.php:769
|
4145 |
msgid "Seychelles Rupee"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: admin/manage-fields.php:770
|
4149 |
msgid "Singapore Dollar"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: admin/manage-fields.php:771
|
4153 |
msgid "Solomon Islands Dollar"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: admin/manage-fields.php:772
|
4157 |
msgid "Somalia Shilling"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: admin/manage-fields.php:773
|
4161 |
msgid "South Africa Rand"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: admin/manage-fields.php:774
|
4165 |
msgid "Sri Lanka Rupee"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: admin/manage-fields.php:775
|
4169 |
msgid "Sweden Krona"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: admin/manage-fields.php:776
|
4173 |
msgid "Switzerland Franc"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: admin/manage-fields.php:777
|
4177 |
msgid "Suriname Dollar"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: admin/manage-fields.php:778
|
4181 |
msgid "Syria Pound"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: admin/manage-fields.php:779
|
4185 |
msgid "Taiwan New Dollar"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: admin/manage-fields.php:780
|
4189 |
msgid "Thailand Baht"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: admin/manage-fields.php:781
|
4193 |
msgid "Trinidad and Tobago Dollar"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: admin/manage-fields.php:782, admin/manage-fields.php:783
|
4197 |
msgid "Turkey Lira"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: admin/manage-fields.php:784
|
4201 |
msgid "Tuvalu Dollar"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: admin/manage-fields.php:785
|
4205 |
msgid "Ukraine Hryvna"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: admin/manage-fields.php:786
|
4209 |
msgid "United Kingdom Pound"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: admin/manage-fields.php:787
|
4213 |
msgid "Uganda Shilling"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: admin/manage-fields.php:788
|
4217 |
msgid "US Dollar"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: admin/manage-fields.php:789
|
4221 |
msgid "Uruguay Peso"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: admin/manage-fields.php:790
|
4225 |
msgid "Uzbekistan Som"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: admin/manage-fields.php:791
|
4229 |
msgid "Venezuela Bolivar"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: admin/manage-fields.php:792
|
4233 |
msgid "Viet Nam Dong"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: admin/manage-fields.php:793
|
4237 |
msgid "Yemen Rial"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: admin/manage-fields.php:794
|
4241 |
msgid "Zimbabwe Dollar"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: admin/manage-fields.php:1097, admin/manage-fields.php:1255
|
4245 |
msgid ""
|
4246 |
"You must select a field\n"
|
4247 |
""
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: admin/manage-fields.php:1107
|
4251 |
msgid ""
|
4252 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4253 |
""
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: admin/manage-fields.php:1118
|
4257 |
msgid ""
|
4258 |
"The entered avatar size is not between 20 and 200\n"
|
4259 |
""
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: admin/manage-fields.php:1121
|
4263 |
msgid ""
|
4264 |
"The entered avatar size is not numerical\n"
|
4265 |
""
|
4266 |
msgstr ""
|
4267 |
|
4268 |
+
#: admin/manage-fields.php:1129
|
4269 |
msgid ""
|
4270 |
"The entered row number is not numerical\n"
|
4271 |
""
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: admin/manage-fields.php:1132
|
4275 |
msgid ""
|
4276 |
"You must enter a value for the row number\n"
|
4277 |
""
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: admin/manage-fields.php:1140
|
4281 |
msgid ""
|
4282 |
"You must enter the site key\n"
|
4283 |
""
|
4284 |
msgstr ""
|
4285 |
|
4286 |
+
#: admin/manage-fields.php:1142
|
4287 |
msgid ""
|
4288 |
"You must enter the secret key\n"
|
4289 |
""
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: admin/manage-fields.php:1154
|
4293 |
msgid ""
|
4294 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4295 |
""
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: admin/manage-fields.php:1157
|
4299 |
msgid ""
|
4300 |
"You must enter a value for the date-format\n"
|
4301 |
""
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: admin/manage-fields.php:1173
|
4305 |
msgid ""
|
4306 |
"The meta-name cannot be empty\n"
|
4307 |
""
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: admin/manage-fields.php:1185, admin/manage-fields.php:1193, admin/manage-fields.php:1204
|
4311 |
msgid ""
|
4312 |
"That meta-name is already in use\n"
|
4313 |
""
|
4314 |
msgstr ""
|
4315 |
|
4316 |
+
#: admin/manage-fields.php:1215
|
4317 |
msgid ""
|
4318 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4319 |
""
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: admin/manage-fields.php:1235
|
4323 |
msgid ""
|
4324 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4325 |
""
|
4326 |
msgstr ""
|
4327 |
|
4328 |
+
#: admin/manage-fields.php:1239
|
4329 |
msgid ""
|
4330 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4331 |
""
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: admin/manage-fields.php:1246
|
4335 |
msgid ""
|
4336 |
"Please select at least one user role\n"
|
4337 |
""
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: admin/manage-fields.php:1262
|
4341 |
msgid ""
|
4342 |
"That field is already added in this form\n"
|
4343 |
""
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: admin/manage-fields.php:1313
|
4347 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
+
#: admin/manage-fields.php:1328
|
4351 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: admin/manage-fields.php:1337
|
4355 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: admin/manage-fields.php:1339
|
4359 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: admin/manage-fields.php:1436
|
4363 |
msgid "Search Location"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
+
#: admin/pms-cross-promotion.php:10, admin/pms-cross-promotion.php:10
|
4367 |
msgid "Paid Accounts"
|
4368 |
msgstr ""
|
4369 |
|
4370 |
+
#: admin/pms-cross-promotion.php:33
|
4371 |
msgid "Paid Member Subscriptions - a free WordPress plugin"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
+
#: admin/pms-cross-promotion.php:37
|
4375 |
msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
|
4376 |
msgstr ""
|
4377 |
|
4378 |
+
#: admin/pms-cross-promotion.php:40
|
4379 |
msgid "Paid & Free Subscriptions"
|
4380 |
msgstr ""
|
4381 |
|
4382 |
+
#: admin/pms-cross-promotion.php:41
|
4383 |
msgid "Restrict Content"
|
4384 |
msgstr ""
|
4385 |
|
4386 |
+
#: admin/pms-cross-promotion.php:42
|
4387 |
msgid "Member Management"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
+
#: admin/pms-cross-promotion.php:43
|
4391 |
msgid "Email Templates"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: admin/pms-cross-promotion.php:44
|
4395 |
msgid "Account Management"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
+
#: admin/pms-cross-promotion.php:45
|
4399 |
msgid "Subscription Management"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: admin/pms-cross-promotion.php:46
|
4403 |
msgid "Payment Management"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: admin/pms-cross-promotion.php:83
|
4407 |
msgid "Plugin is Active"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: admin/pms-cross-promotion.php:84
|
4411 |
msgid "Plugin has been activated"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: admin/pms-cross-promotion.php:91
|
4415 |
msgid "Plugin has been deactivated."
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: admin/pms-cross-promotion.php:104
|
4419 |
msgid "Accept user payments, create subscription plans and restrict content on your website."
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: admin/pms-cross-promotion.php:155
|
4423 |
msgid "Step by Step Quick Setup"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: admin/pms-cross-promotion.php:239
|
4427 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: admin/private-website.php:43
|
4431 |
msgid "Private Website Settings"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: admin/private-website.php:56
|
4435 |
msgid "Enable Private Website"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: admin/private-website.php:63
|
4439 |
msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: admin/private-website.php:69
|
4443 |
msgid "Redirect to"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: admin/private-website.php:72
|
4447 |
msgid "Default WordPress login page"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: admin/private-website.php:85
|
4451 |
msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: admin/private-website.php:86
|
4455 |
msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: admin/private-website.php:92
|
4459 |
msgid "Allowed Pages"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: admin/private-website.php:107
|
4463 |
msgid "Allow these pages to be accessed even if you are not logged in"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: admin/private-website.php:113
|
4467 |
msgid "Hide all Menus"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: admin/private-website.php:120
|
4471 |
msgid "Hide all menu items if you are not logged in."
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: admin/private-website.php:121
|
4475 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: admin/private-website.php:129, features/functions.php:767, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:275, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:321, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:77, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:91, features/content-restriction/content-restriction.php:161, modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, assets/lib/wck-api/wordpress-creation-kit.php:405
|
4479 |
msgid "Save Changes"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: admin/register-version.php:14
|
4483 |
msgid "Register Your Version"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: admin/register-version.php:14
|
4487 |
msgid "Register Version"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: admin/register-version.php:22, admin/register-version.php:22
|
4491 |
msgid "Profile Builder Register"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: admin/register-version.php:61
|
4495 |
msgid "Register your version of %s"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: admin/register-version.php:69
|
4499 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: admin/register-version.php:70
|
4503 |
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: admin/register-version.php:72
|
4507 |
msgid " Serial Number:"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: admin/register-version.php:77
|
4511 |
msgid "The serial number was successfully validated!"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: admin/register-version.php:79
|
4515 |
msgid "The serial number entered couldn't be validated!"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: admin/register-version.php:81
|
4519 |
msgid "The serial number is about to expire soon!"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: admin/register-version.php:81
|
4523 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: admin/register-version.php:83
|
4527 |
msgid "The serial number couldn't be validated because it expired!"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: admin/register-version.php:83
|
4531 |
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: admin/register-version.php:85
|
4535 |
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: admin/register-version.php:87
|
4539 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: admin/register-version.php:258
|
4543 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: admin/register-version.php:264
|
4547 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: admin/register-version.php:266
|
4551 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: admin/register-version.php:273
|
4555 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: features/functions.php:253
|
4559 |
msgid "GDPR Checkbox"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: features/functions.php:253
|
4563 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: features/functions.php:582
|
4567 |
msgid "Strength indicator"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: features/functions.php:608, features/functions.php:632
|
4571 |
msgid "Very Weak"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
+
#: features/functions.php:622
|
4575 |
msgid "Minimum length of %d characters."
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: features/functions.php:633
|
4579 |
msgid "The password must have a minimum strength of %s."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: features/functions.php:710
|
4583 |
msgid "This field is required"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: features/functions.php:748, front-end/default-fields/recaptcha/recaptcha.php:463, front-end/default-fields/recaptcha/recaptcha.php:472, front-end/default-fields/recaptcha/recaptcha.php:525, front-end/default-fields/recaptcha/recaptcha.php:570
|
4587 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: features/functions.php:755
|
4591 |
msgid "Incorrect phone number"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: features/functions.php:795, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4595 |
msgid "Content"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: features/functions.php:962
|
4599 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: features/functions.php:975
|
4603 |
msgid "<br><br>You can visit your site at "
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: features/functions.php:1061
|
4607 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: features/functions.php:1191
|
4611 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: features/functions.php:1226
|
4615 |
msgid "You are not currently logged in."
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: front-end/class-formbuilder.php:126
|
4619 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: front-end/class-formbuilder.php:138
|
4623 |
msgid "Only an administrator can add new users."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: front-end/class-formbuilder.php:148
|
4627 |
msgid "Users can register themselves or you can manually create users here."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: front-end/class-formbuilder.php:148, front-end/class-formbuilder.php:151
|
4631 |
msgid "This message is only visible by administrators"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
+
#: front-end/class-formbuilder.php:151
|
4635 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
+
#: front-end/class-formbuilder.php:171
|
4639 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: front-end/class-formbuilder.php:171
|
4643 |
msgid "Log out of this account."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: front-end/class-formbuilder.php:177
|
4647 |
msgid "You must be logged in to edit your profile."
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: front-end/class-formbuilder.php:267, front-end/login.php:479
|
4651 |
msgid "You are not allowed to do this."
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: front-end/class-formbuilder.php:324, front-end/class-formbuilder.php:331
|
4655 |
msgid "The account %1s has been successfully created!"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: front-end/class-formbuilder.php:327, front-end/class-formbuilder.php:337
|
4659 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: front-end/class-formbuilder.php:333
|
4663 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: front-end/class-formbuilder.php:356
|
4667 |
msgid "Your profile has been successfully updated!"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
+
#: front-end/class-formbuilder.php:367
|
4671 |
msgid "There was an error in the submitted form"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: front-end/class-formbuilder.php:424
|
4675 |
msgid "Add User"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: front-end/class-formbuilder.php:493
|
4679 |
msgid "Send these credentials via email."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: front-end/class-formbuilder.php:689
|
4683 |
msgid "User to edit:"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: front-end/class-formbuilder.php:691
|
4687 |
msgid "Select User"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: front-end/class-formbuilder.php:705
|
4691 |
msgid "There are no other users to edit"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: front-end/class-formbuilder.php:723
|
4695 |
msgid "Something went wrong. Please try again!"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: front-end/login.php:309, front-end/login.php:330, front-end/recover.php:16, front-end/recover.php:302, front-end/extra-fields/extra-fields.php:93
|
4699 |
msgid "ERROR"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: front-end/login.php:312
|
4703 |
msgid "The password you entered is incorrect."
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: front-end/login.php:317
|
4707 |
msgid "Invalid email."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: front-end/login.php:319
|
4711 |
msgid "Invalid username or email."
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: front-end/login.php:321
|
4715 |
msgid "Invalid username."
|
4716 |
msgstr ""
|
4717 |
|
4718 |
+
#: front-end/login.php:325
|
4719 |
msgid "Password Lost and Found."
|
4720 |
msgstr ""
|
4721 |
|
4722 |
+
#: front-end/login.php:325
|
4723 |
+
msgid "Lost your password ?"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
+
#: front-end/login.php:330
|
4727 |
msgid "Both fields are empty."
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: front-end/login.php:393
|
4731 |
msgid "Username or Email"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: front-end/login.php:427
|
4735 |
msgid "Lost your password?"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: front-end/login.php:466, front-end/logout.php:25
|
4739 |
msgid "Log out of this account"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: front-end/login.php:466
|
4743 |
msgid "Log out"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: front-end/login.php:467
|
4747 |
msgid "You are currently logged in as %1$s. %2$s"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
+
#: front-end/logout.php:15
|
4751 |
msgid "You are currently logged in as %s. "
|
4752 |
msgstr ""
|
4753 |
|
4754 |
+
#: front-end/logout.php:15
|
4755 |
msgid "Log out »"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: front-end/recover.php:16
|
4759 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4760 |
msgstr ""
|
4761 |
|
4762 |
+
#: front-end/recover.php:92
|
4763 |
msgid "Reset Password"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
+
#: front-end/recover.php:115
|
4767 |
msgid "Please enter your email address."
|
4768 |
msgstr ""
|
4769 |
|
4770 |
+
#: front-end/recover.php:119
|
4771 |
msgid "Please enter your username or email address."
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: front-end/recover.php:120
|
4775 |
msgid "Username or E-mail"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
+
#: front-end/recover.php:123
|
4779 |
msgid "You will receive a link to create a new password via email."
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: front-end/recover.php:136
|
4783 |
msgid "Get New Password"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: front-end/recover.php:179
|
4787 |
+
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: front-end/recover.php:182
|
4791 |
+
msgid "Password Reset from \"%1$s\""
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: front-end/recover.php:209
|
4795 |
+
msgid "You have successfully reset your password."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: front-end/recover.php:211
|
4799 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: front-end/recover.php:229
|
4803 |
+
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: front-end/recover.php:254
|
4807 |
+
msgid "You are already logged in. You can change your password on the edit profile form."
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: front-end/recover.php:277
|
4811 |
+
msgid "The username entered wasn't found in the database!"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: front-end/recover.php:277
|
4815 |
+
msgid "Please check that you entered the correct username."
|
4816 |
msgstr ""
|
4817 |
|
4818 |
+
#: front-end/recover.php:290
|
4819 |
+
msgid "Check your e-mail for the confirmation link."
|
4820 |
+
msgstr ""
|
4821 |
+
|
4822 |
+
#: front-end/recover.php:302
|
4823 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: front-end/recover.php:313
|
4827 |
+
msgid "The email address entered wasn't found in the database!"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: front-end/recover.php:313
|
4831 |
+
msgid "Please check that you entered the correct email address."
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: front-end/recover.php:326
|
4835 |
+
msgid "The entered passwords don't match!"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: front-end/recover.php:332, front-end/default-fields/password/password.php:50
|
4839 |
+
msgid "The password must have the minimum length of %s characters"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: front-end/recover.php:336, front-end/default-fields/password/password.php:54
|
4843 |
+
msgid "The password must have a minimum strength of %s"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: front-end/recover.php:343
|
4847 |
+
msgid "Your password has been successfully changed!"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: front-end/recover.php:379
|
4851 |
+
msgid "The password must not be empty!"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: front-end/recover.php:404
|
4855 |
msgid "ERROR:"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
#: front-end/recover.php:404
|
4859 |
msgid "Invalid key!"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: front-end/register.php:56
|
4863 |
msgid "Invalid activation key!"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: front-end/register.php:60
|
4867 |
msgid "This username is now active!"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: front-end/register.php:71, features/email-confirmation/email-confirmation.php:450
|
4871 |
msgid "Could not create user!"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
+
#: front-end/register.php:74
|
4875 |
msgid "This username is already activated!"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: front-end/register.php:124
|
4879 |
msgid "Your email was successfully confirmed."
|
4880 |
msgstr ""
|
4881 |
|
4882 |
+
#: front-end/register.php:125, features/email-confirmation/email-confirmation.php:651
|
4883 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: front-end/register.php:153
|
4887 |
msgid "There was an error while trying to activate the user."
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: modules/modules.php:11, modules/modules.php:11, modules/modules.php:56
|
4891 |
msgid "Modules"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: modules/modules.php:57
|
4895 |
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: modules/modules.php:67
|
4899 |
msgid "Name/Description"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#: modules/modules.php:68
|
4903 |
msgid "Status"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
+
#: modules/modules.php:75, modules/modules.php:82, modules/modules.php:89, modules/modules.php:101, modules/modules.php:108, modules/modules.php:115
|
4907 |
msgid "Active"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
+
#: modules/modules.php:76, modules/modules.php:83, modules/modules.php:90, modules/modules.php:102, modules/modules.php:109, modules/modules.php:116
|
4911 |
msgid "Inactive"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
+
#: ../pb-add-on-customization-toolbox/includes/fields/unique-display-name.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4915 |
msgid "This display name is already in use. Please choose another one."
|
4916 |
msgstr ""
|
4917 |
|
4918 |
+
#: ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:5
|
4919 |
msgid "Resend activation email"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:14
|
4923 |
msgid "Allow users with the 'delete_users' capability to view the Admin Approval list"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:23
|
4927 |
msgid "By checking this option, you will allow users that have the 'delete_users' capability to access and use the Admin Approval list."
|
4928 |
msgstr ""
|
4929 |
|
4930 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:30
|
4931 |
msgid "Allow users with the 'delete_users' capability to view the list of Unconfirmed Emails"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:39
|
4935 |
msgid "By checking this option, you will allow users that have the 'delete_users' capability to see the list of Unconfirmed Email Addresses."
|
4936 |
msgstr ""
|
4937 |
|
4938 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:14
|
4939 |
msgid "Automatically generate password for users"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:23
|
4943 |
msgid "By checking this option, the password will be automatically generated and emailed to the user."
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:30
|
4947 |
msgid "Modify 'Send Credentials' checkbox"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:34
|
4951 |
msgid "Hidden and checked"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:39
|
4955 |
msgid "Field text:"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:49
|
4959 |
msgid "By default, the user needs to choose if he wants to receive a registration email."
|
4960 |
msgstr ""
|
4961 |
|
4962 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:52
|
4963 |
msgid "By checking the <strong>Hidden and checked</strong> option, the field won't be shown and the message will always be sent to the user."
|
4964 |
msgstr ""
|
4965 |
|
4966 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:55
|
4967 |
msgid "If you choose to show the field, you can modify the default text by entering something in the field from above."
|
4968 |
msgstr ""
|
4969 |
|
4970 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:62
|
4971 |
msgid "Redirect users to a page if they have empty required fields"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:71
|
4975 |
msgid "Redirect Page:"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:91
|
4979 |
msgid "By activating this option, logged in users which have empty required fields on their profile will be redirected to the page you added above."
|
4980 |
msgstr ""
|
4981 |
|
4982 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:94
|
4983 |
msgid "For example, you can redirect these users to the Edit Profile form so they can add the missing info."
|
4984 |
msgstr ""
|
4985 |
|
4986 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:101
|
4987 |
msgid "Ban certain words from being used in fields"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:108, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:21
|
4991 |
msgid "On"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:116
|
4995 |
msgid "Affected fields:"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:140
|
4999 |
msgid "Banned words:"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:159, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:66
|
5003 |
msgid "Error message:"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:170
|
5007 |
msgid "Allows you to define some words which users cannot use in their Username, First Name or Last Name when registering."
|
5008 |
msgstr ""
|
5009 |
|
5010 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:177
|
5011 |
msgid "Unique 'Display Name' for users"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:186
|
5015 |
msgid "By checking this option, users will not be able to choose a <strong>Display Name</strong> that is already used by another account."
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:193
|
5019 |
msgid "Always capitalize 'First Name' and 'Last Name' default fields"
|
5020 |
msgstr ""
|
5021 |
|
5022 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:202
|
5023 |
msgid "If you have these fields in your forms, they will be always saved with the first letter as uppercase."
|
5024 |
msgstr ""
|
5025 |
|
5026 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:205
|
5027 |
msgid "eg.: <strong>John Doe</strong> instead of <strong>john doe</strong>"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:213
|
5031 |
msgid "Datepicker starts on Monday"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:222
|
5035 |
msgid "Will make all Datepickers use Monday as the first day of the week."
|
5036 |
msgstr ""
|
5037 |
|
5038 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:236
|
5039 |
msgid "Hide Repeater Fields from the back-end profile page"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:245
|
5043 |
msgid "Repeater Fields from Profile Builder do not work on the back-end user profile page, they are just displayed. If you want to remove them completely, you can use this option."
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:248
|
5047 |
msgid "You will still be able to use them from a front-end edit profile form."
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:257
|
5051 |
msgid "Update database entries when changing meta key"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:266
|
5055 |
msgid "If you activate this option, when changing the meta key of a field, existing entries from the database will be updated as well."
|
5056 |
msgstr ""
|
5057 |
|
5058 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:14
|
5059 |
msgid "Allow or deny email domains from registering"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:29
|
5063 |
msgid "Type:"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:34
|
5067 |
msgid "Allow"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:40
|
5071 |
msgid "Deny"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:47
|
5075 |
msgid "Restricted domains:"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:77
|
5079 |
msgid "This option lets you allow registrations only from certain domains or deny registrations from certain domains."
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:80
|
5083 |
msgid "You should add only the domain in the list from above. eg.: gmail.com"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:92
|
5087 |
msgid "Forms that should bypass Email Confirmation"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:119
|
5091 |
msgid "Users registering through any of the selected forms will not need to confirm their email address."
|
5092 |
msgstr ""
|
5093 |
|
5094 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:128
|
5095 |
msgid "Disable Email Confirmation for Social Connect registrations"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:137
|
5099 |
msgid "If checked, will allow users that register through the Social Connect add-on to bypass the Email Confirmation feature."
|
5100 |
msgstr ""
|
5101 |
|
5102 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:145
|
5103 |
msgid "Remember me checked by default"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:154
|
5107 |
msgid "Check the 'Remember Me' checkbox on Login forms, by default."
|
5108 |
msgstr ""
|
5109 |
|
5110 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:160
|
5111 |
msgid "Remove validation from back-end profile page"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:169
|
5115 |
msgid "When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:180
|
5119 |
msgid "Always show edit other users dropdown"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:189
|
5123 |
msgid "For perfomance reasons, we disable the select if you have more than 5000 users on your website. This option lets you enable it again."
|
5124 |
msgstr ""
|
5125 |
|
5126 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:197
|
5127 |
msgid "Consider 'Anyone can Register' WordPress option"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:207
|
5131 |
msgid "setting"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:209
|
5135 |
msgid "By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it."
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:217
|
5139 |
msgid "Modify default Redirect Delay timer"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:224
|
5143 |
msgid "This allows you to change the amount of seconds it takes for the <strong>'After Registration'</strong> redirect to happen."
|
5144 |
msgstr ""
|
5145 |
|
5146 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:227
|
5147 |
msgid "The default is 3 seconds. Leave empty if you do not want to change it."
|
5148 |
msgstr ""
|
5149 |
|
5150 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:235
|
5151 |
msgid "Save Admin Approval status in usermeta"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:244
|
5155 |
msgid "By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user."
|
5156 |
msgstr ""
|
5157 |
|
5158 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:247
|
5159 |
msgid "If you check this option, the status will also be saved in the '*_usermeta' table under the <strong>wppb_approval_status</strong> meta name."
|
5160 |
msgstr ""
|
5161 |
|
5162 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:256
|
5163 |
msgid "Redirect '/author' page if user is not approved"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:265
|
5167 |
msgid "By default, users placed in Admin Approval will not be able to login, but the Author pages will be accessible."
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:268
|
5171 |
msgid "Using this option you can redirect these pages, sending users who try to access them to your home page."
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:276
|
5175 |
msgid "Save 'Last Login' date in usermeta"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:285
|
5179 |
msgid "By checking this option, each time a user logins, the date and time will be saved in the database."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:288
|
5183 |
msgid "The meta name for the field will be <strong>last_login_date</strong>."
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:291, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:313
|
5187 |
msgid "You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms."
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:298
|
5191 |
msgid "Save 'Last Profile Update' date in usermeta"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:307
|
5195 |
msgid "By checking this option, each time a modifies his profile the date and time will be saved in the database."
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-forms.php:310
|
5199 |
msgid "The meta name for the field will be <strong>last_profile_update_date</strong>."
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:12
|
5203 |
msgid "Enable Compare shortcode"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:21
|
5207 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/compare-shortcode/\">this url</a>."
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:28
|
5211 |
msgid "Enable Usermeta shortcode"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:37
|
5215 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/display-user-meta/\">this url</a>."
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:44
|
5219 |
msgid "Enable Resend Activation Email shortcode"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:53
|
5223 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/resend-confirmation-email/\">this url</a>."
|
5224 |
msgstr ""
|
5225 |
|
5226 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:60
|
5227 |
msgid "Enable Format Date shortcode"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:69
|
5231 |
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/format-date-shortcode/\">this url</a>."
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:12
|
5235 |
msgid "Change placeholder text for Search box"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:19
|
5239 |
msgid "This refers to the placeholder text from the <strong>{{{extra_search_all_fields}}}</strong> tag."
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:22
|
5243 |
msgid "Default text is <strong>Search Users by All Fields</strong>, use this option to change it to something else. Leave empty if you do not want to change it."
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:29
|
5247 |
msgid "Modify base URL for Single Userlisting"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:37
|
5251 |
msgid "By default Single Userlisting URLs contain the word <strong>user</strong>. eg.: "
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:42
|
5255 |
msgid "Using this option, you can change the word <strong>user</strong> to something else. Leave empty if you do not want to change it."
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:49
|
5259 |
msgid "Make the Single Userlisting URLs work with user nicename"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:59
|
5263 |
msgid "By default Single Userlisting URLs are generated using the users ID. eg.: "
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:64
|
5267 |
msgid "With this option activated, the URLs will be generated using the users <strong>nicename</strong>."
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:71
|
5271 |
msgid "Remove repetition counts from Faceted Menus"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:80
|
5275 |
msgid "The number of users that share a particular value is shown for the Select and Checkbox facet types."
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:83
|
5279 |
msgid "If you enable this option they will be hidden."
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: assets/misc/plugin-compatibilities.php:237
|
5283 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: features/admin-approval/admin-approval.php:14, features/admin-approval/class-admin-approval.php:454
|
5287 |
msgid "Admin Approval"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: features/admin-approval/admin-approval.php:28, features/email-confirmation/email-confirmation.php:58
|
5291 |
msgid "Do you want to"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: features/admin-approval/admin-approval.php:51, features/admin-approval/admin-approval.php:99
|
5295 |
msgid "Your session has expired! Please refresh the page and try again."
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: features/admin-approval/admin-approval.php:67, features/admin-approval/admin-approval.php:279
|
5299 |
msgid "User successfully approved!"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: features/admin-approval/admin-approval.php:77
|
5303 |
msgid "User successfully unapproved!"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: features/admin-approval/admin-approval.php:83
|
5307 |
msgid "User successfully deleted!"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: features/admin-approval/admin-approval.php:88, features/admin-approval/admin-approval.php:134, features/email-confirmation/email-confirmation.php:132
|
5311 |
msgid "You either don't have permission for that action or there was an error!"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: features/admin-approval/admin-approval.php:112
|
5315 |
msgid "Users successfully approved!"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: features/admin-approval/admin-approval.php:122
|
5319 |
msgid "Users successfully unapproved!"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: features/admin-approval/admin-approval.php:130
|
5323 |
msgid "Users successfully deleted!"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: features/admin-approval/admin-approval.php:150
|
5327 |
msgid "Your account on %1$s has been approved!"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: features/admin-approval/admin-approval.php:151, features/admin-approval/admin-approval.php:154
|
5331 |
msgid "approved"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: features/admin-approval/admin-approval.php:153
|
5335 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: features/admin-approval/admin-approval.php:158
|
5339 |
msgid "Your account on %1$s has been unapproved!"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: features/admin-approval/admin-approval.php:159, features/admin-approval/admin-approval.php:162
|
5343 |
msgid "unapproved"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: features/admin-approval/admin-approval.php:161
|
5347 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: features/admin-approval/admin-approval.php:192
|
5351 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: features/admin-approval/admin-approval.php:227
|
5355 |
msgid "Your account has been successfully created!"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: features/admin-approval/admin-approval.php:295
|
5359 |
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: features/admin-approval/class-admin-approval.php:113
|
5363 |
msgid "delete this user?"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: features/admin-approval/class-admin-approval.php:116
|
5367 |
msgid "unapprove this user?"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:223
|
5371 |
msgid "Unapprove"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: features/admin-approval/class-admin-approval.php:118
|
5375 |
msgid "approve this user?"
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: features/admin-approval/class-admin-approval.php:118, features/admin-approval/class-admin-approval.php:222
|
5379 |
msgid "Approve"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:2321
|
5383 |
msgid "Firstname"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2322
|
5387 |
msgid "Lastname"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:2326
|
5391 |
msgid "Role"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: features/admin-approval/class-admin-approval.php:171, features/email-confirmation/class-email-confirmation.php:170
|
5395 |
msgid "Registered"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: features/admin-approval/class-admin-approval.php:172
|
5399 |
msgid "User-status"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: features/admin-approval/class-admin-approval.php:252
|
5403 |
msgid "Do you want to bulk approve the selected users?"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: features/admin-approval/class-admin-approval.php:260
|
5407 |
msgid "Do you want to bulk unapprove the selected users?"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: features/admin-approval/class-admin-approval.php:266
|
5411 |
msgid "Do you want to bulk delete the selected users?"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: features/admin-approval/class-admin-approval.php:274, features/email-confirmation/class-email-confirmation.php:279
|
5415 |
msgid "Sorry, but you don't have permission to do that!"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: features/admin-approval/class-admin-approval.php:339
|
5419 |
msgid "Approved"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: features/admin-approval/class-admin-approval.php:341
|
5423 |
msgid "Unapproved"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: features/admin-approval/class-admin-approval.php:457, features/email-confirmation/class-email-confirmation.php:455
|
5427 |
msgid "All Users"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: features/conditional-fields/conditional-fields.php:78
|
5431 |
msgid "Conditional Logic"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: features/conditional-fields/conditional-fields.php:79
|
5435 |
msgid "Conditional Rules"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
+
#: features/conditional-fields/conditional-fields.php:456
|
5439 |
msgid "This field has conditional logic enabled."
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: features/content-restriction/class-elementor-content-restriction.php:77, features/content-restriction/content-restriction-meta-box.php:18
|
5443 |
msgid "Profile Builder Content Restriction"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: features/content-restriction/class-elementor-content-restriction.php:90
|
5447 |
msgid "Restrict to logged in users"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
#: features/content-restriction/class-elementor-content-restriction.php:92
|
5451 |
msgid "Allow only logged in users to see this content."
|
5452 |
msgstr ""
|
5453 |
|
5454 |
+
#: features/content-restriction/class-elementor-content-restriction.php:98
|
5455 |
msgid "Restrict by User Roles"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
+
#: features/content-restriction/class-elementor-content-restriction.php:110
|
5459 |
msgid "Allow users which have the specified role to see this content."
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: features/content-restriction/class-elementor-content-restriction.php:116, features/content-restriction/content-restriction-meta-box.php:119
|
5463 |
msgid "Restriction Messages"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: features/content-restriction/class-elementor-content-restriction.php:124
|
5467 |
msgid "Enable Restriction Messages"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: features/content-restriction/class-elementor-content-restriction.php:126
|
5471 |
msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: features/content-restriction/class-elementor-content-restriction.php:132, features/content-restriction/content-restriction-meta-box.php:125
|
5475 |
msgid "Enable Custom Messages"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: features/content-restriction/class-elementor-content-restriction.php:134
|
5479 |
msgid "Add a custom message or template."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: features/content-restriction/class-elementor-content-restriction.php:143
|
5483 |
msgid "Content type"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: features/content-restriction/class-elementor-content-restriction.php:147
|
5487 |
msgid "Text"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: features/content-restriction/class-elementor-content-restriction.php:151
|
5491 |
msgid "Template"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: features/content-restriction/class-elementor-content-restriction.php:168
|
5495 |
msgid "Select Template"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: features/content-restriction/content-restriction-functions.php:44
|
5499 |
msgid "You must be logged in to view this content."
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: features/content-restriction/content-restriction-functions.php:46
|
5503 |
msgid "This content is restricted for your user role."
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: features/content-restriction/content-restriction-meta-box.php:32
|
5507 |
msgid "Display Options"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: features/content-restriction/content-restriction-meta-box.php:36, features/content-restriction/content-restriction.php:100
|
5511 |
msgid "Message"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: features/content-restriction/content-restriction-meta-box.php:36, features/content-restriction/content-restriction.php:105, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230
|
5515 |
msgid "Redirect"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
+
#: features/content-restriction/content-restriction-meta-box.php:41, features/content-restriction/content-restriction.php:95
|
5519 |
msgid "Type of Restriction"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: features/content-restriction/content-restriction-meta-box.php:45
|
5523 |
msgid "Settings Default"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: features/content-restriction/content-restriction-meta-box.php:57
|
5527 |
msgid "Display For"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: features/content-restriction/content-restriction-meta-box.php:81
|
5531 |
msgid "Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role."
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: features/content-restriction/content-restriction-meta-box.php:85
|
5535 |
msgid "Checking any user role will show this %s only to users that have one of those user roles assigned."
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: features/content-restriction/content-restriction-meta-box.php:92
|
5539 |
msgid "Restriction Redirect URL"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
+
#: features/content-restriction/content-restriction-meta-box.php:98
|
5543 |
msgid "Enable Custom Redirect URL"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
+
#: features/content-restriction/content-restriction-meta-box.php:102
|
5547 |
msgid "Check if you wish to add a custom redirect URL for this %s."
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: features/content-restriction/content-restriction-meta-box.php:109
|
5551 |
msgid "Custom Redirect URL"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: features/content-restriction/content-restriction-meta-box.php:113
|
5555 |
msgid "Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly."
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: features/content-restriction/content-restriction-meta-box.php:129
|
5559 |
msgid "Check if you wish to add custom messages for this %s."
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: features/content-restriction/content-restriction-meta-box.php:136
|
5563 |
msgid "Messages for logged-out users"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: features/content-restriction/content-restriction-meta-box.php:139
|
5567 |
msgid "Messages for logged-in users"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: features/content-restriction/content-restriction.php:62
|
5571 |
msgid "Content Restriction Settings"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: features/content-restriction/content-restriction.php:84
|
5575 |
msgid "Enable Content Restriction"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#: features/content-restriction/content-restriction.php:90
|
5579 |
msgid "Activate Content Restriction"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: features/content-restriction/content-restriction.php:108
|
5583 |
msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: features/content-restriction/content-restriction.php:109
|
5587 |
msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: features/content-restriction/content-restriction.php:114, modules/custom-redirects/custom_redirects_admin.php:68, modules/custom-redirects/custom_redirects_admin.php:98, modules/custom-redirects/custom_redirects_admin.php:117, modules/custom-redirects/custom_redirects_admin.php:142
|
5591 |
msgid "Redirect URL"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: features/content-restriction/content-restriction.php:119
|
5595 |
msgid "Message for logged-out users"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
+
#: features/content-restriction/content-restriction.php:124
|
5599 |
msgid "Message for logged-in users"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: features/content-restriction/content-restriction.php:129
|
5603 |
msgid "Restricted Posts Preview"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: features/content-restriction/content-restriction.php:144
|
5607 |
msgid "Show the first %s words of the post's content"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: features/content-restriction/content-restriction.php:152
|
5611 |
msgid "Show the content before the \"more\" tag"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: features/content-restriction/content-restriction.php:156
|
5615 |
msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
|
5619 |
msgid "User Meta"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: features/email-confirmation/class-email-confirmation.php:92
|
5623 |
msgid "show"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
+
#: features/email-confirmation/class-email-confirmation.php:121
|
5627 |
msgid "delete this user from the _signups table?"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
+
#: features/email-confirmation/class-email-confirmation.php:122
|
5631 |
msgid "confirm this email yourself?"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: features/email-confirmation/class-email-confirmation.php:122, features/email-confirmation/class-email-confirmation.php:219
|
5635 |
msgid "Confirm Email"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: features/email-confirmation/class-email-confirmation.php:123
|
5639 |
msgid "resend the activation link?"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: features/email-confirmation/class-email-confirmation.php:123, features/email-confirmation/class-email-confirmation.php:220
|
5643 |
msgid "Resend Activation Email"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: features/email-confirmation/class-email-confirmation.php:250
|
5647 |
msgid "%s couldn't be deleted"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
+
#: features/email-confirmation/class-email-confirmation.php:254
|
5651 |
msgid "All users have been successfully deleted"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: features/email-confirmation/class-email-confirmation.php:264
|
5655 |
msgid "The selected users have been activated"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
+
#: features/email-confirmation/class-email-confirmation.php:275
|
5659 |
msgid "The selected users have had their activation emails resent"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
+
#: features/email-confirmation/class-email-confirmation.php:452, features/email-confirmation/email-confirmation.php:47
|
5663 |
msgid "Users with Unconfirmed Email Address"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: features/email-confirmation/email-confirmation.php:107
|
5667 |
msgid "There was an error performing that action!"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: features/email-confirmation/email-confirmation.php:115
|
5671 |
msgid "The selected user couldn't be deleted"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
+
#: features/email-confirmation/email-confirmation.php:126
|
5675 |
msgid "Email notification resent to user"
|
5676 |
msgstr ""
|
5677 |
|
5678 |
+
#: features/email-confirmation/email-confirmation.php:406
|
5679 |
msgid "[%1$s] Activate %2$s"
|
5680 |
msgstr ""
|
5681 |
|
5682 |
+
#: features/email-confirmation/email-confirmation.php:409
|
5683 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: features/email-confirmation/email-confirmation.php:453
|
5687 |
msgid "That username is already activated!"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: features/email-confirmation/email-confirmation.php:476
|
5691 |
msgid "There was an error while trying to activate the user"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: features/email-confirmation/email-confirmation.php:524, modules/email-customizer/admin-email-customizer.php:84
|
5695 |
msgid "A new subscriber has (been) registered!"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: features/email-confirmation/email-confirmation.php:527
|
5699 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: features/email-confirmation/email-confirmation.php:578
|
5703 |
msgid "[%1$s] Your new account information"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: features/email-confirmation/email-confirmation.php:582, features/email-confirmation/email-confirmation.php:592, modules/email-customizer/email-customizer.php:497, modules/email-customizer/email-customizer.php:504, modules/email-customizer/email-customizer.php:518
|
5707 |
msgid "Your selected password at signup"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: features/email-confirmation/email-confirmation.php:588
|
5711 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: features/email-confirmation/email-confirmation.php:590
|
5715 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: features/email-confirmation/email-confirmation.php:643
|
5719 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
+
#: features/login-widget/login-widget.php:10
|
5723 |
msgid "This login widget lets you add a login form in the sidebar."
|
5724 |
msgstr ""
|
5725 |
|
5726 |
+
#: features/login-widget/login-widget.php:15
|
5727 |
msgid "Profile Builder Login Widget"
|
5728 |
msgstr ""
|
5729 |
|
5730 |
+
#: features/login-widget/login-widget.php:63
|
5731 |
msgid "Title:"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
+
#: features/login-widget/login-widget.php:68
|
5735 |
msgid "After login redirect URL (optional):"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
+
#: features/login-widget/login-widget.php:73
|
5739 |
msgid "Register page URL (optional):"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
+
#: features/login-widget/login-widget.php:78
|
5743 |
msgid "Password Recovery page URL (optional):"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
+
#: features/roles-editor/roles-editor.php:182
|
5747 |
msgid "Capability"
|
5748 |
msgstr ""
|
5749 |
|
5750 |
+
#: features/roles-editor/roles-editor.php:183
|
5751 |
msgid "You can't delete this capability from your role."
|
5752 |
msgstr ""
|
5753 |
|
5754 |
+
#: features/roles-editor/roles-editor.php:246, features/roles-editor/roles-editor.php:247
|
5755 |
msgid "Add New Role"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
+
#: features/roles-editor/roles-editor.php:248
|
5759 |
msgid "Edit Role"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
+
#: features/roles-editor/roles-editor.php:249
|
5763 |
msgid "New Role"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
+
#: features/roles-editor/roles-editor.php:251
|
5767 |
msgid "View Role"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
+
#: features/roles-editor/roles-editor.php:252
|
5771 |
msgid "Search the Roles Editor"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
+
#: features/roles-editor/roles-editor.php:253
|
5775 |
msgid "No roles found"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: features/roles-editor/roles-editor.php:254
|
5779 |
msgid "No roles found in trash"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
+
#: features/roles-editor/roles-editor.php:296, features/roles-editor/roles-editor.php:299
|
5783 |
msgid "Role updated."
|
5784 |
msgstr ""
|
5785 |
|
5786 |
+
#: features/roles-editor/roles-editor.php:297
|
5787 |
msgid "Custom field updated."
|
5788 |
msgstr ""
|
5789 |
|
5790 |
+
#: features/roles-editor/roles-editor.php:298
|
5791 |
msgid "Custom field deleted."
|
5792 |
msgstr ""
|
5793 |
|
5794 |
+
#: features/roles-editor/roles-editor.php:301
|
5795 |
msgid "Role created."
|
5796 |
msgstr ""
|
5797 |
|
5798 |
+
#: features/roles-editor/roles-editor.php:302
|
5799 |
msgid "Role saved."
|
5800 |
msgstr ""
|
5801 |
|
5802 |
+
#: features/roles-editor/roles-editor.php:303
|
5803 |
msgid "Role submitted."
|
5804 |
msgstr ""
|
5805 |
|
5806 |
+
#: features/roles-editor/roles-editor.php:304
|
5807 |
msgid "Role scheduled for: <strong>%1$s</strong>"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
+
#: features/roles-editor/roles-editor.php:305
|
5811 |
msgid "Role draft updated."
|
5812 |
msgstr ""
|
5813 |
|
5814 |
+
#: features/roles-editor/roles-editor.php:364
|
5815 |
msgid "Role Name"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#: features/roles-editor/roles-editor.php:365, modules/user-listing/userlisting.php:160
|
5819 |
msgid "Role Slug"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: features/roles-editor/roles-editor.php:366
|
5823 |
msgid "Capabilities"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
+
#: features/roles-editor/roles-editor.php:367
|
5827 |
msgid "Users"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
+
#: features/roles-editor/roles-editor.php:877
|
5831 |
msgid "Clone"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
+
#: features/roles-editor/roles-editor.php:884
|
5835 |
msgid "You can't delete your role."
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: features/roles-editor/roles-editor.php:892
|
5839 |
msgid "Change Default"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: features/roles-editor/roles-editor.php:893
|
5843 |
msgid "You can't delete the default role. Change it first."
|
5844 |
msgstr ""
|
5845 |
|
5846 |
+
#: features/roles-editor/roles-editor.php:1116
|
5847 |
msgid "Edit User Roles"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
+
#: features/upgrades/upgrades-functions.php:91, features/upgrades/upgrades-functions.php:134
|
5851 |
msgid "The usernames cannot be changed."
|
5852 |
msgstr ""
|
5853 |
|
5854 |
+
#: modules/custom-redirects/custom_redirects_admin.php:49
|
5855 |
msgid "After Login"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
+
#: modules/custom-redirects/custom_redirects_admin.php:50
|
5859 |
msgid "After Logout"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: modules/custom-redirects/custom_redirects_admin.php:51
|
5863 |
msgid "After Registration"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: modules/custom-redirects/custom_redirects_admin.php:52
|
5867 |
msgid "After Edit Profile"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
+
#: modules/custom-redirects/custom_redirects_admin.php:53
|
5871 |
msgid "After Successful Email Confirmation"
|
5872 |
msgstr ""
|
5873 |
|
5874 |
+
#: modules/custom-redirects/custom_redirects_admin.php:54
|
5875 |
msgid "After Successful Password Reset"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
+
#: modules/custom-redirects/custom_redirects_admin.php:55
|
5879 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
+
#: modules/custom-redirects/custom_redirects_admin.php:59
|
5883 |
msgid "User ID"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
+
#: modules/custom-redirects/custom_redirects_admin.php:65
|
5887 |
msgid "User ID or Username"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
+
#: modules/custom-redirects/custom_redirects_admin.php:66
|
5891 |
msgid "User ID / Username"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
+
#: modules/custom-redirects/custom_redirects_admin.php:66
|
5895 |
msgid "Please select and enter the ID or username of your user."
|
5896 |
msgstr ""
|
5897 |
|
5898 |
+
#: modules/custom-redirects/custom_redirects_admin.php:67, modules/custom-redirects/custom_redirects_admin.php:97, modules/custom-redirects/custom_redirects_admin.php:116, modules/custom-redirects/custom_redirects_admin.php:135
|
5899 |
msgid "Redirect Type"
|
5900 |
msgstr ""
|
5901 |
|
5902 |
+
#: modules/custom-redirects/custom_redirects_admin.php:68, modules/custom-redirects/custom_redirects_admin.php:98, modules/custom-redirects/custom_redirects_admin.php:117, modules/custom-redirects/custom_redirects_admin.php:142
|
5903 |
msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: modules/custom-redirects/custom_redirects_admin.php:75, modules/custom-redirects/custom_redirects_admin.php:245
|
5907 |
msgid "Individual User Redirects"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
+
#: modules/custom-redirects/custom_redirects_admin.php:96, modules/email-customizer/email-customizer.php:31
|
5911 |
msgid "User Role"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
+
#: modules/custom-redirects/custom_redirects_admin.php:96
|
5915 |
msgid "Select a user role."
|
5916 |
msgstr ""
|
5917 |
|
5918 |
+
#: modules/custom-redirects/custom_redirects_admin.php:105, modules/custom-redirects/custom_redirects_admin.php:246
|
5919 |
msgid "User Role based Redirects"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
+
#: modules/custom-redirects/custom_redirects_admin.php:124, modules/custom-redirects/custom_redirects_admin.php:247
|
5923 |
msgid "Global Redirects"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
+
#: modules/custom-redirects/custom_redirects_admin.php:137
|
5927 |
msgid "Login ( wp-login.php )"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
+
#: modules/custom-redirects/custom_redirects_admin.php:138
|
5931 |
msgid "Register ( wp-login.php?action=register )"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: modules/custom-redirects/custom_redirects_admin.php:139
|
5935 |
msgid "Lost Password ( wp-login.php?action=lostpassword )"
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: modules/custom-redirects/custom_redirects_admin.php:140
|
5939 |
msgid "Author Archive ( http://sitename.com/author/admin )"
|
5940 |
msgstr ""
|
5941 |
|
5942 |
+
#: modules/custom-redirects/custom_redirects_admin.php:149
|
5943 |
msgid "Redirect Default WordPress Forms and Pages"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
+
#: modules/custom-redirects/custom_redirects_admin.php:161
|
5947 |
msgid "How does this work?"
|
5948 |
msgstr ""
|
5949 |
|
5950 |
+
#: modules/custom-redirects/custom_redirects_admin.php:183
|
5951 |
msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
+
#: modules/custom-redirects/custom_redirects_admin.php:197
|
5955 |
msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225
|
5959 |
msgid "<pre>Redirect</pre><pre>URL</pre>"
|
5960 |
msgstr ""
|
5961 |
|
5962 |
+
#: modules/custom-redirects/custom_redirects_admin.php:240
|
5963 |
msgid "These redirects happen after a successful action, like registration or after a successful login."
|
5964 |
msgstr ""
|
5965 |
|
5966 |
+
#: modules/custom-redirects/custom_redirects_admin.php:242
|
5967 |
msgid "Which redirect happens depends on the following priority:"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: modules/custom-redirects/custom_redirects_admin.php:244
|
5971 |
msgid "Multiple Registration and Edit Profile form settings Redirects"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
+
#: modules/custom-redirects/custom_redirects_admin.php:248
|
5975 |
msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
|
5976 |
msgstr ""
|
5977 |
|
5978 |
+
#: modules/custom-redirects/custom_redirects_admin.php:251
|
5979 |
msgid "Redirect Default WordPress forms and pages"
|
5980 |
msgstr ""
|
5981 |
|
5982 |
+
#: modules/custom-redirects/custom_redirects_admin.php:252
|
5983 |
msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
|
5984 |
msgstr ""
|
5985 |
|
5986 |
+
#: modules/custom-redirects/custom_redirects_admin.php:254
|
5987 |
msgid "Available tags for dynamic URLs"
|
5988 |
msgstr ""
|
5989 |
|
5990 |
+
#: modules/custom-redirects/custom_redirects_admin.php:255
|
5991 |
msgid "You use the following tags in your URLs to redirect users to various pages."
|
5992 |
msgstr ""
|
5993 |
|
5994 |
+
#: modules/custom-redirects/custom_redirects_admin.php:257
|
5995 |
msgid "generates a url of the current website homepage."
|
5996 |
msgstr ""
|
5997 |
|
5998 |
+
#: modules/custom-redirects/custom_redirects_admin.php:258
|
5999 |
msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
+
#: modules/custom-redirects/custom_redirects_admin.php:259
|
6003 |
msgid "the ID of the user"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
+
#: modules/custom-redirects/custom_redirects_admin.php:260
|
6007 |
msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: modules/custom-redirects/custom_redirects_admin.php:261
|
6011 |
msgid "the URL of the previously visited page"
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: modules/custom-redirects/custom_redirects_admin.php:344, modules/custom-redirects/custom_redirects_admin.php:350, modules/custom-redirects/custom_redirects_admin.php:356
|
6015 |
msgid "You can't add duplicate redirects!"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: modules/email-customizer/admin-email-customizer.php:11
|
6019 |
msgid "Admin Email Customizer"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: modules/email-customizer/admin-email-customizer.php:12
|
6023 |
msgid "Admin Email Customizer Settings"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: modules/email-customizer/admin-email-customizer.php:53
|
6027 |
msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
|
6028 |
msgstr ""
|
6029 |
|
6030 |
+
#: modules/email-customizer/admin-email-customizer.php:53, modules/email-customizer/user-email-customizer.php:53
|
6031 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: modules/email-customizer/admin-email-customizer.php:56, modules/email-customizer/user-email-customizer.php:56
|
6035 |
msgid "From (name)"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
+
#: modules/email-customizer/admin-email-customizer.php:64, modules/email-customizer/user-email-customizer.php:64
|
6039 |
msgid "From (reply-to email)"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: modules/email-customizer/admin-email-customizer.php:69, modules/email-customizer/user-email-customizer.php:69
|
6043 |
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: modules/email-customizer/admin-email-customizer.php:72, modules/email-customizer/user-email-customizer.php:72
|
6047 |
msgid "Common Settings"
|
6048 |
msgstr ""
|
6049 |
|
6050 |
+
#: modules/email-customizer/admin-email-customizer.php:75
|
6051 |
msgid ""
|
6052 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
6053 |
"<p>Username:{{username}}</p>\n"
|
6055 |
""
|
6056 |
msgstr ""
|
6057 |
|
6058 |
+
#: modules/email-customizer/admin-email-customizer.php:80, modules/email-customizer/admin-email-customizer.php:111, modules/email-customizer/admin-email-customizer.php:142, modules/email-customizer/user-email-customizer.php:83, modules/email-customizer/user-email-customizer.php:114, modules/email-customizer/user-email-customizer.php:146, modules/email-customizer/user-email-customizer.php:177, modules/email-customizer/user-email-customizer.php:209, modules/email-customizer/user-email-customizer.php:241, modules/email-customizer/user-email-customizer.php:273, modules/email-customizer/user-email-customizer.php:307
|
6059 |
msgid "Email Subject"
|
6060 |
msgstr ""
|
6061 |
|
6062 |
+
#: modules/email-customizer/admin-email-customizer.php:87, modules/email-customizer/admin-email-customizer.php:118, modules/email-customizer/admin-email-customizer.php:149, modules/email-customizer/user-email-customizer.php:90, modules/email-customizer/user-email-customizer.php:121, modules/email-customizer/user-email-customizer.php:153, modules/email-customizer/user-email-customizer.php:184, modules/email-customizer/user-email-customizer.php:216, modules/email-customizer/user-email-customizer.php:248, modules/email-customizer/user-email-customizer.php:280, modules/email-customizer/user-email-customizer.php:314
|
6063 |
msgid "Enable email"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
+
#: modules/email-customizer/admin-email-customizer.php:102
|
6067 |
msgid "Default Registration & Registration with Email Confirmation"
|
6068 |
msgstr ""
|
6069 |
|
6070 |
+
#: modules/email-customizer/admin-email-customizer.php:105
|
6071 |
msgid ""
|
6072 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
6073 |
"<p>Username:{{username}}</p>\n"
|
6076 |
"so please remember that you need to approve this user before he/she can log in!</p>"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
+
#: modules/email-customizer/admin-email-customizer.php:133, modules/email-customizer/user-email-customizer.php:168
|
6080 |
msgid "Registration with Admin Approval"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
+
#: modules/email-customizer/admin-email-customizer.php:136
|
6084 |
msgid ""
|
6085 |
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
6086 |
"<p>His/her new password is: {{password}}</p>\n"
|
6087 |
""
|
6088 |
msgstr ""
|
6089 |
|
6090 |
+
#: modules/email-customizer/admin-email-customizer.php:164
|
6091 |
msgid "Admin Notification for User Password Reset"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
+
#: modules/email-customizer/email-customizer.php:7
|
6095 |
msgid "Available Tags"
|
6096 |
msgstr ""
|
6097 |
|
6098 |
+
#: modules/email-customizer/email-customizer.php:11, modules/user-listing/userlisting.php:212
|
6099 |
msgid "User Fields Tags"
|
6100 |
msgstr ""
|
6101 |
|
6102 |
+
#: modules/email-customizer/email-customizer.php:21
|
6103 |
msgid "Site Url"
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: modules/email-customizer/email-customizer.php:22
|
6107 |
msgid "Site Name"
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: modules/email-customizer/email-customizer.php:25, modules/user-listing/userlisting.php:169
|
6111 |
msgid "User Id"
|
6112 |
msgstr ""
|
6113 |
|
6114 |
+
#: modules/email-customizer/email-customizer.php:32
|
6115 |
msgid "User Role Label"
|
6116 |
msgstr ""
|
6117 |
|
6118 |
+
#: modules/email-customizer/email-customizer.php:34
|
6119 |
msgid "Reply To"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
+
#: modules/email-customizer/email-customizer.php:37, modules/user-listing/userlisting.php:127
|
6123 |
msgid "Blog URL"
|
6124 |
msgstr ""
|
6125 |
|
6126 |
+
#: modules/email-customizer/email-customizer.php:41
|
6127 |
msgid "Activation Key"
|
6128 |
msgstr ""
|
6129 |
|
6130 |
+
#: modules/email-customizer/email-customizer.php:42
|
6131 |
msgid "Activation Url"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
+
#: modules/email-customizer/email-customizer.php:43
|
6135 |
msgid "Activation Link"
|
6136 |
msgstr ""
|
6137 |
|
6138 |
+
#: modules/email-customizer/email-customizer.php:47
|
6139 |
msgid "Reset Key"
|
6140 |
msgstr ""
|
6141 |
|
6142 |
+
#: modules/email-customizer/email-customizer.php:48
|
6143 |
msgid "Reset Url"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: modules/email-customizer/email-customizer.php:49
|
6147 |
msgid "Reset Link"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
+
#: modules/email-customizer/email-customizer.php:53
|
6151 |
msgid "Approve User Url"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
+
#: modules/email-customizer/email-customizer.php:54
|
6155 |
msgid "Approve User Link"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: modules/email-customizer/email-customizer.php:489
|
6159 |
msgid "The users selected password at signup"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: modules/email-customizer/user-email-customizer.php:11
|
6163 |
msgid "User Email Customizer"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
+
#: modules/email-customizer/user-email-customizer.php:12
|
6167 |
msgid "User Email Customizer Settings"
|
6168 |
msgstr ""
|
6169 |
|
6170 |
+
#: modules/email-customizer/user-email-customizer.php:53
|
6171 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
6172 |
msgstr ""
|
6173 |
|
6174 |
+
#: modules/email-customizer/user-email-customizer.php:79
|
6175 |
msgid ""
|
6176 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6177 |
+
"<p>Your username is: {{username}} and password:{{password}}</p>\n"
|
6178 |
""
|
6179 |
msgstr ""
|
6180 |
|
6181 |
+
#: modules/email-customizer/user-email-customizer.php:110
|
6182 |
msgid ""
|
6183 |
"<p>To activate your user, please click the following link:<br/>\n"
|
6184 |
"{{{activation_link}}}</p>\n"
|
6186 |
""
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: modules/email-customizer/user-email-customizer.php:118
|
6190 |
msgid "[{{site_name}}] Activate {{username}}"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: modules/email-customizer/user-email-customizer.php:136
|
6194 |
msgid "Registration with Email Confirmation"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
+
#: modules/email-customizer/user-email-customizer.php:142
|
6198 |
msgid ""
|
6199 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6200 |
+
"<p>Your username is: {{username}} and password:{{password}}</p>\n"
|
6201 |
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
6202 |
""
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: modules/email-customizer/user-email-customizer.php:150
|
6206 |
msgid "A new account has been created for you on {{site_name}}"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
+
#: modules/email-customizer/user-email-customizer.php:173
|
6210 |
msgid ""
|
6211 |
"<h3>Good News!</h3>\n"
|
6212 |
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
6213 |
""
|
6214 |
msgstr ""
|
6215 |
|
6216 |
+
#: modules/email-customizer/user-email-customizer.php:181
|
6217 |
msgid "Your account on {{site_name}} has been approved!"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
+
#: modules/email-customizer/user-email-customizer.php:199
|
6221 |
msgid "User Approval Notification"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
+
#: modules/email-customizer/user-email-customizer.php:204
|
6225 |
msgid ""
|
6226 |
"<h3>Hello,</h3>\n"
|
6227 |
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
6228 |
""
|
6229 |
msgstr ""
|
6230 |
|
6231 |
+
#: modules/email-customizer/user-email-customizer.php:213
|
6232 |
msgid "Your account on {{site_name}} has been unapproved!"
|
6233 |
msgstr ""
|
6234 |
|
6235 |
+
#: modules/email-customizer/user-email-customizer.php:231
|
6236 |
msgid "Unapproved User Notification"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
+
#: modules/email-customizer/user-email-customizer.php:237
|
6240 |
msgid ""
|
6241 |
"<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
|
6242 |
"Username: {{username}}</p>\n"
|
6246 |
""
|
6247 |
msgstr ""
|
6248 |
|
6249 |
+
#: modules/email-customizer/user-email-customizer.php:245
|
6250 |
msgid "[{{site_name}}] Password Reset"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
+
#: modules/email-customizer/user-email-customizer.php:263
|
6254 |
msgid "Password Reset Email"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: modules/email-customizer/user-email-customizer.php:269
|
6258 |
msgid ""
|
6259 |
"<p>You have successfully reset your password.</p>\n"
|
6260 |
""
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: modules/email-customizer/user-email-customizer.php:277
|
6264 |
msgid "[{{site_name}}] Password Reset Successfully"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
+
#: modules/email-customizer/user-email-customizer.php:295
|
6268 |
msgid "Password Reset Success Email"
|
6269 |
msgstr ""
|
6270 |
|
6271 |
+
#: modules/email-customizer/user-email-customizer.php:303
|
6272 |
msgid ""
|
6273 |
"<h3>Hi {{username}},</h3>\n"
|
6274 |
"<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
|
6279 |
"<a href=\"{{site_url}}\">{{site_url}}</a></p>"
|
6280 |
msgstr ""
|
6281 |
|
6282 |
+
#: modules/email-customizer/user-email-customizer.php:311
|
6283 |
msgid "[{{site_name}}] Notice of Email Change"
|
6284 |
msgstr ""
|
6285 |
|
6286 |
+
#: modules/email-customizer/user-email-customizer.php:329
|
6287 |
msgid "Changed Email Address Notification"
|
6288 |
msgstr ""
|
6289 |
|
6290 |
+
#: modules/multiple-forms/edit-profile-forms.php:11, modules/multiple-forms/edit-profile-forms.php:12
|
6291 |
msgid "Edit-profile Form"
|
6292 |
msgstr ""
|
6293 |
|
6294 |
+
#: modules/multiple-forms/edit-profile-forms.php:13, modules/multiple-forms/register-forms.php:13, modules/user-listing/userlisting.php:13
|
6295 |
msgid "Add New"
|
6296 |
msgstr ""
|
6297 |
|
6298 |
+
#: modules/multiple-forms/edit-profile-forms.php:14
|
6299 |
msgid "Add new Edit-profile Form"
|
6300 |
msgstr ""
|
6301 |
|
6302 |
+
#: modules/multiple-forms/edit-profile-forms.php:15
|
6303 |
msgid "Edit the Edit-profile Forms"
|
6304 |
msgstr ""
|
6305 |
|
6306 |
+
#: modules/multiple-forms/edit-profile-forms.php:16
|
6307 |
msgid "New Edit-profile Form"
|
6308 |
msgstr ""
|
6309 |
|
6310 |
+
#: modules/multiple-forms/edit-profile-forms.php:17, modules/multiple-forms/edit-profile-forms.php:23
|
6311 |
msgid "Edit-profile Forms"
|
6312 |
msgstr ""
|
6313 |
|
6314 |
+
#: modules/multiple-forms/edit-profile-forms.php:18
|
6315 |
msgid "View the Edit-profile Form"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
+
#: modules/multiple-forms/edit-profile-forms.php:19
|
6319 |
msgid "Search the Edit-profile Forms"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
+
#: modules/multiple-forms/edit-profile-forms.php:20
|
6323 |
msgid "No Edit-profile Form found"
|
6324 |
msgstr ""
|
6325 |
|
6326 |
+
#: modules/multiple-forms/edit-profile-forms.php:21
|
6327 |
msgid "No Edit-profile Forms found in trash"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2212
|
6331 |
msgid "Shortcode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2233
|
6335 |
msgid "(no title)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2253
|
6339 |
msgid "The shortcode will be available after you publish this form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2255
|
6343 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2259
|
6347 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2292
|
6351 |
msgid "Form Shortcode"
|
6352 |
msgstr ""
|
6353 |
|
6354 |
+
#: modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230
|
6355 |
msgid "Whether to redirect the user to a specific page or not"
|
6356 |
msgstr ""
|
6357 |
|
6358 |
+
#: modules/multiple-forms/edit-profile-forms.php:207, modules/multiple-forms/register-forms.php:231
|
6359 |
msgid "Display Messages"
|
6360 |
msgstr ""
|
6361 |
|
6362 |
+
#: modules/multiple-forms/edit-profile-forms.php:207, modules/multiple-forms/register-forms.php:231
|
6363 |
msgid "Allowed time to display any success messages (in seconds)"
|
6364 |
msgstr ""
|
6365 |
|
6366 |
+
#: modules/multiple-forms/edit-profile-forms.php:208, modules/multiple-forms/register-forms.php:232
|
6367 |
msgid "URL"
|
6368 |
msgstr ""
|
6369 |
|
6370 |
+
#: modules/multiple-forms/edit-profile-forms.php:208
|
6371 |
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
6372 |
msgstr ""
|
6373 |
|
6374 |
+
#: modules/multiple-forms/edit-profile-forms.php:215
|
6375 |
msgid "After Profile Update..."
|
6376 |
msgstr ""
|
6377 |
|
6378 |
+
#: modules/multiple-forms/edit-profile-forms.php:241, modules/multiple-forms/register-forms.php:262
|
6379 |
msgid "Add New Field to the List"
|
6380 |
msgstr ""
|
6381 |
|
6382 |
+
#: modules/multiple-forms/edit-profile-forms.php:245, modules/multiple-forms/register-forms.php:266
|
6383 |
msgid "Choose one of the supported fields you manage <a href=\"%s\">here</a>"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
+
#: modules/multiple-forms/edit-profile-forms.php:274
|
6387 |
msgid "This form is empty."
|
6388 |
msgstr ""
|
6389 |
|
6390 |
+
#: modules/multiple-forms/multiple-forms.php:222
|
6391 |
msgid "You need to specify the title of the form before creating it"
|
6392 |
msgstr ""
|
6393 |
|
6394 |
+
#: modules/multiple-forms/multiple-forms.php:406
|
6395 |
msgid "<pre>Title (Type)</pre>"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
+
#: modules/multiple-forms/multiple-forms.php:406
|
6399 |
msgid "Delete all items"
|
6400 |
msgstr ""
|
6401 |
|
6402 |
+
#: modules/multiple-forms/register-forms.php:14
|
6403 |
msgid "Add new Registration Form"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
+
#: modules/multiple-forms/register-forms.php:15
|
6407 |
msgid "Edit the Registration Forms"
|
6408 |
msgstr ""
|
6409 |
|
6410 |
+
#: modules/multiple-forms/register-forms.php:16
|
6411 |
msgid "New Registration Form"
|
6412 |
msgstr ""
|
6413 |
|
6414 |
+
#: modules/multiple-forms/register-forms.php:17, modules/multiple-forms/register-forms.php:23
|
6415 |
msgid "Registration Forms"
|
6416 |
msgstr ""
|
6417 |
|
6418 |
+
#: modules/multiple-forms/register-forms.php:18
|
6419 |
msgid "View the Registration Form"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
+
#: modules/multiple-forms/register-forms.php:19
|
6423 |
msgid "Search the Registration Forms"
|
6424 |
msgstr ""
|
6425 |
|
6426 |
+
#: modules/multiple-forms/register-forms.php:20
|
6427 |
msgid "No Registration Form found"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
+
#: modules/multiple-forms/register-forms.php:21
|
6431 |
msgid "No Registration Forms found in trash"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#: modules/multiple-forms/register-forms.php:219
|
6435 |
msgid "Default Role"
|
6436 |
msgstr ""
|
6437 |
|
6438 |
+
#: modules/multiple-forms/register-forms.php:228
|
6439 |
msgid "Set Role"
|
6440 |
msgstr ""
|
6441 |
|
6442 |
+
#: modules/multiple-forms/register-forms.php:228
|
6443 |
msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
|
6444 |
msgstr ""
|
6445 |
|
6446 |
+
#: modules/multiple-forms/register-forms.php:229
|
6447 |
msgid "Automatically Log In"
|
6448 |
msgstr ""
|
6449 |
|
6450 |
+
#: modules/multiple-forms/register-forms.php:229
|
6451 |
msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
|
6452 |
msgstr ""
|
6453 |
|
6454 |
+
#: modules/multiple-forms/register-forms.php:232
|
6455 |
msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
+
#: modules/multiple-forms/register-forms.php:238
|
6459 |
msgid "After Registration..."
|
6460 |
msgstr ""
|
6461 |
|
6462 |
+
#: modules/repeater-field/repeater-field.php:287
|
6463 |
msgid "Are you sure you want to delete this?"
|
6464 |
msgstr ""
|
6465 |
|
6466 |
+
#: modules/user-listing/one-map-listing.php:432
|
6467 |
msgid "Please wait while the pins are loading..."
|
6468 |
msgstr ""
|
6469 |
|
6470 |
+
#: modules/user-listing/one-map-listing.php:547
|
6471 |
msgid "The API Key was not provided."
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: modules/user-listing/userlisting.php:14
|
6475 |
msgid "Add new User Listing"
|
6476 |
msgstr ""
|
6477 |
|
6478 |
+
#: modules/user-listing/userlisting.php:15
|
6479 |
msgid "Edit the User Listing"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
+
#: modules/user-listing/userlisting.php:16
|
6483 |
msgid "New User Listing"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
+
#: modules/user-listing/userlisting.php:18
|
6487 |
msgid "View the User Listing"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
+
#: modules/user-listing/userlisting.php:19
|
6491 |
msgid "Search the User Listing"
|
6492 |
msgstr ""
|
6493 |
|
6494 |
+
#: modules/user-listing/userlisting.php:20
|
6495 |
msgid "No User Listing found"
|
6496 |
msgstr ""
|
6497 |
|
6498 |
+
#: modules/user-listing/userlisting.php:21
|
6499 |
msgid "No User Listing found in trash"
|
6500 |
msgstr ""
|
6501 |
|
6502 |
+
#: modules/user-listing/userlisting.php:114
|
6503 |
msgid "Display name as"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
+
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2320
|
6507 |
msgid "Registration Date"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2325
|
6511 |
msgid "Number of Posts"
|
6512 |
msgstr ""
|
6513 |
|
6514 |
+
#: modules/user-listing/userlisting.php:166
|
6515 |
msgid "More Info"
|
6516 |
msgstr ""
|
6517 |
|
6518 |
+
#: modules/user-listing/userlisting.php:167
|
6519 |
msgid "More Info Url"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
+
#: modules/user-listing/userlisting.php:168
|
6523 |
msgid "Avatar or Gravatar"
|
6524 |
msgstr ""
|
6525 |
|
6526 |
+
#: modules/user-listing/userlisting.php:170
|
6527 |
msgid "User Nicename"
|
6528 |
msgstr ""
|
6529 |
|
6530 |
+
#: modules/user-listing/userlisting.php:218
|
6531 |
msgid "Sort Tags"
|
6532 |
msgstr ""
|
6533 |
|
6534 |
+
#: modules/user-listing/userlisting.php:222, modules/user-listing/userlisting.php:261
|
6535 |
msgid "Extra Functions"
|
6536 |
msgstr ""
|
6537 |
|
6538 |
+
#: modules/user-listing/userlisting.php:225
|
6539 |
msgid "Pagination"
|
6540 |
msgstr ""
|
6541 |
|
6542 |
+
#: modules/user-listing/userlisting.php:226
|
6543 |
msgid "Search all Fields"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
+
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2407
|
6547 |
msgid "Faceted Menus"
|
6548 |
msgstr ""
|
6549 |
|
6550 |
+
#: modules/user-listing/userlisting.php:228
|
6551 |
msgid "User Count"
|
6552 |
msgstr ""
|
6553 |
|
6554 |
+
#: modules/user-listing/userlisting.php:235
|
6555 |
msgid "Map of listed users"
|
6556 |
msgstr ""
|
6557 |
|
6558 |
+
#: modules/user-listing/userlisting.php:263
|
6559 |
msgid "Go Back Link"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: modules/user-listing/userlisting.php:281
|
6563 |
msgid "All-userlisting Template"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
+
#: modules/user-listing/userlisting.php:284
|
6567 |
msgid "Single-userlisting Template"
|
6568 |
msgstr ""
|
6569 |
|
6570 |
+
#: modules/user-listing/userlisting.php:310
|
6571 |
msgid "Avatar"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
+
#: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:819
|
6575 |
msgid "Posts"
|
6576 |
msgstr ""
|
6577 |
|
6578 |
+
#: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:801
|
6579 |
msgid "Sign-up Date"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
+
#: modules/user-listing/userlisting.php:316
|
6583 |
msgid "More"
|
6584 |
msgstr ""
|
6585 |
|
6586 |
+
#: modules/user-listing/userlisting.php:410
|
6587 |
msgid "You do not have permission to view this user list."
|
6588 |
msgstr ""
|
6589 |
|
6590 |
+
#: modules/user-listing/userlisting.php:423
|
6591 |
msgid "You do not have the required user role to view this user list."
|
6592 |
msgstr ""
|
6593 |
|
6594 |
+
#: modules/user-listing/userlisting.php:447
|
6595 |
msgid "User not found"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
+
#: modules/user-listing/userlisting.php:795
|
6599 |
msgid "First/Lastname"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:2323
|
6603 |
msgid "Display Name"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2330
|
6607 |
msgid "Aim"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2331
|
6611 |
msgid "Yim"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2332
|
6615 |
msgid "Jabber"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: modules/user-listing/userlisting.php:1106, modules/user-listing/userlisting.php:1575, modules/user-listing/userlisting.php:2047, modules/user-listing/userlisting.php:2527
|
6619 |
msgid "Search Users by All Fields"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: modules/user-listing/userlisting.php:1375
|
6623 |
msgid "Click here to see more information about this user"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: modules/user-listing/userlisting.php:1375, modules/user-listing/userlisting.php:1375
|
6627 |
msgid "More..."
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: modules/user-listing/userlisting.php:1378
|
6631 |
msgid "Click here to see more information about this user."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: modules/user-listing/userlisting.php:1405
|
6635 |
msgid "View Map"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: modules/user-listing/userlisting.php:1529, modules/user-listing/userlisting.php:1532
|
6639 |
msgid "Click here to go back"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: modules/user-listing/userlisting.php:1529, modules/user-listing/userlisting.php:1529
|
6643 |
msgid "Back"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: modules/user-listing/userlisting.php:1562
|
6647 |
msgid "«« First"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: modules/user-listing/userlisting.php:1563
|
6651 |
msgid "« Prev"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: modules/user-listing/userlisting.php:1564
|
6655 |
msgid "Next » "
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: modules/user-listing/userlisting.php:1565
|
6659 |
msgid "Last »»"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: modules/user-listing/userlisting.php:1594
|
6663 |
msgid "You don't have any pagination settings on this userlisting!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: modules/user-listing/userlisting.php:1643
|
6667 |
msgid "Show All"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
+
#: modules/user-listing/userlisting.php:1717
|
6671 |
msgid "Choose..."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
+
#: modules/user-listing/userlisting.php:1806
|
6675 |
msgid "No options available"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
+
#: modules/user-listing/userlisting.php:1955
|
6679 |
msgid "Remove All Filters"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
+
#: modules/user-listing/userlisting.php:2064
|
6683 |
msgid "Search"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: modules/user-listing/userlisting.php:2065
|
6687 |
msgid "Clear Results"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: modules/user-listing/userlisting.php:2262, modules/user-listing/userlisting.php:2266
|
6691 |
msgid "Extra shortcode parameters"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: modules/user-listing/userlisting.php:2264
|
6695 |
msgid "View all extra shortcode parameters"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: modules/user-listing/userlisting.php:2269
|
6699 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
+
#: modules/user-listing/userlisting.php:2270
|
6703 |
msgid "Example:"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
+
#: modules/user-listing/userlisting.php:2272
|
6707 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
+
#: modules/user-listing/userlisting.php:2278
|
6711 |
msgid "displays only the users that you specified the user_id for"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: modules/user-listing/userlisting.php:2284
|
6715 |
msgid "displays all users except the ones you specified the user_id for"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: modules/user-listing/userlisting.php:2347
|
6719 |
msgid "Random (very slow on large databases > 10K user)"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: modules/user-listing/userlisting.php:2350
|
6723 |
msgid "Ascending"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
+
#: modules/user-listing/userlisting.php:2351
|
6727 |
msgid "Descending"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
+
#: modules/user-listing/userlisting.php:2359
|
6731 |
msgid "Roles to Display"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
+
#: modules/user-listing/userlisting.php:2359
|
6735 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6736 |
msgstr ""
|
6737 |
|
6738 |
+
#: modules/user-listing/userlisting.php:2360
|
6739 |
msgid "Number of Users/Page"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
+
#: modules/user-listing/userlisting.php:2360
|
6743 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
+
#: modules/user-listing/userlisting.php:2361
|
6747 |
msgid "Default Sorting Criteria"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
+
#: modules/user-listing/userlisting.php:2361
|
6751 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
+
#: modules/user-listing/userlisting.php:2362
|
6755 |
msgid "Default Sorting Order"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
+
#: modules/user-listing/userlisting.php:2362
|
6759 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
+
#: modules/user-listing/userlisting.php:2363
|
6763 |
msgid "Avatar Size (All-userlisting)"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: modules/user-listing/userlisting.php:2363
|
6767 |
msgid "Set the avatar size on the all-userlisting only"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#: modules/user-listing/userlisting.php:2364
|
6771 |
msgid "Avatar Size (Single-userlisting)"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
+
#: modules/user-listing/userlisting.php:2364
|
6775 |
msgid "Set the avatar size on the single-userlisting only"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
+
#: modules/user-listing/userlisting.php:2365
|
6779 |
msgid "Visible only to logged in users?"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
+
#: modules/user-listing/userlisting.php:2365
|
6783 |
msgid "The userlisting will only be visible only to the logged in users"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
+
#: modules/user-listing/userlisting.php:2366
|
6787 |
msgid "Visible to following Roles"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
+
#: modules/user-listing/userlisting.php:2366
|
6791 |
msgid "The userlisting will only be visible to the following roles"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
+
#: modules/user-listing/userlisting.php:2372
|
6795 |
msgid "Userlisting Settings"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
+
#: modules/user-listing/userlisting.php:2397
|
6799 |
msgid "Label"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
+
#: modules/user-listing/userlisting.php:2397
|
6803 |
msgid "Choose the facet name that appears on the frontend"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
+
#: modules/user-listing/userlisting.php:2398
|
6807 |
msgid "Facet Type"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
+
#: modules/user-listing/userlisting.php:2398
|
6811 |
msgid "Choose the facet menu type"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
+
#: modules/user-listing/userlisting.php:2399
|
6815 |
msgid "Facet Meta"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
+
#: modules/user-listing/userlisting.php:2399
|
6819 |
msgid "Choose the meta field for the facet menu"
|
6820 |
msgstr ""
|
6821 |
|
6822 |
+
#: modules/user-listing/userlisting.php:2400
|
6823 |
msgid "Behaviour"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
+
#: modules/user-listing/userlisting.php:2400
|
6827 |
msgid "Narrow the results"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: modules/user-listing/userlisting.php:2400
|
6831 |
msgid "Expand the results"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
+
#: modules/user-listing/userlisting.php:2400
|
6835 |
msgid "Choose how multiple selections affect the results"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
+
#: modules/user-listing/userlisting.php:2401
|
6839 |
msgid "Visible choices"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
+
#: modules/user-listing/userlisting.php:2401
|
6843 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
+
#: modules/user-listing/userlisting.php:2426
|
6847 |
msgid "Search Fields"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: modules/user-listing/userlisting.php:2426
|
6851 |
msgid "Choose the fields in which the Search Field will look in"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
+
#: modules/user-listing/userlisting.php:2431
|
6855 |
msgid "Search Settings"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
+
#: modules/user-listing/userlisting.php:2503
|
6859 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
+
#: modules/user-listing/userlisting.php:2503
|
6863 |
msgid "You can find it in the Profile Builder menu."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: modules/user-listing/userlisting.php:2666
|
6867 |
msgid "No results found!"
|
6868 |
msgstr ""
|
6869 |
|
6870 |
+
#: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:541, assets/lib/wck-api/wordpress-creation-kit.php:545
|
6871 |
msgid "Delete this item"
|
6872 |
msgstr ""
|
6873 |
|
6879 |
msgid "Syncronize WCK Translation"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
+
#: front-end/default-fields/blog-details/blog-details.php:63
|
6883 |
msgid "Yes, I'd like to create a new site"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
+
#: front-end/default-fields/blog-details/blog-details.php:70
|
6887 |
msgid "Your site url will look like this:<br>"
|
6888 |
msgstr ""
|
6889 |
|
6890 |
+
#: front-end/default-fields/blog-details/blog-details.php:93
|
6891 |
msgid "Site URL slug"
|
6892 |
msgstr ""
|
6893 |
|
6894 |
+
#: front-end/default-fields/blog-details/blog-details.php:116
|
6895 |
msgid "Site Title"
|
6896 |
msgstr ""
|
6897 |
|
6898 |
+
#: front-end/default-fields/blog-details/blog-details.php:138
|
6899 |
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
6900 |
msgstr ""
|
6901 |
|
6902 |
+
#: front-end/default-fields/email/email.php:51, front-end/extra-fields/input-email/input-email.php:70
|
6903 |
msgid "You must enter a valid email address."
|
6904 |
msgstr ""
|
6905 |
|
6906 |
+
#: front-end/default-fields/email/email.php:60, front-end/default-fields/email/email.php:67
|
6907 |
msgid "This email is already reserved to be used soon."
|
6908 |
msgstr ""
|
6909 |
|
6910 |
+
#: front-end/default-fields/email/email.php:60, front-end/default-fields/email/email.php:67, front-end/default-fields/email/email.php:77, front-end/default-fields/email/email.php:95, front-end/default-fields/username/username.php:49, front-end/default-fields/username/username.php:65
|
6911 |
msgid "Please try a different one!"
|
6912 |
msgstr ""
|
6913 |
|
6914 |
+
#: front-end/default-fields/email/email.php:77, front-end/default-fields/email/email.php:95
|
6915 |
msgid "This email is already in use."
|
6916 |
msgstr ""
|
6917 |
|
6918 |
+
#: front-end/default-fields/gdpr-delete/gdpr-delete.php:31
|
6919 |
msgid "Type %s to confirm deleting your account and all data associated with it:"
|
6920 |
msgstr ""
|
6921 |
|
6922 |
+
#: front-end/default-fields/gdpr-delete/gdpr-delete.php:32
|
6923 |
msgid "You did not type %s. Try again!"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
+
#: front-end/default-fields/password-repeat/password-repeat.php:37, front-end/default-fields/password-repeat/password-repeat.php:41
|
6927 |
msgid "The passwords do not match"
|
6928 |
msgstr ""
|
6929 |
|
6930 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:53
|
6931 |
msgid "To use reCAPTCHA you must get an API key from"
|
6932 |
msgstr ""
|
6933 |
|
6934 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:178
|
6935 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:243
|
6939 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:525
|
6943 |
msgid "Click the BACK button on your browser, and try again."
|
6944 |
msgstr ""
|
6945 |
|
6946 |
+
#: front-end/default-fields/user-role/user-role.php:92, front-end/default-fields/user-role/user-role.php:105
|
6947 |
msgid "Only administrators can see this field on edit profile forms."
|
6948 |
msgstr ""
|
6949 |
|
6950 |
+
#: front-end/default-fields/user-role/user-role.php:101
|
6951 |
msgid "As an administrator you cannot change your role."
|
6952 |
msgstr ""
|
6953 |
|
6954 |
+
#: front-end/default-fields/user-role/user-role.php:137, front-end/default-fields/user-role/user-role.php:161, front-end/default-fields/user-role/user-role.php:166
|
6955 |
msgid "You cannot register this user role"
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: front-end/default-fields/username/username.php:49
|
6959 |
msgid "This username already exists."
|
6960 |
msgstr ""
|
6961 |
|
6962 |
+
#: front-end/default-fields/username/username.php:52, front-end/default-fields/username/username.php:60
|
6963 |
msgid "This username is invalid because it uses illegal characters."
|
6964 |
msgstr ""
|
6965 |
|
6966 |
+
#: front-end/default-fields/username/username.php:52, front-end/default-fields/username/username.php:60
|
6967 |
msgid "Please enter a valid username."
|
6968 |
msgstr ""
|
6969 |
|
6970 |
+
#: front-end/default-fields/username/username.php:65
|
6971 |
msgid "This username is already reserved to be used soon."
|
6972 |
msgstr ""
|
6973 |
|
6974 |
+
#: front-end/extra-fields/input-url/input-url.php:70
|
6975 |
msgid "You must enter a valid URL."
|
6976 |
msgstr ""
|
6977 |
|
6978 |
+
#: front-end/extra-fields/map/map.php:46, front-end/extra-fields/map/map.php:69
|
6979 |
msgid "Please add the Google Maps API key for this field."
|
6980 |
msgstr ""
|
6981 |
|
6982 |
+
#: front-end/extra-fields/map/map.php:134
|
6983 |
msgid "Something went wrong. Please try again."
|
6984 |
msgstr ""
|
6985 |
|
6986 |
+
#: front-end/extra-fields/number/number.php:69
|
6987 |
msgid "Please enter numbers only"
|
6988 |
msgstr ""
|
6989 |
|
6990 |
+
#: front-end/extra-fields/number/number.php:73
|
6991 |
msgid "Value must be a multiplier of %1$s"
|
6992 |
msgstr ""
|
6993 |
|
6994 |
+
#: front-end/extra-fields/number/number.php:77
|
6995 |
msgid "Value must be greater than or equal to %1$s"
|
6996 |
msgstr ""
|
6997 |
|
6998 |
+
#: front-end/extra-fields/number/number.php:81
|
6999 |
msgid "Value must be less than or equal to %1$s"
|
7000 |
msgstr ""
|
7001 |
|
7002 |
+
#: front-end/extra-fields/phone/phone.php:22
|
7003 |
msgid "Required phone number format: "
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: front-end/extra-fields/select-cpt/select-cpt.php:42, front-end/extra-fields/select-cpt/select-cpt.php:66, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/country select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/cpt select.php:17, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/user select.php:15, assets/lib/wck-api/fields/country select.php:14, assets/lib/wck-api/fields/cpt select.php:17, assets/lib/wck-api/fields/select.php:14, assets/lib/wck-api/fields/user select.php:15
|
7007 |
msgid "...Choose"
|
7008 |
msgstr ""
|
7009 |
|
7010 |
+
#: front-end/extra-fields/upload/upload.php:122
|
7011 |
msgid "Remove"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: front-end/extra-fields/upload/upload.php:132
|
7015 |
msgid "Select File"
|
7016 |
msgstr ""
|
7017 |
|
7018 |
+
#: front-end/extra-fields/upload/upload.php:138
|
7019 |
msgid "Upload "
|
7020 |
msgstr ""
|
7021 |
|
7022 |
+
#: front-end/extra-fields/upload/upload_helper_functions.php:61
|
7023 |
+
msgid "Files must be smaller than "
|
7024 |
+
msgstr ""
|
7025 |
+
|
7026 |
+
#: front-end/extra-fields/upload/upload_helper_functions.php:87, front-end/extra-fields/upload/upload_helper_functions.php:96
|
7027 |
msgid "Sorry, you cannot upload this file type for this field."
|
7028 |
msgstr ""
|
7029 |
|
7030 |
+
#: front-end/extra-fields/upload/upload_helper_functions.php:103
|
7031 |
msgid "An error occurred, please try again later."
|
7032 |
msgstr ""
|
7033 |
|
7034 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:210
|
7035 |
msgid "Limit"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:210
|
7039 |
msgid "Enable limit to the number of fields to be generated by users in front end forms "
|
7040 |
msgstr ""
|
7041 |
|
7042 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:211
|
7043 |
msgid "General Limit"
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:211
|
7047 |
msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
|
7048 |
msgstr ""
|
7049 |
|
7050 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:212
|
7051 |
msgid "Limit reached message"
|
7052 |
msgstr ""
|
7053 |
|
7054 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:212
|
7055 |
msgid "The maximum number of fields has been reached."
|
7056 |
msgstr ""
|
7057 |
|
7058 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:212
|
7059 |
msgid "The popup message to display when the limit of repeater groups is reached."
|
7060 |
msgstr ""
|
7061 |
|
7062 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:213
|
7063 |
msgid "Limit per Role"
|
7064 |
msgstr ""
|
7065 |
|
7066 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:213
|
7067 |
msgid "Leave 0 for unlimited."
|
7068 |
msgstr ""
|
7069 |
|
7070 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:214
|
7071 |
msgid "Repeated field group"
|
7072 |
msgstr ""
|
7073 |
|
7074 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:214
|
7075 |
msgid "Manage field or group of fields that will be repeatable."
|
7076 |
msgstr ""
|
7077 |
|
7078 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:279
|
7079 |
msgid "Edit field group"
|
7080 |
msgstr ""
|
7081 |
|
7082 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:280
|
7083 |
msgid "Repeatable fields saved!"
|
7084 |
msgstr ""
|
7085 |
|
7086 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:297
|
7087 |
msgid "Please enter a unique field title."
|
7088 |
msgstr ""
|
7089 |
|
7090 |
+
#: modules/repeater-field/admin/repeater-manage-fields.php:346
|
7091 |
msgid ""
|
7092 |
"Please enter a unique field title.\n"
|
7093 |
""
|